From: Stefan Monnier Date: Mon, 14 Feb 2000 23:36:15 +0000 (+0000) Subject: (Ftry_completion, Fall_completions): Add a reference to X-Git-Tag: emacs-pretest-21.0.90~5019 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b9b84fd34dce0840095349b5ada09285039f8bff;p=emacs.git (Ftry_completion, Fall_completions): Add a reference to `completion-regexp-list' in the docstring. --- diff --git a/src/ChangeLog b/src/ChangeLog index 8ea781c54c1..bc8436677bb 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2000-02-14 Stefan Monnier + + * minibuf.c (Ftry_completion, Fall_completions): Add a reference to + `completion-regexp-list' in the docstring. + 2000-02-14 Dave Love * xfaces.c (tty_defined_color): Declare color_idx unsigned long. diff --git a/src/minibuf.c b/src/minibuf.c index 406c1961186..32bf540bdae 100644 --- a/src/minibuf.c +++ b/src/minibuf.c @@ -1034,7 +1034,9 @@ If optional third argument PREDICATE is non-nil,\n\ it is used to test each possible match.\n\ The match is a candidate only if PREDICATE returns non-nil.\n\ The argument given to PREDICATE is the alist element\n\ -or the symbol from the obarray.") +or the symbol from the obarray.\n\ +Additionally to this predicate, `completion-regexp-list'\n\ +is used to further constrain the set of candidates.") (string, alist, predicate) Lisp_Object string, alist, predicate; { @@ -1281,6 +1283,8 @@ it is used to test each possible match.\n\ The match is a candidate only if PREDICATE returns non-nil.\n\ The argument given to PREDICATE is the alist element\n\ or the symbol from the obarray.\n\ +Additionally to this predicate, `completion-regexp-list'\n\ +is used to further constrain the set of candidates.\n\ \n\ If the optional fourth argument HIDE-SPACES is non-nil,\n\ strings in ALIST that start with a space\n\