diff lisp/modes/list-mode.el @ 30:ec9a17fef872 r19-15b98

Import from CVS: tag r19-15b98
author cvs
date Mon, 13 Aug 2007 08:52:29 +0200
parents 0293115a14e9
children 56c54cf7c5b6
line wrap: on
line diff
--- a/lisp/modes/list-mode.el	Mon Aug 13 08:51:58 2007 +0200
+++ b/lisp/modes/list-mode.el	Mon Aug 13 08:52:29 2007 +0200
@@ -113,7 +113,7 @@
 
 (defun next-list-mode-item (n)
   "Move to the next item in list-mode.
-WIth prefix argument N, move N items (negative N means move backward)."
+With prefix argument N, move N items (negative N means move backward)."
   (interactive "p")
   (while (and (> n 0) (not (eobp)))
     (let ((prop (get-char-property (point) 'list-mode-item))
@@ -190,7 +190,7 @@
 
 
 (defvar completion-highlight-first-word-only nil
-  "*Completion will only hightlight the first blank delimited word if t.
+  "*Completion will only highlight the first blank delimited word if t.
 If the variable in not t or nil, the string is taken as a regexp to match for end
 of highlight")