Skip to content
Snippets Groups Projects
Commit 88fc92b0 authored by Patrick Mezard's avatar Patrick Mezard
Browse files

patchbomb: page patchbomb messages only if PAGER is defined.

Paging is complicated under win32. It is just better to avoid it by default.
parent b25ee3f8
No related branches found
No related tags found
No related merge requests found
......@@ -44,7 +44,8 @@
# the "email" command with the "-n" option (test only). You will be
# prompted for an email recipient address, a subject an an introductory
# message describing the patches of your patchbomb. Then when all is
# done, your pager will be fired up once for each patchbomb message, so
# done, patchbomb messages are displayed. If PAGER environment variable
# is set, your pager will be fired up once for each patchbomb message, so
# you can verify everything is alright.
#
# The "-m" (mbox) option is also very useful. Instead of previewing
......@@ -381,10 +382,13 @@
if opts['test']:
ui.status('Displaying ', m['Subject'], ' ...\n')
ui.flush()
fp = os.popen(os.getenv('PAGER', 'more'), 'w')
if 'PAGER' in os.environ:
fp = os.popen(os['PAGER'], 'w')
else:
fp = ui
try:
fp.write(m.as_string(0))
fp.write('\n')
except IOError, inst:
if inst.errno != errno.EPIPE:
raise
......@@ -385,10 +389,11 @@
try:
fp.write(m.as_string(0))
fp.write('\n')
except IOError, inst:
if inst.errno != errno.EPIPE:
raise
fp.close()
if fp is not ui:
fp.close()
elif opts['mbox']:
ui.status('Writing ', m['Subject'], ' ...\n')
fp = open(opts['mbox'], m.has_key('In-Reply-To') and 'ab+' or 'wb+')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment