Dan Zwell <dzwell@xxxxxxxxx> writes: > +sub colored_diff_hunk { > + my ($text) = @_; > + # return the text, so that it can be passed to print() > + my @ret; > + for (@$text) { > + if (!$diff_use_color) { > + push @ret, $_; > + next; > + } It would be better to do the "if (!$diff_use_color)" part upfront before entering the loop, wouldn't it? sub colored_diff_hunk { my ($text) = @_; if (!$diff_use_color) { return @$text; } my @ret; for (@$text) { ... } } - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html