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