diff lisp/modes/list-mode.el @ 108:360340f9fd5f r20-1b6

Import from CVS: tag r20-1b6
author cvs
date Mon, 13 Aug 2007 09:18:39 +0200
parents 131b0175ea99
children 9b50b4588a93
line wrap: on
line diff
--- a/lisp/modes/list-mode.el	Mon Aug 13 09:17:27 2007 +0200
+++ b/lisp/modes/list-mode.el	Mon Aug 13 09:18:39 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")