From: Juanma Barranquero Date: Tue, 18 Jun 2002 14:36:07 +0000 (+0000) Subject: (comint-next-prompt, comint-previous-prompt): Fix typos. X-Git-Tag: ttn-vms-21-2-B4~14552 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4d17edb1360bdacf204cfef8a733bac10f73ecf1;p=emacs.git (comint-next-prompt, comint-previous-prompt): Fix typos. --- 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)))