Mercurial > emacs
changeset 8266:6c1351ac3462
Comment change.
(comint-bol): Doc fix.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 16 Jul 1994 21:31:11 +0000 |
parents | c830f54843c2 |
children | 79a07b5d938a |
files | lisp/comint.el |
diffstat | 1 files changed, 2 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/comint.el Sat Jul 16 21:28:30 1994 +0000 +++ b/lisp/comint.el Sat Jul 16 21:31:11 1994 +0000 @@ -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 @@ 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)))