Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
b322c205
Commit
b322c205
authored
Nov 15, 2007
by
Andreas Schwab
Browse files
Fix last change.
parent
f52fcaa4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
src/editfns.c
src/editfns.c
+4
-2
No files found.
src/editfns.c
View file @
b322c205
...
...
@@ -3543,8 +3543,10 @@ usage: (format STRING &rest OBJECTS) */)
precision[n+1] = 10 * precision[n+1] + *format - '0';
}
if (format - this_format_start + 1 > longest_format)
longest_format = format - this_format_start + 1;
/* Extra +1 for 'l' that we may need to insert into the
format. */
if (format - this_format_start + 2 > longest_format)
longest_format = format - this_format_start + 2;
if (format == end)
error ("Format string ends in middle of format specifier");
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment