--sort should not imply --join if --trace is also specified.

This commit is contained in:
Hallvard Furuseth 2004-11-02 17:19:17 +00:00
parent aa7ed3d8c8
commit ab12babf06

View File

@ -81,7 +81,7 @@ BEGIN {
usage() unless $getopt_ok;
usage("--trace is incompatible with --join.\n") if $trace && $join_files;
$join_files = 1 if $sort_files && !defined($join_files);
$join_files = 1 if !defined($join_files) && $sort_files && !$trace;
use constant BRIEF => !!$brief;
use constant LOOSE => defined($no_loose) && ($no_loose eq ".^" ? 2 : 1);