comparison src/minibuf.c @ 27697:409a708c27b3

(Ftry_completion, Fall_completions): Add a reference to `completion-regexp-list' in the docstring.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Mon, 14 Feb 2000 23:36:15 +0000
parents d9295615b99f
children 30eebaedce93
comparison
equal deleted inserted replaced
27696:87ca2bc3b05a 27697:409a708c27b3
1032 \n\ 1032 \n\
1033 If optional third argument PREDICATE is non-nil,\n\ 1033 If optional third argument PREDICATE is non-nil,\n\
1034 it is used to test each possible match.\n\ 1034 it is used to test each possible match.\n\
1035 The match is a candidate only if PREDICATE returns non-nil.\n\ 1035 The match is a candidate only if PREDICATE returns non-nil.\n\
1036 The argument given to PREDICATE is the alist element\n\ 1036 The argument given to PREDICATE is the alist element\n\
1037 or the symbol from the obarray.") 1037 or the symbol from the obarray.\n\
1038 Additionally to this predicate, `completion-regexp-list'\n\
1039 is used to further constrain the set of candidates.")
1038 (string, alist, predicate) 1040 (string, alist, predicate)
1039 Lisp_Object string, alist, predicate; 1041 Lisp_Object string, alist, predicate;
1040 { 1042 {
1041 Lisp_Object bestmatch, tail, elt, eltstring; 1043 Lisp_Object bestmatch, tail, elt, eltstring;
1042 /* Size in bytes of BESTMATCH. */ 1044 /* Size in bytes of BESTMATCH. */
1279 If optional third argument PREDICATE is non-nil,\n\ 1281 If optional third argument PREDICATE is non-nil,\n\
1280 it is used to test each possible match.\n\ 1282 it is used to test each possible match.\n\
1281 The match is a candidate only if PREDICATE returns non-nil.\n\ 1283 The match is a candidate only if PREDICATE returns non-nil.\n\
1282 The argument given to PREDICATE is the alist element\n\ 1284 The argument given to PREDICATE is the alist element\n\
1283 or the symbol from the obarray.\n\ 1285 or the symbol from the obarray.\n\
1286 Additionally to this predicate, `completion-regexp-list'\n\
1287 is used to further constrain the set of candidates.\n\
1284 \n\ 1288 \n\
1285 If the optional fourth argument HIDE-SPACES is non-nil,\n\ 1289 If the optional fourth argument HIDE-SPACES is non-nil,\n\
1286 strings in ALIST that start with a space\n\ 1290 strings in ALIST that start with a space\n\
1287 are ignored unless STRING itself starts with a space.") 1291 are ignored unless STRING itself starts with a space.")
1288 (string, alist, predicate, hide_spaces) 1292 (string, alist, predicate, hide_spaces)