comparison src/minibuf.c @ 105773:e650013c56be

* minibuf.c (Fall_completions): Fix typos in docstring.
author Juanma Barranquero <lekktu@gmail.com>
date Mon, 26 Oct 2009 16:20:44 +0000
parents fd7169a87c28
children 21bdda3ded62
comparison
equal deleted inserted replaced
105772:fd7169a87c28 105773:e650013c56be
1559 or the symbol from the obarray. If COLLECTION is a hash-table, 1559 or the symbol from the obarray. If COLLECTION is a hash-table,
1560 predicate is called with two arguments: the key and the value. 1560 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 An osbolete optional fourth argument HIDE-SPACES is still accepted for 1564 An obsolete optional fourth argument HIDE-SPACES is still accepted for
1565 backward compatibility. If non-nil, strings in COLLECTION that start 1565 backward compatibility. If non-nil, strings in COLLECTION that start
1566 with a space 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 {