diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/minibuf.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/minibuf.c b/src/minibuf.c index d17e9238a1c..28f4a453ec7 100644 --- a/src/minibuf.c +++ b/src/minibuf.c | |||
| @@ -2877,10 +2877,10 @@ The value may alternatively be a function, which is given three arguments: | |||
| 2877 | STRING, the current buffer contents; | 2877 | STRING, the current buffer contents; |
| 2878 | PREDICATE, the predicate for filtering possible matches; | 2878 | PREDICATE, the predicate for filtering possible matches; |
| 2879 | CODE, which says what kind of things to do. | 2879 | CODE, which says what kind of things to do. |
| 2880 | CODE can be nil, t or `lambda'. | 2880 | CODE can be nil, t or `lambda': |
| 2881 | nil means to return the best completion of STRING, or nil if there is none. | 2881 | nil -- return the best completion of STRING, or nil if there is none. |
| 2882 | t means to return a list of all possible completions of STRING. | 2882 | t -- return a list of all possible completions of STRING. |
| 2883 | `lambda' means to return t if STRING is a valid completion as it stands. */); | 2883 | lambda -- return t if STRING is a valid completion as it stands. */); |
| 2884 | Vminibuffer_completion_table = Qnil; | 2884 | Vminibuffer_completion_table = Qnil; |
| 2885 | 2885 | ||
| 2886 | DEFVAR_LISP ("minibuffer-completion-predicate", &Vminibuffer_completion_predicate, | 2886 | DEFVAR_LISP ("minibuffer-completion-predicate", &Vminibuffer_completion_predicate, |