summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-07-16 21:31:11 +0000
committerRichard M. Stallman <rms@gnu.org>1994-07-16 21:31:11 +0000
commita77db92ba6f30265dfe7329e330015a1181a3fc6 (patch)
treecdf2adf8c3bc15df88395a00df12e7ad981b27c2 /lisp
parent5bd436259d5ab76fb2bb8ffebfe44e71a21aace1 (diff)
downloademacs-a77db92ba6f30265dfe7329e330015a1181a3fc6.tar.gz
Comment change.
(comint-bol): Doc fix.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/comint.el7
1 files changed, 2 insertions, 5 deletions
diff --git a/lisp/comint.el b/lisp/comint.el
index 9b7a0db3190..2e35d960d67 100644
--- a/lisp/comint.el
+++ b/lisp/comint.el
@@ -69,8 +69,8 @@
;;; m-s comint-next-matching-input Next input that matches
;;; m-c-l comint-show-output Show last batch of process output
;;; return comint-send-input
-;;; c-a comint-bol Beginning of line; skip prompt
;;; c-d comint-delchar-or-maybe-eof Delete char unless at end of buff
+;;; c-c c-a comint-bol Beginning of line; skip prompt
;;; c-c c-u comint-kill-input ^u
;;; c-c c-w backward-kill-word ^w
;;; c-c c-c comint-interrupt-subjob ^c
@@ -1315,10 +1315,7 @@ set the hook `comint-input-sender'."
If prefix argument is given (\\[universal-argument]) the prompt is not skipped.
The prompt skip is done by skipping text matching the regular expression
-`comint-prompt-regexp', a buffer local variable.
-
-If you don't like this command, bind C-a to `beginning-of-line'
-in your hook, `comint-mode-hook'."
+`comint-prompt-regexp', a buffer local variable."
(interactive "P")
(beginning-of-line)
(if (null arg) (comint-skip-prompt)))