aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1998-08-04 09:30:02 +0000
committerRichard M. Stallman1998-08-04 09:30:02 +0000
commitc2705d61dea1317d2ab2529d9d410c889ff3b9f8 (patch)
treef04b0965be06554d9333a596eb857dfefe42416b
parent716184d4556dddd41578dfb6356851c3a0d678ab (diff)
downloademacs-c2705d61dea1317d2ab2529d9d410c889ff3b9f8.tar.gz
emacs-c2705d61dea1317d2ab2529d9d410c889ff3b9f8.zip
(comint-bol-or-process-mark): Refer to this command's name correctly.
-rw-r--r--lisp/comint.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/comint.el b/lisp/comint.el
index 880866114e6..d38761506de 100644
--- a/lisp/comint.el
+++ b/lisp/comint.el
@@ -2338,7 +2338,7 @@ is at the beginning of the current input line; but if you have
2338used \\[comint-accumulate] to send multiple lines at once, 2338used \\[comint-accumulate] to send multiple lines at once,
2339the process mark is at the beginning of the accumulated input." 2339the process mark is at the beginning of the accumulated input."
2340 (interactive) 2340 (interactive)
2341 (if (not (eq last-command 'comint-bol-or-mark)) 2341 (if (not (eq last-command 'comint-bol-or-process-mark))
2342 (comint-bol nil) 2342 (comint-bol nil)
2343 (comint-goto-process-mark))) 2343 (comint-goto-process-mark)))
2344 2344