Revert "launch the pager process in its own process group so that it isn't killed with ctrl+c"

This reverts commit 49656998be7686ab6d157028c4615c95c9f0327d.
This commit is contained in:
Josh Holtrop 2012-06-29 13:04:14 -04:00
parent 49656998be
commit 84dc998e11

3
jsvn
View File

@ -1387,8 +1387,7 @@ def do_cmd(argv, realsvn, config, expand=True):
pager = os.environ['PAGER']
else:
pager = 'less -FRX'
pager_proc = Popen(pager, shell=True, stdin=PIPE,
preexec_fn=os.setsid)
pager_proc = Popen(pager, shell=True, stdin=PIPE)
out = pager_proc.stdin
using_pager = True