##// END OF EJS Templates
pager: don't terminate with extreme prejudice on SIGPIPE (BC)...
Simon Farnsworth -
r30867:aaa75158 default
parent child Browse files
Show More
@@ -153,8 +153,6 b' def uisetup(ui):'
153 if usepager:
153 if usepager:
154 ui.setconfig('ui', 'formatted', ui.formatted(), 'pager')
154 ui.setconfig('ui', 'formatted', ui.formatted(), 'pager')
155 ui.setconfig('ui', 'interactive', False, 'pager')
155 ui.setconfig('ui', 'interactive', False, 'pager')
156 if util.safehasattr(signal, "SIGPIPE"):
157 signal.signal(signal.SIGPIPE, signal.SIG_DFL)
158 ui._runpager(p)
156 ui._runpager(p)
159 return orig(ui, options, cmd, cmdfunc)
157 return orig(ui, options, cmd, cmdfunc)
160
158
General Comments 0
You need to be logged in to leave comments. Login now