diff options
| author | Glenn Morris | 2009-09-02 03:09:10 +0000 |
|---|---|---|
| committer | Glenn Morris | 2009-09-02 03:09:10 +0000 |
| commit | 6e2ca8951544bcca9a5f098f08f4c3d7bf2a2ee6 (patch) | |
| tree | f4eff23a36fc56d2a5dce5e87b55e78bc4d98afa | |
| parent | c33d614d6537e0808661ebf7139c4430cf2d2852 (diff) | |
| download | emacs-6e2ca8951544bcca9a5f098f08f4c3d7bf2a2ee6.tar.gz emacs-6e2ca8951544bcca9a5f098f08f4c3d7bf2a2ee6.zip | |
(completion-initials-expand): Fix typo.
| -rw-r--r-- | lisp/ChangeLog | 8 | ||||
| -rw-r--r-- | lisp/minibuffer.el | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index af14ece0cff..051f09442d5 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2009-09-02 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * minibuffer.el (completion-initials-expand): Fix typo. | ||
| 4 | |||
| 5 | * faces.el (modeline, modeline-inactive, modeline-highlight) | ||
| 6 | (modeline-buffer-id): | ||
| 7 | * info.el (info-menu-5): Mark these face aliases as obsolete. | ||
| 8 | |||
| 1 | 2009-09-01 Nick Roberts <nickrob@snap.net.nz> | 9 | 2009-09-01 Nick Roberts <nickrob@snap.net.nz> |
| 2 | 10 | ||
| 3 | * progmodes/gdb-mi.el (gdb-current-context-command): Move the | 11 | * progmodes/gdb-mi.el (gdb-current-context-command): Move the |
diff --git a/lisp/minibuffer.el b/lisp/minibuffer.el index 64cf19e8155..90490973f80 100644 --- a/lisp/minibuffer.el +++ b/lisp/minibuffer.el | |||
| @@ -1771,7 +1771,7 @@ filter out additional entries (because TABLE migth not obey PRED)." | |||
| 1771 | 1771 | ||
| 1772 | (defun completion-initials-expand (str table pred) | 1772 | (defun completion-initials-expand (str table pred) |
| 1773 | (unless (or (zerop (length str)) | 1773 | (unless (or (zerop (length str)) |
| 1774 | (string-match completion-pcm--delim-wild-regex string)) | 1774 | (string-match completion-pcm--delim-wild-regex str)) |
| 1775 | (let ((bounds (completion-boundaries str table pred ""))) | 1775 | (let ((bounds (completion-boundaries str table pred ""))) |
| 1776 | (if (zerop (car bounds)) | 1776 | (if (zerop (car bounds)) |
| 1777 | (mapconcat 'string str "-") | 1777 | (mapconcat 'string str "-") |