From b124be4eb136bdacb21dc07274a941f4f3cf5214 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Wed, 10 Jul 1996 03:16:30 +0000 Subject: [PATCH] Change C-shell to `C shell'. --- src/dircolors.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; -- 2.47.2