comparison lisp/minibuf.el @ 863:42375619fa45

[xemacs-hg @ 2002-06-04 06:03:59 by andyp] merge 21.4 windows changes, minimally tested
author andyp
date Tue, 04 Jun 2002 06:05:53 +0000
parents 943eaba38521
children cb22c508fb00
comparison
equal deleted inserted replaced
862:278c743f1578 863:42375619fa45
759 759
760 (defun completing-read (prompt table 760 (defun completing-read (prompt table
761 &optional predicate require-match 761 &optional predicate require-match
762 initial-contents history default) 762 initial-contents history default)
763 "Read a string in the minibuffer, with completion. 763 "Read a string in the minibuffer, with completion.
764 Args: PROMPT, TABLE, PREDICATE, REQUIRE-MATCH, INITIAL-CONTENTS, HISTORY. 764
765 PROMPT is a string to prompt with; normally it ends in a colon and a space. 765 PROMPT is a string to prompt with; normally it ends in a colon and a space.
766 TABLE is an alist whose elements' cars are strings, or an obarray. 766 TABLE is an alist whose elements' cars are strings, or an obarray.
767 TABLE can also be a function to do the completion itself. 767 TABLE can also be a function which does the completion itself.
768 PREDICATE limits completion to a subset of TABLE. 768 PREDICATE limits completion to a subset of TABLE.
769 See `try-completion' and `all-completions' for more details 769 See `try-completion' and `all-completions' for more details
770 on completion, TABLE, and PREDICATE. 770 on completion, TABLE, and PREDICATE.
771 771
772 If REQUIRE-MATCH is non-nil, the user is not allowed to exit unless 772 If REQUIRE-MATCH is non-nil, the user is not allowed to exit unless