Mercurial > emacs
changeset 104792:07bf8d62f7a5
(completion-initials-expand): Fix typo.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Wed, 02 Sep 2009 03:09:10 +0000 |
parents | dba547c05661 |
children | e5f506a6a59d |
files | lisp/ChangeLog lisp/minibuffer.el |
diffstat | 2 files changed, 9 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Wed Sep 02 03:06:50 2009 +0000 +++ b/lisp/ChangeLog Wed Sep 02 03:09:10 2009 +0000 @@ -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
--- a/lisp/minibuffer.el Wed Sep 02 03:06:50 2009 +0000 +++ b/lisp/minibuffer.el Wed Sep 02 03:09:10 2009 +0000 @@ -1771,7 +1771,7 @@ (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 "-")