1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-04 02:51:31 -08:00

(Fformat): Don't scan past end of format string that

ends in %.  Reported by: Johan Bockgård.
This commit is contained in:
Kim F. Storm 2005-09-19 08:13:14 +00:00
parent 12d10bc72b
commit f5be4dfd96

View file

@ -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')