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
f5be4dfd
Commit
f5be4dfd
authored
Sep 19, 2005
by
Kim F. Storm
Browse files
(Fformat): Don't scan past end of format string that
ends in %. Reported by: Johan Bockgård.
parent
12d10bc7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/editfns.c
src/editfns.c
+1
-1
No files found.
src/editfns.c
View file @
f5be4dfd
...
...
@@ -3424,7 +3424,7 @@ usage: (format STRING &rest OBJECTS) */)
digits to print after the '.' for floats, or the max.
number of chars to print from a string. */
while
(
index
(
"-0# "
,
*
format
))
while
(
*
format
&&
index
(
"-0# "
,
*
format
))
++
format
;
if
(
*
format
>=
'0'
&&
*
format
<=
'9'
)
...
...
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