diff options
author | Jim Blandy <jimb@redhat.com> | 1990-11-12 20:20:41 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1990-11-12 20:20:41 +0000 |
commit | 447c9a10acbd5ffb9504f7a72db532c0388aa695 (patch) | |
tree | 7107b4fb486ac73869622c34c4e3e21d5ca05e49 /src/doprnt.c | |
parent | 4a5f1de511c7241366b4fbc1aaba8c286cd2fdd9 (diff) | |
download | emacs-447c9a10acbd5ffb9504f7a72db532c0388aa695.tar.gz |
*** empty log message ***
Diffstat (limited to 'src/doprnt.c')
-rw-r--r-- | src/doprnt.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/doprnt.c b/src/doprnt.c index 8795b8626cb..8a7a68c2f0b 100644 --- a/src/doprnt.c +++ b/src/doprnt.c @@ -45,7 +45,8 @@ doprnt (buffer, bufsize, format, format_end, nargs, args) format_end = format + strlen (format); bufsize--; - while (fmt != format_end && bufsize > 0) /* Loop until end of format string or buffer full */ + while (fmt != format_end && bufsize > 0) /* Loop until end of format + string or buffer full */ { if (*fmt == '%') /* Check for a '%' character */ { |