diff options
author | Jim Meyering <jim@meyering.net> | 1999-11-06 09:55:13 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-11-06 09:55:13 +0000 |
commit | ea525f532f12a841c52f0bafb8fd89e1a872ea17 (patch) | |
tree | 4b9283a8dd479c7e0b383787d30611fadf5c2332 | |
parent | 476de46ee5f17a6a4073713c85157e6a10a3e77f (diff) | |
download | coreutils-ea525f532f12a841c52f0bafb8fd89e1a872ea17.tar.xz |
(long_options): Correct typo (s/'F'/'p'/) so that `-p'
works as the short form of --file-type, per the documentation.
From Michael Stone.
-rw-r--r-- | src/ls.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -581,7 +581,7 @@ static struct option const long_options[] = {"almost-all", no_argument, 0, 'A'}, {"ignore-backups", no_argument, 0, 'B'}, {"classify", no_argument, 0, 'F'}, - {"file-type", no_argument, 0, 'F'}, + {"file-type", no_argument, 0, 'p'}, {"si", no_argument, 0, 'H'}, {"ignore", required_argument, 0, 'I'}, {"indicator-style", required_argument, 0, 14}, |