# HG changeset patch # User Juanma Barranquero # Date 1024410967 0 # Node ID 5d6de4aa3f6176c380d0e839cf2e878c29dc989c # Parent 19b72b42b51409b80671dd9838218d00d2d821a5 (comint-next-prompt, comint-previous-prompt): Fix typos. diff -r 19b72b42b514 -r 5d6de4aa3f61 lisp/comint.el --- 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)))