aboutsummaryrefslogtreecommitdiffstats
path: root/src/editfns.c
diff options
context:
space:
mode:
authorKarl Heuer1994-04-07 02:45:55 +0000
committerKarl Heuer1994-04-07 02:45:55 +0000
commit6076455260dbb6e2bcdfe15f79ea8f9707047a54 (patch)
tree5cd87daa15b643e38c254c722507ae6c2c1efd9f /src/editfns.c
parent196e7d3f10af7cf4528ea4c6ba0eaff04ba54966 (diff)
downloademacs-6076455260dbb6e2bcdfe15f79ea8f9707047a54.tar.gz
emacs-6076455260dbb6e2bcdfe15f79ea8f9707047a54.zip
(Fformat): Reword confusing error message.
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 e3863c5f117..fd965e330c8 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -1463,7 +1463,7 @@ Use %% to put a single % into the output.")
1463 if (*format == '%') 1463 if (*format == '%')
1464 format++; 1464 format++;
1465 else if (++n >= nargs) 1465 else if (++n >= nargs)
1466 error ("format string wants too many arguments"); 1466 error ("not enough arguments for format string");
1467 else if (*format == 'S') 1467 else if (*format == 'S')
1468 { 1468 {
1469 /* For `S', prin1 the argument and then treat like a string. */ 1469 /* For `S', prin1 the argument and then treat like a string. */