diff options
| author | Bastien Guerry | 2012-09-11 19:43:21 +0200 |
|---|---|---|
| committer | Bastien Guerry | 2012-09-11 19:43:21 +0200 |
| commit | 9011078f9df40965a6ef3cade5bba3e5d0eb730d (patch) | |
| tree | 6c9c2e189f3709478df4006cab913718abf5d7fd | |
| parent | c4c9756b17a36a45ebdc3e80db2ad1f0211d0cdc (diff) | |
| download | emacs-9011078f9df40965a6ef3cade5bba3e5d0eb730d.tar.gz emacs-9011078f9df40965a6ef3cade5bba3e5d0eb730d.zip | |
Fix 2012-09-11T14:06:33Z!bastien1@free.fr.
| -rw-r--r-- | lisp/minibuffer.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/minibuffer.el b/lisp/minibuffer.el index 669ea58656d..27c53744d54 100644 --- a/lisp/minibuffer.el +++ b/lisp/minibuffer.el | |||
| @@ -213,8 +213,8 @@ case sensitive instead." | |||
| 213 | (defun completion-table-subvert (table s1 s2) | 213 | (defun completion-table-subvert (table s1 s2) |
| 214 | "Return a completion table from TABLE with S1 replaced by S2. | 214 | "Return a completion table from TABLE with S1 replaced by S2. |
| 215 | The result is a completion table which completes strings of the | 215 | The result is a completion table which completes strings of the |
| 216 | form (concat S2 S) in the same way as TABLE completes strings of | 216 | form (concat S1 S) in the same way as TABLE completes strings of |
| 217 | the form (concat S1 S)." | 217 | the form (concat S2 S)." |
| 218 | (lambda (string pred action) | 218 | (lambda (string pred action) |
| 219 | (let* ((str (if (eq t (compare-strings string 0 (length s1) s1 nil nil | 219 | (let* ((str (if (eq t (compare-strings string 0 (length s1) s1 nil nil |
| 220 | completion-ignore-case)) | 220 | completion-ignore-case)) |