From: Pavel Janík Date: Sun, 20 Jan 2002 18:04:32 +0000 (+0000) Subject: (doprnt1): Fix typos in error call. X-Git-Tag: ttn-vms-21-2-B4~17056 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fb08db4568ad1ffa12f9bbe8d2f780796ca50903;p=emacs.git (doprnt1): Fix typos in error call. --- diff --git a/src/doprnt.c b/src/doprnt.c index 3fd6222c9d7..82a96c7d673 100644 --- a/src/doprnt.c +++ b/src/doprnt.c @@ -221,7 +221,7 @@ doprnt1 (lispstrings, buffer, bufsize, format, format_end, nargs, args) { 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 @@ doprnt1 (lispstrings, buffer, bufsize, format, format_end, nargs, args) 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 @@ doprnt1 (lispstrings, buffer, bufsize, format, format_end, nargs, args) 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++;