(menu-bar-edit-menu): Add listp around pending-undo-list to disable
[emacs.git] / lispref / minibuf.texi
bloba920defb5be1dde31371c4e8bad8b26766fe5b03
1 @c -*-texinfo-*-
2 @c This is part of the GNU Emacs Lisp Reference Manual.
3 @c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999, 2001, 2002,
4 @c   2003, 2004, 2005 Free Software Foundation, Inc.
5 @c See the file elisp.texi for copying conditions.
6 @setfilename ../info/minibuf
7 @node Minibuffers, Command Loop, Read and Print, Top
8 @chapter Minibuffers
9 @cindex arguments, reading
10 @cindex complex arguments
11 @cindex minibuffer
13   A @dfn{minibuffer} is a special buffer that Emacs commands use to
14 read arguments more complicated than the single numeric prefix
15 argument.  These arguments include file names, buffer names, and
16 command names (as in @kbd{M-x}).  The minibuffer is displayed on the
17 bottom line of the frame, in the same place as the echo area
18 (@pxref{The Echo Area}), but only while it is in use for reading an
19 argument.
21 @menu
22 * Intro to Minibuffers::      Basic information about minibuffers.
23 * Text from Minibuffer::      How to read a straight text string.
24 * Object from Minibuffer::    How to read a Lisp object or expression.
25 * Minibuffer History::        Recording previous minibuffer inputs
26                                 so the user can reuse them.
27 * Initial Input::             Specifying initial contents for the minibuffer.
28 * Completion::                How to invoke and customize completion.
29 * Yes-or-No Queries::         Asking a question with a simple answer.
30 * Multiple Queries::          Asking a series of similar questions.
31 * Reading a Password::        Reading a password from the terminal.
32 * Minibuffer Commands::       Commands used as key bindings in minibuffers.
33 * Minibuffer Contents::       How such commands access the minibuffer text.
34 * Minibuffer Windows::        Operating on the special minibuffer windows.
35 * Recursive Mini::            Whether recursive entry to minibuffer is allowed.
36 * Minibuffer Misc::           Various customization hooks and variables.
37 @end menu
39 @node Intro to Minibuffers
40 @section Introduction to Minibuffers
42   In most ways, a minibuffer is a normal Emacs buffer.  Most operations
43 @emph{within} a buffer, such as editing commands, work normally in a
44 minibuffer.  However, many operations for managing buffers do not apply
45 to minibuffers.  The name of a minibuffer always has the form @w{@samp{
46 *Minibuf-@var{number}*}}, and it cannot be changed.  Minibuffers are
47 displayed only in special windows used only for minibuffers; these
48 windows always appear at the bottom of a frame.  (Sometimes frames have
49 no minibuffer window, and sometimes a special kind of frame contains
50 nothing but a minibuffer window; see @ref{Minibuffers and Frames}.)
52   The text in the minibuffer always starts with the @dfn{prompt string},
53 the text that was specified by the program that is using the minibuffer
54 to tell the user what sort of input to type.  This text is marked
55 read-only so you won't accidentally delete or change it.  It is also
56 marked as a field (@pxref{Fields}), so that certain motion functions,
57 including @code{beginning-of-line}, @code{forward-word},
58 @code{forward-sentence}, and @code{forward-paragraph}, stop at the
59 boundary between the prompt and the actual text.  (In older Emacs
60 versions, the prompt was displayed using a special mechanism and was not
61 part of the buffer contents.)
63   The minibuffer's window is normally a single line; it grows
64 automatically if necessary if the contents require more space.  You can
65 explicitly resize it temporarily with the window sizing commands; it
66 reverts to its normal size when the minibuffer is exited.  You can
67 resize it permanently by using the window sizing commands in the frame's
68 other window, when the minibuffer is not active.  If the frame contains
69 just a minibuffer, you can change the minibuffer's size by changing the
70 frame's size.
72   Use of the minibuffer reads input events, and that alters the values
73 of variables such as @code{this-command} and @code{last-command}
74 (@pxref{Command Loop Info}).  Your program should bind them around the
75 code that uses the minibuffer, if you do not want that to change them.
77   If a command uses a minibuffer while there is an active minibuffer,
78 this is called a @dfn{recursive minibuffer}.  The first minibuffer is
79 named @w{@samp{ *Minibuf-0*}}.  Recursive minibuffers are named by
80 incrementing the number at the end of the name.  (The names begin with a
81 space so that they won't show up in normal buffer lists.)  Of several
82 recursive minibuffers, the innermost (or most recently entered) is the
83 active minibuffer.  We usually call this ``the'' minibuffer.  You can
84 permit or forbid recursive minibuffers by setting the variable
85 @code{enable-recursive-minibuffers} or by putting properties of that
86 name on command symbols (@pxref{Recursive Mini}).
88   Like other buffers, a minibuffer uses a local keymap
89 (@pxref{Keymaps}) to specify special key bindings.  The function that
90 invokes the minibuffer also sets up its local map according to the job
91 to be done.  @xref{Text from Minibuffer}, for the non-completion
92 minibuffer local maps.  @xref{Completion Commands}, for the minibuffer
93 local maps for completion.
95   When Emacs is running in batch mode, any request to read from the
96 minibuffer actually reads a line from the standard input descriptor that
97 was supplied when Emacs was started.
99 @node Text from Minibuffer
100 @section Reading Text Strings with the Minibuffer
102   Most often, the minibuffer is used to read text as a string.  It can
103 also be used to read a Lisp object in textual form.  The most basic
104 primitive for minibuffer input is @code{read-from-minibuffer}; it can do
105 either one.  There are also specialized commands for reading
106 commands, variables, file names, etc. (@pxref{Completion}).
108   In most cases, you should not call minibuffer input functions in the
109 middle of a Lisp function.  Instead, do all minibuffer input as part of
110 reading the arguments for a command, in the @code{interactive}
111 specification.  @xref{Defining Commands}.
113 @defun read-from-minibuffer prompt-string &optional initial-contents keymap read hist default inherit-input-method keep-all
114 This function is the most general way to get input through the
115 minibuffer.  By default, it accepts arbitrary text and returns it as a
116 string; however, if @var{read} is non-@code{nil}, then it uses
117 @code{read} to convert the text into a Lisp object (@pxref{Input
118 Functions}).
120 The first thing this function does is to activate a minibuffer and
121 display it with @var{prompt-string} as the prompt.  This value must be a
122 string.  Then the user can edit text in the minibuffer.
124 When the user types a command to exit the minibuffer,
125 @code{read-from-minibuffer} constructs the return value from the text in
126 the minibuffer.  Normally it returns a string containing that text.
127 However, if @var{read} is non-@code{nil}, @code{read-from-minibuffer}
128 reads the text and returns the resulting Lisp object, unevaluated.
129 (@xref{Input Functions}, for information about reading.)
131 The argument @var{default} specifies a default value to make available
132 through the history commands.  It should be a string, or @code{nil}.
133 If non-@code{nil}, the user can access it using
134 @code{next-history-element}, usually bound in the minibuffer to
135 @kbd{M-n}.  If @var{read} is non-@code{nil}, then @var{default} is
136 also used as the input to @code{read}, if the user enters empty input.
137 (If @var{read} is non-@code{nil} and @var{default} is @code{nil}, empty
138 input results in an @code{end-of-file} error.)  However, in the usual
139 case (where @var{read} is @code{nil}), @code{read-from-minibuffer}
140 ignores @var{default} when the user enters empty input and returns an
141 empty string, @code{""}.  In this respect, it is different from all
142 the other minibuffer input functions in this chapter.
144 If @var{keymap} is non-@code{nil}, that keymap is the local keymap to
145 use in the minibuffer.  If @var{keymap} is omitted or @code{nil}, the
146 value of @code{minibuffer-local-map} is used as the keymap.  Specifying
147 a keymap is the most important way to customize the minibuffer for
148 various applications such as completion.
150 The argument @var{hist} specifies which history list variable to use
151 for saving the input and for history commands used in the minibuffer.
152 It defaults to @code{minibuffer-history}.  @xref{Minibuffer History}.
154 If the variable @code{minibuffer-allow-text-properties} is
155 non-@code{nil}, then the string which is returned includes whatever text
156 properties were present in the minibuffer.  Otherwise all the text
157 properties are stripped when the value is returned.
159 If the argument @var{inherit-input-method} is non-@code{nil}, then the
160 minibuffer inherits the current input method (@pxref{Input Methods}) and
161 the setting of @code{enable-multibyte-characters} (@pxref{Text
162 Representations}) from whichever buffer was current before entering the
163 minibuffer.
165 If @var{keep-all} is non-@code{nil}, even empty and duplicate inputs
166 are added to the history list.
168 Use of @var{initial-contents} is mostly deprecated; we recommend using
169 a non-@code{nil} value only in conjunction with specifying a cons cell
170 for @var{hist}.  @xref{Initial Input}.
171 @end defun
173 @defun read-string prompt &optional initial history default inherit-input-method
174 This function reads a string from the minibuffer and returns it.  The
175 arguments @var{prompt}, @var{initial}, @var{history} and
176 @var{inherit-input-method} are used as in @code{read-from-minibuffer}.
177 The keymap used is @code{minibuffer-local-map}.
179 The optional argument @var{default} is used as in
180 @code{read-from-minibuffer}, except that, if non-@code{nil}, it also
181 specifies a default value to return if the user enters null input.  As
182 in @code{read-from-minibuffer} it should be a string, or @code{nil},
183 which is equivalent to an empty string.
185 This function is a simplified interface to the
186 @code{read-from-minibuffer} function:
188 @smallexample
189 @group
190 (read-string @var{prompt} @var{initial} @var{history} @var{default} @var{inherit})
191 @equiv{}
192 (let ((value
193        (read-from-minibuffer @var{prompt} @var{initial} nil nil
194                              @var{history} @var{default} @var{inherit})))
195   (if (and (equal value "") @var{default})
196       @var{default}
197     value))
198 @end group
199 @end smallexample
200 @end defun
202 @defvar minibuffer-allow-text-properties
203 If this variable is @code{nil}, then @code{read-from-minibuffer} strips
204 all text properties from the minibuffer input before returning it.
205 This variable also affects @code{read-string}.  However,
206 @code{read-no-blanks-input} (see below), as well as
207 @code{read-minibuffer} and related functions (@pxref{Object from
208 Minibuffer,, Reading Lisp Objects With the Minibuffer}), and all
209 functions that do minibuffer input with completion, discard text
210 properties unconditionally, regardless of the value of this variable.
211 @end defvar
213 @defvar minibuffer-local-map
214 @anchor{Definition of minibuffer-local-map}
215 This is the default local keymap for reading from the minibuffer.  By
216 default, it makes the following bindings:
218 @table @asis
219 @item @kbd{C-j}
220 @code{exit-minibuffer}
222 @item @key{RET}
223 @code{exit-minibuffer}
225 @item @kbd{C-g}
226 @code{abort-recursive-edit}
228 @item @kbd{M-n}
229 @itemx @key{DOWN}
230 @code{next-history-element}
232 @item @kbd{M-p}
233 @itemx @key{UP}
234 @code{previous-history-element}
236 @item @kbd{M-s}
237 @code{next-matching-history-element}
239 @item @kbd{M-r}
240 @code{previous-matching-history-element}
241 @end table
242 @end defvar
244 @c In version 18, initial is required
245 @c Emacs 19 feature
246 @defun read-no-blanks-input prompt &optional initial inherit-input-method
247 This function reads a string from the minibuffer, but does not allow
248 whitespace characters as part of the input: instead, those characters
249 terminate the input.  The arguments @var{prompt}, @var{initial}, and
250 @var{inherit-input-method} are used as in @code{read-from-minibuffer}.
252 This is a simplified interface to the @code{read-from-minibuffer}
253 function, and passes the value of the @code{minibuffer-local-ns-map}
254 keymap as the @var{keymap} argument for that function.  Since the keymap
255 @code{minibuffer-local-ns-map} does not rebind @kbd{C-q}, it @emph{is}
256 possible to put a space into the string, by quoting it.
258 This function discards text properties, regardless of the value of
259 @code{minibuffer-allow-text-properties}.
261 @smallexample
262 @group
263 (read-no-blanks-input @var{prompt} @var{initial})
264 @equiv{}
265 (let (minibuffer-allow-text-properties)
266   (read-from-minibuffer @var{prompt} @var{initial} minibuffer-local-ns-map))
267 @end group
268 @end smallexample
269 @end defun
271 @defvar minibuffer-local-ns-map
272 This built-in variable is the keymap used as the minibuffer local keymap
273 in the function @code{read-no-blanks-input}.  By default, it makes the
274 following bindings, in addition to those of @code{minibuffer-local-map}:
276 @table @asis
277 @item @key{SPC}
278 @cindex @key{SPC} in minibuffer
279 @code{exit-minibuffer}
281 @item @key{TAB}
282 @cindex @key{TAB} in minibuffer
283 @code{exit-minibuffer}
285 @item @kbd{?}
286 @cindex @kbd{?} in minibuffer
287 @code{self-insert-and-exit}
288 @end table
289 @end defvar
291 @node Object from Minibuffer
292 @section Reading Lisp Objects with the Minibuffer
294   This section describes functions for reading Lisp objects with the
295 minibuffer.
297 @defun read-minibuffer prompt &optional initial
298 This function reads a Lisp object using the minibuffer, and returns it
299 without evaluating it.  The arguments @var{prompt} and @var{initial} are
300 used as in @code{read-from-minibuffer}.
302 This is a simplified interface to the
303 @code{read-from-minibuffer} function:
305 @smallexample
306 @group
307 (read-minibuffer @var{prompt} @var{initial})
308 @equiv{}
309 (let (minibuffer-allow-text-properties)
310   (read-from-minibuffer @var{prompt} @var{initial} nil t))
311 @end group
312 @end smallexample
314 Here is an example in which we supply the string @code{"(testing)"} as
315 initial input:
317 @smallexample
318 @group
319 (read-minibuffer
320  "Enter an expression: " (format "%s" '(testing)))
322 ;; @r{Here is how the minibuffer is displayed:}
323 @end group
325 @group
326 ---------- Buffer: Minibuffer ----------
327 Enter an expression: (testing)@point{}
328 ---------- Buffer: Minibuffer ----------
329 @end group
330 @end smallexample
332 @noindent
333 The user can type @key{RET} immediately to use the initial input as a
334 default, or can edit the input.
335 @end defun
337 @defun eval-minibuffer prompt &optional initial
338 This function reads a Lisp expression using the minibuffer, evaluates
339 it, then returns the result.  The arguments @var{prompt} and
340 @var{initial} are used as in @code{read-from-minibuffer}.
342 This function simply evaluates the result of a call to
343 @code{read-minibuffer}:
345 @smallexample
346 @group
347 (eval-minibuffer @var{prompt} @var{initial})
348 @equiv{}
349 (eval (read-minibuffer @var{prompt} @var{initial}))
350 @end group
351 @end smallexample
352 @end defun
354 @defun edit-and-eval-command prompt form
355 This function reads a Lisp expression in the minibuffer, and then
356 evaluates it.  The difference between this command and
357 @code{eval-minibuffer} is that here the initial @var{form} is not
358 optional and it is treated as a Lisp object to be converted to printed
359 representation rather than as a string of text.  It is printed with
360 @code{prin1}, so if it is a string, double-quote characters (@samp{"})
361 appear in the initial text.  @xref{Output Functions}.
363 The first thing @code{edit-and-eval-command} does is to activate the
364 minibuffer with @var{prompt} as the prompt.  Then it inserts the printed
365 representation of @var{form} in the minibuffer, and lets the user edit it.
366 When the user exits the minibuffer, the edited text is read with
367 @code{read} and then evaluated.  The resulting value becomes the value
368 of @code{edit-and-eval-command}.
370 In the following example, we offer the user an expression with initial
371 text which is a valid form already:
373 @smallexample
374 @group
375 (edit-and-eval-command "Please edit: " '(forward-word 1))
377 ;; @r{After evaluation of the preceding expression,}
378 ;;   @r{the following appears in the minibuffer:}
379 @end group
381 @group
382 ---------- Buffer: Minibuffer ----------
383 Please edit: (forward-word 1)@point{}
384 ---------- Buffer: Minibuffer ----------
385 @end group
386 @end smallexample
388 @noindent
389 Typing @key{RET} right away would exit the minibuffer and evaluate the
390 expression, thus moving point forward one word.
391 @code{edit-and-eval-command} returns @code{nil} in this example.
392 @end defun
394 @node Minibuffer History
395 @section Minibuffer History
396 @cindex minibuffer history
397 @cindex history list
399   A @dfn{minibuffer history list} records previous minibuffer inputs so
400 the user can reuse them conveniently.  A history list is actually a
401 symbol, not a list; it is a variable whose value is a list of strings
402 (previous inputs), most recent first.
404   There are many separate history lists, used for different kinds of
405 inputs.  It's the Lisp programmer's job to specify the right history
406 list for each use of the minibuffer.
408   You specify the history list with the optional @var{hist} argument
409 to either @code{read-from-minibuffer} or @code{completing-read}.  Here
410 are the possible values for it:
412 @table @asis
413 @item @var{variable}
414 Use @var{variable} (a symbol) as the history list.
416 @item (@var{variable} . @var{startpos})
417 Use @var{variable} (a symbol) as the history list, and assume that the
418 initial history position is @var{startpos} (a nonnegative integer).
420 Specifying 0 for @var{startpos} is equivalent to just specifying the
421 symbol @var{variable}.  @code{previous-history-element} will display
422 the most recent element of the history list in the minibuffer.  If you
423 specify a positive @var{startpos}, the minibuffer history functions
424 behave as if @code{(elt @var{variable} (1- @var{STARTPOS}))} were the
425 history element currently shown in the minibuffer.
427 For consistency, you should also specify that element of the history
428 as the initial minibuffer contents, using the @var{initial} argument
429 to the minibuffer input function (@pxref{Initial Input}).
430 @end table
432   If you don't specify @var{hist}, then the default history list
433 @code{minibuffer-history} is used.  For other standard history lists,
434 see below.  You can also create your own history list variable; just
435 initialize it to @code{nil} before the first use.
437   Both @code{read-from-minibuffer} and @code{completing-read} add new
438 elements to the history list automatically, and provide commands to
439 allow the user to reuse items on the list.  The only thing your program
440 needs to do to use a history list is to initialize it and to pass its
441 name to the input functions when you wish.  But it is safe to modify the
442 list by hand when the minibuffer input functions are not using it.
444   Emacs functions that add a new element to a history list can also
445 delete old elements if the list gets too long.  The variable
446 @code{history-length} specifies the maximum length for most history
447 lists.  To specify a different maximum length for a particular history
448 list, put the length in the @code{history-length} property of the
449 history list symbol.  The variable @code{history-delete-duplicates}
450 specifies whether to delete duplicates in history.
452 @defvar history-length
453 The value of this variable specifies the maximum length for all
454 history lists that don't specify their own maximum lengths.  If the
455 value is @code{t}, that means there no maximum (don't delete old
456 elements).
457 @end defvar
459 @defvar history-delete-duplicates
460 If the value of this variable is @code{t}, that means when adding a
461 new history element, all previous identical elements are deleted.
462 @end defvar
464   Here are some of the standard minibuffer history list variables:
466 @defvar minibuffer-history
467 The default history list for minibuffer history input.
468 @end defvar
470 @defvar query-replace-history
471 A history list for arguments to @code{query-replace} (and similar
472 arguments to other commands).
473 @end defvar
475 @defvar file-name-history
476 A history list for file-name arguments.
477 @end defvar
479 @defvar buffer-name-history
480 A history list for buffer-name arguments.
481 @end defvar
483 @defvar regexp-history
484 A history list for regular expression arguments.
485 @end defvar
487 @defvar extended-command-history
488 A history list for arguments that are names of extended commands.
489 @end defvar
491 @defvar shell-command-history
492 A history list for arguments that are shell commands.
493 @end defvar
495 @defvar read-expression-history
496 A history list for arguments that are Lisp expressions to evaluate.
497 @end defvar
499 @node Initial Input
500 @section Initial Input
502 Several of the functions for minibuffer input have an argument called
503 @var{initial} or @var{initial-contents}.  This is a mostly-deprecated
504 feature for specifiying that the minibuffer should start out with
505 certain text, instead of empty as usual.
507 If @var{initial} is a string, the minibuffer starts out containing the
508 text of the string, with point at the end, when the user starts to
509 edit the text.  If the user simply types @key{RET} to exit the
510 minibuffer, it will use the initial input string to determine the
511 value to return.
513 @strong{We discourage use of a non-@code{nil} value for
514 @var{initial}}, because initial input is an intrusive interface.
515 History lists and default values provide a much more convenient method
516 to offer useful default inputs to the user.
518 There is just one situation where you should specify a string for an
519 @var{initial} argument.  This is when you specify a cons cell for the
520 @var{hist} or @var{history} argument.  @xref{Minibuffer History}.
522 @var{initial} can also be a cons cell of the form @code{(@var{string}
523 . @var{position})}.  This means to insert @var{string} in the
524 minibuffer but put point at @var{position} within the string's text.
526 As a historical accident, @var{position} was implemented
527 inconsistently in different functions.  In @code{completing-read},
528 @var{position}'s value is interpreted as origin-zero; that is, a value
529 of 0 means the beginning of the string, 1 means after the first
530 character, etc.  In @code{read-minibuffer}, and the other
531 non-completion minibuffer input functions that support this argument,
532 1 means the beginning of the string 2 means after the first character,
533 etc.
535 Use of a cons cell as the value for @var{initial} arguments is
536 deprecated in user code.
538 @node Completion
539 @section Completion
540 @cindex completion
542   @dfn{Completion} is a feature that fills in the rest of a name
543 starting from an abbreviation for it.  Completion works by comparing the
544 user's input against a list of valid names and determining how much of
545 the name is determined uniquely by what the user has typed.  For
546 example, when you type @kbd{C-x b} (@code{switch-to-buffer}) and then
547 type the first few letters of the name of the buffer to which you wish
548 to switch, and then type @key{TAB} (@code{minibuffer-complete}), Emacs
549 extends the name as far as it can.
551   Standard Emacs commands offer completion for names of symbols, files,
552 buffers, and processes; with the functions in this section, you can
553 implement completion for other kinds of names.
555   The @code{try-completion} function is the basic primitive for
556 completion: it returns the longest determined completion of a given
557 initial string, with a given set of strings to match against.
559   The function @code{completing-read} provides a higher-level interface
560 for completion.  A call to @code{completing-read} specifies how to
561 determine the list of valid names.  The function then activates the
562 minibuffer with a local keymap that binds a few keys to commands useful
563 for completion.  Other functions provide convenient simple interfaces
564 for reading certain kinds of names with completion.
566 @menu
567 * Basic Completion::       Low-level functions for completing strings.
568                              (These are too low level to use the minibuffer.)
569 * Minibuffer Completion::  Invoking the minibuffer with completion.
570 * Completion Commands::    Minibuffer commands that do completion.
571 * High-Level Completion::  Convenient special cases of completion
572                              (reading buffer name, file name, etc.)
573 * Reading File Names::     Using completion to read file names.
574 * Programmed Completion::  Writing your own completion-function.
575 @end menu
577 @node Basic Completion
578 @subsection Basic Completion Functions
580   The completion functions @code{try-completion},
581 @code{all-completions} and @code{test-completion} have nothing in
582 themselves to do with minibuffers.  We describe them in this chapter
583 so as to keep them near the higher-level completion features that do
584 use the minibuffer.
586 @defun try-completion string collection &optional predicate
587 This function returns the longest common substring of all possible
588 completions of @var{string} in @var{collection}.  The value of
589 @var{collection} must be a list of strings or symbols, an alist, an
590 obarray, a hash table, or a function that implements a virtual set of
591 strings (see below).
593 Completion compares @var{string} against each of the permissible
594 completions specified by @var{collection}; if the beginning of the
595 permissible completion equals @var{string}, it matches.  If no permissible
596 completions match, @code{try-completion} returns @code{nil}.  If only
597 one permissible completion matches, and the match is exact, then
598 @code{try-completion} returns @code{t}.  Otherwise, the value is the
599 longest initial sequence common to all the permissible completions that
600 match.
602 If @var{collection} is an alist (@pxref{Association Lists}), the
603 permissible completions are the elements of the alist that are either
604 strings, symbols, or conses whose @sc{car} is a string or symbol.
605 Symbols are converted to strings using @code{symbol-name}.
606 Other elements of the alist are ignored. (Remember that in Emacs Lisp,
607 the elements of alists do not @emph{have} to be conses.)  As all
608 elements of the alist can be strings, this case actually includes
609 lists of strings or symbols, even though we usually do not think of
610 such lists as alists.
612 @cindex obarray in completion
613 If @var{collection} is an obarray (@pxref{Creating Symbols}), the names
614 of all symbols in the obarray form the set of permissible completions.  The
615 global variable @code{obarray} holds an obarray containing the names of
616 all interned Lisp symbols.
618 Note that the only valid way to make a new obarray is to create it
619 empty and then add symbols to it one by one using @code{intern}.
620 Also, you cannot intern a given symbol in more than one obarray.
622 If @var{collection} is a hash table, then the keys that are strings
623 are the possible completions.  Other keys are ignored.
625 You can also use a symbol that is a function as @var{collection}.  Then
626 the function is solely responsible for performing completion;
627 @code{try-completion} returns whatever this function returns.  The
628 function is called with three arguments: @var{string}, @var{predicate}
629 and @code{nil}.  (The reason for the third argument is so that the same
630 function can be used in @code{all-completions} and do the appropriate
631 thing in either case.)  @xref{Programmed Completion}.
633 If the argument @var{predicate} is non-@code{nil}, then it must be a
634 function of one argument, unless @var{collection} is a hash table, in
635 which case it should be a function of two arguments.  It is used to
636 test each possible match, and the match is accepted only if
637 @var{predicate} returns non-@code{nil}.  The argument given to
638 @var{predicate} is either a string or a cons cell (the @sc{car} of
639 which is a string) from the alist, or a symbol (@emph{not} a symbol
640 name) from the obarray.  If @var{collection} is a hash table,
641 @var{predicate} is called with two arguments, the string key and the
642 associated value.
644 In addition, to be acceptable, a completion must also match all the
645 regular expressions in @code{completion-regexp-list}.  (Unless
646 @var{collection} is a function, in which case that function has to
647 handle @code{completion-regexp-list} itself.)
649 In the first of the following examples, the string @samp{foo} is
650 matched by three of the alist @sc{car}s.  All of the matches begin with
651 the characters @samp{fooba}, so that is the result.  In the second
652 example, there is only one possible match, and it is exact, so the value
653 is @code{t}.
655 @smallexample
656 @group
657 (try-completion
658  "foo"
659  '(("foobar1" 1) ("barfoo" 2) ("foobaz" 3) ("foobar2" 4)))
660      @result{} "fooba"
661 @end group
663 @group
664 (try-completion "foo" '(("barfoo" 2) ("foo" 3)))
665      @result{} t
666 @end group
667 @end smallexample
669 In the following example, numerous symbols begin with the characters
670 @samp{forw}, and all of them begin with the word @samp{forward}.  In
671 most of the symbols, this is followed with a @samp{-}, but not in all,
672 so no more than @samp{forward} can be completed.
674 @smallexample
675 @group
676 (try-completion "forw" obarray)
677      @result{} "forward"
678 @end group
679 @end smallexample
681 Finally, in the following example, only two of the three possible
682 matches pass the predicate @code{test} (the string @samp{foobaz} is
683 too short).  Both of those begin with the string @samp{foobar}.
685 @smallexample
686 @group
687 (defun test (s)
688   (> (length (car s)) 6))
689      @result{} test
690 @end group
691 @group
692 (try-completion
693  "foo"
694  '(("foobar1" 1) ("barfoo" 2) ("foobaz" 3) ("foobar2" 4))
695  'test)
696      @result{} "foobar"
697 @end group
698 @end smallexample
699 @end defun
701 @defun all-completions string collection &optional predicate nospace
702 This function returns a list of all possible completions of
703 @var{string}.  The arguments to this function (aside from
704 @var{nospace}) are the same as those of @code{try-completion}.  Also,
705 this function uses @code{completion-regexp-list} in the same way that
706 @code{try-completion} does.  The optional argument @var{nospace} only
707 matters if @var{string} is the empty string.  In that case, if
708 @var{nospace} is non-@code{nil}, completions that start with a space
709 are ignored.
711 If @var{collection} is a function, it is called with three arguments:
712 @var{string}, @var{predicate} and @code{t}; then @code{all-completions}
713 returns whatever the function returns.  @xref{Programmed Completion}.
715 Here is an example, using the function @code{test} shown in the
716 example for @code{try-completion}:
718 @smallexample
719 @group
720 (defun test (s)
721   (> (length (car s)) 6))
722      @result{} test
723 @end group
725 @group
726 (all-completions
727  "foo"
728  '(("foobar1" 1) ("barfoo" 2) ("foobaz" 3) ("foobar2" 4))
729  'test)
730      @result{} ("foobar1" "foobar2")
731 @end group
732 @end smallexample
733 @end defun
735 @defun test-completion string collection &optional predicate
736 @anchor{Definition of test-completion}
737 This function returns non-@code{nil} if @var{string} is a valid
738 completion possibility specified by @var{collection} and
739 @var{predicate}.  The arguments are the same as in
740 @code{try-completion}.  For instance, if @var{collection} is a list of
741 strings, this is true if @var{string} appears in the list and
742 @var{predicate} is satisfied.
744 @code{test-completion} uses @code{completion-regexp-list} in the same
745 way that @code{try-completion} does.
747 If @var{predicate} is non-@code{nil} and if @var{collection} contains
748 several strings that are equal to each other, as determined by
749 @code{compare-strings} according to @code{completion-ignore-case},
750 then @var{predicate} should accept either all or none of them.
751 Otherwise, the return value of @code{test-completion} is essentially
752 unpredictable.
754 If @var{collection} is a function, it is called with three arguments,
755 the values @var{string}, @var{predicate} and @code{lambda}; whatever
756 it returns, @code{test-completion} returns in turn.
757 @end defun
759 @defvar completion-ignore-case
760 If the value of this variable is non-@code{nil}, Emacs does not
761 consider case significant in completion.
762 @end defvar
764 @defvar completion-regexp-list
765 This is a list of regular expressions.  The completion functions only
766 consider a completion acceptable if it matches all regular expressions
767 in this list, with @code{case-fold-search} (@pxref{Searching and Case})
768 bound to the value of @code{completion-ignore-case}.
769 @end defvar
771 @defmac lazy-completion-table var fun &rest args
772 This macro provides a way to initialize the variable @var{var} as a
773 collection for completion in a lazy way, not computing its actual
774 contents until they are first needed.  You use this macro to produce a
775 value that you store in @var{var}.  The actual computation of the
776 proper value is done the first time you do completion using @var{var}.
777 It is done by calling @var{fun} with the arguments @var{args}.  The
778 value @var{fun} returns becomes the permanent value of @var{var}.
780 Here are two examples of use:
782 @smallexample
783 (defvar foo (lazy-completion-table foo make-my-alist 'global))
785 (make-local-variable 'bar)
786 (setq bar (lazy-completion-table foo make-my-alist 'local)
787 @end smallexample
788 @end defmac
790 @node Minibuffer Completion
791 @subsection Completion and the Minibuffer
793   This section describes the basic interface for reading from the
794 minibuffer with completion.
796 @defun completing-read prompt collection &optional predicate require-match initial hist default inherit-input-method
797 This function reads a string in the minibuffer, assisting the user by
798 providing completion.  It activates the minibuffer with prompt
799 @var{prompt}, which must be a string.
801 The actual completion is done by passing @var{collection} and
802 @var{predicate} to the function @code{try-completion}.  This happens
803 in certain commands bound in the local keymaps used for completion.
804 Some of these commands also call @code{test-completion}.  Thus, if
805 @var{predicate} is non-@code{nil}, it should be compatible with
806 @var{collection} and @code{completion-ignore-case}.  @xref{Definition
807 of test-completion}.
809 If @var{require-match} is @code{nil}, the exit commands work regardless
810 of the input in the minibuffer.  If @var{require-match} is @code{t}, the
811 usual minibuffer exit commands won't exit unless the input completes to
812 an element of @var{collection}.  If @var{require-match} is neither
813 @code{nil} nor @code{t}, then the exit commands won't exit unless the
814 input already in the buffer matches an element of @var{collection}.
816 However, empty input is always permitted, regardless of the value of
817 @var{require-match}; in that case, @code{completing-read} returns
818 @var{default}, or @code{""}, if @var{default} is @code{nil}.  The
819 value of @var{default} (if non-@code{nil}) is also available to the
820 user through the history commands.
822 The function @code{completing-read} uses
823 @code{minibuffer-local-completion-map} as the keymap if
824 @var{require-match} is @code{nil}, and uses
825 @code{minibuffer-local-must-match-map} if @var{require-match} is
826 non-@code{nil}.  @xref{Completion Commands}.
828 The argument @var{hist} specifies which history list variable to use for
829 saving the input and for minibuffer history commands.  It defaults to
830 @code{minibuffer-history}.  @xref{Minibuffer History}.
832 The argument @var{initial} is mostly deprecated; we recommend using a
833 non-@code{nil} value only in conjunction with specifying a cons cell
834 for @var{hist}.  @xref{Initial Input}.  For default input, use
835 @var{default} instead.
837 If the argument @var{inherit-input-method} is non-@code{nil}, then the
838 minibuffer inherits the current input method (@pxref{Input
839 Methods}) and the setting of @code{enable-multibyte-characters}
840 (@pxref{Text Representations}) from whichever buffer was current before
841 entering the minibuffer.
843 If the built-in variable @code{completion-ignore-case} is
844 non-@code{nil}, completion ignores case when comparing the input
845 against the possible matches.  @xref{Basic Completion}.  In this mode
846 of operation, @var{predicate} must also ignore case, or you will get
847 surprising results.
849 Here's an example of using @code{completing-read}:
851 @smallexample
852 @group
853 (completing-read
854  "Complete a foo: "
855  '(("foobar1" 1) ("barfoo" 2) ("foobaz" 3) ("foobar2" 4))
856  nil t "fo")
857 @end group
859 @group
860 ;; @r{After evaluation of the preceding expression,}
861 ;;   @r{the following appears in the minibuffer:}
863 ---------- Buffer: Minibuffer ----------
864 Complete a foo: fo@point{}
865 ---------- Buffer: Minibuffer ----------
866 @end group
867 @end smallexample
869 @noindent
870 If the user then types @kbd{@key{DEL} @key{DEL} b @key{RET}},
871 @code{completing-read} returns @code{barfoo}.
873 The @code{completing-read} function binds variables to pass
874 information to the commands that actually do completion.
875 They are described in the following section.
876 @end defun
878 @node Completion Commands
879 @subsection Minibuffer Commands that Do Completion
881   This section describes the keymaps, commands and user options used
882 in the minibuffer to do completion.  The description refers to the
883 situation when Partial Completion mode is disabled (as it is by
884 default).  When enabled, this minor mode uses its own alternatives to
885 some of the commands described below.  @xref{Completion Options,,,
886 emacs, The GNU Emacs Manual}, for a short description of Partial
887 Completion mode.
889 @defvar minibuffer-completion-table
890 The value of this variable is the collection used for completion in
891 the minibuffer.  This is the global variable that contains what
892 @code{completing-read} passes to @code{try-completion}.  It is used by
893 minibuffer completion commands such as @code{minibuffer-complete-word}.
894 @end defvar
896 @defvar minibuffer-completion-predicate
897 This variable's value is the predicate that @code{completing-read}
898 passes to @code{try-completion}.  The variable is also used by the other
899 minibuffer completion functions.
900 @end defvar
902 @defvar minibuffer-completion-confirm
903 When the value of this variable is non-@code{nil}, Emacs asks for
904 confirmation of a completion before exiting the minibuffer.
905 @code{completing-read} binds this variable, and the function
906 @code{minibuffer-complete-and-exit} checks the value before exiting.
907 @end defvar
909 @deffn Command minibuffer-complete-word
910 This function completes the minibuffer contents by at most a single
911 word.  Even if the minibuffer contents have only one completion,
912 @code{minibuffer-complete-word} does not add any characters beyond the
913 first character that is not a word constituent.  @xref{Syntax Tables}.
914 @end deffn
916 @deffn Command minibuffer-complete
917 This function completes the minibuffer contents as far as possible.
918 @end deffn
920 @deffn Command minibuffer-complete-and-exit
921 This function completes the minibuffer contents, and exits if
922 confirmation is not required, i.e., if
923 @code{minibuffer-completion-confirm} is @code{nil}.  If confirmation
924 @emph{is} required, it is given by repeating this command
925 immediately---the command is programmed to work without confirmation
926 when run twice in succession.
927 @end deffn
929 @deffn Command minibuffer-completion-help
930 This function creates a list of the possible completions of the
931 current minibuffer contents.  It works by calling @code{all-completions}
932 using the value of the variable @code{minibuffer-completion-table} as
933 the @var{collection} argument, and the value of
934 @code{minibuffer-completion-predicate} as the @var{predicate} argument.
935 The list of completions is displayed as text in a buffer named
936 @samp{*Completions*}.
937 @end deffn
939 @defun display-completion-list completions &optional common-substring
940 This function displays @var{completions} to the stream in
941 @code{standard-output}, usually a buffer.  (@xref{Read and Print}, for more
942 information about streams.)  The argument @var{completions} is normally
943 a list of completions just returned by @code{all-completions}, but it
944 does not have to be.  Each element may be a symbol or a string, either
945 of which is simply printed.  It can also be a list of two strings,
946 which is printed as if the strings were concatenated.  The first of
947 the two strings is the actual completion, the second string serves as
948 annotation.
950 The argument @var{common-substring} is the prefix that is common to
951 all the completions.  With normal Emacs completion, it is usually the
952 same as the string that was completed.  @code{display-completion-list}
953 uses this to highlight text in the completion list for better visual
954 feedback.  This is not needed in the minibuffer; for minibuffer
955 completion, you can pass @code{nil}.
957 This function is called by @code{minibuffer-completion-help}.  The 
958 most common way to use it is together with
959 @code{with-output-to-temp-buffer}, like this:
961 @example
962 (with-output-to-temp-buffer "*Completions*"
963   (display-completion-list
964     (all-completions (buffer-string) my-alist)
965     (buffer-string)))
966 @end example
967 @end defun
969 @defopt completion-auto-help
970 If this variable is non-@code{nil}, the completion commands
971 automatically display a list of possible completions whenever nothing
972 can be completed because the next character is not uniquely determined.
973 @end defopt
975 @defvar minibuffer-local-completion-map
976 @code{completing-read} uses this value as the local keymap when an
977 exact match of one of the completions is not required.  By default, this
978 keymap makes the following bindings:
980 @table @asis
981 @item @kbd{?}
982 @code{minibuffer-completion-help}
984 @item @key{SPC}
985 @code{minibuffer-complete-word}
987 @item @key{TAB}
988 @code{minibuffer-complete}
989 @end table
991 @noindent
992 with other characters bound as in @code{minibuffer-local-map}
993 (@pxref{Definition of minibuffer-local-map}).
994 @end defvar
996 @defvar minibuffer-local-must-match-map
997 @code{completing-read} uses this value as the local keymap when an
998 exact match of one of the completions is required.  Therefore, no keys
999 are bound to @code{exit-minibuffer}, the command that exits the
1000 minibuffer unconditionally.  By default, this keymap makes the following
1001 bindings:
1003 @table @asis
1004 @item @kbd{?}
1005 @code{minibuffer-completion-help}
1007 @item @key{SPC}
1008 @code{minibuffer-complete-word}
1010 @item @key{TAB}
1011 @code{minibuffer-complete}
1013 @item @kbd{C-j}
1014 @code{minibuffer-complete-and-exit}
1016 @item @key{RET}
1017 @code{minibuffer-complete-and-exit}
1018 @end table
1020 @noindent
1021 with other characters bound as in @code{minibuffer-local-map}.
1022 @end defvar
1024 @defvar minibuffer-local-filename-completion-map
1025 This is like @code{minibuffer-local-completion-map}
1026 except that it does not bind @key{SPC}.
1027 @end defvar
1029 @defvar minibuffer-local-must-match-filename-map
1030 This is like @code{minibuffer-local-must-match-map}
1031 except that it does not bind @key{SPC}.
1032 @end defvar
1034 @node High-Level Completion
1035 @subsection High-Level Completion  Functions
1037   This section describes the higher-level convenient functions for
1038 reading certain sorts of names with completion.
1040   In most cases, you should not call these functions in the middle of a
1041 Lisp function.  When possible, do all minibuffer input as part of
1042 reading the arguments for a command, in the @code{interactive}
1043 specification.  @xref{Defining Commands}.
1045 @defun read-buffer prompt &optional default existing
1046 This function reads the name of a buffer and returns it as a string.
1047 The argument @var{default} is the default name to use, the value to
1048 return if the user exits with an empty minibuffer.  If non-@code{nil},
1049 it should be a string or a buffer.  It is mentioned in the prompt, but
1050 is not inserted in the minibuffer as initial input.
1052 The argument @var{prompt} should be a string ending with a colon and a
1053 space.  If @var{default} is non-@code{nil}, the function inserts it in
1054 @var{prompt} before the colon to follow the convention for reading from
1055 the minibuffer with a default value (@pxref{Programming Tips}).
1057 If @var{existing} is non-@code{nil}, then the name specified must be
1058 that of an existing buffer.  The usual commands to exit the minibuffer
1059 do not exit if the text is not valid, and @key{RET} does completion to
1060 attempt to find a valid name.  If @var{existing} is neither @code{nil}
1061 nor @code{t}, confirmation is required after completion.  (However,
1062 @var{default} is not checked for validity; it is returned, whatever it
1063 is, if the user exits with the minibuffer empty.)
1065 In the following example, the user enters @samp{minibuffer.t}, and
1066 then types @key{RET}.  The argument @var{existing} is @code{t}, and the
1067 only buffer name starting with the given input is
1068 @samp{minibuffer.texi}, so that name is the value.
1070 @example
1071 (read-buffer "Buffer name: " "foo" t)
1072 @group
1073 ;; @r{After evaluation of the preceding expression,}
1074 ;;   @r{the following prompt appears,}
1075 ;;   @r{with an empty minibuffer:}
1076 @end group
1078 @group
1079 ---------- Buffer: Minibuffer ----------
1080 Buffer name (default foo): @point{}
1081 ---------- Buffer: Minibuffer ----------
1082 @end group
1084 @group
1085 ;; @r{The user types @kbd{minibuffer.t @key{RET}}.}
1086      @result{} "minibuffer.texi"
1087 @end group
1088 @end example
1089 @end defun
1091 @defvar read-buffer-function
1092 This variable specifies how to read buffer names.  For example, if you
1093 set this variable to @code{iswitchb-read-buffer}, all Emacs commands
1094 that call @code{read-buffer} to read a buffer name will actually use the
1095 @code{iswitchb} package to read it.
1096 @end defvar
1098 @defun read-command prompt &optional default
1099 This function reads the name of a command and returns it as a Lisp
1100 symbol.  The argument @var{prompt} is used as in
1101 @code{read-from-minibuffer}.  Recall that a command is anything for
1102 which @code{commandp} returns @code{t}, and a command name is a symbol
1103 for which @code{commandp} returns @code{t}.  @xref{Interactive Call}.
1105 The argument @var{default} specifies what to return if the user enters
1106 null input.  It can be a symbol or a string; if it is a string,
1107 @code{read-command} interns it before returning it.  If @var{default} is
1108 @code{nil}, that means no default has been specified; then if the user
1109 enters null input, the return value is @code{(intern "")}, that is, a
1110 symbol whose name is an empty string.
1112 @example
1113 (read-command "Command name? ")
1115 @group
1116 ;; @r{After evaluation of the preceding expression,}
1117 ;;   @r{the following prompt appears with an empty minibuffer:}
1118 @end group
1120 @group
1121 ---------- Buffer: Minibuffer ----------
1122 Command name?
1123 ---------- Buffer: Minibuffer ----------
1124 @end group
1125 @end example
1127 @noindent
1128 If the user types @kbd{forward-c @key{RET}}, then this function returns
1129 @code{forward-char}.
1131 The @code{read-command} function is a simplified interface to
1132 @code{completing-read}.  It uses the variable @code{obarray} so as to
1133 complete in the set of extant Lisp symbols, and it uses the
1134 @code{commandp} predicate so as to accept only command names:
1136 @cindex @code{commandp} example
1137 @example
1138 @group
1139 (read-command @var{prompt})
1140 @equiv{}
1141 (intern (completing-read @var{prompt} obarray
1142                          'commandp t nil))
1143 @end group
1144 @end example
1145 @end defun
1147 @defun read-variable prompt &optional default
1148 @anchor{Definition of read-variable}
1149 This function reads the name of a user variable and returns it as a
1150 symbol.
1152 The argument @var{default} specifies what to return if the user enters
1153 null input.  It can be a symbol or a string; if it is a string,
1154 @code{read-variable} interns it before returning it.  If @var{default}
1155 is @code{nil}, that means no default has been specified; then if the
1156 user enters null input, the return value is @code{(intern "")}.
1158 @example
1159 @group
1160 (read-variable "Variable name? ")
1162 ;; @r{After evaluation of the preceding expression,}
1163 ;;   @r{the following prompt appears,}
1164 ;;   @r{with an empty minibuffer:}
1165 @end group
1167 @group
1168 ---------- Buffer: Minibuffer ----------
1169 Variable name? @point{}
1170 ---------- Buffer: Minibuffer ----------
1171 @end group
1172 @end example
1174 @noindent
1175 If the user then types @kbd{fill-p @key{RET}}, @code{read-variable}
1176 returns @code{fill-prefix}.
1178 This function is similar to @code{read-command}, but uses the
1179 predicate @code{user-variable-p} instead of @code{commandp}:
1181 @cindex @code{user-variable-p} example
1182 @example
1183 @group
1184 (read-variable @var{prompt})
1185 @equiv{}
1186 (intern
1187  (completing-read @var{prompt} obarray
1188                   'user-variable-p t nil))
1189 @end group
1190 @end example
1191 @end defun
1193   See also the functions @code{read-coding-system} and
1194 @code{read-non-nil-coding-system}, in @ref{User-Chosen Coding Systems}.
1196 @node Reading File Names
1197 @subsection Reading File Names
1199   Here is another high-level completion function, designed for reading a
1200 file name.  It provides special features including automatic insertion
1201 of the default directory.
1203 @defun read-file-name prompt &optional directory default existing initial predicate
1204 This function reads a file name in the minibuffer, prompting with
1205 @var{prompt} and providing completion.
1207 If @var{existing} is non-@code{nil}, then the user must specify the name
1208 of an existing file; @key{RET} performs completion to make the name
1209 valid if possible, and then refuses to exit if it is not valid.  If the
1210 value of @var{existing} is neither @code{nil} nor @code{t}, then
1211 @key{RET} also requires confirmation after completion.  If
1212 @var{existing} is @code{nil}, then the name of a nonexistent file is
1213 acceptable.
1215 The argument @var{directory} specifies the directory to use for
1216 completion of relative file names.  It should be an absolute directory
1217 name.  If @code{insert-default-directory} is non-@code{nil},
1218 @var{directory} is also inserted in the minibuffer as initial input.
1219 It defaults to the current buffer's value of @code{default-directory}.
1221 @c Emacs 19 feature
1222 If you specify @var{initial}, that is an initial file name to insert
1223 in the buffer (after @var{directory}, if that is inserted).  In this
1224 case, point goes at the beginning of @var{initial}.  The default for
1225 @var{initial} is @code{nil}---don't insert any file name.  To see what
1226 @var{initial} does, try the command @kbd{C-x C-v}.  @strong{Please
1227 note:} we recommend using @var{default} rather than @var{initial} in
1228 most cases.
1230 If @var{default} is non-@code{nil}, then the function returns
1231 @var{default} if the user exits the minibuffer with the same non-empty
1232 contents that @code{read-file-name} inserted initially.  The initial
1233 minibuffer contents are always non-empty if
1234 @code{insert-default-directory} is non-@code{nil}, as it is by
1235 default.  @var{default} is not checked for validity, regardless of the
1236 value of @var{existing}.  However, if @var{existing} is
1237 non-@code{nil}, the initial minibuffer contents should be a valid file
1238 (or directory) name.  Otherwise @code{read-file-name} attempts
1239 completion if the user exits without any editing, and does not return
1240 @var{default}.  @var{default} is also available through the history
1241 commands.
1243 If @var{default} is @code{nil}, @code{read-file-name} tries to find a
1244 substitute default to use in its place, which it treats in exactly the
1245 same way as if it had been specified explicitly.  If @var{default} is
1246 @code{nil}, but @var{initial} is non-@code{nil}, then the default is
1247 the absolute file name obtained from @var{directory} and
1248 @var{initial}.  If both @var{default} and @var{initial} are @code{nil}
1249 and the buffer is visiting a file, @code{read-file-name} uses the
1250 absolute file name of that file as default.  If the buffer is not
1251 visiting a file, then there is no default.  In that case, if the user
1252 types @key{RET} without any editing, @code{read-file-name} simply
1253 returns the pre-inserted contents of the minibuffer.
1255 If the user types @key{RET} in an empty minibuffer, this function
1256 returns an empty string, regardless of the value of @var{existing}.
1257 This is, for instance, how the user can make the current buffer visit
1258 no file using @code{M-x set-visited-file-name}.
1260 If @var{predicate} is non-@code{nil}, it specifies a function of one
1261 argument that decides which file names are acceptable completion
1262 possibilities.  A file name is an acceptable value if @var{predicate}
1263 returns non-@code{nil} for it.
1265 @code{read-file-name} does not automatically expand file names.  You
1266 must call @code{expand-file-name} yourself if an absolute file name is
1267 required.
1269 Here is an example:
1271 @example
1272 @group
1273 (read-file-name "The file is ")
1275 ;; @r{After evaluation of the preceding expression,}
1276 ;;   @r{the following appears in the minibuffer:}
1277 @end group
1279 @group
1280 ---------- Buffer: Minibuffer ----------
1281 The file is /gp/gnu/elisp/@point{}
1282 ---------- Buffer: Minibuffer ----------
1283 @end group
1284 @end example
1286 @noindent
1287 Typing @kbd{manual @key{TAB}} results in the following:
1289 @example
1290 @group
1291 ---------- Buffer: Minibuffer ----------
1292 The file is /gp/gnu/elisp/manual.texi@point{}
1293 ---------- Buffer: Minibuffer ----------
1294 @end group
1295 @end example
1297 @c Wordy to avoid overfull hbox in smallbook mode.
1298 @noindent
1299 If the user types @key{RET}, @code{read-file-name} returns the file name
1300 as the string @code{"/gp/gnu/elisp/manual.texi"}.
1301 @end defun
1303 @defvar read-file-name-function
1304 If non-@code{nil}, this should be a function that accepts the same
1305 arguments as @code{read-file-name}.  When @code{read-file-name} is
1306 called, it calls this function with the supplied arguments instead of
1307 doing its usual work.
1308 @end defvar
1310 @defvar read-file-name-completion-ignore-case
1311 If this variable is non-@code{nil}, @code{read-file-name} ignores case
1312 when performing completion.
1313 @end defvar
1315 @defun read-directory-name prompt &optional directory default existing initial
1316 This function is like @code{read-file-name} but allows only directory
1317 names as completion possibilities.
1319 If @var{default} is @code{nil} and @var{initial} is non-@code{nil},
1320 @code{read-directory-name} constructs a substitute default by
1321 combining @var{directory} (or the current buffer's default directory
1322 if @var{directory} is @code{nil}) and @var{initial}.  If both
1323 @var{default} and @var{initial} are @code{nil}, this function uses
1324 @var{directory} as substitute default, or the current buffer's default
1325 directory if @var{directory} is @code{nil}.
1326 @end defun
1328 @defopt insert-default-directory
1329 This variable is used by @code{read-file-name}, and thus, indirectly,
1330 by most commands reading file names.  (This includes all commands that
1331 use the code letters @samp{f} or @samp{F} in their interactive form.
1332 @xref{Interactive Codes,, Code Characters for interactive}.)  Its
1333 value controls whether @code{read-file-name} starts by placing the
1334 name of the default directory in the minibuffer, plus the initial file
1335 name if any.  If the value of this variable is @code{nil}, then
1336 @code{read-file-name} does not place any initial input in the
1337 minibuffer (unless you specify initial input with the @var{initial}
1338 argument).  In that case, the default directory is still used for
1339 completion of relative file names, but is not displayed.
1341 If this variable is @code{nil} and the initial minibuffer contents are
1342 empty, the user may have to explicitly fetch the next history element
1343 to access a default value.  If the variable is non-@code{nil}, the
1344 initial minibuffer contents are always non-empty and the user can
1345 always request a default value by immediately typing @key{RET} in an
1346 unedited minibuffer.  (See above.)
1348 For example:
1350 @example
1351 @group
1352 ;; @r{Here the minibuffer starts out with the default directory.}
1353 (let ((insert-default-directory t))
1354   (read-file-name "The file is "))
1355 @end group
1357 @group
1358 ---------- Buffer: Minibuffer ----------
1359 The file is ~lewis/manual/@point{}
1360 ---------- Buffer: Minibuffer ----------
1361 @end group
1363 @group
1364 ;; @r{Here the minibuffer is empty and only the prompt}
1365 ;;   @r{appears on its line.}
1366 (let ((insert-default-directory nil))
1367   (read-file-name "The file is "))
1368 @end group
1370 @group
1371 ---------- Buffer: Minibuffer ----------
1372 The file is @point{}
1373 ---------- Buffer: Minibuffer ----------
1374 @end group
1375 @end example
1376 @end defopt
1378 @node Programmed Completion
1379 @subsection Programmed Completion
1380 @cindex programmed completion
1382   Sometimes it is not possible to create an alist or an obarray
1383 containing all the intended possible completions.  In such a case, you
1384 can supply your own function to compute the completion of a given string.
1385 This is called @dfn{programmed completion}.
1387   To use this feature, pass a symbol with a function definition as the
1388 @var{collection} argument to @code{completing-read}.  The function
1389 @code{completing-read} arranges to pass your completion function along
1390 to @code{try-completion} and @code{all-completions}, which will then let
1391 your function do all the work.
1393   The completion function should accept three arguments:
1395 @itemize @bullet
1396 @item
1397 The string to be completed.
1399 @item
1400 The predicate function to filter possible matches, or @code{nil} if
1401 none.  Your function should call the predicate for each possible match,
1402 and ignore the possible match if the predicate returns @code{nil}.
1404 @item
1405 A flag specifying the type of operation.
1406 @end itemize
1408   There are three flag values for three operations:
1410 @itemize @bullet
1411 @item
1412 @code{nil} specifies @code{try-completion}.  The completion function
1413 should return the completion of the specified string, or @code{t} if the
1414 string is a unique and exact match already, or @code{nil} if the string
1415 matches no possibility.
1417 If the string is an exact match for one possibility, but also matches
1418 other longer possibilities, the function should return the string, not
1419 @code{t}.
1421 @item
1422 @code{t} specifies @code{all-completions}.  The completion function
1423 should return a list of all possible completions of the specified
1424 string.
1426 @item
1427 @code{lambda} specifies @code{test-completion}.  The completion
1428 function should return @code{t} if the specified string is an exact
1429 match for some possibility; @code{nil} otherwise.
1430 @end itemize
1432   It would be consistent and clean for completion functions to allow
1433 lambda expressions (lists that are functions) as well as function
1434 symbols as @var{collection}, but this is impossible.  Lists as
1435 completion tables already have other meanings, and it would be
1436 unreliable to treat one differently just because it is also a possible
1437 function.  So you must arrange for any function you wish to use for
1438 completion to be encapsulated in a symbol.
1440   Emacs uses programmed completion when completing file names.
1441 @xref{File Name Completion}.
1443 @defmac dynamic-completion-table function
1444 This macro is a convenient way to write a function that can act as
1445 programmed completion function.  The argument @var{function} should be
1446 a function that takes one argument, a string, and returns an alist of
1447 possible completions of it.  You can think of
1448 @code{dynamic-completion-table} as a transducer between that interface
1449 and the interface for programmed completion functions.
1450 @end defmac
1452 @node Yes-or-No Queries
1453 @section Yes-or-No Queries
1454 @cindex asking the user questions
1455 @cindex querying the user
1456 @cindex yes-or-no questions
1458   This section describes functions used to ask the user a yes-or-no
1459 question.  The function @code{y-or-n-p} can be answered with a single
1460 character; it is useful for questions where an inadvertent wrong answer
1461 will not have serious consequences.  @code{yes-or-no-p} is suitable for
1462 more momentous questions, since it requires three or four characters to
1463 answer.
1465    If either of these functions is called in a command that was invoked
1466 using the mouse---more precisely, if @code{last-nonmenu-event}
1467 (@pxref{Command Loop Info}) is either @code{nil} or a list---then it
1468 uses a dialog box or pop-up menu to ask the question.  Otherwise, it
1469 uses keyboard input.  You can force use of the mouse or use of keyboard
1470 input by binding @code{last-nonmenu-event} to a suitable value around
1471 the call.
1473   Strictly speaking, @code{yes-or-no-p} uses the minibuffer and
1474 @code{y-or-n-p} does not; but it seems best to describe them together.
1476 @defun y-or-n-p prompt
1477 This function asks the user a question, expecting input in the echo
1478 area.  It returns @code{t} if the user types @kbd{y}, @code{nil} if the
1479 user types @kbd{n}.  This function also accepts @key{SPC} to mean yes
1480 and @key{DEL} to mean no.  It accepts @kbd{C-]} to mean ``quit'', like
1481 @kbd{C-g}, because the question might look like a minibuffer and for
1482 that reason the user might try to use @kbd{C-]} to get out.  The answer
1483 is a single character, with no @key{RET} needed to terminate it.  Upper
1484 and lower case are equivalent.
1486 ``Asking the question'' means printing @var{prompt} in the echo area,
1487 followed by the string @w{@samp{(y or n) }}.  If the input is not one of
1488 the expected answers (@kbd{y}, @kbd{n}, @kbd{@key{SPC}},
1489 @kbd{@key{DEL}}, or something that quits), the function responds
1490 @samp{Please answer y or n.}, and repeats the request.
1492 This function does not actually use the minibuffer, since it does not
1493 allow editing of the answer.  It actually uses the echo area (@pxref{The
1494 Echo Area}), which uses the same screen space as the minibuffer.  The
1495 cursor moves to the echo area while the question is being asked.
1497 The answers and their meanings, even @samp{y} and @samp{n}, are not
1498 hardwired.  The keymap @code{query-replace-map} specifies them.
1499 @xref{Search and Replace}.
1501 In the following example, the user first types @kbd{q}, which is
1502 invalid.  At the next prompt the user types @kbd{y}.
1504 @smallexample
1505 @group
1506 (y-or-n-p "Do you need a lift? ")
1508 ;; @r{After evaluation of the preceding expression,}
1509 ;;   @r{the following prompt appears in the echo area:}
1510 @end group
1512 @group
1513 ---------- Echo area ----------
1514 Do you need a lift? (y or n)
1515 ---------- Echo area ----------
1516 @end group
1518 ;; @r{If the user then types @kbd{q}, the following appears:}
1520 @group
1521 ---------- Echo area ----------
1522 Please answer y or n.  Do you need a lift? (y or n)
1523 ---------- Echo area ----------
1524 @end group
1526 ;; @r{When the user types a valid answer,}
1527 ;;   @r{it is displayed after the question:}
1529 @group
1530 ---------- Echo area ----------
1531 Do you need a lift? (y or n) y
1532 ---------- Echo area ----------
1533 @end group
1534 @end smallexample
1536 @noindent
1537 We show successive lines of echo area messages, but only one actually
1538 appears on the screen at a time.
1539 @end defun
1541 @defun y-or-n-p-with-timeout prompt seconds default-value
1542 Like @code{y-or-n-p}, except that if the user fails to answer within
1543 @var{seconds} seconds, this function stops waiting and returns
1544 @var{default-value}.  It works by setting up a timer; see @ref{Timers}.
1545 The argument @var{seconds} may be an integer or a floating point number.
1546 @end defun
1548 @defun yes-or-no-p prompt
1549 This function asks the user a question, expecting input in the
1550 minibuffer.  It returns @code{t} if the user enters @samp{yes},
1551 @code{nil} if the user types @samp{no}.  The user must type @key{RET} to
1552 finalize the response.  Upper and lower case are equivalent.
1554 @code{yes-or-no-p} starts by displaying @var{prompt} in the echo area,
1555 followed by @w{@samp{(yes or no) }}.  The user must type one of the
1556 expected responses; otherwise, the function responds @samp{Please answer
1557 yes or no.}, waits about two seconds and repeats the request.
1559 @code{yes-or-no-p} requires more work from the user than
1560 @code{y-or-n-p} and is appropriate for more crucial decisions.
1562 Here is an example:
1564 @smallexample
1565 @group
1566 (yes-or-no-p "Do you really want to remove everything? ")
1568 ;; @r{After evaluation of the preceding expression,}
1569 ;;   @r{the following prompt appears,}
1570 ;;   @r{with an empty minibuffer:}
1571 @end group
1573 @group
1574 ---------- Buffer: minibuffer ----------
1575 Do you really want to remove everything? (yes or no)
1576 ---------- Buffer: minibuffer ----------
1577 @end group
1578 @end smallexample
1580 @noindent
1581 If the user first types @kbd{y @key{RET}}, which is invalid because this
1582 function demands the entire word @samp{yes}, it responds by displaying
1583 these prompts, with a brief pause between them:
1585 @smallexample
1586 @group
1587 ---------- Buffer: minibuffer ----------
1588 Please answer yes or no.
1589 Do you really want to remove everything? (yes or no)
1590 ---------- Buffer: minibuffer ----------
1591 @end group
1592 @end smallexample
1593 @end defun
1595 @node Multiple Queries
1596 @section Asking Multiple Y-or-N Questions
1598   When you have a series of similar questions to ask, such as ``Do you
1599 want to save this buffer'' for each buffer in turn, you should use
1600 @code{map-y-or-n-p} to ask the collection of questions, rather than
1601 asking each question individually.  This gives the user certain
1602 convenient facilities such as the ability to answer the whole series at
1603 once.
1605 @defun map-y-or-n-p prompter actor list &optional help action-alist no-cursor-in-echo-area
1606 This function asks the user a series of questions, reading a
1607 single-character answer in the echo area for each one.
1609 The value of @var{list} specifies the objects to ask questions about.
1610 It should be either a list of objects or a generator function.  If it is
1611 a function, it should expect no arguments, and should return either the
1612 next object to ask about, or @code{nil} meaning stop asking questions.
1614 The argument @var{prompter} specifies how to ask each question.  If
1615 @var{prompter} is a string, the question text is computed like this:
1617 @example
1618 (format @var{prompter} @var{object})
1619 @end example
1621 @noindent
1622 where @var{object} is the next object to ask about (as obtained from
1623 @var{list}).
1625 If not a string, @var{prompter} should be a function of one argument
1626 (the next object to ask about) and should return the question text.  If
1627 the value is a string, that is the question to ask the user.  The
1628 function can also return @code{t} meaning do act on this object (and
1629 don't ask the user), or @code{nil} meaning ignore this object (and don't
1630 ask the user).
1632 The argument @var{actor} says how to act on the answers that the user
1633 gives.  It should be a function of one argument, and it is called with
1634 each object that the user says yes for.  Its argument is always an
1635 object obtained from @var{list}.
1637 If the argument @var{help} is given, it should be a list of this form:
1639 @example
1640 (@var{singular} @var{plural} @var{action})
1641 @end example
1643 @noindent
1644 where @var{singular} is a string containing a singular noun that
1645 describes the objects conceptually being acted on, @var{plural} is the
1646 corresponding plural noun, and @var{action} is a transitive verb
1647 describing what @var{actor} does.
1649 If you don't specify @var{help}, the default is @code{("object"
1650 "objects" "act on")}.
1652 Each time a question is asked, the user may enter @kbd{y}, @kbd{Y}, or
1653 @key{SPC} to act on that object; @kbd{n}, @kbd{N}, or @key{DEL} to skip
1654 that object; @kbd{!} to act on all following objects; @key{ESC} or
1655 @kbd{q} to exit (skip all following objects); @kbd{.} (period) to act on
1656 the current object and then exit; or @kbd{C-h} to get help.  These are
1657 the same answers that @code{query-replace} accepts.  The keymap
1658 @code{query-replace-map} defines their meaning for @code{map-y-or-n-p}
1659 as well as for @code{query-replace}; see @ref{Search and Replace}.
1661 You can use @var{action-alist} to specify additional possible answers
1662 and what they mean.  It is an alist of elements of the form
1663 @code{(@var{char} @var{function} @var{help})}, each of which defines one
1664 additional answer.  In this element, @var{char} is a character (the
1665 answer); @var{function} is a function of one argument (an object from
1666 @var{list}); @var{help} is a string.
1668 When the user responds with @var{char}, @code{map-y-or-n-p} calls
1669 @var{function}.  If it returns non-@code{nil}, the object is considered
1670 ``acted upon'', and @code{map-y-or-n-p} advances to the next object in
1671 @var{list}.  If it returns @code{nil}, the prompt is repeated for the
1672 same object.
1674 Normally, @code{map-y-or-n-p} binds @code{cursor-in-echo-area} while
1675 prompting.  But if @var{no-cursor-in-echo-area} is non-@code{nil}, it
1676 does not do that.
1678 If @code{map-y-or-n-p} is called in a command that was invoked using the
1679 mouse---more precisely, if @code{last-nonmenu-event} (@pxref{Command
1680 Loop Info}) is either @code{nil} or a list---then it uses a dialog box
1681 or pop-up menu to ask the question.  In this case, it does not use
1682 keyboard input or the echo area.  You can force use of the mouse or use
1683 of keyboard input by binding @code{last-nonmenu-event} to a suitable
1684 value around the call.
1686 The return value of @code{map-y-or-n-p} is the number of objects acted on.
1687 @end defun
1689 @node Reading a Password
1690 @section Reading a Password
1691 @cindex passwords, reading
1693   To read a password to pass to another program, you can use the
1694 function @code{read-passwd}.
1696 @defun read-passwd prompt &optional confirm default
1697 This function reads a password, prompting with @var{prompt}.  It does
1698 not echo the password as the user types it; instead, it echoes @samp{.}
1699 for each character in the password.
1701 The optional argument @var{confirm}, if non-@code{nil}, says to read the
1702 password twice and insist it must be the same both times.  If it isn't
1703 the same, the user has to type it over and over until the last two
1704 times match.
1706 The optional argument @var{default} specifies the default password to
1707 return if the user enters empty input.  If @var{default} is @code{nil},
1708 then @code{read-passwd} returns the null string in that case.
1709 @end defun
1711 @node Minibuffer Commands
1712 @section Minibuffer Commands
1714   This section describes some commands meant for use in the
1715 minibuffer.
1717 @deffn Command exit-minibuffer
1718 This command exits the active minibuffer.  It is normally bound to
1719 keys in minibuffer local keymaps.
1720 @end deffn
1722 @deffn Command self-insert-and-exit
1723 This command exits the active minibuffer after inserting the last
1724 character typed on the keyboard (found in @code{last-command-char};
1725 @pxref{Command Loop Info}).
1726 @end deffn
1728 @deffn Command previous-history-element n
1729 This command replaces the minibuffer contents with the value of the
1730 @var{n}th previous (older) history element.
1731 @end deffn
1733 @deffn Command next-history-element n
1734 This command replaces the minibuffer contents with the value of the
1735 @var{n}th more recent history element.
1736 @end deffn
1738 @deffn Command previous-matching-history-element pattern n
1739 This command replaces the minibuffer contents with the value of the
1740 @var{n}th previous (older) history element that matches @var{pattern} (a
1741 regular expression).
1742 @end deffn
1744 @deffn Command next-matching-history-element pattern n
1745 This command replaces the minibuffer contents with the value of the
1746 @var{n}th next (newer) history element that matches @var{pattern} (a
1747 regular expression).
1748 @end deffn
1750 @node Minibuffer Windows
1751 @section Minibuffer Windows
1753   These functions access and select minibuffer windows
1754 and test whether they are active.
1756 @defun active-minibuffer-window
1757 This function returns the currently active minibuffer window, or
1758 @code{nil} if none is currently active.
1759 @end defun
1761 @defun minibuffer-window &optional frame
1762 @anchor{Definition of minibuffer-window}
1763 This function returns the minibuffer window used for frame @var{frame}.
1764 If @var{frame} is @code{nil}, that stands for the current frame.  Note
1765 that the minibuffer window used by a frame need not be part of that
1766 frame---a frame that has no minibuffer of its own necessarily uses some
1767 other frame's minibuffer window.
1768 @end defun
1770 @defun set-minibuffer-window window
1771 This function specifies @var{window} as the minibuffer window to use.
1772 This affects where the minibuffer is displayed if you put text in it
1773 without invoking the usual minibuffer commands.  It has no effect on
1774 the usual minibuffer input functions because they all start by
1775 choosing the minibuffer window according to the current frame.
1776 @end defun
1778 @c Emacs 19 feature
1779 @defun window-minibuffer-p &optional window
1780 This function returns non-@code{nil} if @var{window} is a minibuffer
1781 window.
1782 @var{window} defaults to the selected window.
1783 @end defun
1785 It is not correct to determine whether a given window is a minibuffer by
1786 comparing it with the result of @code{(minibuffer-window)}, because
1787 there can be more than one minibuffer window if there is more than one
1788 frame.
1790 @defun minibuffer-window-active-p window
1791 This function returns non-@code{nil} if @var{window}, assumed to be
1792 a minibuffer window, is currently active.
1793 @end defun
1795 @node Minibuffer Contents
1796 @section Minibuffer Contents
1798   These functions access the minibuffer prompt and contents.
1800 @defun minibuffer-prompt
1801 This function returns the prompt string of the currently active
1802 minibuffer.  If no minibuffer is active, it returns @code{nil}.
1803 @end defun
1805 @defun minibuffer-prompt-end
1806 @tindex minibuffer-prompt-end
1807 This function returns the current
1808 position of the end of the minibuffer prompt, if a minibuffer is
1809 current.  Otherwise, it returns the minimum valid buffer position.
1810 @end defun
1812 @defun minibuffer-prompt-width
1813 This function returns the current display-width of the minibuffer
1814 prompt, if a minibuffer is current.  Otherwise, it returns zero.
1815 @end defun
1817 @defun minibuffer-contents
1818 @tindex minibuffer-contents
1819 This function returns the editable
1820 contents of the minibuffer (that is, everything except the prompt) as
1821 a string, if a minibuffer is current.  Otherwise, it returns the
1822 entire contents of the current buffer.
1823 @end defun
1825 @defun minibuffer-contents-no-properties
1826 @tindex minibuffer-contents-no-properties
1827 This is like @code{minibuffer-contents}, except that it does not copy text
1828 properties, just the characters themselves.  @xref{Text Properties}.
1829 @end defun
1831 @defun delete-minibuffer-contents
1832 @tindex delete-minibuffer-contents
1833 This function erases the editable contents of the minibuffer (that is,
1834 everything except the prompt), if a minibuffer is current.  Otherwise,
1835 it erases the entire current buffer.
1836 @end defun
1838 @node Recursive Mini
1839 @section Recursive Minibuffers
1841   These functions and variables deal with recursive minibuffers
1842 (@pxref{Recursive Editing}):
1844 @defun minibuffer-depth
1845 This function returns the current depth of activations of the
1846 minibuffer, a nonnegative integer.  If no minibuffers are active, it
1847 returns zero.
1848 @end defun
1850 @defopt enable-recursive-minibuffers
1851 If this variable is non-@code{nil}, you can invoke commands (such as
1852 @code{find-file}) that use minibuffers even while the minibuffer window
1853 is active.  Such invocation produces a recursive editing level for a new
1854 minibuffer.  The outer-level minibuffer is invisible while you are
1855 editing the inner one.
1857 If this variable is @code{nil}, you cannot invoke minibuffer
1858 commands when the minibuffer window is active, not even if you switch to
1859 another window to do it.
1860 @end defopt
1862 @c Emacs 19 feature
1863 If a command name has a property @code{enable-recursive-minibuffers}
1864 that is non-@code{nil}, then the command can use the minibuffer to read
1865 arguments even if it is invoked from the minibuffer.  A command can
1866 also achieve this by binding @code{enable-recursive-minibuffers}
1867 to @code{t} in the interactive declaration (@pxref{Using Interactive}).
1868 The minibuffer command @code{next-matching-history-element} (normally
1869 @kbd{M-s} in the minibuffer) does the latter.
1871 @node Minibuffer Misc
1872 @section Minibuffer Miscellany
1874 @defun minibufferp &optional buffer-or-name
1875 This function returns non-@code{nil} if @var{buffer-or-name} is a
1876 minibuffer.  If @var{buffer-or-name} is omitted, it tests the current
1877 buffer.
1878 @end defun
1880 @defvar minibuffer-setup-hook
1881 This is a normal hook that is run whenever the minibuffer is entered.
1882 @xref{Hooks}.
1883 @end defvar
1885 @defvar minibuffer-exit-hook
1886 This is a normal hook that is run whenever the minibuffer is exited.
1887 @xref{Hooks}.
1888 @end defvar
1890 @defvar minibuffer-help-form
1891 @anchor{Definition of minibuffer-help-form}
1892 The current value of this variable is used to rebind @code{help-form}
1893 locally inside the minibuffer (@pxref{Help Functions}).
1894 @end defvar
1896 @defvar minibuffer-scroll-window
1897 @anchor{Definition of minibuffer-scroll-window}
1898 If the value of this variable is non-@code{nil}, it should be a window
1899 object.  When the function @code{scroll-other-window} is called in the
1900 minibuffer, it scrolls this window.
1901 @end defvar
1903 @defun minibuffer-selected-window
1904 This function returns the window which was selected when the
1905 minibuffer was entered.  If selected window is not a minibuffer
1906 window, it returns @code{nil}.
1907 @end defun
1909 @defopt max-mini-window-height
1910 This variable specifies the maximum height for resizing minibuffer
1911 windows.  If a float, it specifies a fraction of the height of the
1912 frame.  If an integer, it specifies a number of lines.
1913 @end defopt
1915 @defun minibuffer-message string
1916 This function displays @var{string} temporarily at the end of the
1917 minibuffer text, for two seconds, or until the next input event
1918 arrives, whichever comes first.
1919 @end defun
1921 @ignore
1922    arch-tag: bba7f945-9078-477f-a2ce-18818a6e1218
1923 @end ignore