X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/2d75794b0e9aac019851b45e1a5b2bfe6801f5d3..88cd462dc6e6ed9441337f496f818b5fee5f5912:/src/doprnt.c diff --git a/src/doprnt.c b/src/doprnt.c index 3fd6222c9d..72c0dd490e 100644 --- a/src/doprnt.c +++ b/src/doprnt.c @@ -54,7 +54,7 @@ static int doprnt1 (); terminated at position FORMAT_END. Output goes in BUFFER, which has room for BUFSIZE chars. If the output does not fit, truncate it to fit. - Returns the number of characters stored into BUFFER. + Returns the number of bytes stored into BUFFER. ARGS points to the vector of arguments, and NARGS says how many. A double counts as two arguments. String arguments are passed as C strings. @@ -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++;