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