diff options
author | Matt Kraai <kraai@debian.org> | 2002-03-08 16:16:38 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2002-03-08 16:16:38 +0000 |
commit | 3bd31ebc9a6643d61f11b17811e885596aca61e0 (patch) | |
tree | f7a9131e497cf82554f355fda41e834af8b2c2de /coreutils/ls.c | |
parent | 372f91f07c65277db6c7fded61800fe77c15a336 (diff) | |
download | busybox-w32-3bd31ebc9a6643d61f11b17811e885596aca61e0.tar.gz busybox-w32-3bd31ebc9a6643d61f11b17811e885596aca61e0.tar.bz2 busybox-w32-3bd31ebc9a6643d61f11b17811e885596aca61e0.zip |
* fileutils/ls.c (showfiles): Display multiple short names on a line.
Diffstat (limited to 'coreutils/ls.c')
-rw-r--r-- | coreutils/ls.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/coreutils/ls.c b/coreutils/ls.c index 07e083f5a..e9c2e8643 100644 --- a/coreutils/ls.c +++ b/coreutils/ls.c | |||
@@ -443,12 +443,7 @@ static void showfiles(struct dnode **dn, int nfiles) | |||
443 | if (column_width < len) | 443 | if (column_width < len) |
444 | column_width= len; | 444 | column_width= len; |
445 | } | 445 | } |
446 | if (column_width >= 6) | 446 | ncols = (int)(terminal_width / (column_width + COLUMN_GAP)); |
447 | ncols = (int)(terminal_width / (column_width + COLUMN_GAP)); | ||
448 | else { | ||
449 | ncols = 1; | ||
450 | column_width = COLUMN_WIDTH; | ||
451 | } | ||
452 | #else | 447 | #else |
453 | ncols= TERMINAL_WIDTH; | 448 | ncols= TERMINAL_WIDTH; |
454 | #endif | 449 | #endif |