From: Jim Meyering Date: Wed, 10 Jul 1996 03:16:30 +0000 (+0000) Subject: Change C-shell to `C shell'. X-Git-Tag: FILEUTILS-3_12s~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b124be4eb136bdacb21dc07274a941f4f3cf5214;p=thirdparty%2Fcoreutils.git Change C-shell to `C shell'. --- diff --git a/src/dircolors.c b/src/dircolors.c index 927a95f410..04475bd0a1 100644 --- a/src/dircolors.c +++ b/src/dircolors.c @@ -108,7 +108,7 @@ usage (int status) Determine format of output:\n\ -p, --print-data-base output defaults\n\ -b, --sh, --bourne-shell output Bourne shell code to set LS_COLOR\n\ - -c, --csh, --c-shell output C-shell code to set LS_COLOR\n")); + -c, --csh, --c-shell output C shell code to set LS_COLOR\n")); } exit (status == 0 ? EXIT_SUCCESS : EXIT_FAILURE); @@ -124,7 +124,7 @@ xstrndup (const char *s, size_t n) } /* If the SHELL environment variable is set to `csh' or `tcsh,' - assume C-shell. Else Bourne shell. */ + assume C shell. Else Bourne shell. */ static enum Shell_syntax guess_shell_syntax (void) @@ -422,7 +422,7 @@ main (int argc, char **argv) syntax = SHELL_SYNTAX_BOURNE; break; - case 'c': /* C-shell syntax. */ + case 'c': /* C shell syntax. */ syntax = SHELL_SYNTAX_C; break;