changeset 42859:e66ccbc3c73d

(doprnt1): Fix typos in error call.
author Pavel Janík <Pavel@Janik.cz>
date Sun, 20 Jan 2002 18:04:32 +0000
parents 9d8c6ef3bbf8
children fc4a17f3d810
files src/doprnt.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/doprnt.c	Sun Jan 20 18:04:16 2002 +0000
+++ b/src/doprnt.c	Sun Jan 20 18:04:32 2002 +0000
@@ -221,7 +221,7 @@
 	      {
 		union { double d; char *half[2]; } u;
 		if (cnt + 1 == nargs)
-		  error ("not enough arguments for format string");
+		  error ("Not enough arguments for format string");
 		u.half[0] = args[cnt++];
 		u.half[1] = args[cnt++];
 		sprintf (sprintf_buffer, fmtcpy, u.d);
@@ -234,7 +234,7 @@
 	      string[-1] = 's';
 	    case 's':
 	      if (cnt == nargs)
-		error ("not enough arguments for format string");
+		error ("Not enough arguments for format string");
 	      if (fmtcpy[1] != 's')
 		minlen = atoi (&fmtcpy[1]);
 	      if (lispstrings)
@@ -297,7 +297,7 @@
 
 	    case 'c':
 	      if (cnt == nargs)
-		error ("not enough arguments for format string");
+		error ("Not enough arguments for format string");
 	      tem = CHAR_STRING ((int) (EMACS_INT) args[cnt], charbuf);
 	      string = charbuf;
 	      cnt++;