diff options
| author | Andrey A. Chernov <ache@FreeBSD.org> | 2000-06-06 12:25:17 +0000 |
|---|---|---|
| committer | Andrey A. Chernov <ache@FreeBSD.org> | 2000-06-06 12:25:17 +0000 |
| commit | 322b47fd8833ca5c1c566305ba710cc2e415e225 (patch) | |
| tree | d63bbfc29c5d1c67d465f9251aa880aa6d33aff3 | |
| parent | 46d31a8b36ec3c76cb63f4d165f5cf193f0f07f8 (diff) | |
Notes
| -rw-r--r-- | bin/ls/print.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ls/print.c b/bin/ls/print.c index ec4deb519a00..e55fa5f0ba7d 100644 --- a/bin/ls/print.c +++ b/bin/ls/print.c @@ -247,7 +247,7 @@ printcol(dp) * column number will be incremented incorrectly * for "stty oxtabs" mode. */ - if (f_color) + if (f_color && !f_notabs) while ((cnt = (chcnt + 1)) <= endcol) { (void)putchar(' '); chcnt = cnt; |
