(command_loop_1): Explicitly clear the echo area
[bpt/emacs.git] / src / minibuf.c
CommitLineData
f927c5ae 1/* Minibuffer input and completion.
68313ed8 2 Copyright (C) 1985, 1986, 93, 94, 95, 1996 Free Software Foundation, Inc.
f927c5ae
JB
3
4This file is part of GNU Emacs.
5
6GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
ffd56f97 8the Free Software Foundation; either version 2, or (at your option)
f927c5ae
JB
9any later version.
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Emacs; see the file COPYING. If not, write to
3b7ad313
EN
18the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19Boston, MA 02111-1307, USA. */
f927c5ae
JB
20
21
18160b98 22#include <config.h>
f927c5ae
JB
23#include "lisp.h"
24#include "commands.h"
25#include "buffer.h"
26#include "dispextern.h"
ff11dfa1 27#include "frame.h"
f927c5ae
JB
28#include "window.h"
29#include "syntax.h"
5221fd63 30#include "keyboard.h"
f927c5ae
JB
31
32#define min(a, b) ((a) < (b) ? (a) : (b))
33
a4e71d81
KH
34extern int quit_char;
35
f927c5ae 36/* List of buffers for use as minibuffers.
4d04c1f1
KH
37 The first element of the list is used for the outermost minibuffer
38 invocation, the next element is used for a recursive minibuffer
39 invocation, etc. The list is extended at the end as deeper
40 minibuffer recursions are encountered. */
f927c5ae
JB
41Lisp_Object Vminibuffer_list;
42
4d04c1f1
KH
43/* Data to remember during recursive minibuffer invocations */
44Lisp_Object minibuf_save_list;
f927c5ae
JB
45
46/* Depth in minibuffer invocations. */
47int minibuf_level;
48
49/* Nonzero means display completion help for invalid input */
50int auto_help;
51
b278606c 52/* Fread_minibuffer leaves the input here as a string. */
f927c5ae
JB
53Lisp_Object last_minibuf_string;
54
55/* Nonzero means let functions called when within a minibuffer
56 invoke recursive minibuffers (to read arguments, or whatever) */
57int enable_recursive_minibuffers;
58
59/* help-form is bound to this while in the minibuffer. */
60
61Lisp_Object Vminibuffer_help_form;
62
770970cb
RS
63/* Variable which is the history list to add minibuffer values to. */
64
65Lisp_Object Vminibuffer_history_variable;
66
67/* Current position in the history list (adjusted by M-n and M-p). */
68
69Lisp_Object Vminibuffer_history_position;
70
71Lisp_Object Qminibuffer_history;
72
719b4a40
RS
73Lisp_Object Qread_file_name_internal;
74
177aecf9 75/* Normal hooks for entry to and exit from minibuffer. */
5c781212
RS
76
77Lisp_Object Qminibuffer_setup_hook, Vminibuffer_setup_hook;
177aecf9 78Lisp_Object Qminibuffer_exit_hook, Vminibuffer_exit_hook;
5c781212 79
f927c5ae
JB
80/* Nonzero means completion ignores case. */
81
82int completion_ignore_case;
83
42006772
RS
84/* List of regexps that should restrict possible completions. */
85
86Lisp_Object Vcompletion_regexp_list;
87
6a9ee000
RS
88/* Nonzero means raise the minibuffer frame when the minibuffer
89 is entered. */
90
91int minibuffer_auto_raise;
92
f927c5ae
JB
93/* If last completion attempt reported "Complete but not unique"
94 then this is the string completed then; otherwise this is nil. */
95
96static Lisp_Object last_exact_completion;
97
98Lisp_Object Quser_variable_p;
2cb6da5c
RS
99
100/* Non-nil means it is the window for C-M-v to scroll
101 when the minibuffer is selected. */
102extern Lisp_Object Vminibuf_scroll_window;
30e13e56
RS
103
104extern Lisp_Object Voverriding_local_map;
f927c5ae 105\f
89fdc4a0
KH
106/* Put minibuf on currently selected frame's minibuffer.
107 We do this whenever the user starts a new minibuffer
108 or when a minibuffer exits. */
109
110void
111choose_minibuf_frame ()
112{
113 if (selected_frame != 0
114 && !EQ (minibuf_window, selected_frame->minibuffer_window))
115 {
15d75900 116#if defined(MSDOS) && !defined(HAVE_X_WINDOWS)
9b69702f
RS
117 selected_frame->minibuffer_window = minibuf_window;
118#else
89fdc4a0
KH
119 /* I don't think that any frames may validly have a null minibuffer
120 window anymore. */
121 if (NILP (selected_frame->minibuffer_window))
122 abort ();
123
124 Fset_window_buffer (selected_frame->minibuffer_window,
125 XWINDOW (minibuf_window)->buffer);
126 minibuf_window = selected_frame->minibuffer_window;
9b69702f 127#endif
89fdc4a0
KH
128 }
129}
68313ed8
RS
130
131DEFUN ("set-minibuffer-window", Fset_minibuffer_window,
132 Sset_minibuffer_window, 1, 1, 0,
133 "Specify which minibuffer window to use for the minibuffer.\n\
134This effects where the minibuffer is displayed if you put text in it\n\
135without invoking the usual minibuffer commands.")
136 (window)
137 Lisp_Object window;
138{
139 CHECK_WINDOW (window, 1);
140 if (! MINI_WINDOW_P (XWINDOW (window)))
141 error ("Window is not a minibuffer window");
142
143 minibuf_window = window;
144
145 return window;
146}
147
89fdc4a0 148\f
f927c5ae
JB
149/* Actual minibuffer invocation. */
150
151void read_minibuf_unwind ();
152Lisp_Object get_minibuffer ();
153Lisp_Object read_minibuf ();
154
770970cb 155/* Read from the minibuffer using keymap MAP, initial contents INITIAL
85b5fe07 156 (a string), putting point minus BACKUP_N chars from the end of INITIAL,
770970cb 157 prompting with PROMPT (a string), using history list HISTVAR
85b5fe07 158 with initial position HISTPOS. (BACKUP_N should be <= 0.)
770970cb
RS
159
160 Normally return the result as a string (the text that was read),
3ab14176 161 but if EXPFLAG is nonzero, read it and return the object read.
b278606c
BF
162 If HISTVAR is given, save the value read on that history only if it doesn't
163 match the front of that history list exactly. The value is pushed onto
be765114 164 the list as the string that was read. */
770970cb 165
f927c5ae 166Lisp_Object
770970cb 167read_minibuf (map, initial, prompt, backup_n, expflag, histvar, histpos)
f927c5ae
JB
168 Lisp_Object map;
169 Lisp_Object initial;
170 Lisp_Object prompt;
5061d9c3 171 Lisp_Object backup_n;
f927c5ae 172 int expflag;
770970cb
RS
173 Lisp_Object histvar;
174 Lisp_Object histpos;
f927c5ae 175{
00a34088 176 Lisp_Object val;
f927c5ae 177 int count = specpdl_ptr - specpdl;
5061d9c3 178 Lisp_Object mini_frame;
00a34088
RS
179 struct gcpro gcpro1, gcpro2, gcpro3;
180
08f7d623 181 single_kboard_state ();
718d3251 182
00a34088
RS
183 val = Qnil;
184 /* Don't need to protect PROMPT, HISTVAR, and HISTPOS because we
185 store them away before we can GC. Don't need to protect
186 BACKUP_N because we use the value only if it is an integer. */
187 GCPRO3 (map, initial, val);
f927c5ae 188
7510b296 189 if (!STRINGP (prompt))
f927c5ae
JB
190 prompt = build_string ("");
191
f927c5ae
JB
192 if (!enable_recursive_minibuffers
193 && minibuf_level > 0
194 && (EQ (selected_window, minibuf_window)))
f927c5ae
JB
195 error ("Command attempted to use minibuffer while in minibuffer");
196
4d04c1f1 197 /* Could we simply bind these variables instead? */
c5b6b680
RS
198 minibuf_save_list
199 = Fcons (Voverriding_local_map,
200 Fcons (minibuf_window, minibuf_save_list));
4d04c1f1
KH
201 minibuf_save_list
202 = Fcons (minibuf_prompt,
203 Fcons (make_number (minibuf_prompt_width),
204 Fcons (Vhelp_form,
ee9e37ab 205 Fcons (Vcurrent_prefix_arg,
4d04c1f1
KH
206 Fcons (Vminibuffer_history_position,
207 Fcons (Vminibuffer_history_variable,
c5b6b680
RS
208 minibuf_save_list))))));
209
00a34088
RS
210 minibuf_prompt_width = 0; /* xdisp.c puts in the right value. */
211 minibuf_prompt = Fcopy_sequence (prompt);
212 Vminibuffer_history_position = histpos;
213 Vminibuffer_history_variable = histvar;
f927c5ae 214
c5b6b680
RS
215 choose_minibuf_frame ();
216
f927c5ae 217 record_unwind_protect (Fset_window_configuration,
b2b2c677
JB
218 Fcurrent_window_configuration (Qnil));
219
ff11dfa1
JB
220 /* If the minibuffer window is on a different frame, save that
221 frame's configuration too. */
5061d9c3 222#ifdef MULTI_FRAME
75f00e72 223 mini_frame = WINDOW_FRAME (XWINDOW (minibuf_window));
ff11dfa1 224 if (XFRAME (mini_frame) != selected_frame)
5061d9c3
RS
225 record_unwind_protect (Fset_window_configuration,
226 Fcurrent_window_configuration (mini_frame));
5563e8e8
KH
227
228 /* If the minibuffer is on an iconified or invisible frame,
229 make it visible now. */
230 Fmake_frame_visible (mini_frame);
231
6a9ee000
RS
232 if (minibuffer_auto_raise)
233 Fraise_frame (mini_frame);
5061d9c3 234#endif
f927c5ae
JB
235
236 val = current_buffer->directory;
237 Fset_buffer (get_minibuffer (minibuf_level));
64a3a3c0
JB
238
239 /* The current buffer's default directory is usually the right thing
240 for our minibuffer here. However, if you're typing a command at
241 a minibuffer-only frame when minibuf_level is zero, then buf IS
242 the current_buffer, so reset_buffer leaves buf's default
243 directory unchanged. This is a bummer when you've just started
244 up Emacs and buf's default directory is Qnil. Here's a hack; can
245 you think of something better to do? Find another buffer with a
246 better directory, and use that one instead. */
7510b296 247 if (STRINGP (val))
64a3a3c0
JB
248 current_buffer->directory = val;
249 else
250 {
251 Lisp_Object buf_list;
252
253 for (buf_list = Vbuffer_alist;
254 CONSP (buf_list);
255 buf_list = XCONS (buf_list)->cdr)
256 {
1e62748e 257 Lisp_Object other_buf;
64a3a3c0 258
1e62748e 259 other_buf = XCONS (XCONS (buf_list)->car)->cdr;
7510b296 260 if (STRINGP (XBUFFER (other_buf)->directory))
64a3a3c0
JB
261 {
262 current_buffer->directory = XBUFFER (other_buf)->directory;
263 break;
264 }
265 }
266 }
267
33b1baf6 268#ifdef MULTI_FRAME
0abbff13
KH
269 if (XFRAME (mini_frame) != selected_frame)
270 Fredirect_frame_focus (Fselected_frame (), mini_frame);
33b1baf6 271#endif
f927c5ae
JB
272 Fmake_local_variable (Qprint_escape_newlines);
273 print_escape_newlines = 1;
274
43bad991 275 record_unwind_protect (read_minibuf_unwind, Qnil);
43bad991 276
f927c5ae
JB
277 Vminibuf_scroll_window = selected_window;
278 Fset_window_buffer (minibuf_window, Fcurrent_buffer ());
f927c5ae 279 Fselect_window (minibuf_window);
5a866662 280 XSETFASTINT (XWINDOW (minibuf_window)->hscroll, 0);
f927c5ae
JB
281
282 Ferase_buffer ();
283 minibuf_level++;
f927c5ae 284
56a98455 285 if (!NILP (initial))
f927c5ae
JB
286 {
287 Finsert (1, &initial);
7510b296 288 if (!NILP (backup_n) && INTEGERP (backup_n))
f927c5ae
JB
289 Fforward_char (backup_n);
290 }
291
f927c5ae 292 echo_area_glyphs = 0;
73168c8b
RS
293 /* This is in case the minibuffer-setup-hook calls Fsit_for. */
294 previous_echo_glyphs = 0;
f927c5ae
JB
295
296 Vhelp_form = Vminibuffer_help_form;
297 current_buffer->keymap = map;
298
5c781212
RS
299 /* Run our hook, but not if it is empty.
300 (run-hooks would do nothing if it is empty,
301 but it's important to save time here in the usual case. */
92d3b06e
RS
302 if (!NILP (Vminibuffer_setup_hook) && !EQ (Vminibuffer_setup_hook, Qunbound)
303 && !NILP (Vrun_hooks))
5c781212
RS
304 call1 (Vrun_hooks, Qminibuffer_setup_hook);
305
f927c5ae
JB
306/* ??? MCC did redraw_screen here if switching screens. */
307 recursive_edit_1 ();
308
309 /* If cursor is on the minibuffer line,
310 show the user we have exited by putting it in column 0. */
ff11dfa1 311 if ((FRAME_CURSOR_Y (selected_frame)
f927c5ae
JB
312 >= XFASTINT (XWINDOW (minibuf_window)->top))
313 && !noninteractive)
314 {
ff11dfa1
JB
315 FRAME_CURSOR_X (selected_frame) = 0;
316 update_frame (selected_frame, 1, 1);
f927c5ae
JB
317 }
318
319 /* Make minibuffer contents into a string */
5bb8cce1
KH
320 val = make_buffer_string (1, Z, 1);
321#if 0 /* make_buffer_string should handle the gap. */
f927c5ae 322 bcopy (GAP_END_ADDR, XSTRING (val)->data + GPT - BEG, Z - GPT);
5bb8cce1 323#endif
770970cb 324
b278606c
BF
325 /* VAL is the string of minibuffer text. */
326 last_minibuf_string = val;
327
3ab14176 328 /* Add the value to the appropriate history list unless it is empty. */
9f6131cf 329 if (XSTRING (val)->size != 0
3ab14176
KH
330 && SYMBOLP (Vminibuffer_history_variable)
331 && ! EQ (XSYMBOL (Vminibuffer_history_variable)->value, Qunbound))
332 {
333 /* If the caller wanted to save the value read on a history list,
334 then do so if the value is not already the front of the list. */
335 Lisp_Object histval;
336 histval = Fsymbol_value (Vminibuffer_history_variable);
337
338 /* The value of the history variable must be a cons or nil. Other
339 values are unacceptable. We silently ignore these values. */
340 if (NILP (histval)
9f6131cf
RS
341 || (CONSP (histval)
342 && NILP (Fequal (last_minibuf_string, Fcar (histval)))))
343 Fset (Vminibuffer_history_variable,
344 Fcons (last_minibuf_string, histval));
345 }
346
347 /* If Lisp form desired instead of string, parse it. */
348 if (expflag)
349 {
350 Lisp_Object expr_and_pos;
351 unsigned char *p;
352
353 expr_and_pos = Fread_from_string (val, Qnil, Qnil);
354 /* Ignore trailing whitespace; any other trailing junk is an error. */
355 for (p = XSTRING (val)->data + XINT (Fcdr (expr_and_pos)); *p; p++)
356 if (*p != ' ' && *p != '\t' && *p != '\n')
357 error ("Trailing garbage following expression");
358 val = Fcar (expr_and_pos);
3ab14176
KH
359 }
360
00a34088
RS
361 /* The appropriate frame will get selected
362 in set-window-configuration. */
363 RETURN_UNGCPRO (unbind_to (count, val));
f927c5ae
JB
364}
365
366/* Return a buffer to be used as the minibuffer at depth `depth'.
367 depth = 0 is the lowest allowed argument, and that is the value
368 used for nonrecursive minibuffer invocations */
369
370Lisp_Object
371get_minibuffer (depth)
372 int depth;
373{
374 Lisp_Object tail, num, buf;
9f6c23bc 375 char name[24];
f927c5ae
JB
376 extern Lisp_Object nconc2 ();
377
5a866662 378 XSETFASTINT (num, depth);
f927c5ae 379 tail = Fnthcdr (num, Vminibuffer_list);
56a98455 380 if (NILP (tail))
f927c5ae
JB
381 {
382 tail = Fcons (Qnil, Qnil);
383 Vminibuffer_list = nconc2 (Vminibuffer_list, tail);
384 }
385 buf = Fcar (tail);
56a98455 386 if (NILP (buf) || NILP (XBUFFER (buf)->name))
f927c5ae
JB
387 {
388 sprintf (name, " *Minibuf-%d*", depth);
389 buf = Fget_buffer_create (build_string (name));
5d6533f1
JB
390
391 /* Although the buffer's name starts with a space, undo should be
392 enabled in it. */
393 Fbuffer_enable_undo (buf);
394
f927c5ae
JB
395 XCONS (tail)->car = buf;
396 }
397 else
5956f71d 398 {
6b3faad8
RS
399 int count = specpdl_ptr - specpdl;
400
5956f71d 401 reset_buffer (XBUFFER (buf));
6b3faad8
RS
402 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
403 Fset_buffer (buf);
404 Fkill_all_local_variables ();
405 unbind_to (count, Qnil);
5956f71d 406 }
64a3a3c0 407
f927c5ae
JB
408 return buf;
409}
410
411/* This function is called on exiting minibuffer, whether normally or not,
412 and it restores the current window, buffer, etc. */
413
414void
43bad991
JB
415read_minibuf_unwind (data)
416 Lisp_Object data;
f927c5ae 417{
c24e1160
RS
418 Lisp_Object old_deactivate_mark;
419
0a1dd1c5
RS
420 /* We are exiting the minibuffer one way or the other,
421 so run the hook. */
422 if (!NILP (Vminibuffer_exit_hook) && !EQ (Vminibuffer_exit_hook, Qunbound)
423 && !NILP (Vrun_hooks))
060ffec1 424 safe_run_hooks (Qminibuffer_exit_hook);
0a1dd1c5 425
f927c5ae
JB
426 /* Erase the minibuffer we were using at this level. */
427 Fset_buffer (XWINDOW (minibuf_window)->buffer);
428
429 /* Prevent error in erase-buffer. */
430 current_buffer->read_only = Qnil;
c24e1160
RS
431
432 old_deactivate_mark = Vdeactivate_mark;
f927c5ae 433 Ferase_buffer ();
c24e1160 434 Vdeactivate_mark = old_deactivate_mark;
f927c5ae
JB
435
436 /* If this was a recursive minibuffer,
437 tie the minibuffer window back to the outer level minibuffer buffer */
438 minibuf_level--;
439 /* Make sure minibuffer window is erased, not ignored */
440 windows_or_buffers_changed++;
5a866662 441 XSETFASTINT (XWINDOW (minibuf_window)->last_modified, 0);
f927c5ae 442
4d04c1f1
KH
443 /* Restore prompt, etc from outer minibuffer */
444 minibuf_prompt = Fcar (minibuf_save_list);
445 minibuf_save_list = Fcdr (minibuf_save_list);
446 minibuf_prompt_width = XFASTINT (Fcar (minibuf_save_list));
447 minibuf_save_list = Fcdr (minibuf_save_list);
448 Vhelp_form = Fcar (minibuf_save_list);
449 minibuf_save_list = Fcdr (minibuf_save_list);
ee9e37ab 450 Vcurrent_prefix_arg = Fcar (minibuf_save_list);
4d04c1f1
KH
451 minibuf_save_list = Fcdr (minibuf_save_list);
452 Vminibuffer_history_position = Fcar (minibuf_save_list);
453 minibuf_save_list = Fcdr (minibuf_save_list);
454 Vminibuffer_history_variable = Fcar (minibuf_save_list);
455 minibuf_save_list = Fcdr (minibuf_save_list);
30e13e56 456 Voverriding_local_map = Fcar (minibuf_save_list);
c5b6b680
RS
457 minibuf_save_list = Fcdr (minibuf_save_list);
458 minibuf_window = Fcar (minibuf_save_list);
30e13e56 459 minibuf_save_list = Fcdr (minibuf_save_list);
f927c5ae
JB
460}
461\f
b9d721de
JB
462
463/* This comment supplies the doc string for read-from-minibuffer,
464 for make-docfile to see. We cannot put this in the real DEFUN
465 due to limits in the Unix cpp.
466
f927c5ae
JB
467DEFUN ("read-from-minibuffer", Fread_from_minibuffer, Sread_from_minibuffer, 1, 5, 0,
468 "Read a string from the minibuffer, prompting with string PROMPT.\n\
469If optional second arg INITIAL-CONTENTS is non-nil, it is a string\n\
470 to be inserted into the minibuffer before reading input.\n\
770970cb
RS
471 If INITIAL-CONTENTS is (STRING . POSITION), the initial input\n\
472 is STRING, but point is placed POSITION characters into the string.\n\
f927c5ae
JB
473Third arg KEYMAP is a keymap to use whilst reading;\n\
474 if omitted or nil, the default is `minibuffer-local-map'.\n\
475If fourth arg READ is non-nil, then interpret the result as a lisp object\n\
476 and return that object:\n\
477 in other words, do `(car (read-from-string INPUT-STRING))'\n\
770970cb
RS
478Fifth arg HIST, if non-nil, specifies a history list\n\
479 and optionally the initial position in the list.\n\
480 It can be a symbol, which is the history list variable to use,\n\
481 or it can be a cons cell (HISTVAR . HISTPOS).\n\
482 In that case, HISTVAR is the history list variable to use,\n\
483 and HISTPOS is the initial position (the position in the list\n\
484 which INITIAL-CONTENTS corresponds to).\n\
b9d721de
JB
485 Positions are counted starting from 1 at the beginning of the list."
486*/
487
488DEFUN ("read-from-minibuffer", Fread_from_minibuffer, Sread_from_minibuffer, 1, 5, 0,
489 0 /* See immediately above */)
68e5a8a2
RS
490 (prompt, initial_contents, keymap, read, hist)
491 Lisp_Object prompt, initial_contents, keymap, read, hist;
f927c5ae
JB
492{
493 int pos = 0;
770970cb
RS
494 Lisp_Object histvar, histpos, position;
495 position = Qnil;
f927c5ae
JB
496
497 CHECK_STRING (prompt, 0);
68e5a8a2 498 if (!NILP (initial_contents))
f927c5ae 499 {
7510b296 500 if (CONSP (initial_contents))
770970cb 501 {
68e5a8a2
RS
502 position = Fcdr (initial_contents);
503 initial_contents = Fcar (initial_contents);
770970cb 504 }
68e5a8a2 505 CHECK_STRING (initial_contents, 1);
56a98455 506 if (!NILP (position))
f927c5ae
JB
507 {
508 CHECK_NUMBER (position, 0);
509 /* Convert to distance from end of input. */
68e5a8a2 510 pos = XINT (position) - 1 - XSTRING (initial_contents)->size;
f927c5ae
JB
511 }
512 }
513
56a98455 514 if (NILP (keymap))
f927c5ae
JB
515 keymap = Vminibuffer_local_map;
516 else
517 keymap = get_keymap (keymap,2);
770970cb 518
7510b296 519 if (SYMBOLP (hist))
770970cb
RS
520 {
521 histvar = hist;
522 histpos = Qnil;
523 }
524 else
525 {
526 histvar = Fcar_safe (hist);
527 histpos = Fcdr_safe (hist);
528 }
529 if (NILP (histvar))
530 histvar = Qminibuffer_history;
531 if (NILP (histpos))
5a866662 532 XSETFASTINT (histpos, 0);
770970cb 533
68e5a8a2 534 return read_minibuf (keymap, initial_contents, prompt,
85b5fe07 535 make_number (pos), !NILP (read), histvar, histpos);
f927c5ae
JB
536}
537
538DEFUN ("read-minibuffer", Fread_minibuffer, Sread_minibuffer, 1, 2, 0,
539 "Return a Lisp object read using the minibuffer.\n\
540Prompt with PROMPT. If non-nil, optional second arg INITIAL-CONTENTS\n\
541is a string to insert in the minibuffer before reading.")
542 (prompt, initial_contents)
543 Lisp_Object prompt, initial_contents;
544{
545 CHECK_STRING (prompt, 0);
56a98455 546 if (!NILP (initial_contents))
a1b4b084 547 CHECK_STRING (initial_contents, 1);
770970cb
RS
548 return read_minibuf (Vminibuffer_local_map, initial_contents,
549 prompt, Qnil, 1, Qminibuffer_history, make_number (0));
f927c5ae
JB
550}
551
552DEFUN ("eval-minibuffer", Feval_minibuffer, Seval_minibuffer, 1, 2, 0,
553 "Return value of Lisp expression read using the minibuffer.\n\
554Prompt with PROMPT. If non-nil, optional second arg INITIAL-CONTENTS\n\
555is a string to insert in the minibuffer before reading.")
556 (prompt, initial_contents)
557 Lisp_Object prompt, initial_contents;
558{
559 return Feval (Fread_minibuffer (prompt, initial_contents));
560}
561
562/* Functions that use the minibuffer to read various things. */
563
80896ab4 564DEFUN ("read-string", Fread_string, Sread_string, 1, 3, 0,
f927c5ae 565 "Read a string from the minibuffer, prompting with string PROMPT.\n\
80896ab4
RS
566If non-nil, second arg INITIAL-INPUT is a string to insert before reading.\n\
567The third arg HISTORY, if non-nil, specifies a history list\n\
568 and optionally the initial position in the list.\n\
569See `read-from-minibuffer' for details of HISTORY argument.")
570 (prompt, initial_input, history)
571 Lisp_Object prompt, initial_input, history;
f927c5ae 572{
80896ab4 573 return Fread_from_minibuffer (prompt, initial_input, Qnil, Qnil, history);
f927c5ae
JB
574}
575
b278606c 576DEFUN ("read-no-blanks-input", Fread_no_blanks_input, Sread_no_blanks_input, 1, 2, 0,
f927c5ae
JB
577 "Args PROMPT and INIT, strings. Read a string from the terminal, not allowing blanks.\n\
578Prompt with PROMPT, and provide INIT as an initial value of the input string.")
579 (prompt, init)
580 Lisp_Object prompt, init;
581{
582 CHECK_STRING (prompt, 0);
56a98455 583 if (! NILP (init))
f927c5ae
JB
584 CHECK_STRING (init, 1);
585
770970cb
RS
586 return read_minibuf (Vminibuffer_local_ns_map, init, prompt, Qnil, 0,
587 Qminibuffer_history, make_number (0));
f927c5ae
JB
588}
589
590DEFUN ("read-command", Fread_command, Sread_command, 1, 1, 0,
591 "One arg PROMPT, a string. Read the name of a command and return as a symbol.\n\
592Prompts with PROMPT.")
593 (prompt)
594 Lisp_Object prompt;
595{
596 return Fintern (Fcompleting_read (prompt, Vobarray, Qcommandp, Qt, Qnil, Qnil),
597 Qnil);
598}
599
600#ifdef NOTDEF
601DEFUN ("read-function", Fread_function, Sread_function, 1, 1, 0,
602 "One arg PROMPT, a string. Read the name of a function and return as a symbol.\n\
603Prompts with PROMPT.")
604 (prompt)
605 Lisp_Object prompt;
606{
607 return Fintern (Fcompleting_read (prompt, Vobarray, Qfboundp, Qt, Qnil, Qnil),
608 Qnil);
609}
610#endif /* NOTDEF */
611
612DEFUN ("read-variable", Fread_variable, Sread_variable, 1, 1, 0,
613 "One arg PROMPT, a string. Read the name of a user variable and return\n\
614it as a symbol. Prompts with PROMPT.\n\
615A user variable is one whose documentation starts with a `*' character.")
616 (prompt)
617 Lisp_Object prompt;
618{
619 return Fintern (Fcompleting_read (prompt, Vobarray,
620 Quser_variable_p, Qt, Qnil, Qnil),
621 Qnil);
622}
623
624DEFUN ("read-buffer", Fread_buffer, Sread_buffer, 1, 3, 0,
625 "One arg PROMPT, a string. Read the name of a buffer and return as a string.\n\
626Prompts with PROMPT.\n\
627Optional second arg is value to return if user enters an empty line.\n\
628If optional third arg REQUIRE-MATCH is non-nil, only existing buffer names are allowed.")
629 (prompt, def, require_match)
630 Lisp_Object prompt, def, require_match;
631{
632 Lisp_Object tem;
633 Lisp_Object args[3];
634 struct gcpro gcpro1;
635
7510b296 636 if (BUFFERP (def))
f927c5ae 637 def = XBUFFER (def)->name;
56a98455 638 if (!NILP (def))
f927c5ae
JB
639 {
640 args[0] = build_string ("%s(default %s) ");
641 args[1] = prompt;
642 args[2] = def;
643 prompt = Fformat (3, args);
644 }
645 GCPRO1 (def);
646 tem = Fcompleting_read (prompt, Vbuffer_alist, Qnil, require_match, Qnil, Qnil);
647 UNGCPRO;
648 if (XSTRING (tem)->size)
649 return tem;
650 return def;
651}
652\f
653DEFUN ("try-completion", Ftry_completion, Stry_completion, 2, 3, 0,
654 "Return common substring of all completions of STRING in ALIST.\n\
655Each car of each element of ALIST is tested to see if it begins with STRING.\n\
656All that match are compared together; the longest initial sequence\n\
657common to all matches is returned as a string.\n\
658If there is no match at all, nil is returned.\n\
659For an exact match, t is returned.\n\
660\n\
661ALIST can be an obarray instead of an alist.\n\
662Then the print names of all symbols in the obarray are the possible matches.\n\
663\n\
664ALIST can also be a function to do the completion itself.\n\
665It receives three arguments: the values STRING, PREDICATE and nil.\n\
666Whatever it returns becomes the value of `try-completion'.\n\
667\n\
668If optional third argument PREDICATE is non-nil,\n\
669it is used to test each possible match.\n\
670The match is a candidate only if PREDICATE returns non-nil.\n\
89a255dc
RS
671The argument given to PREDICATE is the alist element\n\
672or the symbol from the obarray.")
7efd36fc
EN
673 (string, alist, predicate)
674 Lisp_Object string, alist, predicate;
f927c5ae
JB
675{
676 Lisp_Object bestmatch, tail, elt, eltstring;
677 int bestmatchsize;
678 int compare, matchsize;
56a98455 679 int list = CONSP (alist) || NILP (alist);
f927c5ae
JB
680 int index, obsize;
681 int matchcount = 0;
682 Lisp_Object bucket, zero, end, tem;
683 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
684
685 CHECK_STRING (string, 0);
7510b296 686 if (!list && !VECTORP (alist))
7efd36fc 687 return call3 (alist, string, predicate, Qnil);
f927c5ae
JB
688
689 bestmatch = Qnil;
690
691 /* If ALIST is not a list, set TAIL just for gc pro. */
692 tail = alist;
693 if (! list)
694 {
695 index = 0;
696 obsize = XVECTOR (alist)->size;
697 bucket = XVECTOR (alist)->contents[index];
698 }
699
700 while (1)
701 {
702 /* Get the next element of the alist or obarray. */
703 /* Exit the loop if the elements are all used up. */
704 /* elt gets the alist element or symbol.
705 eltstring gets the name to check as a completion. */
706
707 if (list)
708 {
56a98455 709 if (NILP (tail))
f927c5ae
JB
710 break;
711 elt = Fcar (tail);
712 eltstring = Fcar (elt);
713 tail = Fcdr (tail);
714 }
715 else
716 {
717 if (XFASTINT (bucket) != 0)
718 {
719 elt = bucket;
720 eltstring = Fsymbol_name (elt);
721 if (XSYMBOL (bucket)->next)
722 XSETSYMBOL (bucket, XSYMBOL (bucket)->next);
723 else
5a866662 724 XSETFASTINT (bucket, 0);
f927c5ae
JB
725 }
726 else if (++index >= obsize)
727 break;
728 else
729 {
730 bucket = XVECTOR (alist)->contents[index];
731 continue;
732 }
733 }
734
735 /* Is this element a possible completion? */
736
7510b296 737 if (STRINGP (eltstring)
42006772
RS
738 && XSTRING (string)->size <= XSTRING (eltstring)->size
739 && 0 > scmp (XSTRING (eltstring)->data, XSTRING (string)->data,
740 XSTRING (string)->size))
f927c5ae
JB
741 {
742 /* Yes. */
42006772
RS
743 Lisp_Object regexps;
744 Lisp_Object zero;
5a866662 745 XSETFASTINT (zero, 0);
42006772
RS
746
747 /* Ignore this element if it fails to match all the regexps. */
748 for (regexps = Vcompletion_regexp_list; CONSP (regexps);
749 regexps = XCONS (regexps)->cdr)
750 {
751 tem = Fstring_match (XCONS (regexps)->car, eltstring, zero);
752 if (NILP (tem))
753 break;
754 }
755 if (CONSP (regexps))
756 continue;
757
f927c5ae
JB
758 /* Ignore this element if there is a predicate
759 and the predicate doesn't like it. */
760
7efd36fc 761 if (!NILP (predicate))
f927c5ae 762 {
7efd36fc 763 if (EQ (predicate, Qcommandp))
f927c5ae
JB
764 tem = Fcommandp (elt);
765 else
766 {
767 GCPRO4 (tail, string, eltstring, bestmatch);
7efd36fc 768 tem = call1 (predicate, elt);
f927c5ae
JB
769 UNGCPRO;
770 }
56a98455 771 if (NILP (tem)) continue;
f927c5ae
JB
772 }
773
774 /* Update computation of how much all possible completions match */
775
776 matchcount++;
56a98455 777 if (NILP (bestmatch))
f927c5ae
JB
778 bestmatch = eltstring, bestmatchsize = XSTRING (eltstring)->size;
779 else
780 {
781 compare = min (bestmatchsize, XSTRING (eltstring)->size);
782 matchsize = scmp (XSTRING (bestmatch)->data,
783 XSTRING (eltstring)->data,
784 compare);
52b14ac0
JB
785 if (matchsize < 0)
786 matchsize = compare;
787 if (completion_ignore_case)
788 {
789 /* If this is an exact match except for case,
790 use it as the best match rather than one that is not an
791 exact match. This way, we get the case pattern
792 of the actual match. */
793 if ((matchsize == XSTRING (eltstring)->size
794 && matchsize < XSTRING (bestmatch)->size)
795 ||
796 /* If there is more than one exact match ignoring case,
797 and one of them is exact including case,
798 prefer that one. */
799 /* If there is no exact match ignoring case,
800 prefer a match that does not change the case
801 of the input. */
802 ((matchsize == XSTRING (eltstring)->size)
803 ==
804 (matchsize == XSTRING (bestmatch)->size)
805 && !bcmp (XSTRING (eltstring)->data,
806 XSTRING (string)->data, XSTRING (string)->size)
807 && bcmp (XSTRING (bestmatch)->data,
808 XSTRING (string)->data, XSTRING (string)->size)))
809 bestmatch = eltstring;
810 }
811 bestmatchsize = matchsize;
f927c5ae
JB
812 }
813 }
814 }
815
56a98455 816 if (NILP (bestmatch))
f927c5ae 817 return Qnil; /* No completions found */
52b14ac0
JB
818 /* If we are ignoring case, and there is no exact match,
819 and no additional text was supplied,
820 don't change the case of what the user typed. */
821 if (completion_ignore_case && bestmatchsize == XSTRING (string)->size
822 && XSTRING (bestmatch)->size > bestmatchsize)
823 return string;
824
825 /* Return t if the supplied string is an exact match (counting case);
826 it does not require any change to be made. */
827 if (matchcount == 1 && bestmatchsize == XSTRING (string)->size
828 && !bcmp (XSTRING (bestmatch)->data, XSTRING (string)->data,
829 bestmatchsize))
f927c5ae
JB
830 return Qt;
831
5a866662
KH
832 XSETFASTINT (zero, 0); /* Else extract the part in which */
833 XSETFASTINT (end, bestmatchsize); /* all completions agree */
f927c5ae
JB
834 return Fsubstring (bestmatch, zero, end);
835}
836
837/* Compare exactly LEN chars of strings at S1 and S2,
838 ignoring case if appropriate.
839 Return -1 if strings match,
840 else number of chars that match at the beginning. */
841
829f7f7c 842int
f927c5ae 843scmp (s1, s2, len)
829f7f7c 844 register unsigned char *s1, *s2;
f927c5ae
JB
845 int len;
846{
847 register int l = len;
848
849 if (completion_ignore_case)
850 {
851 while (l && DOWNCASE (*s1++) == DOWNCASE (*s2++))
852 l--;
853 }
854 else
855 {
856 while (l && *s1++ == *s2++)
857 l--;
858 }
859 if (l == 0)
860 return -1;
829f7f7c
KH
861 else
862 return len - l;
f927c5ae
JB
863}
864\f
89a255dc 865DEFUN ("all-completions", Fall_completions, Sall_completions, 2, 4, 0,
f927c5ae
JB
866 "Search for partial matches to STRING in ALIST.\n\
867Each car of each element of ALIST is tested to see if it begins with STRING.\n\
868The value is a list of all the strings from ALIST that match.\n\
89a255dc 869\n\
f927c5ae
JB
870ALIST can be an obarray instead of an alist.\n\
871Then the print names of all symbols in the obarray are the possible matches.\n\
872\n\
873ALIST can also be a function to do the completion itself.\n\
874It receives three arguments: the values STRING, PREDICATE and t.\n\
875Whatever it returns becomes the value of `all-completion'.\n\
876\n\
877If optional third argument PREDICATE is non-nil,\n\
878it is used to test each possible match.\n\
879The match is a candidate only if PREDICATE returns non-nil.\n\
89a255dc
RS
880The argument given to PREDICATE is the alist element\n\
881or the symbol from the obarray.\n\
882\n\
883If the optional fourth argument HIDE-SPACES is non-nil,\n\
884strings in ALIST that start with a space\n\
885are ignored unless STRING itself starts with a space.")
7efd36fc
EN
886 (string, alist, predicate, hide_spaces)
887 Lisp_Object string, alist, predicate, hide_spaces;
f927c5ae
JB
888{
889 Lisp_Object tail, elt, eltstring;
890 Lisp_Object allmatches;
56a98455 891 int list = CONSP (alist) || NILP (alist);
f927c5ae
JB
892 int index, obsize;
893 Lisp_Object bucket, tem;
894 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
895
896 CHECK_STRING (string, 0);
7510b296 897 if (!list && !VECTORP (alist))
f927c5ae 898 {
7efd36fc 899 return call3 (alist, string, predicate, Qt);
f927c5ae
JB
900 }
901 allmatches = Qnil;
902
903 /* If ALIST is not a list, set TAIL just for gc pro. */
904 tail = alist;
905 if (! list)
906 {
907 index = 0;
908 obsize = XVECTOR (alist)->size;
909 bucket = XVECTOR (alist)->contents[index];
910 }
911
912 while (1)
913 {
914 /* Get the next element of the alist or obarray. */
915 /* Exit the loop if the elements are all used up. */
916 /* elt gets the alist element or symbol.
917 eltstring gets the name to check as a completion. */
918
919 if (list)
920 {
56a98455 921 if (NILP (tail))
f927c5ae
JB
922 break;
923 elt = Fcar (tail);
924 eltstring = Fcar (elt);
925 tail = Fcdr (tail);
926 }
927 else
928 {
929 if (XFASTINT (bucket) != 0)
930 {
931 elt = bucket;
932 eltstring = Fsymbol_name (elt);
933 if (XSYMBOL (bucket)->next)
934 XSETSYMBOL (bucket, XSYMBOL (bucket)->next);
935 else
5a866662 936 XSETFASTINT (bucket, 0);
f927c5ae
JB
937 }
938 else if (++index >= obsize)
939 break;
940 else
941 {
942 bucket = XVECTOR (alist)->contents[index];
943 continue;
944 }
945 }
946
947 /* Is this element a possible completion? */
948
7510b296 949 if (STRINGP (eltstring)
2cbaf886 950 && XSTRING (string)->size <= XSTRING (eltstring)->size
89a255dc 951 /* If HIDE_SPACES, reject alternatives that start with space
2cbaf886
RS
952 unless the input starts with space. */
953 && ((XSTRING (string)->size > 0 && XSTRING (string)->data[0] == ' ')
89a255dc
RS
954 || XSTRING (eltstring)->data[0] != ' '
955 || NILP (hide_spaces))
2cbaf886
RS
956 && 0 > scmp (XSTRING (eltstring)->data, XSTRING (string)->data,
957 XSTRING (string)->size))
f927c5ae
JB
958 {
959 /* Yes. */
42006772
RS
960 Lisp_Object regexps;
961 Lisp_Object zero;
5a866662 962 XSETFASTINT (zero, 0);
42006772
RS
963
964 /* Ignore this element if it fails to match all the regexps. */
965 for (regexps = Vcompletion_regexp_list; CONSP (regexps);
966 regexps = XCONS (regexps)->cdr)
967 {
968 tem = Fstring_match (XCONS (regexps)->car, eltstring, zero);
969 if (NILP (tem))
970 break;
971 }
972 if (CONSP (regexps))
973 continue;
974
f927c5ae
JB
975 /* Ignore this element if there is a predicate
976 and the predicate doesn't like it. */
977
7efd36fc 978 if (!NILP (predicate))
f927c5ae 979 {
7efd36fc 980 if (EQ (predicate, Qcommandp))
f927c5ae
JB
981 tem = Fcommandp (elt);
982 else
983 {
984 GCPRO4 (tail, eltstring, allmatches, string);
7efd36fc 985 tem = call1 (predicate, elt);
f927c5ae
JB
986 UNGCPRO;
987 }
56a98455 988 if (NILP (tem)) continue;
f927c5ae
JB
989 }
990 /* Ok => put it on the list. */
991 allmatches = Fcons (eltstring, allmatches);
992 }
993 }
994
995 return Fnreverse (allmatches);
996}
997\f
998Lisp_Object Vminibuffer_completion_table, Qminibuffer_completion_table;
999Lisp_Object Vminibuffer_completion_predicate, Qminibuffer_completion_predicate;
1000Lisp_Object Vminibuffer_completion_confirm, Qminibuffer_completion_confirm;
1001
b9d721de
JB
1002/* This comment supplies the doc string for completing-read,
1003 for make-docfile to see. We cannot put this in the real DEFUN
1004 due to limits in the Unix cpp.
1005
f927c5ae
JB
1006DEFUN ("completing-read", Fcompleting_read, Scompleting_read, 2, 6, 0,
1007 "Read a string in the minibuffer, with completion.\n\
f927c5ae
JB
1008PROMPT is a string to prompt with; normally it ends in a colon and a space.\n\
1009TABLE is an alist whose elements' cars are strings, or an obarray.\n\
1010PREDICATE limits completion to a subset of TABLE.\n\
6b3faad8
RS
1011See `try-completion' and `all-completions' for more details
1012 on completion, TABLE, and PREDICATE.\n\
cbbc3917 1013\n\
f927c5ae 1014If REQUIRE-MATCH is non-nil, the user is not allowed to exit unless\n\
4ced3209 1015 the input is (or completes to) an element of TABLE or is null.\n\
f927c5ae 1016 If it is also not t, Return does not exit if it does non-null completion.\n\
cbbc3917
RS
1017If the input is null, `completing-read' returns nil,\n\
1018 regardless of the value of REQUIRE-MATCH.\n\
1019\n\
f927c5ae 1020If INITIAL-INPUT is non-nil, insert it in the minibuffer initially.\n\
770970cb
RS
1021 If it is (STRING . POSITION), the initial input\n\
1022 is STRING, but point is placed POSITION characters into the string.\n\
1023HIST, if non-nil, specifies a history list\n\
1024 and optionally the initial position in the list.\n\
1025 It can be a symbol, which is the history list variable to use,\n\
1026 or it can be a cons cell (HISTVAR . HISTPOS).\n\
1027 In that case, HISTVAR is the history list variable to use,\n\
1028 and HISTPOS is the initial position (the position in the list\n\
1029 which INITIAL-CONTENTS corresponds to).\n\
1030 Positions are counted starting from 1 at the beginning of the list.\n\
1031Completion ignores case if the ambient value of\n\
b9d721de
JB
1032 `completion-ignore-case' is non-nil."
1033*/
1034DEFUN ("completing-read", Fcompleting_read, Scompleting_read, 2, 6, 0,
1035 0 /* See immediately above */)
7efd36fc
EN
1036 (prompt, table, predicate, require_match, init, hist)
1037 Lisp_Object prompt, table, predicate, require_match, init, hist;
f927c5ae 1038{
770970cb
RS
1039 Lisp_Object val, histvar, histpos, position;
1040 int pos = 0;
f927c5ae
JB
1041 int count = specpdl_ptr - specpdl;
1042 specbind (Qminibuffer_completion_table, table);
7efd36fc 1043 specbind (Qminibuffer_completion_predicate, predicate);
f927c5ae
JB
1044 specbind (Qminibuffer_completion_confirm,
1045 EQ (require_match, Qt) ? Qnil : Qt);
1046 last_exact_completion = Qnil;
770970cb
RS
1047
1048 position = Qnil;
1049 if (!NILP (init))
1050 {
7510b296 1051 if (CONSP (init))
770970cb
RS
1052 {
1053 position = Fcdr (init);
1054 init = Fcar (init);
1055 }
1056 CHECK_STRING (init, 0);
1057 if (!NILP (position))
1058 {
1059 CHECK_NUMBER (position, 0);
1060 /* Convert to distance from end of input. */
5dadd3a2 1061 pos = XINT (position) - XSTRING (init)->size;
770970cb
RS
1062 }
1063 }
1064
7510b296 1065 if (SYMBOLP (hist))
770970cb
RS
1066 {
1067 histvar = hist;
1068 histpos = Qnil;
1069 }
1070 else
1071 {
1072 histvar = Fcar_safe (hist);
1073 histpos = Fcdr_safe (hist);
1074 }
1075 if (NILP (histvar))
1076 histvar = Qminibuffer_history;
1077 if (NILP (histpos))
5a866662 1078 XSETFASTINT (histpos, 0);
770970cb 1079
56a98455 1080 val = read_minibuf (NILP (require_match)
f927c5ae
JB
1081 ? Vminibuffer_local_completion_map
1082 : Vminibuffer_local_must_match_map,
85b5fe07 1083 init, prompt, make_number (pos), 0,
770970cb 1084 histvar, histpos);
f927c5ae
JB
1085 return unbind_to (count, val);
1086}
1087\f
1088/* Temporarily display the string M at the end of the current
1089 minibuffer contents. This is used to display things like
1090 "[No Match]" when the user requests a completion for a prefix
1091 that has no possible completions, and other quick, unobtrusive
1092 messages. */
1093
1094temp_echo_area_glyphs (m)
1095 char *m;
1096{
f927c5ae 1097 int osize = ZV;
f3273b67 1098 int opoint = PT;
f927c5ae
JB
1099 Lisp_Object oinhibit;
1100 oinhibit = Vinhibit_quit;
1101
896adf84
JB
1102 /* Clear out any old echo-area message to make way for our new thing. */
1103 message (0);
f927c5ae
JB
1104
1105 SET_PT (osize);
1106 insert_string (m);
f3273b67 1107 SET_PT (opoint);
f927c5ae
JB
1108 Vinhibit_quit = Qt;
1109 Fsit_for (make_number (2), Qnil, Qnil);
0d0e34df 1110 del_range (osize, ZV);
f3273b67 1111 SET_PT (opoint);
56a98455 1112 if (!NILP (Vquit_flag))
f927c5ae
JB
1113 {
1114 Vquit_flag = Qnil;
ba71d84a 1115 Vunread_command_events = Fcons (make_number (quit_char), Qnil);
f927c5ae
JB
1116 }
1117 Vinhibit_quit = oinhibit;
1118}
1119
1120Lisp_Object Fminibuffer_completion_help ();
52b14ac0 1121Lisp_Object assoc_for_completion ();
5d2ca7ae
RS
1122/* A subroutine of Fintern_soft. */
1123extern Lisp_Object oblookup ();
1124
1125
1126/* Test whether TXT is an exact completion. */
1127Lisp_Object
1128test_completion (txt)
1129 Lisp_Object txt;
1130{
1131 Lisp_Object tem;
1132
1133 if (CONSP (Vminibuffer_completion_table)
1134 || NILP (Vminibuffer_completion_table))
1135 return assoc_for_completion (txt, Vminibuffer_completion_table);
1136 else if (VECTORP (Vminibuffer_completion_table))
1137 {
1138 /* Bypass intern-soft as that loses for nil */
1139 tem = oblookup (Vminibuffer_completion_table,
1140 XSTRING (txt)->data, XSTRING (txt)->size);
44472c88 1141 if (!SYMBOLP (tem))
5d2ca7ae
RS
1142 return Qnil;
1143 else if (!NILP (Vminibuffer_completion_predicate))
1144 return call1 (Vminibuffer_completion_predicate, tem);
1145 else
1146 return Qt;
1147 }
1148 else
1149 return call3 (Vminibuffer_completion_table, txt,
1150 Vminibuffer_completion_predicate, Qlambda);
1151}
f927c5ae
JB
1152
1153/* returns:
1154 * 0 no possible completion
1155 * 1 was already an exact and unique completion
1156 * 3 was already an exact completion
1157 * 4 completed to an exact completion
1158 * 5 some completion happened
1159 * 6 no completion happened
1160 */
1161int
1162do_completion ()
1163{
1164 Lisp_Object completion, tem;
1165 int completedp;
1166 Lisp_Object last;
1e00c2ff 1167 struct gcpro gcpro1, gcpro2;
f927c5ae
JB
1168
1169 completion = Ftry_completion (Fbuffer_string (), Vminibuffer_completion_table,
1170 Vminibuffer_completion_predicate);
1171 last = last_exact_completion;
1172 last_exact_completion = Qnil;
1173
4f9b95e5
KH
1174 GCPRO2 (completion, last);
1175
56a98455 1176 if (NILP (completion))
f927c5ae
JB
1177 {
1178 bitch_at_user ();
1179 temp_echo_area_glyphs (" [No match]");
1e00c2ff 1180 UNGCPRO;
f927c5ae
JB
1181 return 0;
1182 }
1183
1184 if (EQ (completion, Qt)) /* exact and unique match */
1e00c2ff
KH
1185 {
1186 UNGCPRO;
1187 return 1;
1188 }
f927c5ae
JB
1189
1190 /* compiler bug */
1191 tem = Fstring_equal (completion, Fbuffer_string());
56a98455 1192 if (completedp = NILP (tem))
f927c5ae
JB
1193 {
1194 Ferase_buffer (); /* Some completion happened */
1195 Finsert (1, &completion);
1196 }
1197
1198 /* It did find a match. Do we match some possibility exactly now? */
5d2ca7ae 1199 tem = test_completion (Fbuffer_string ());
56a98455 1200 if (NILP (tem))
1e00c2ff
KH
1201 {
1202 /* not an exact match */
1203 UNGCPRO;
f927c5ae
JB
1204 if (completedp)
1205 return 5;
1206 else if (auto_help)
1207 Fminibuffer_completion_help ();
1208 else
1209 temp_echo_area_glyphs (" [Next char not unique]");
1210 return 6;
1211 }
1212 else if (completedp)
1e00c2ff
KH
1213 {
1214 UNGCPRO;
1215 return 4;
1216 }
f927c5ae
JB
1217 /* If the last exact completion and this one were the same,
1218 it means we've already given a "Complete but not unique"
52b14ac0 1219 message and the user's hit TAB again, so now we give him help. */
f927c5ae 1220 last_exact_completion = completion;
56a98455 1221 if (!NILP (last))
f927c5ae
JB
1222 {
1223 tem = Fbuffer_string ();
56a98455 1224 if (!NILP (Fequal (tem, last)))
f927c5ae
JB
1225 Fminibuffer_completion_help ();
1226 }
1e00c2ff 1227 UNGCPRO;
f927c5ae 1228 return 3;
f927c5ae 1229}
1e00c2ff 1230
52b14ac0
JB
1231/* Like assoc but assumes KEY is a string, and ignores case if appropriate. */
1232
1233Lisp_Object
1234assoc_for_completion (key, list)
1235 register Lisp_Object key;
1236 Lisp_Object list;
1237{
1238 register Lisp_Object tail;
1239
1240 if (completion_ignore_case)
1241 key = Fupcase (key);
1242
56a98455 1243 for (tail = list; !NILP (tail); tail = Fcdr (tail))
52b14ac0
JB
1244 {
1245 register Lisp_Object elt, tem, thiscar;
1246 elt = Fcar (tail);
1247 if (!CONSP (elt)) continue;
1248 thiscar = Fcar (elt);
7510b296 1249 if (!STRINGP (thiscar))
52b14ac0
JB
1250 continue;
1251 if (completion_ignore_case)
1252 thiscar = Fupcase (thiscar);
1253 tem = Fequal (thiscar, key);
56a98455 1254 if (!NILP (tem)) return elt;
52b14ac0
JB
1255 QUIT;
1256 }
1257 return Qnil;
1258}
f927c5ae
JB
1259
1260DEFUN ("minibuffer-complete", Fminibuffer_complete, Sminibuffer_complete, 0, 0, "",
6300d782 1261 "Complete the minibuffer contents as far as possible.\n\
2cb6da5c
RS
1262Return nil if there is no valid completion, else t.\n\
1263If no characters can be completed, display a list of possible completions.\n\
1264If you repeat this command after it displayed such a list,\n\
1265scroll the window of possible completions.")
f927c5ae
JB
1266 ()
1267{
2cb6da5c
RS
1268 register int i;
1269 Lisp_Object window, tem;
1270
1271 /* If the previous command was not this, then mark the completion
1272 buffer obsolete. */
5221fd63 1273 if (! EQ (current_kboard->Vlast_command, this_command))
2cb6da5c
RS
1274 Vminibuf_scroll_window = Qnil;
1275
1276 window = Vminibuf_scroll_window;
1277 /* If there's a fresh completion window with a live buffer,
1278 and this command is repeated, scroll that window. */
1279 if (! NILP (window) && ! NILP (XWINDOW (window)->buffer)
1280 && !NILP (XBUFFER (XWINDOW (window)->buffer)->name))
1281 {
1282 struct buffer *obuf = current_buffer;
1283
1284 Fset_buffer (XWINDOW (window)->buffer);
1285 tem = Fpos_visible_in_window_p (make_number (ZV), window);
1286 if (! NILP (tem))
1287 /* If end is in view, scroll up to the beginning. */
8768d630 1288 Fset_window_start (window, BEGV, Qnil);
2cb6da5c
RS
1289 else
1290 /* Else scroll down one screen. */
1291 Fscroll_other_window (Qnil);
1292
1293 set_buffer_internal (obuf);
1294 return Qnil;
1295 }
1296
1297 i = do_completion ();
f927c5ae
JB
1298 switch (i)
1299 {
1300 case 0:
1301 return Qnil;
1302
1303 case 1:
1304 temp_echo_area_glyphs (" [Sole completion]");
1305 break;
1306
1307 case 3:
1308 temp_echo_area_glyphs (" [Complete, but not unique]");
1309 break;
1310 }
1311
1312 return Qt;
1313}
e4c97a67
RS
1314\f
1315/* Subroutines of Fminibuffer_complete_and_exit. */
1316
1317/* This one is called by internal_condition_case to do the real work. */
1318
1319Lisp_Object
1320complete_and_exit_1 ()
1321{
1322 return make_number (do_completion ());
1323}
1324
1325/* This one is called by internal_condition_case if an error happens.
1326 Pretend the current value is an exact match. */
1327
1328Lisp_Object
1329complete_and_exit_2 (ignore)
1330 Lisp_Object ignore;
1331{
1332 return make_number (1);
1333}
f927c5ae
JB
1334
1335DEFUN ("minibuffer-complete-and-exit", Fminibuffer_complete_and_exit,
1336 Sminibuffer_complete_and_exit, 0, 0, "",
5d2ca7ae
RS
1337 "If the minibuffer contents is a valid completion then exit.\n\
1338Otherwise try to complete it. If completion leads to a valid completion,\n\
f927c5ae
JB
1339a repetition of this command will exit.")
1340 ()
1341{
1342 register int i;
e4c97a67 1343 Lisp_Object val;
f927c5ae
JB
1344
1345 /* Allow user to specify null string */
1346 if (BEGV == ZV)
1347 goto exit;
1348
5d2ca7ae
RS
1349 if (!NILP (test_completion (Fbuffer_string ())))
1350 goto exit;
1351
e4c97a67
RS
1352 /* Call do_completion, but ignore errors. */
1353 val = internal_condition_case (complete_and_exit_1, Qerror,
1354 complete_and_exit_2);
1355
1356 i = XFASTINT (val);
f927c5ae
JB
1357 switch (i)
1358 {
1359 case 1:
1360 case 3:
1361 goto exit;
1362
1363 case 4:
56a98455 1364 if (!NILP (Vminibuffer_completion_confirm))
f927c5ae
JB
1365 {
1366 temp_echo_area_glyphs (" [Confirm]");
1367 return Qnil;
1368 }
1369 else
1370 goto exit;
1371
1372 default:
1373 return Qnil;
1374 }
1375 exit:
1376 Fthrow (Qexit, Qnil);
1377 /* NOTREACHED */
1378}
1379
1380DEFUN ("minibuffer-complete-word", Fminibuffer_complete_word, Sminibuffer_complete_word,
1381 0, 0, "",
1382 "Complete the minibuffer contents at most a single word.\n\
1383After one word is completed as much as possible, a space or hyphen\n\
6300d782
KH
1384is added, provided that matches some possible completion.\n\
1385Return nil if there is no valid completion, else t.")
f927c5ae
JB
1386 ()
1387{
1388 Lisp_Object completion, tem;
1389 register int i;
1390 register unsigned char *completion_string;
d7be4211 1391 struct gcpro gcpro1, gcpro2;
b278606c
BF
1392
1393 /* We keep calling Fbuffer_string rather than arrange for GC to
1394 hold onto a pointer to one of the strings thus made. */
f927c5ae
JB
1395
1396 completion = Ftry_completion (Fbuffer_string (),
1397 Vminibuffer_completion_table,
1398 Vminibuffer_completion_predicate);
56a98455 1399 if (NILP (completion))
f927c5ae
JB
1400 {
1401 bitch_at_user ();
1402 temp_echo_area_glyphs (" [No match]");
1403 return Qnil;
1404 }
1405 if (EQ (completion, Qt))
1406 return Qnil;
1407
b278606c 1408#if 0 /* How the below code used to look, for reference. */
f927c5ae
JB
1409 tem = Fbuffer_string ();
1410 b = XSTRING (tem)->data;
1411 i = ZV - 1 - XSTRING (completion)->size;
1412 p = XSTRING (completion)->data;
1413 if (i > 0 ||
1414 0 <= scmp (b, p, ZV - 1))
1415 {
1416 i = 1;
1417 /* Set buffer to longest match of buffer tail and completion head. */
1418 while (0 <= scmp (b + i, p, ZV - 1 - i))
1419 i++;
1420 del_range (1, i + 1);
1421 SET_PT (ZV);
1422 }
1423#else /* Rewritten code */
1424 {
1425 register unsigned char *buffer_string;
1426 int buffer_length, completion_length;
1427
1428 tem = Fbuffer_string ();
d7be4211 1429 GCPRO2 (completion, tem);
719b4a40
RS
1430 /* If reading a file name,
1431 expand any $ENVVAR refs in the buffer and in TEM. */
1432 if (EQ (Vminibuffer_completion_table, Qread_file_name_internal))
1433 {
1434 Lisp_Object substituted;
1435 substituted = Fsubstitute_in_file_name (tem);
1436 if (! EQ (substituted, tem))
1437 {
1438 tem = substituted;
1439 Ferase_buffer ();
3cab9ae4 1440 insert_from_string (tem, 0, XSTRING (tem)->size, 0);
719b4a40
RS
1441 }
1442 }
f927c5ae
JB
1443 buffer_string = XSTRING (tem)->data;
1444 completion_string = XSTRING (completion)->data;
1445 buffer_length = XSTRING (tem)->size; /* ie ZV - BEGV */
1446 completion_length = XSTRING (completion)->size;
1447 i = buffer_length - completion_length;
1448 /* Mly: I don't understand what this is supposed to do AT ALL */
1449 if (i > 0 ||
1450 0 <= scmp (buffer_string, completion_string, buffer_length))
1451 {
1452 /* Set buffer to longest match of buffer tail and completion head. */
1453 if (i <= 0) i = 1;
1454 buffer_string += i;
1455 buffer_length -= i;
1456 while (0 <= scmp (buffer_string++, completion_string, buffer_length--))
1457 i++;
1458 del_range (1, i + 1);
1459 SET_PT (ZV);
1460 }
d7be4211 1461 UNGCPRO;
f927c5ae
JB
1462 }
1463#endif /* Rewritten code */
1464 i = ZV - BEGV;
1465
1466 /* If completion finds next char not unique,
b278606c 1467 consider adding a space or a hyphen. */
f927c5ae
JB
1468 if (i == XSTRING (completion)->size)
1469 {
b278606c 1470 GCPRO1 (completion);
f927c5ae
JB
1471 tem = Ftry_completion (concat2 (Fbuffer_string (), build_string (" ")),
1472 Vminibuffer_completion_table,
1473 Vminibuffer_completion_predicate);
b278606c
BF
1474 UNGCPRO;
1475
7510b296 1476 if (STRINGP (tem))
f927c5ae
JB
1477 completion = tem;
1478 else
1479 {
b278606c
BF
1480 GCPRO1 (completion);
1481 tem =
1482 Ftry_completion (concat2 (Fbuffer_string (), build_string ("-")),
1483 Vminibuffer_completion_table,
1484 Vminibuffer_completion_predicate);
1485 UNGCPRO;
1486
7510b296 1487 if (STRINGP (tem))
f927c5ae
JB
1488 completion = tem;
1489 }
1490 }
1491
1492 /* Now find first word-break in the stuff found by completion.
1493 i gets index in string of where to stop completing. */
b278606c 1494
f927c5ae
JB
1495 completion_string = XSTRING (completion)->data;
1496
1497 for (; i < XSTRING (completion)->size; i++)
1498 if (SYNTAX (completion_string[i]) != Sword) break;
1499 if (i < XSTRING (completion)->size)
1500 i = i + 1;
1501
1502 /* If got no characters, print help for user. */
1503
1504 if (i == ZV - BEGV)
1505 {
1506 if (auto_help)
1507 Fminibuffer_completion_help ();
1508 return Qnil;
1509 }
1510
1511 /* Otherwise insert in minibuffer the chars we got */
1512
1513 Ferase_buffer ();
3cab9ae4 1514 insert_from_string (completion, 0, i, 1);
f927c5ae
JB
1515 return Qt;
1516}
1517\f
1518DEFUN ("display-completion-list", Fdisplay_completion_list, Sdisplay_completion_list,
1519 1, 1, 0,
2dc2b736 1520 "Display the list of completions, COMPLETIONS, using `standard-output'.\n\
f927c5ae 1521Each element may be just a symbol or string\n\
2d7e41fe
RS
1522or may be a list of two strings to be printed as if concatenated.\n\
1523`standard-output' must be a buffer.\n\
1524At the end, run the normal hook `completion-setup-hook'.\n\
1525It can find the completion buffer in `standard-output'.")
f927c5ae
JB
1526 (completions)
1527 Lisp_Object completions;
1528{
dae36123 1529 Lisp_Object tail, elt;
f927c5ae 1530 register int i;
2dc2b736 1531 int column = 0;
dae36123 1532 struct gcpro gcpro1, gcpro2;
2dc2b736 1533 struct buffer *old = current_buffer;
681f5af4 1534 int first = 1;
486cc7fb
RS
1535
1536 /* Note that (when it matters) every variable
dae36123
RS
1537 points to a non-string that is pointed to by COMPLETIONS,
1538 except for ELT. ELT can be pointing to a string
1539 when terpri or Findent_to calls a change hook. */
1540 elt = Qnil;
1541 GCPRO2 (completions, elt);
486cc7fb 1542
7510b296 1543 if (BUFFERP (Vstandard_output))
2dc2b736 1544 set_buffer_internal (XBUFFER (Vstandard_output));
f927c5ae 1545
56a98455 1546 if (NILP (completions))
cfc736bf
RS
1547 write_string ("There are no possible completions of what you have typed.",
1548 -1);
f927c5ae
JB
1549 else
1550 {
2dc2b736 1551 write_string ("Possible completions are:", -1);
56a98455 1552 for (tail = completions, i = 0; !NILP (tail); tail = Fcdr (tail), i++)
f927c5ae 1553 {
681f5af4
RS
1554 Lisp_Object tem;
1555 int length;
47d7d104 1556 Lisp_Object startpos, endpos;
681f5af4
RS
1557
1558 elt = Fcar (tail);
1559 /* Compute the length of this element. */
1560 if (CONSP (elt))
1561 {
1562 tem = Fcar (elt);
1563 CHECK_STRING (tem, 0);
1564 length = XINT (XSTRING (tem)->size);
1565
1566 tem = Fcar (Fcdr (elt));
1567 CHECK_STRING (tem, 0);
1568 length += XINT (XSTRING (tem)->size);
1569 }
1570 else
1571 {
1572 CHECK_STRING (elt, 0);
1573 length = XINT (XSTRING (elt)->size);
1574 }
1575
1576 /* This does a bad job for narrower than usual windows.
1577 Sadly, the window it will appear in is not known
1578 until after the text has been made. */
1579
47d7d104
RS
1580 if (BUFFERP (Vstandard_output))
1581 XSETINT (startpos, BUF_PT (XBUFFER (Vstandard_output)));
1582
681f5af4
RS
1583 /* If the previous completion was very wide,
1584 or we have two on this line already,
1585 don't put another on the same line. */
1586 if (column > 33 || first
1587 /* If this is really wide, don't put it second on a line. */
1588 || column > 0 && length > 45)
1589 {
1590 Fterpri (Qnil);
1591 column = 0;
1592 }
1593 /* Otherwise advance to column 35. */
1594 else
2dc2b736 1595 {
7510b296 1596 if (BUFFERP (Vstandard_output))
681f5af4
RS
1597 {
1598 tem = Findent_to (make_number (35), make_number (2));
47d7d104 1599
681f5af4
RS
1600 column = XINT (tem);
1601 }
2dc2b736
RS
1602 else
1603 {
1604 do
1605 {
1606 write_string (" ", -1);
1607 column++;
1608 }
1609 while (column < 35);
1610 }
1611 }
681f5af4 1612
47d7d104
RS
1613 if (BUFFERP (Vstandard_output))
1614 {
1615 XSETINT (endpos, BUF_PT (XBUFFER (Vstandard_output)));
1616 Fset_text_properties (startpos, endpos,
1617 Qnil, Vstandard_output);
1618 }
1619
681f5af4 1620 /* Output this element and update COLUMN. */
f927c5ae
JB
1621 if (CONSP (elt))
1622 {
1623 Fprinc (Fcar (elt), Qnil);
1624 Fprinc (Fcar (Fcdr (elt)), Qnil);
1625 }
1626 else
681f5af4
RS
1627 Fprinc (elt, Qnil);
1628
1629 column += length;
1630
1631 /* If output is to a buffer, recompute COLUMN in a way
1632 that takes account of character widths. */
1633 if (BUFFERP (Vstandard_output))
2dc2b736 1634 {
681f5af4
RS
1635 tem = Fcurrent_column ();
1636 column = XINT (tem);
2dc2b736 1637 }
681f5af4
RS
1638
1639 first = 0;
f927c5ae
JB
1640 }
1641 }
2dc2b736 1642
486cc7fb
RS
1643 UNGCPRO;
1644
7510b296 1645 if (BUFFERP (Vstandard_output))
2d7e41fe
RS
1646 set_buffer_internal (old);
1647
cfc736bf
RS
1648 if (!NILP (Vrun_hooks))
1649 call1 (Vrun_hooks, intern ("completion-setup-hook"));
1650
f927c5ae
JB
1651 return Qnil;
1652}
1653
1654DEFUN ("minibuffer-completion-help", Fminibuffer_completion_help, Sminibuffer_completion_help,
1655 0, 0, "",
1656 "Display a list of possible completions of the current minibuffer contents.")
1657 ()
1658{
1659 Lisp_Object completions;
1660
1661 message ("Making completion list...");
1662 completions = Fall_completions (Fbuffer_string (),
1663 Vminibuffer_completion_table,
89a255dc
RS
1664 Vminibuffer_completion_predicate,
1665 Qt);
f927c5ae
JB
1666 echo_area_glyphs = 0;
1667
56a98455 1668 if (NILP (completions))
f927c5ae
JB
1669 {
1670 bitch_at_user ();
1671 temp_echo_area_glyphs (" [No completions]");
1672 }
1673 else
1674 internal_with_output_to_temp_buffer ("*Completions*",
1675 Fdisplay_completion_list,
1676 Fsort (completions, Qstring_lessp));
1677 return Qnil;
1678}
1679\f
1680DEFUN ("self-insert-and-exit", Fself_insert_and_exit, Sself_insert_and_exit, 0, 0, "",
1681 "Terminate minibuffer input.")
1682 ()
1683{
7510b296 1684 if (INTEGERP (last_command_char))
f927c5ae
JB
1685 internal_self_insert (last_command_char, 0);
1686 else
1687 bitch_at_user ();
1688
1689 Fthrow (Qexit, Qnil);
1690}
1691
1692DEFUN ("exit-minibuffer", Fexit_minibuffer, Sexit_minibuffer, 0, 0, "",
1693 "Terminate this minibuffer argument.")
1694 ()
1695{
1696 Fthrow (Qexit, Qnil);
1697}
1698
1699DEFUN ("minibuffer-depth", Fminibuffer_depth, Sminibuffer_depth, 0, 0, 0,
1700 "Return current depth of activations of minibuffer, a nonnegative integer.")
1701 ()
1702{
1703 return make_number (minibuf_level);
1704}
1705
37e9a934
KH
1706DEFUN ("minibuffer-prompt", Fminibuffer_prompt, Sminibuffer_prompt, 0, 0, 0,
1707 "Return the prompt string of the currently-active minibuffer.\n\
1708If no minibuffer is active, return nil.")
1709 ()
1710{
4d04c1f1 1711 return Fcopy_sequence (minibuf_prompt);
37e9a934
KH
1712}
1713
1714DEFUN ("minibuffer-prompt-width", Fminibuffer_prompt_width,
1715 Sminibuffer_prompt_width, 0, 0, 0,
c5896ef4 1716 "Return the display width of the minibuffer prompt.")
37e9a934
KH
1717 ()
1718{
1719 Lisp_Object width;
5a866662 1720 XSETFASTINT (width, minibuf_prompt_width);
37e9a934
KH
1721 return width;
1722}
f927c5ae
JB
1723\f
1724init_minibuf_once ()
1725{
1726 Vminibuffer_list = Qnil;
1727 staticpro (&Vminibuffer_list);
1728}
1729
1730syms_of_minibuf ()
1731{
1732 minibuf_level = 0;
4d04c1f1
KH
1733 minibuf_prompt = Qnil;
1734 staticpro (&minibuf_prompt);
1735
1736 minibuf_save_list = Qnil;
1737 staticpro (&minibuf_save_list);
f927c5ae 1738
719b4a40
RS
1739 Qread_file_name_internal = intern ("read-file-name-internal");
1740 staticpro (&Qread_file_name_internal);
1741
f927c5ae
JB
1742 Qminibuffer_completion_table = intern ("minibuffer-completion-table");
1743 staticpro (&Qminibuffer_completion_table);
1744
1745 Qminibuffer_completion_confirm = intern ("minibuffer-completion-confirm");
1746 staticpro (&Qminibuffer_completion_confirm);
1747
1748 Qminibuffer_completion_predicate = intern ("minibuffer-completion-predicate");
1749 staticpro (&Qminibuffer_completion_predicate);
1750
1e00c2ff
KH
1751 staticpro (&last_exact_completion);
1752 last_exact_completion = Qnil;
1753
f927c5ae
JB
1754 staticpro (&last_minibuf_string);
1755 last_minibuf_string = Qnil;
1756
1757 Quser_variable_p = intern ("user-variable-p");
1758 staticpro (&Quser_variable_p);
1759
770970cb
RS
1760 Qminibuffer_history = intern ("minibuffer-history");
1761 staticpro (&Qminibuffer_history);
f927c5ae 1762
5c781212
RS
1763 Qminibuffer_setup_hook = intern ("minibuffer-setup-hook");
1764 staticpro (&Qminibuffer_setup_hook);
1765
177aecf9
KH
1766 Qminibuffer_exit_hook = intern ("minibuffer-exit-hook");
1767 staticpro (&Qminibuffer_exit_hook);
1768
5c781212
RS
1769 DEFVAR_LISP ("minibuffer-setup-hook", &Vminibuffer_setup_hook,
1770 "Normal hook run just after entry to minibuffer.");
1771 Vminibuffer_setup_hook = Qnil;
1772
177aecf9
KH
1773 DEFVAR_LISP ("minibuffer-exit-hook", &Vminibuffer_exit_hook,
1774 "Normal hook run just after exit from minibuffer.");
1775 Vminibuffer_exit_hook = Qnil;
1776
f927c5ae
JB
1777 DEFVAR_BOOL ("completion-auto-help", &auto_help,
1778 "*Non-nil means automatically provide help for invalid completion input.");
1779 auto_help = 1;
1780
1781 DEFVAR_BOOL ("completion-ignore-case", &completion_ignore_case,
1782 "Non-nil means don't consider case significant in completion.");
1783 completion_ignore_case = 0;
1784
1785 DEFVAR_BOOL ("enable-recursive-minibuffers", &enable_recursive_minibuffers,
1786 "*Non-nil means to allow minibuffer commands while in the minibuffer.\n\
1787More precisely, this variable makes a difference when the minibuffer window\n\
1788is the selected window. If you are in some other window, minibuffer commands\n\
1789are allowed even if a minibuffer is active.");
1790 enable_recursive_minibuffers = 0;
1791
1792 DEFVAR_LISP ("minibuffer-completion-table", &Vminibuffer_completion_table,
1793 "Alist or obarray used for completion in the minibuffer.\n\
1794This becomes the ALIST argument to `try-completion' and `all-completion'.\n\
1795\n\
1796The value may alternatively be a function, which is given three arguments:\n\
1797 STRING, the current buffer contents;\n\
1798 PREDICATE, the predicate for filtering possible matches;\n\
1799 CODE, which says what kind of things to do.\n\
1800CODE can be nil, t or `lambda'.\n\
1801nil means to return the best completion of STRING, or nil if there is none.\n\
1802t means to return a list of all possible completions of STRING.\n\
1803`lambda' means to return t if STRING is a valid completion as it stands.");
1804 Vminibuffer_completion_table = Qnil;
1805
1806 DEFVAR_LISP ("minibuffer-completion-predicate", &Vminibuffer_completion_predicate,
1807 "Within call to `completing-read', this holds the PREDICATE argument.");
1808 Vminibuffer_completion_predicate = Qnil;
1809
1810 DEFVAR_LISP ("minibuffer-completion-confirm", &Vminibuffer_completion_confirm,
1811 "Non-nil => demand confirmation of completion before exiting minibuffer.");
1812 Vminibuffer_completion_confirm = Qnil;
1813
1814 DEFVAR_LISP ("minibuffer-help-form", &Vminibuffer_help_form,
1815 "Value that `help-form' takes on inside the minibuffer.");
1816 Vminibuffer_help_form = Qnil;
1817
770970cb
RS
1818 DEFVAR_LISP ("minibuffer-history-variable", &Vminibuffer_history_variable,
1819 "History list symbol to add minibuffer values to.\n\
2fa2413b
RS
1820Each string of minibuffer input, as it appears on exit from the minibuffer,\n\
1821is added with\n\
770970cb
RS
1822 (set minibuffer-history-variable\n\
1823 (cons STRING (symbol-value minibuffer-history-variable)))");
5a866662 1824 XSETFASTINT (Vminibuffer_history_variable, 0);
770970cb
RS
1825
1826 DEFVAR_LISP ("minibuffer-history-position", &Vminibuffer_history_position,
1827 "Current position of redoing in the history list.");
1828 Vminibuffer_history_position = Qnil;
1829
6a9ee000
RS
1830 DEFVAR_BOOL ("minibuffer-auto-raise", &minibuffer_auto_raise,
1831 "*Non-nil means entering the minibuffer raises the minibuffer's frame.");
1832 minibuffer_auto_raise = 0;
1833
42006772
RS
1834 DEFVAR_LISP ("completion-regexp-list", &Vcompletion_regexp_list,
1835 "List of regexps that should restrict possible completions.");
1836 Vcompletion_regexp_list = Qnil;
1837
68313ed8 1838 defsubr (&Sset_minibuffer_window);
f927c5ae
JB
1839 defsubr (&Sread_from_minibuffer);
1840 defsubr (&Seval_minibuffer);
1841 defsubr (&Sread_minibuffer);
1842 defsubr (&Sread_string);
1843 defsubr (&Sread_command);
1844 defsubr (&Sread_variable);
1845 defsubr (&Sread_buffer);
1846 defsubr (&Sread_no_blanks_input);
1847 defsubr (&Sminibuffer_depth);
37e9a934
KH
1848 defsubr (&Sminibuffer_prompt);
1849 defsubr (&Sminibuffer_prompt_width);
f927c5ae
JB
1850
1851 defsubr (&Stry_completion);
1852 defsubr (&Sall_completions);
1853 defsubr (&Scompleting_read);
1854 defsubr (&Sminibuffer_complete);
1855 defsubr (&Sminibuffer_complete_word);
1856 defsubr (&Sminibuffer_complete_and_exit);
1857 defsubr (&Sdisplay_completion_list);
1858 defsubr (&Sminibuffer_completion_help);
1859
1860 defsubr (&Sself_insert_and_exit);
1861 defsubr (&Sexit_minibuffer);
1862
1863}
1864
1865keys_of_minibuf ()
1866{
1867 initial_define_key (Vminibuffer_local_map, Ctl ('g'),
1868 "abort-recursive-edit");
1869 initial_define_key (Vminibuffer_local_map, Ctl ('m'),
1870 "exit-minibuffer");
1871 initial_define_key (Vminibuffer_local_map, Ctl ('j'),
1872 "exit-minibuffer");
1873
1874 initial_define_key (Vminibuffer_local_ns_map, Ctl ('g'),
1875 "abort-recursive-edit");
1876 initial_define_key (Vminibuffer_local_ns_map, Ctl ('m'),
1877 "exit-minibuffer");
1878 initial_define_key (Vminibuffer_local_ns_map, Ctl ('j'),
1879 "exit-minibuffer");
1880
1881 initial_define_key (Vminibuffer_local_ns_map, ' ',
1882 "exit-minibuffer");
1883 initial_define_key (Vminibuffer_local_ns_map, '\t',
1884 "exit-minibuffer");
1885 initial_define_key (Vminibuffer_local_ns_map, '?',
1886 "self-insert-and-exit");
1887
1888 initial_define_key (Vminibuffer_local_completion_map, Ctl ('g'),
1889 "abort-recursive-edit");
1890 initial_define_key (Vminibuffer_local_completion_map, Ctl ('m'),
1891 "exit-minibuffer");
1892 initial_define_key (Vminibuffer_local_completion_map, Ctl ('j'),
1893 "exit-minibuffer");
1894
1895 initial_define_key (Vminibuffer_local_completion_map, '\t',
1896 "minibuffer-complete");
1897 initial_define_key (Vminibuffer_local_completion_map, ' ',
1898 "minibuffer-complete-word");
1899 initial_define_key (Vminibuffer_local_completion_map, '?',
1900 "minibuffer-completion-help");
1901
1902 initial_define_key (Vminibuffer_local_must_match_map, Ctl ('g'),
1903 "abort-recursive-edit");
1904 initial_define_key (Vminibuffer_local_must_match_map, Ctl ('m'),
1905 "minibuffer-complete-and-exit");
1906 initial_define_key (Vminibuffer_local_must_match_map, Ctl ('j'),
1907 "minibuffer-complete-and-exit");
1908 initial_define_key (Vminibuffer_local_must_match_map, '\t',
1909 "minibuffer-complete");
1910 initial_define_key (Vminibuffer_local_must_match_map, ' ',
1911 "minibuffer-complete-word");
1912 initial_define_key (Vminibuffer_local_must_match_map, '?',
1913 "minibuffer-completion-help");
1914}