diff options
| author | Stefan Monnier | 2009-10-26 03:39:15 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2009-10-26 03:39:15 +0000 |
| commit | 4fcc3d324ae3033ec990687ad0d753a8f2a4b868 (patch) | |
| tree | 95396c1f29c7aec33895efa8858261f50667ec39 /src | |
| parent | 2d0853070d1353348e6ef067b138d971cf52f341 (diff) | |
| download | emacs-4fcc3d324ae3033ec990687ad0d753a8f2a4b868.tar.gz emacs-4fcc3d324ae3033ec990687ad0d753a8f2a4b868.zip | |
(all-completions): Declare the 4th arg obsolete.
Diffstat (limited to 'src')
| -rw-r--r-- | src/minibuf.c | 6 |
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. | |||
| 1561 | Additionally to this predicate, `completion-regexp-list' | 1561 | Additionally to this predicate, `completion-regexp-list' |
| 1562 | is used to further constrain the set of candidates. | 1562 | is used to further constrain the set of candidates. |
| 1563 | 1563 | ||
| 1564 | If the optional fourth argument HIDE-SPACES is non-nil, | 1564 | An osbolete optional fourth argument HIDE-SPACES is still accepted for |
| 1565 | strings in COLLECTION that start with a space | 1565 | backward compatiblity. If non-nil, strings in COLLECTION that start |
| 1566 | are ignored unless STRING itself starts with a space. */) | 1566 | with 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 | { |