diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2008-04-19 03:34:02 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2008-04-19 03:34:02 +0000 |
commit | af48580eee0cafaa761e95bf319f39ec610c8144 (patch) | |
tree | c5b6d8d20a4e1f1c9bda887361ea60d15d27a84c | |
parent | e8dab975990b1e7bcab9263d02c60d1fb51397ad (diff) | |
download | emacs-af48580eee0cafaa761e95bf319f39ec610c8144.tar.gz emacs-af48580eee0cafaa761e95bf319f39ec610c8144.tar.bz2 emacs-af48580eee0cafaa761e95bf319f39ec610c8144.zip |
(completion-table-with-predicate): Typo.
-rw-r--r-- | lisp/minibuffer.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/minibuffer.el b/lisp/minibuffer.el index 76c365c5c39..b0cda271128 100644 --- a/lisp/minibuffer.el +++ b/lisp/minibuffer.el @@ -156,7 +156,7 @@ Note: TABLE needs to be a proper completion table which obeys predicates." (cond ((and (not strict) (eq action 'lambda)) ;; Ignore pred1 since it doesn't really have to apply anyway. - (test-completion string tabel pred2)) + (test-completion string table pred2)) (t (or (complete-with-action action table string (if (null pred2) pred1 |