contrib / diff-highlight / diff-highlight.perlon commit Merge branch 'cb/t4201-robustify' into maint (01e0c53)
   1package main;
   2
   3# Some scripts may not realize that SIGPIPE is being ignored when launching the
   4# pager--for instance scripts written in Python.
   5$SIG{PIPE} = 'DEFAULT';
   6
   7DiffHighlight::highlight_stdin();
   8exit 0;