diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2002-06-18 14:36:07 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2002-06-18 14:36:07 +0000 |
commit | 4d17edb1360bdacf204cfef8a733bac10f73ecf1 (patch) | |
tree | 892957942d0480d85dd0580e29e08c2cb8864f41 /lisp/comint.el | |
parent | 01af482e4d432161ae44b0db3cfe0fa246f99b49 (diff) | |
download | emacs-4d17edb1360bdacf204cfef8a733bac10f73ecf1.tar.gz |
(comint-next-prompt, comint-previous-prompt): Fix typos.
Diffstat (limited to 'lisp/comint.el')
-rw-r--r-- | lisp/comint.el | 4 |
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." "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 @@ occurance of text matching `comint-prompt-regexp'." "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))) |