Mercurial > emacs
changeset 45898:5d6de4aa3f61
(comint-next-prompt, comint-previous-prompt): Fix typos.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Tue, 18 Jun 2002 14:36:07 +0000 |
parents | 19b72b42b514 |
children | e44f3ea2c30c |
files | lisp/comint.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/comint.el Tue Jun 18 14:35:49 2002 +0000 +++ b/lisp/comint.el Tue Jun 18 14:36:07 2002 +0000 @@ -2179,7 +2179,7 @@ "Move to end of Nth next prompt in the buffer. If `comint-use-prompt-regexp-instead-of-fields' is nil, then this means the beginning of the Nth next `input' field, otherwise, it means the Nth -occurance of text matching `comint-prompt-regexp'." +occurrence of text matching `comint-prompt-regexp'." (interactive "p") (if comint-use-prompt-regexp-instead-of-fields ;; Use comint-prompt-regexp @@ -2216,7 +2216,7 @@ "Move to end of Nth previous prompt in the buffer. If `comint-use-prompt-regexp-instead-of-fields' is nil, then this means the beginning of the Nth previous `input' field, otherwise, it means the Nth -occurance of text matching `comint-prompt-regexp'." +occurrence of text matching `comint-prompt-regexp'." (interactive "p") (comint-next-prompt (- n)))