summaryrefslogtreecommitdiff
path: root/lisp/comint.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2018-01-15 13:53:40 -0800
committerGlenn Morris <rgm@gnu.org>2018-01-15 13:53:40 -0800
commit400b72cb6e118b86d2e83cbfb45b829b231ec4f9 (patch)
tree6c4f2e559e952c273dd4a21f90e5308aa28b17d1 /lisp/comint.el
parent8491cbef1afa0e4088729bfd7476d82bc2f09bba (diff)
parent98e5fb9bf3b49bea82a4d3e38be20415bd7f7684 (diff)
downloademacs-400b72cb6e118b86d2e83cbfb45b829b231ec4f9.tar.gz
emacs-400b72cb6e118b86d2e83cbfb45b829b231ec4f9.tar.bz2
emacs-400b72cb6e118b86d2e83cbfb45b829b231ec4f9.zip
Merge from origin/emacs-26
98e5fb9bf3 (origin/emacs-26) Remove incorrect documentation in comint.el 8ba5b85161 An overdue update of src/emacs-icon.h 155b211133 Minor copyedit in ELisp manual
Diffstat (limited to 'lisp/comint.el')
-rw-r--r--lisp/comint.el14
1 files changed, 3 insertions, 11 deletions
diff --git a/lisp/comint.el b/lisp/comint.el
index 719945a831f..a79e34b36c3 100644
--- a/lisp/comint.el
+++ b/lisp/comint.el
@@ -2477,9 +2477,7 @@ Sets mark to the value of point when this command is run."
(comint-truncate-buffer)))
(defun comint-interrupt-subjob ()
- "Interrupt the current subjob.
-This command also kills the pending input
-between the process mark and point."
+ "Interrupt the current subjob."
(interactive)
(comint-skip-input)
(interrupt-process nil comint-ptyp)
@@ -2487,25 +2485,19 @@ between the process mark and point."
)
(defun comint-kill-subjob ()
- "Send kill signal to the current subjob.
-This command also kills the pending input
-between the process mark and point."
+ "Send kill signal to the current subjob."
(interactive)
(comint-skip-input)
(kill-process nil comint-ptyp))
(defun comint-quit-subjob ()
- "Send quit signal to the current subjob.
-This command also kills the pending input
-between the process mark and point."
+ "Send quit signal to the current subjob."
(interactive)
(comint-skip-input)
(quit-process nil comint-ptyp))
(defun comint-stop-subjob ()
"Stop the current subjob.
-This command also kills the pending input
-between the process mark and point.
WARNING: if there is no current subjob, you can end up suspending
the top-level process running in the buffer. If you accidentally do