1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-03-06 04:55:52 +02:00

(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.
This commit is contained in:
Jim Meyering
1996-10-29 12:51:37 +00:00
parent 84b8cf9fcf
commit d7749da3e9

View File

@@ -957,6 +957,7 @@ decode_switches (int argc, char **argv)
break;
case 'A':
really_all_files = 0;
all_files = 1;
break;