mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-05 17:00:58 +01:00
minor fixes
This commit is contained in:
parent
4d8848d29e
commit
f5948f44d2
2 changed files with 1 additions and 2 deletions
|
@ -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."
|
||||
|
|
|
@ -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):
|
||||
|
|
Loading…
Add table
Reference in a new issue