diff options
| author | Juanma Barranquero | 2008-05-08 03:37:39 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2008-05-08 03:37:39 +0000 |
| commit | cf43708e712ceffae3751c911031e34ea6d023c5 (patch) | |
| tree | eff1313d49bd6bf16eb6c35f18a5afe38c54c74c | |
| parent | 398d17dabad996914c58309f9e008f8141539189 (diff) | |
| download | emacs-cf43708e712ceffae3751c911031e34ea6d023c5.tar.gz emacs-cf43708e712ceffae3751c911031e34ea6d023c5.zip | |
(completion-table-with-predicate): Don't use `iff' in docstring.
| -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 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. |
| 163 | PRED1 is a function of one argument which returns non-nil iff the | 163 | PRED1 is a function of one argument which returns non-nil if and only if the |
| 164 | argument is an element of TABLE which should be considered for completion. | 164 | argument is an element of TABLE which should be considered for completion. |
| 165 | STRING, PRED2, and ACTION are the usual arguments to completion tables, | 165 | STRING, PRED2, and ACTION are the usual arguments to completion tables, |
| 166 | as described in `try-completion', `all-completions', and `test-completion'. | 166 | as described in `try-completion', `all-completions', and `test-completion'. |