aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJuanma Barranquero2006-12-10 23:22:25 +0000
committerJuanma Barranquero2006-12-10 23:22:25 +0000
commitb2ef97149f26633aaaefc2106c9c75719957eb3a (patch)
tree2a1e234f5bb0c6bf21587ebe7b6ef476c4dfe5d0 /src
parent1961ac0f3f56e910e3a193471b456bf9ced71bea (diff)
downloademacs-b2ef97149f26633aaaefc2106c9c75719957eb3a.tar.gz
emacs-b2ef97149f26633aaaefc2106c9c75719957eb3a.zip
(syms_of_minibuf) <minibuffer-completion-table>: Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/minibuf.c8
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.
2880CODE can be nil, t or `lambda'. 2880CODE can be nil, t or `lambda':
2881nil 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.
2882t 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,