]> git.eshelyaron.com Git - emacs.git/commitdiff
(completion-initials-expand): Fix typo.
authorGlenn Morris <rgm@gnu.org>
Wed, 2 Sep 2009 03:09:10 +0000 (03:09 +0000)
committerGlenn Morris <rgm@gnu.org>
Wed, 2 Sep 2009 03:09:10 +0000 (03:09 +0000)
lisp/ChangeLog
lisp/minibuffer.el

index af14ece0cff3396621f4b478cc7103011cc56f1b..051f09442d579ec135fefb1fd2f38d4fe091f19e 100644 (file)
@@ -1,3 +1,11 @@
+2009-09-02  Glenn Morris  <rgm@gnu.org>
+
+       * minibuffer.el (completion-initials-expand): Fix typo.
+
+       * faces.el (modeline, modeline-inactive, modeline-highlight)
+       (modeline-buffer-id):
+       * info.el (info-menu-5): Mark these face aliases as obsolete.
+
 2009-09-01  Nick Roberts  <nickrob@snap.net.nz>
 
        * progmodes/gdb-mi.el (gdb-current-context-command): Move the
index 64cf19e8155ce9adb73d775336cdb74ce4cba187..90490973f80ccbdd059cbb8537b19dd653bb5c31 100644 (file)
@@ -1771,7 +1771,7 @@ filter out additional entries (because TABLE migth not obey PRED)."
 
 (defun completion-initials-expand (str table pred)
   (unless (or (zerop (length str))
-              (string-match completion-pcm--delim-wild-regex string))
+              (string-match completion-pcm--delim-wild-regex str))
     (let ((bounds (completion-boundaries str table pred "")))
       (if (zerop (car bounds))
           (mapconcat 'string str "-")