From 6076455260dbb6e2bcdfe15f79ea8f9707047a54 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Thu, 7 Apr 1994 02:45:55 +0000 Subject: [PATCH] (Fformat): Reword confusing error message. --- src/editfns.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.") 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. */ -- 2.39.5