aboutsummaryrefslogtreecommitdiffstats
path: root/src/minibuf.c
diff options
context:
space:
mode:
authorStefan Monnier <[email protected]>2009-10-26 03:39:15 +0000
committerStefan Monnier <[email protected]>2009-10-26 03:39:15 +0000
commit4fcc3d324ae3033ec990687ad0d753a8f2a4b868 (patch)
tree95396c1f29c7aec33895efa8858261f50667ec39 /src/minibuf.c
parent2d0853070d1353348e6ef067b138d971cf52f341 (diff)
(all-completions): Declare the 4th arg obsolete.
Diffstat (limited to 'src/minibuf.c')
-rw-r--r--src/minibuf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/minibuf.c b/src/minibuf.c
index fc876370a2..6a2d52ae6b 100644
--- a/src/minibuf.c
+++ b/src/minibuf.c
@@ -1561,9 +1561,9 @@ predicate is called with two arguments: the key and the value.
Additionally to this predicate, `completion-regexp-list'
is used to further constrain the set of candidates.
-If the optional fourth argument HIDE-SPACES is non-nil,
-strings in COLLECTION that start with a space
-are ignored unless STRING itself starts with a space. */)
+An osbolete optional fourth argument HIDE-SPACES is still accepted for
+backward compatiblity. If non-nil, strings in COLLECTION that start
+with a space are ignored unless STRING itself starts with a space. */)
(string, collection, predicate, hide_spaces)
Lisp_Object string, collection, predicate, hide_spaces;
{