diff options
author | Paul Eggert <eggert@penguin.cs.ucla.edu> | 2006-11-27 11:27:46 +0100 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2006-11-27 11:27:46 +0100 |
commit | 9b06af3367500dfe09067b047381e788969059cd (patch) | |
tree | 0b4858e328a2c8ceabf60d95fdfa0cc016faf5d4 /src | |
parent | a45772d52d86a2b1a39ee057b139af7eb36a2b76 (diff) | |
download | coreutils-9b06af3367500dfe09067b047381e788969059cd.tar.xz |
Improve the check for departures from C89, and fix the departures
I found.
* Makefile.maint (my-distcheck): Also check for C89 compatibility
as best we can with GCC.
* src/stat.c (PRINTF_OPTION): Omit comma before } in enum
declaration; C89 doesn't allow this.
* src/dcgen: Don't generate string literals longer than
what C89 requires support for.
* src/cut.c (usage): Don't use string literals longer than
what C89 requires support for.
* src/date.c (usage): Likewise.
* src/dd.c (usage): Likewise.
* src/du.c (usage): Likewise.
* src/ls.c (usage): Likewise.
* src/od.c (usage): Likewise.
* src/readlink.c (usage): Likewise.
* src/seq.c (usage): Likewise.
* src/shred.c (usage): Likewise.
Diffstat (limited to 'src')
-rw-r--r-- | src/cut.c | 2 | ||||
-rw-r--r-- | src/date.c | 2 | ||||
-rwxr-xr-x | src/dcgen | 12 | ||||
-rw-r--r-- | src/dd.c | 2 | ||||
-rw-r--r-- | src/du.c | 4 | ||||
-rw-r--r-- | src/ls.c | 4 | ||||
-rw-r--r-- | src/od.c | 2 | ||||
-rw-r--r-- | src/readlink.c | 4 | ||||
-rw-r--r-- | src/seq.c | 2 | ||||
-rw-r--r-- | src/shred.c | 4 | ||||
-rw-r--r-- | src/stat.c | 2 |
11 files changed, 33 insertions, 7 deletions
@@ -223,6 +223,8 @@ Mandatory arguments to long options are mandatory for short options too.\n\ Use one, and only one of -b, -c or -f. Each LIST is made up of one\n\ range, or many ranges separated by commas. Selected input is written\n\ in the same order that it is read, and is written exactly once.\n\ +"), stdout); + fputs (_("\ Each range is one of:\n\ \n\ N N'th byte, character or field, counted from 1\n\ diff --git a/src/date.c b/src/date.c index 187956a31..2dec4c37f 100644 --- a/src/date.c +++ b/src/date.c @@ -223,6 +223,8 @@ specifies Coordinated Universal Time. Interpreted sequences are:\n\ %Z alphabetic time zone abbreviation (e.g., EDT)\n\ \n\ By default, date pads numeric fields with zeroes.\n\ +"), stdout); + fputs (_("\ The following optional flags may follow `%':\n\ \n\ - (hyphen) do not pad the field\n\ @@ -1,7 +1,7 @@ #!/usr/bin/perl -w # dcgen -- convert dircolors.hin to dircolors.h. -# Copyright (C) 1996, 1998, 2004, 2005 Free Software Foundation, Inc. +# Copyright (C) 1996, 1998, 2004, 2005, 2006 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -44,12 +44,14 @@ while (<>) and push @line, $_; } -my $last_line = pop @line; my $indent = ' '; -print "static char const G_line[] =\n"; +print "static char const G_line[] =\n{\n"; foreach (@line) { - print "$indent\"$_\\0\"\n"; + s/./'$&',/g; + s/'\\'/'\\\\'/g; + s/'''/'\\''/g; + print "$indent${_}0,\n"; } -print "$indent\"$last_line\";\n"; +print "};\n"; @@ -448,6 +448,8 @@ Each CONV symbol may be:\n\ notrunc do not truncate the output file\n\ ucase change lower case to upper case\n\ swab swap every pair of input bytes\n\ +"), stdout); + fputs (_("\ noerror continue after read errors\n\ sync pad every input block with NULs to ibs-size; when used\n\ with block or unblock, pad with spaces rather than NULs\n\ @@ -293,6 +293,8 @@ Mandatory arguments to long options are mandatory for short options too.\n\ the apparent size is usually smaller, it may be\n\ larger due to holes in (`sparse') files, internal\n\ fragmentation, indirect blocks, and the like\n\ +"), stdout); + fputs (_("\ -B, --block-size=SIZE use SIZE-byte blocks\n\ -b, --bytes equivalent to `--apparent-size --block-size=1'\n\ -c, --total produce a grand total\n\ @@ -305,6 +307,8 @@ Mandatory arguments to long options are mandatory for short options too.\n\ change to be equivalent to --dereference-args (-D)\n\ -h, --human-readable print sizes in human readable format (e.g., 1K 234M 2G)\n\ --si like -h, but use powers of 1000 not 1024\n\ +"), stdout); + fputs (_("\ -k like --block-size=1K\n\ -l, --count-links count sizes many times if hard linked\n\ -m like --block-size=1M\n\ @@ -4270,6 +4270,8 @@ Mandatory arguments to long options are mandatory for short options too.\n\ -h, --human-readable with -l, print sizes in human readable format\n\ (e.g., 1K 234M 2G)\n\ --si likewise, but use powers of 1000 not 1024\n\ +"), stdout); + fputs (_("\ -H, --dereference-command-line\n\ follow symbolic links listed on the command line\n\ --dereference-command-line-symlink-to-dir\n\ @@ -4331,6 +4333,8 @@ Mandatory arguments to long options are mandatory for short options too.\n\ non-recent files and FORMAT2 to recent files;\n\ if STYLE is prefixed with `posix-', STYLE\n\ takes effect only outside the POSIX locale\n\ +"), stdout); + fputs (_("\ -t sort by modification time\n\ -T, --tabsize=COLS assume tab stops at each COLS instead of 8\n\ "), stdout); @@ -358,6 +358,8 @@ An OFFSET operand means -j OFFSET. LABEL is the pseudo-address\n\ at first byte printed, incremented when dump is progressing.\n\ For OFFSET and LABEL, a 0x or 0X prefix indicates hexadecimal;\n\ suffixes may be . for octal and b for multiply by 512.\n\ +"), stdout); + fputs (_("\ \n\ TYPE is made up of one or more of these specifications:\n\ \n\ diff --git a/src/readlink.c b/src/readlink.c index 533b9b9e1..800d235b4 100644 --- a/src/readlink.c +++ b/src/readlink.c @@ -1,5 +1,5 @@ /* readlink -- display value of a symbolic link. - Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. + Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -74,6 +74,8 @@ usage (int status) -e, --canonicalize-existing canonicalize by following every symlink in\n\ every component of the given name recursively,\n\ all components must exist\n\ +"), stdout); + fputs (_("\ -m, --canonicalize-missing canonicalize by following every symlink in\n\ every component of the given name recursively,\n\ without requirements on components existence\n\ @@ -92,6 +92,8 @@ omitted INCREMENT defaults to 1 even when LAST is smaller than FIRST.\n\ FIRST, INCREMENT, and LAST are interpreted as floating point values.\n\ INCREMENT is usually positive if FIRST is smaller than LAST, and\n\ INCREMENT is usually negative if FIRST is greater than LAST.\n\ +"), stdout); + fputs (_("\ FORMAT must be suitable for printing one argument of type `double';\n\ it defaults to %.PRECf if FIRST, INCREMENT, and LAST are all fixed point\n\ decimal numbers with maximum precision PREC, and to %g otherwise.\n\ diff --git a/src/shred.c b/src/shred.c index 4c1819ccb..23a4944b0 100644 --- a/src/shred.c +++ b/src/shred.c @@ -220,6 +220,8 @@ version 3 clients\n\ \n\ * compressed file systems\n\ \n\ +"), stdout); + fputs (_("\ In the case of ext3 file systems, the above disclaimer applies\n\ (and shred is thus of limited effectiveness) only in data=journal mode,\n\ which journals file data in addition to just metadata. In both the\n\ @@ -228,6 +230,8 @@ Ext3 journaling modes can be changed by adding the data=something option\n\ to the mount options for a particular file system in the /etc/fstab file,\n\ as documented in the mount man page (man mount).\n\ \n\ +"), stdout); + fputs (_("\ In addition, file system backups and remote mirrors may contain copies\n\ of the file that cannot be removed, and that will allow a shredded file\n\ to be recovered later.\n\ diff --git a/src/stat.c b/src/stat.c index 6de5e15c3..315fe0c65 100644 --- a/src/stat.c +++ b/src/stat.c @@ -154,7 +154,7 @@ statfs (char const *filename, struct fs_info *buf) enum { - PRINTF_OPTION = CHAR_MAX + 1, + PRINTF_OPTION = CHAR_MAX + 1 }; static struct option const long_options[] = { |