Merge branch 'js/diff-highlight-avoid-sigpipe'

* js/diff-highlight-avoid-sigpipe:
  diff-highlight: exit when a pipe is broken
maint
Junio C Hamano 2014-11-10 11:26:09 -08:00
commit bd51886f30
1 changed files with 4 additions and 0 deletions

View File

@ -14,6 +14,10 @@ my @removed;
my @added;
my $in_hunk;

# Some scripts may not realize that SIGPIPE is being ignored when launching the
# pager--for instance scripts written in Python.
$SIG{PIPE} = 'DEFAULT';

while (<>) {
if (!$in_hunk) {
print;