diff options
author | Richard M. Stallman <rms@gnu.org> | 1998-08-04 09:30:02 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1998-08-04 09:30:02 +0000 |
commit | c2705d61dea1317d2ab2529d9d410c889ff3b9f8 (patch) | |
tree | f04b0965be06554d9333a596eb857dfefe42416b /lisp/comint.el | |
parent | 716184d4556dddd41578dfb6356851c3a0d678ab (diff) | |
download | emacs-c2705d61dea1317d2ab2529d9d410c889ff3b9f8.tar.gz |
(comint-bol-or-process-mark): Refer to this command's name correctly.
Diffstat (limited to 'lisp/comint.el')
-rw-r--r-- | lisp/comint.el | 2 |
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 used \\[comint-accumulate] to send multiple lines at once, the process mark is at the beginning of the accumulated input." (interactive) - (if (not (eq last-command 'comint-bol-or-mark)) + (if (not (eq last-command 'comint-bol-or-process-mark)) (comint-bol nil) (comint-goto-process-mark))) |