Mercurial > emacs
diff lib-src/yow.c @ 49600:23a1cea22d13
Trailing whitespace deleted.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Tue, 04 Feb 2003 14:56:31 +0000 |
parents | 644c7fb7d69d |
children | dc31cb80909b d7ddb3e565de |
line wrap: on
line diff
--- a/lib-src/yow.c Tue Feb 04 13:30:45 2003 +0000 +++ b/lib-src/yow.c Tue Feb 04 14:56:31 2003 +0000 @@ -1,12 +1,12 @@ /* * yow.c - * + * * Print a quotation from Zippy the Pinhead. * Qux <Kaufman-David@Yale> March 6, 1986 * * This file is in the public domain because the author published it * with no copyright notice before the US signed the Bern Convention. - * + * * With dynamic memory allocation. */ @@ -114,7 +114,7 @@ header_len = ftell(fp); if (header_len > AVG_LEN) header_len -= AVG_LEN; /* allow the first quotation to appear */ - + if (fseek(fp, 0L, 2) == -1) { perror("yow"); exit(1); @@ -167,7 +167,7 @@ buf[i++] = c; while ((c = getc(fp)) != SEP && c != EOF) { buf[i++] = c; - + if (i == bufsize-1) { /* Yow! Is this quotation too long yet? */ bufsize *= 2;