(decode_switches): Set print_with_color in one statement.

This commit is contained in:
Jim Meyering
1996-06-01 23:08:35 +00:00
parent de40301f0a
commit f51eb4a5cc
+3 -4
View File
@@ -1070,10 +1070,9 @@ decode_switches (int argc, char **argv)
i = color_always;
}
if (i == color_if_tty)
print_with_color = isatty (STDOUT_FILENO);
else
print_with_color = (i == color_always);
print_with_color = (i == color_always
|| (i == color_if_tty
&& isatty (STDOUT_FILENO)));
if (print_with_color)
{