Fix oversight with CONFIG_FEATURE_AUTOWIDTH handling
authorEric Andersen <andersen@codepoet.org>
Tue, 4 Nov 2003 23:16:48 +0000 (23:16 -0000)
committerEric Andersen <andersen@codepoet.org>
Tue, 4 Nov 2003 23:16:48 +0000 (23:16 -0000)
coreutils/ls.c

index 7275292..2929b96 100644 (file)
@@ -923,10 +923,12 @@ extern int ls_main(int argc, char **argv)
                | SORT_NAME | SORT_ORDER_FORWARD
 #endif
                ;
+#ifdef CONFIG_FEATURE_AUTOWIDTH
        /* Obtain the terminal width.  */
        get_terminal_width_height(0, &terminal_width, NULL);
        /* Go one less... */
        terminal_width--;
+#endif
        nfiles = 0;
 
 #ifdef CONFIG_FEATURE_LS_COLOR