diff lisp/ilisp/completer.el @ 30:ec9a17fef872 r19-15b98

Import from CVS: tag r19-15b98
author cvs
date Mon, 13 Aug 2007 08:52:29 +0200
parents b82b59fe008d
children 131b0175ea99
line wrap: on
line diff
--- a/lisp/ilisp/completer.el	Mon Aug 13 08:51:58 2007 +0200
+++ b/lisp/ilisp/completer.el	Mon Aug 13 08:52:29 2007 +0200
@@ -268,7 +268,7 @@
   "Return the best match of STRING in CHOICES with DELIMITERS between
 words and T if it is unique.  A match is unique if it is the only
 possibility or when USE-WORDS the only possibility with the same
-number of words.  The shortest string of multiple possiblities will be
+number of words.  The shortest string of multiple possibilities will be
 the best match."
   (or (if (null (cdr choices)) (cons (car choices) t))
       (let* ((regexp (concat "[^" delimiters "]*[" delimiters "]"))