aboutsummaryrefslogtreecommitdiffstats
path: root/src/editfns.c
diff options
context:
space:
mode:
authorMiles Bader2005-09-19 11:00:10 +0000
committerMiles Bader2005-09-19 11:00:10 +0000
commitad404f1a4f1cf0cdb50967fbe78dc6bdfb7f21ae (patch)
treeb0d23f955a916a32cf3539080c6078a37f000644 /src/editfns.c
parent6f512f0b53ba23b88c686d27a748797add0a89dc (diff)
parente3fba586d63c36a5d8eab0835ab542c7b3ae7483 (diff)
downloademacs-ad404f1a4f1cf0cdb50967fbe78dc6bdfb7f21ae.tar.gz
emacs-ad404f1a4f1cf0cdb50967fbe78dc6bdfb7f21ae.zip
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-83
Merge from emacs--cvs-trunk--0 Patches applied: * emacs--cvs-trunk--0 (patch 554-555) - Update from CVS - Remove CVS keywords from newsticker files
Diffstat (limited to 'src/editfns.c')
-rw-r--r--src/editfns.c2
1 files changed, 1 insertions, 1 deletions
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')