comparison src/minibuf.c @ 74006:1bd5746091de

(Fcompleting_read): Fix typo in docstring.
author Romain Francoise <romain@orebokech.com>
date Tue, 14 Nov 2006 19:25:40 +0000
parents 726825bcce52
children 6d7e4ace438f c71725faff1a dbe3f29e61d6
comparison
equal deleted inserted replaced
74005:544d201b0172 74006:1bd5746091de
1681 Lisp_Object Vminibuffer_completing_file_name; 1681 Lisp_Object Vminibuffer_completing_file_name;
1682 1682
1683 DEFUN ("completing-read", Fcompleting_read, Scompleting_read, 2, 8, 0, 1683 DEFUN ("completing-read", Fcompleting_read, Scompleting_read, 2, 8, 0,
1684 doc: /* Read a string in the minibuffer, with completion. 1684 doc: /* Read a string in the minibuffer, with completion.
1685 PROMPT is a string to prompt with; normally it ends in a colon and a space. 1685 PROMPT is a string to prompt with; normally it ends in a colon and a space.
1686 TABLE can be an list of strings, an alist, an obarray or a hash table. 1686 TABLE can be a list of strings, an alist, an obarray or a hash table.
1687 TABLE can also be a function to do the completion itself. 1687 TABLE can also be a function to do the completion itself.
1688 PREDICATE limits completion to a subset of TABLE. 1688 PREDICATE limits completion to a subset of TABLE.
1689 See `try-completion' and `all-completions' for more details 1689 See `try-completion' and `all-completions' for more details
1690 on completion, TABLE, and PREDICATE. 1690 on completion, TABLE, and PREDICATE.
1691 1691