]> git.eshelyaron.com Git - emacs.git/commitdiff
(comint-next-prompt, comint-previous-prompt): Fix typos.
authorJuanma Barranquero <lekktu@gmail.com>
Tue, 18 Jun 2002 14:26:23 +0000 (14:26 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Tue, 18 Jun 2002 14:26:23 +0000 (14:26 +0000)
lisp/comint.el

index 40b927e88a740daea7e9e61318dd9bafe3b77ca8..f28c675f0896b7dfa052508c38be4db075a27bdc 100644 (file)
@@ -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)))
 \f