1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-20 19:42:53 -08:00

(Fformat): Reword confusing error message.

This commit is contained in:
Karl Heuer 1994-04-07 02:45:55 +00:00
parent 196e7d3f10
commit 6076455260

View file

@ -1463,7 +1463,7 @@ Use %% to put a single % into the output.")
if (*format == '%')
format++;
else if (++n >= nargs)
error ("format string wants too many arguments");
error ("not enough arguments for format string");
else if (*format == 'S')
{
/* For `S', prin1 the argument and then treat like a string. */