blob: 9b3e9c1f4d7bd7d99d5434f2bb10f981638a8910 [file] [log] [blame]
Jeff King0c977db2017-06-15 12:30:55 -04001package 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;