summaryrefslogtreecommitdiff
path: root/src/dircolors.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1996-07-10 03:16:30 +0000
committerJim Meyering <jim@meyering.net>1996-07-10 03:16:30 +0000
commitb124be4eb136bdacb21dc07274a941f4f3cf5214 (patch)
tree1c293a7a61256d35cc8c8e7f3522bd08495a2801 /src/dircolors.c
parentc8feafc2a5444df6c89a2103f29a7b9633da0e92 (diff)
downloadcoreutils-b124be4eb136bdacb21dc07274a941f4f3cf5214.tar.xz
Change C-shell to `C shell'.
Diffstat (limited to 'src/dircolors.c')
-rw-r--r--src/dircolors.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dircolors.c b/src/dircolors.c
index 927a95f41..04475bd0a 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;