From: Juanma Barranquero Date: Tue, 18 Jun 2002 14:26:23 +0000 (+0000) Subject: (comint-next-prompt, comint-previous-prompt): Fix typos. X-Git-Tag: emacs-pretest-21.2.91~222 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4139e4c0e755ebfdfd8ca0b25cf3b8693db02512;p=emacs.git (comint-next-prompt, comint-previous-prompt): Fix typos. --- diff --git a/lisp/comint.el b/lisp/comint.el index 40b927e88a7..f28c675f089 100644 --- a/lisp/comint.el +++ b/lisp/comint.el @@ -2157,7 +2157,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 @@ -2194,7 +2194,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)))