From: Juanma Barranquero Date: Thu, 8 May 2008 03:37:39 +0000 (+0000) Subject: (completion-table-with-predicate): Don't use `iff' in docstring. X-Git-Tag: emacs-pretest-23.0.90~5732 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=cf43708e712ceffae3751c911031e34ea6d023c5;p=emacs.git (completion-table-with-predicate): Don't use `iff' in docstring. --- 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." (defun completion-table-with-predicate (table pred1 strict string pred2 action) "Make a completion table equivalent to TABLE but filtered through PRED1. -PRED1 is a function of one argument which returns non-nil iff the +PRED1 is a function of one argument which returns non-nil if and only if the argument is an element of TABLE which should be considered for completion. STRING, PRED2, and ACTION are the usual arguments to completion tables, as described in `try-completion', `all-completions', and `test-completion'.