diff options
author | Bruno Haible <bruno@clisp.org> | 2003-09-22 09:57:54 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:11:01 +0200 |
commit | b002633add2677beb86292bd0a6d02bf16c591c3 (patch) | |
tree | 6c7b6036f9c701a5009783f60ff1c018f601f061 /gettext-tools/src/write-po.c | |
parent | 50f62cf8292bf0e349c4ca4114ba704da22d8730 (diff) | |
download | external_gettext-b002633add2677beb86292bd0a6d02bf16c591c3.zip external_gettext-b002633add2677beb86292bd0a6d02bf16c591c3.tar.gz external_gettext-b002633add2677beb86292bd0a6d02bf16c591c3.tar.bz2 |
Whitespace changes.
Diffstat (limited to 'gettext-tools/src/write-po.c')
-rw-r--r-- | gettext-tools/src/write-po.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gettext-tools/src/write-po.c b/gettext-tools/src/write-po.c index 4befb10..9992ddb 100644 --- a/gettext-tools/src/write-po.c +++ b/gettext-tools/src/write-po.c @@ -400,7 +400,7 @@ memcpy_small (void *dst, const void *src, size_t n) *q = *p; if (--n > 0) - do *++q = *++p; while (--n > 0); + do *++q = *++p; while (--n > 0); } } @@ -475,9 +475,9 @@ wrap (FILE *fp, const char *line_prefix, const char *name, const char *value, do { /* The \a and \v escapes were added by the ANSI C Standard. - Prior to the Standard, most compilers did not have them. - Because we need the same program on all platforms we don't provide - support for them here. Thus we only support \b\f\n\r\t. */ + Prior to the Standard, most compilers did not have them. + Because we need the same program on all platforms we don't provide + support for them here. Thus we only support \b\f\n\r\t. */ # define is_escape(c) \ ((c) == '\b' || (c) == '\f' || (c) == '\n' || (c) == '\r' || (c) == '\t') @@ -747,7 +747,7 @@ internationalized messages should not contain the `\\%c' escape sequence"), this is the first line, and if the indented style is being used. INDENT-F. */ if (line_prefix != NULL) - fputs (line_prefix, fp); + fputs (line_prefix, fp); if (first_line) { fputs (name, fp); |