comparison lisp/minibuf.el @ 388:aabb7f5b1c81 r21-2-9

Import from CVS: tag r21-2-9
author cvs
date Mon, 13 Aug 2007 11:09:42 +0200
parents 8626e4521993
children 74fd4e045ea6
comparison
equal deleted inserted replaced
387:f892a9d0bb8d 388:aabb7f5b1c81
65 STRING, the current buffer contents; 65 STRING, the current buffer contents;
66 PREDICATE, the predicate for filtering possible matches; 66 PREDICATE, the predicate for filtering possible matches;
67 CODE, which says what kind of things to do. 67 CODE, which says what kind of things to do.
68 CODE can be nil, t or `lambda'. 68 CODE can be nil, t or `lambda'.
69 nil means to return the best completion of STRING, nil if there is none, 69 nil means to return the best completion of STRING, nil if there is none,
70 or t if it is was already a unique completion. 70 or t if it is already a unique completion.
71 t means to return a list of all possible completions of STRING. 71 t means to return a list of all possible completions of STRING.
72 `lambda' means to return t if STRING is a valid completion as it stands.") 72 `lambda' means to return t if STRING is a valid completion as it stands.")
73 73
74 (defvar minibuffer-completion-predicate nil 74 (defvar minibuffer-completion-predicate nil
75 "Within call to `completing-read', this holds the PREDICATE argument.") 75 "Within call to `completing-read', this holds the PREDICATE argument.")