aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorJuanma Barranquero2008-05-08 03:37:39 +0000
committerJuanma Barranquero2008-05-08 03:37:39 +0000
commitcf43708e712ceffae3751c911031e34ea6d023c5 (patch)
treeeff1313d49bd6bf16eb6c35f18a5afe38c54c74c /lisp
parent398d17dabad996914c58309f9e008f8141539189 (diff)
downloademacs-cf43708e712ceffae3751c911031e34ea6d023c5.tar.gz
emacs-cf43708e712ceffae3751c911031e34ea6d023c5.zip
(completion-table-with-predicate): Don't use `iff' in docstring.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/minibuffer.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/minibuffer.el b/lisp/minibuffer.el
index 79339e0958d..de69f5337e7 100644
--- a/lisp/minibuffer.el
+++ b/lisp/minibuffer.el
@@ -160,7 +160,7 @@ You should give VAR a non-nil `risky-local-variable' property."
160 160
161(defun completion-table-with-predicate (table pred1 strict string pred2 action) 161(defun completion-table-with-predicate (table pred1 strict string pred2 action)
162 "Make a completion table equivalent to TABLE but filtered through PRED1. 162 "Make a completion table equivalent to TABLE but filtered through PRED1.
163PRED1 is a function of one argument which returns non-nil iff the 163PRED1 is a function of one argument which returns non-nil if and only if the
164argument is an element of TABLE which should be considered for completion. 164argument is an element of TABLE which should be considered for completion.
165STRING, PRED2, and ACTION are the usual arguments to completion tables, 165STRING, PRED2, and ACTION are the usual arguments to completion tables,
166as described in `try-completion', `all-completions', and `test-completion'. 166as described in `try-completion', `all-completions', and `test-completion'.