summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Allen <steven@stebalien.com>2020-02-15 15:13:59 -0800
committerEli Zaretskii <eliz@gnu.org>2020-02-21 10:51:51 +0200
commitcd6a9b8f65c10c7f956c6b17fd3f806b61bb3199 (patch)
treef440271645cb680266704b7aad4e20ce65fad125
parent9f0852474810311fd2b26fa3756ab6d816016389 (diff)
downloademacs-cd6a9b8f65c10c7f956c6b17fd3f806b61bb3199.tar.gz
Skip shell prompt on current line in Eshell even if it's protected
When the eshell prompt is protected (e.g., with rear non-sticky, inhibited movements, etc.), 'beginning-of-line' won't move to the actual beginning of the line and therefore won't skip over the prompt. * lisp/eshell/em-prompt.el (eshell-previous-prompt): Use 'forward-line' to go to the beginning of the line, even if it's protected. (Bug#39627)
-rw-r--r--lisp/eshell/em-prompt.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/eshell/em-prompt.el b/lisp/eshell/em-prompt.el
index 25b8ccaba17..9ae5ae12816 100644
--- a/lisp/eshell/em-prompt.el
+++ b/lisp/eshell/em-prompt.el
@@ -187,7 +187,7 @@ See `eshell-prompt-regexp'."
"Move to end of Nth previous prompt in the buffer.
See `eshell-prompt-regexp'."
(interactive "p")
- (beginning-of-line) ; Don't count prompt on current line.
+ (forward-line 0) ; Don't count prompt on current line.
(eshell-next-prompt (- n)))
(defun eshell-skip-prompt ()