diff options
author | Jim Meyering <jim@meyering.net> | 1996-10-29 12:51:37 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1996-10-29 12:51:37 +0000 |
commit | d7749da3e931615bf3d03026425b4bdd5cf8b0da (patch) | |
tree | 5d9d5df96bb6dbdc20c34b623f140ca1d9e5d87a /src/ls.c | |
parent | 84b8cf9fcf25a4e288841f690879a898417b7d99 (diff) | |
download | coreutils-d7749da3e931615bf3d03026425b4bdd5cf8b0da.tar.xz |
(decode_switches): Make -A set really_all_files to zero
as well as setting all_files to 1. With this change, ls -f -A prints
everything but . and .., unsorted. Before, the -A was effectively
ignored. From Karl Berry.
Diffstat (limited to 'src/ls.c')
-rw-r--r-- | src/ls.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -957,6 +957,7 @@ decode_switches (int argc, char **argv) break; case 'A': + really_all_files = 0; all_files = 1; break; |