minor fixes

This commit is contained in:
Anthony Scopatz 2019-10-10 15:39:26 -04:00
parent 4d8848d29e
commit f5948f44d2
2 changed files with 1 additions and 2 deletions

View file

@ -1176,7 +1176,7 @@ def DEFAULT_DOCS():
"When False:\n\n"
"* Xonsh may not be able to capture stdin, stdout, and stderr streams \n"
" unless explicitly asked to do so.\n"
"* Stopping the thread with yields to job control.\n"
"* Stopping the thread with ``Ctrl+Z`` yields to job control.\n"
"* Threadable commands are run with ``Popen`` and threadable \n"
" alias are run with ``ProcProxy``.\n\n"
"The desired effect is often up to the command, user, or use case."

View file

@ -202,7 +202,6 @@ else:
last_task=active_task, backgrounded=backgrounded
)
if os.WIFSTOPPED(wcode):
print()
active_task["status"] = "stopped"
backgrounded = True
elif os.WIFSIGNALED(wcode):