aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/comint.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/comint.el b/lisp/comint.el
index 7aeba47baec..9ae5947714e 100644
--- a/lisp/comint.el
+++ b/lisp/comint.el
@@ -2179,7 +2179,7 @@ If N is negative, find the previous or Nth previous match."
2179 "Move to end of Nth next prompt in the buffer. 2179 "Move to end of Nth next prompt in the buffer.
2180If `comint-use-prompt-regexp-instead-of-fields' is nil, then this means 2180If `comint-use-prompt-regexp-instead-of-fields' is nil, then this means
2181the beginning of the Nth next `input' field, otherwise, it means the Nth 2181the beginning of the Nth next `input' field, otherwise, it means the Nth
2182occurance of text matching `comint-prompt-regexp'." 2182occurrence of text matching `comint-prompt-regexp'."
2183 (interactive "p") 2183 (interactive "p")
2184 (if comint-use-prompt-regexp-instead-of-fields 2184 (if comint-use-prompt-regexp-instead-of-fields
2185 ;; Use comint-prompt-regexp 2185 ;; Use comint-prompt-regexp
@@ -2216,7 +2216,7 @@ occurance of text matching `comint-prompt-regexp'."
2216 "Move to end of Nth previous prompt in the buffer. 2216 "Move to end of Nth previous prompt in the buffer.
2217If `comint-use-prompt-regexp-instead-of-fields' is nil, then this means 2217If `comint-use-prompt-regexp-instead-of-fields' is nil, then this means
2218the beginning of the Nth previous `input' field, otherwise, it means the Nth 2218the beginning of the Nth previous `input' field, otherwise, it means the Nth
2219occurance of text matching `comint-prompt-regexp'." 2219occurrence of text matching `comint-prompt-regexp'."
2220 (interactive "p") 2220 (interactive "p")
2221 (comint-next-prompt (- n))) 2221 (comint-next-prompt (- n)))
2222 2222