aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/editfns.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 31943170b94..c827ba7c53a 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12005-09-19 Kim F. Storm <storm@cua.dk>
2
3 * editfns.c (Fformat): Don't scan past end of format string that
4 ends in %. Reported by: Johan Bockg,Ae(Brd.
5
12005-09-18 Andreas Schwab <schwab@suse.de> 62005-09-18 Andreas Schwab <schwab@suse.de>
2 7
3 * window.h (struct window): Remove height_fixed_p, no longer set. 8 * window.h (struct window): Remove height_fixed_p, no longer set.
diff --git a/src/editfns.c b/src/editfns.c
index dfb6f865dfb..3f33285bcfc 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -3556,7 +3556,7 @@ usage: (format STRING &rest OBJECTS) */)
3556 digits to print after the '.' for floats, or the max. 3556 digits to print after the '.' for floats, or the max.
3557 number of chars to print from a string. */ 3557 number of chars to print from a string. */
3558 3558
3559 while (index ("-0# ", *format)) 3559 while (*format && index ("-0# ", *format))
3560 ++format; 3560 ++format;
3561 3561
3562 if (*format >= '0' && *format <= '9') 3562 if (*format >= '0' && *format <= '9')