(Vimage_types): Move from xdisp.c.
[emacs.git] / src / minibuf.c
blobee37142a4a673d707b6a030135c767eb7b806a94
1 /* Minibuffer input and completion.
2 Copyright (C) 1985,86,93,94,95,96,97,98,99,2000,01,03,04
3 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
23 #include <config.h>
24 #include <stdio.h>
26 #include "lisp.h"
27 #include "commands.h"
28 #include "buffer.h"
29 #include "charset.h"
30 #include "dispextern.h"
31 #include "keyboard.h"
32 #include "frame.h"
33 #include "window.h"
34 #include "syntax.h"
35 #include "intervals.h"
36 #include "keymap.h"
38 extern int quit_char;
40 /* List of buffers for use as minibuffers.
41 The first element of the list is used for the outermost minibuffer
42 invocation, the next element is used for a recursive minibuffer
43 invocation, etc. The list is extended at the end as deeper
44 minibuffer recursions are encountered. */
46 Lisp_Object Vminibuffer_list;
48 /* Data to remember during recursive minibuffer invocations */
50 Lisp_Object minibuf_save_list;
52 /* Depth in minibuffer invocations. */
54 int minibuf_level;
56 /* Nonzero means display completion help for invalid input. */
58 Lisp_Object Vcompletion_auto_help;
60 /* The maximum length of a minibuffer history. */
62 Lisp_Object Qhistory_length, Vhistory_length;
64 /* Fread_minibuffer leaves the input here as a string. */
66 Lisp_Object last_minibuf_string;
68 /* Nonzero means let functions called when within a minibuffer
69 invoke recursive minibuffers (to read arguments, or whatever) */
71 int enable_recursive_minibuffers;
73 /* Nonzero means don't ignore text properties
74 in Fread_from_minibuffer. */
76 int minibuffer_allow_text_properties;
78 /* help-form is bound to this while in the minibuffer. */
80 Lisp_Object Vminibuffer_help_form;
82 /* Variable which is the history list to add minibuffer values to. */
84 Lisp_Object Vminibuffer_history_variable;
86 /* Current position in the history list (adjusted by M-n and M-p). */
88 Lisp_Object Vminibuffer_history_position;
90 /* Text properties that are added to minibuffer prompts.
91 These are in addition to the basic `field' property, and stickiness
92 properties. */
94 Lisp_Object Vminibuffer_prompt_properties;
96 Lisp_Object Qminibuffer_history, Qbuffer_name_history;
98 Lisp_Object Qread_file_name_internal;
100 /* Normal hooks for entry to and exit from minibuffer. */
102 Lisp_Object Qminibuffer_setup_hook, Vminibuffer_setup_hook;
103 Lisp_Object Qminibuffer_exit_hook, Vminibuffer_exit_hook;
105 /* Function to call to read a buffer name. */
106 Lisp_Object Vread_buffer_function;
108 /* Nonzero means completion ignores case. */
110 int completion_ignore_case;
112 /* List of regexps that should restrict possible completions. */
114 Lisp_Object Vcompletion_regexp_list;
116 /* Nonzero means raise the minibuffer frame when the minibuffer
117 is entered. */
119 int minibuffer_auto_raise;
121 /* If last completion attempt reported "Complete but not unique"
122 then this is the string completed then; otherwise this is nil. */
124 static Lisp_Object last_exact_completion;
126 extern Lisp_Object Voverriding_local_map;
128 Lisp_Object Quser_variable_p;
130 Lisp_Object Qminibuffer_default;
132 Lisp_Object Qcurrent_input_method, Qactivate_input_method;
134 Lisp_Object Qcase_fold_search;
136 extern Lisp_Object Qmouse_face;
138 extern Lisp_Object Qfield;
140 /* Put minibuf on currently selected frame's minibuffer.
141 We do this whenever the user starts a new minibuffer
142 or when a minibuffer exits. */
144 void
145 choose_minibuf_frame ()
147 if (FRAMEP (selected_frame)
148 && FRAME_LIVE_P (XFRAME (selected_frame))
149 && !EQ (minibuf_window, XFRAME (selected_frame)->minibuffer_window))
151 struct frame *sf = XFRAME (selected_frame);
152 Lisp_Object buffer;
154 /* I don't think that any frames may validly have a null minibuffer
155 window anymore. */
156 if (NILP (sf->minibuffer_window))
157 abort ();
159 /* Under X, we come here with minibuf_window being the
160 minibuffer window of the unused termcap window created in
161 init_window_once. That window doesn't have a buffer. */
162 buffer = XWINDOW (minibuf_window)->buffer;
163 if (BUFFERP (buffer))
164 Fset_window_buffer (sf->minibuffer_window, buffer, Qnil);
165 minibuf_window = sf->minibuffer_window;
168 /* Make sure no other frame has a minibuffer as its selected window,
169 because the text would not be displayed in it, and that would be
170 confusing. Only allow the selected frame to do this,
171 and that only if the minibuffer is active. */
173 Lisp_Object tail, frame;
175 FOR_EACH_FRAME (tail, frame)
176 if (MINI_WINDOW_P (XWINDOW (FRAME_SELECTED_WINDOW (XFRAME (frame))))
177 && !(EQ (frame, selected_frame)
178 && minibuf_level > 0))
179 Fset_frame_selected_window (frame, Fframe_first_window (frame));
183 Lisp_Object
184 choose_minibuf_frame_1 (ignore)
185 Lisp_Object ignore;
187 choose_minibuf_frame ();
188 return Qnil;
191 DEFUN ("set-minibuffer-window", Fset_minibuffer_window,
192 Sset_minibuffer_window, 1, 1, 0,
193 doc: /* Specify which minibuffer window to use for the minibuffer.
194 This affects where the minibuffer is displayed if you put text in it
195 without invoking the usual minibuffer commands. */)
196 (window)
197 Lisp_Object window;
199 CHECK_WINDOW (window);
200 if (! MINI_WINDOW_P (XWINDOW (window)))
201 error ("Window is not a minibuffer window");
203 minibuf_window = window;
205 return window;
209 /* Actual minibuffer invocation. */
211 static Lisp_Object read_minibuf_unwind P_ ((Lisp_Object));
212 static Lisp_Object run_exit_minibuf_hook P_ ((Lisp_Object));
213 static Lisp_Object read_minibuf P_ ((Lisp_Object, Lisp_Object,
214 Lisp_Object, Lisp_Object,
215 int, Lisp_Object,
216 Lisp_Object, Lisp_Object,
217 int, int));
218 static Lisp_Object read_minibuf_noninteractive P_ ((Lisp_Object, Lisp_Object,
219 Lisp_Object, Lisp_Object,
220 int, Lisp_Object,
221 Lisp_Object, Lisp_Object,
222 int, int));
223 static Lisp_Object string_to_object P_ ((Lisp_Object, Lisp_Object));
226 /* Read a Lisp object from VAL and return it. If VAL is an empty
227 string, and DEFALT is a string, read from DEFALT instead of VAL. */
229 static Lisp_Object
230 string_to_object (val, defalt)
231 Lisp_Object val, defalt;
233 struct gcpro gcpro1, gcpro2;
234 Lisp_Object expr_and_pos;
235 int pos;
237 GCPRO2 (val, defalt);
239 if (STRINGP (val) && SCHARS (val) == 0
240 && STRINGP (defalt))
241 val = defalt;
243 expr_and_pos = Fread_from_string (val, Qnil, Qnil);
244 pos = XINT (Fcdr (expr_and_pos));
245 if (pos != SCHARS (val))
247 /* Ignore trailing whitespace; any other trailing junk
248 is an error. */
249 int i;
250 pos = string_char_to_byte (val, pos);
251 for (i = pos; i < SBYTES (val); i++)
253 int c = SREF (val, i);
254 if (c != ' ' && c != '\t' && c != '\n')
255 error ("Trailing garbage following expression");
259 val = Fcar (expr_and_pos);
260 RETURN_UNGCPRO (val);
264 /* Like read_minibuf but reading from stdin. This function is called
265 from read_minibuf to do the job if noninteractive. */
267 static Lisp_Object
268 read_minibuf_noninteractive (map, initial, prompt, backup_n, expflag,
269 histvar, histpos, defalt, allow_props,
270 inherit_input_method)
271 Lisp_Object map;
272 Lisp_Object initial;
273 Lisp_Object prompt;
274 Lisp_Object backup_n;
275 int expflag;
276 Lisp_Object histvar;
277 Lisp_Object histpos;
278 Lisp_Object defalt;
279 int allow_props;
280 int inherit_input_method;
282 int size, len;
283 char *line, *s;
284 Lisp_Object val;
286 fprintf (stdout, "%s", SDATA (prompt));
287 fflush (stdout);
289 val = Qnil;
290 size = 100;
291 len = 0;
292 line = (char *) xmalloc (size * sizeof *line);
293 while ((s = fgets (line + len, size - len, stdin)) != NULL
294 && (len = strlen (line),
295 len == size - 1 && line[len - 1] != '\n'))
297 size *= 2;
298 line = (char *) xrealloc (line, size);
301 if (s)
303 len = strlen (line);
305 if (len > 0 && line[len - 1] == '\n')
306 line[--len] = '\0';
308 val = build_string (line);
309 xfree (line);
311 else
313 xfree (line);
314 error ("Error reading from stdin");
317 /* If Lisp form desired instead of string, parse it. */
318 if (expflag)
319 val = string_to_object (val, defalt);
321 return val;
324 DEFUN ("minibufferp", Fminibufferp,
325 Sminibufferp, 0, 1, 0,
326 doc: /* Return t if BUFFER is a minibuffer.
327 No argument or nil as argument means use current buffer as BUFFER.
328 BUFFER can be a buffer or a buffer name. */)
329 (buffer)
330 Lisp_Object buffer;
332 Lisp_Object tem;
334 if (NILP (buffer))
335 buffer = Fcurrent_buffer ();
336 else if (STRINGP (buffer))
337 buffer = Fget_buffer (buffer);
338 else
339 CHECK_BUFFER (buffer);
341 tem = Fmemq (buffer, Vminibuffer_list);
342 return ! NILP (tem) ? Qt : Qnil;
345 DEFUN ("minibuffer-prompt-end", Fminibuffer_prompt_end,
346 Sminibuffer_prompt_end, 0, 0, 0,
347 doc: /* Return the buffer position of the end of the minibuffer prompt.
348 Return (point-min) if current buffer is not a mini-buffer. */)
351 /* This function is written to be most efficient when there's a prompt. */
352 Lisp_Object beg, end, tem;
353 beg = make_number (BEGV);
355 tem = Fmemq (Fcurrent_buffer (), Vminibuffer_list);
356 if (NILP (tem))
357 return beg;
359 end = Ffield_end (beg, Qnil, Qnil);
361 if (XINT (end) == ZV && NILP (Fget_char_property (beg, Qfield, Qnil)))
362 return beg;
363 else
364 return end;
367 DEFUN ("minibuffer-contents", Fminibuffer_contents,
368 Sminibuffer_contents, 0, 0, 0,
369 doc: /* Return the user input in a minibuffer as a string.
370 The current buffer must be a minibuffer. */)
373 int prompt_end = XINT (Fminibuffer_prompt_end ());
374 return make_buffer_string (prompt_end, ZV, 1);
377 DEFUN ("minibuffer-contents-no-properties", Fminibuffer_contents_no_properties,
378 Sminibuffer_contents_no_properties, 0, 0, 0,
379 doc: /* Return the user input in a minibuffer as a string, without text-properties.
380 The current buffer must be a minibuffer. */)
383 int prompt_end = XINT (Fminibuffer_prompt_end ());
384 return make_buffer_string (prompt_end, ZV, 0);
387 DEFUN ("delete-minibuffer-contents", Fdelete_minibuffer_contents,
388 Sdelete_minibuffer_contents, 0, 0, 0,
389 doc: /* Delete all user input in a minibuffer.
390 The current buffer must be a minibuffer. */)
393 int prompt_end = XINT (Fminibuffer_prompt_end ());
394 if (prompt_end < ZV)
395 del_range (prompt_end, ZV);
396 return Qnil;
399 /* Get the text in the minibuffer before point.
400 That is what completion commands operate on. */
402 Lisp_Object
403 minibuffer_completion_contents ()
405 int prompt_end = XINT (Fminibuffer_prompt_end ());
406 if (PT < prompt_end)
407 error ("Cannot do completion in the prompt");
408 return make_buffer_string (prompt_end, PT, 1);
411 /* Read from the minibuffer using keymap MAP and initial contents INITIAL,
412 putting point minus BACKUP_N bytes from the end of INITIAL,
413 prompting with PROMPT (a string), using history list HISTVAR
414 with initial position HISTPOS. INITIAL should be a string or a
415 cons of a string and an integer. BACKUP_N should be <= 0, or
416 Qnil, which is equivalent to 0. If INITIAL is a cons, BACKUP_N is
417 ignored and replaced with an integer that puts point at one-indexed
418 position N in INITIAL, where N is the CDR of INITIAL, or at the
419 beginning of INITIAL if N <= 0.
421 Normally return the result as a string (the text that was read),
422 but if EXPFLAG is nonzero, read it and return the object read.
423 If HISTVAR is given, save the value read on that history only if it doesn't
424 match the front of that history list exactly. The value is pushed onto
425 the list as the string that was read.
427 DEFALT specifies the default value for the sake of history commands.
429 If ALLOW_PROPS is nonzero, we do not throw away text properties.
431 if INHERIT_INPUT_METHOD is nonzero, the minibuffer inherits the
432 current input method. */
434 static Lisp_Object
435 read_minibuf (map, initial, prompt, backup_n, expflag,
436 histvar, histpos, defalt, allow_props, inherit_input_method)
437 Lisp_Object map;
438 Lisp_Object initial;
439 Lisp_Object prompt;
440 Lisp_Object backup_n;
441 int expflag;
442 Lisp_Object histvar;
443 Lisp_Object histpos;
444 Lisp_Object defalt;
445 int allow_props;
446 int inherit_input_method;
448 Lisp_Object val;
449 int count = SPECPDL_INDEX ();
450 Lisp_Object mini_frame, ambient_dir, minibuffer, input_method;
451 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
452 Lisp_Object enable_multibyte;
453 int pos = INTEGERP (backup_n) ? XINT (backup_n) : 0;
455 /* String to add to the history. */
456 Lisp_Object histstring;
458 extern Lisp_Object Qfront_sticky;
459 extern Lisp_Object Qrear_nonsticky;
461 specbind (Qminibuffer_default, defalt);
463 single_kboard_state ();
464 #ifdef HAVE_X_WINDOWS
465 if (display_hourglass_p)
466 cancel_hourglass ();
467 #endif
469 if (!NILP (initial))
471 if (CONSP (initial))
473 backup_n = Fcdr (initial);
474 initial = Fcar (initial);
475 CHECK_STRING (initial);
476 if (!NILP (backup_n))
478 CHECK_NUMBER (backup_n);
479 /* Convert to distance from end of input. */
480 if (XINT (backup_n) < 1)
481 /* A number too small means the beginning of the string. */
482 pos = - SCHARS (initial);
483 else
484 pos = XINT (backup_n) - 1 - SCHARS (initial);
487 else
488 CHECK_STRING (initial);
490 val = Qnil;
491 ambient_dir = current_buffer->directory;
492 input_method = Qnil;
493 enable_multibyte = Qnil;
495 /* Don't need to protect PROMPT, HISTVAR, and HISTPOS because we
496 store them away before we can GC. Don't need to protect
497 BACKUP_N because we use the value only if it is an integer. */
498 GCPRO5 (map, initial, val, ambient_dir, input_method);
500 if (!STRINGP (prompt))
501 prompt = empty_string;
503 if (!enable_recursive_minibuffers
504 && minibuf_level > 0)
506 if (EQ (selected_window, minibuf_window))
507 error ("Command attempted to use minibuffer while in minibuffer");
508 else
509 /* If we're in another window, cancel the minibuffer that's active. */
510 Fthrow (Qexit,
511 build_string ("Command attempted to use minibuffer while in minibuffer"));
514 if (noninteractive)
516 val = read_minibuf_noninteractive (map, initial, prompt,
517 make_number (pos),
518 expflag, histvar, histpos, defalt,
519 allow_props, inherit_input_method);
520 UNGCPRO;
521 return unbind_to (count, val);
524 /* Choose the minibuffer window and frame, and take action on them. */
526 choose_minibuf_frame ();
528 record_unwind_protect (choose_minibuf_frame_1, Qnil);
530 record_unwind_protect (Fset_window_configuration,
531 Fcurrent_window_configuration (Qnil));
533 /* If the minibuffer window is on a different frame, save that
534 frame's configuration too. */
535 mini_frame = WINDOW_FRAME (XWINDOW (minibuf_window));
536 if (!EQ (mini_frame, selected_frame))
537 record_unwind_protect (Fset_window_configuration,
538 Fcurrent_window_configuration (mini_frame));
540 /* If the minibuffer is on an iconified or invisible frame,
541 make it visible now. */
542 Fmake_frame_visible (mini_frame);
544 if (minibuffer_auto_raise)
545 Fraise_frame (mini_frame);
547 /* We have to do this after saving the window configuration
548 since that is what restores the current buffer. */
550 /* Arrange to restore a number of minibuffer-related variables.
551 We could bind each variable separately, but that would use lots of
552 specpdl slots. */
553 minibuf_save_list
554 = Fcons (Voverriding_local_map,
555 Fcons (minibuf_window, minibuf_save_list));
556 minibuf_save_list
557 = Fcons (minibuf_prompt,
558 Fcons (make_number (minibuf_prompt_width),
559 Fcons (Vhelp_form,
560 Fcons (Vcurrent_prefix_arg,
561 Fcons (Vminibuffer_history_position,
562 Fcons (Vminibuffer_history_variable,
563 minibuf_save_list))))));
565 record_unwind_protect (read_minibuf_unwind, Qnil);
566 minibuf_level++;
567 /* We are exiting the minibuffer one way or the other, so run the hook.
568 It should be run before unwinding the minibuf settings. Do it
569 separately from read_minibuf_unwind because we need to make sure that
570 read_minibuf_unwind is fully executed even if exit-minibuffer-hook
571 signals an error. --Stef */
572 record_unwind_protect (run_exit_minibuf_hook, Qnil);
574 /* Now that we can restore all those variables, start changing them. */
576 minibuf_prompt_width = 0;
577 minibuf_prompt = Fcopy_sequence (prompt);
578 Vminibuffer_history_position = histpos;
579 Vminibuffer_history_variable = histvar;
580 Vhelp_form = Vminibuffer_help_form;
582 if (inherit_input_method)
584 /* `current-input-method' is buffer local. So, remember it in
585 INPUT_METHOD before changing the current buffer. */
586 input_method = Fsymbol_value (Qcurrent_input_method);
587 enable_multibyte = current_buffer->enable_multibyte_characters;
590 /* Switch to the minibuffer. */
592 minibuffer = get_minibuffer (minibuf_level);
593 Fset_buffer (minibuffer);
595 /* The current buffer's default directory is usually the right thing
596 for our minibuffer here. However, if you're typing a command at
597 a minibuffer-only frame when minibuf_level is zero, then buf IS
598 the current_buffer, so reset_buffer leaves buf's default
599 directory unchanged. This is a bummer when you've just started
600 up Emacs and buf's default directory is Qnil. Here's a hack; can
601 you think of something better to do? Find another buffer with a
602 better directory, and use that one instead. */
603 if (STRINGP (ambient_dir))
604 current_buffer->directory = ambient_dir;
605 else
607 Lisp_Object buf_list;
609 for (buf_list = Vbuffer_alist;
610 CONSP (buf_list);
611 buf_list = XCDR (buf_list))
613 Lisp_Object other_buf;
615 other_buf = XCDR (XCAR (buf_list));
616 if (STRINGP (XBUFFER (other_buf)->directory))
618 current_buffer->directory = XBUFFER (other_buf)->directory;
619 break;
624 if (!EQ (mini_frame, selected_frame))
625 Fredirect_frame_focus (selected_frame, mini_frame);
627 Vminibuf_scroll_window = selected_window;
628 if (minibuf_level == 1 || !EQ (minibuf_window, selected_window))
629 minibuf_selected_window = selected_window;
630 Fset_window_buffer (minibuf_window, Fcurrent_buffer (), Qnil);
631 Fselect_window (minibuf_window, Qnil);
632 XSETFASTINT (XWINDOW (minibuf_window)->hscroll, 0);
634 Fmake_local_variable (Qprint_escape_newlines);
635 print_escape_newlines = 1;
637 /* Erase the buffer. */
639 int count1 = SPECPDL_INDEX ();
640 specbind (Qinhibit_read_only, Qt);
641 specbind (Qinhibit_modification_hooks, Qt);
642 Ferase_buffer ();
643 unbind_to (count1, Qnil);
646 if (!NILP (current_buffer->enable_multibyte_characters)
647 && ! STRING_MULTIBYTE (minibuf_prompt))
648 minibuf_prompt = Fstring_make_multibyte (minibuf_prompt);
650 /* Insert the prompt, record where it ends. */
651 Finsert (1, &minibuf_prompt);
652 if (PT > BEG)
654 Fput_text_property (make_number (BEG), make_number (PT),
655 Qfront_sticky, Qt, Qnil);
656 Fput_text_property (make_number (BEG), make_number (PT),
657 Qrear_nonsticky, Qt, Qnil);
658 Fput_text_property (make_number (BEG), make_number (PT),
659 Qfield, Qt, Qnil);
660 Fadd_text_properties (make_number (BEG), make_number (PT),
661 Vminibuffer_prompt_properties, Qnil);
664 minibuf_prompt_width = (int) current_column (); /* iftc */
666 /* If appropriate, copy enable-multibyte-characters into the minibuffer. */
667 if (inherit_input_method)
668 current_buffer->enable_multibyte_characters = enable_multibyte;
670 /* Put in the initial input. */
671 if (!NILP (initial))
673 Finsert (1, &initial);
674 Fforward_char (make_number (pos));
677 clear_message (1, 1);
678 current_buffer->keymap = map;
680 /* Turn on an input method stored in INPUT_METHOD if any. */
681 if (STRINGP (input_method) && !NILP (Ffboundp (Qactivate_input_method)))
682 call1 (Qactivate_input_method, input_method);
684 /* Run our hook, but not if it is empty.
685 (run-hooks would do nothing if it is empty,
686 but it's important to save time here in the usual case.) */
687 if (!NILP (Vminibuffer_setup_hook) && !EQ (Vminibuffer_setup_hook, Qunbound)
688 && !NILP (Vrun_hooks))
689 call1 (Vrun_hooks, Qminibuffer_setup_hook);
691 /* Don't allow the user to undo past this point. */
692 current_buffer->undo_list = Qnil;
694 recursive_edit_1 ();
696 /* If cursor is on the minibuffer line,
697 show the user we have exited by putting it in column 0. */
698 if (XWINDOW (minibuf_window)->cursor.vpos >= 0
699 && !noninteractive)
701 XWINDOW (minibuf_window)->cursor.hpos = 0;
702 XWINDOW (minibuf_window)->cursor.x = 0;
703 XWINDOW (minibuf_window)->must_be_updated_p = 1;
704 update_frame (XFRAME (selected_frame), 1, 1);
705 if (rif && rif->flush_display)
706 rif->flush_display (XFRAME (XWINDOW (minibuf_window)->frame));
709 /* Make minibuffer contents into a string. */
710 Fset_buffer (minibuffer);
711 if (allow_props)
712 val = Fminibuffer_contents ();
713 else
714 val = Fminibuffer_contents_no_properties ();
716 /* VAL is the string of minibuffer text. */
718 last_minibuf_string = val;
720 /* Choose the string to add to the history. */
721 if (SCHARS (val) != 0)
722 histstring = val;
723 else if (STRINGP (defalt))
724 histstring = defalt;
725 else
726 histstring = Qnil;
728 /* Add the value to the appropriate history list, if any. */
729 if (SYMBOLP (Vminibuffer_history_variable)
730 && !NILP (histstring))
732 /* If the caller wanted to save the value read on a history list,
733 then do so if the value is not already the front of the list. */
734 Lisp_Object histval;
736 /* If variable is unbound, make it nil. */
737 if (EQ (SYMBOL_VALUE (Vminibuffer_history_variable), Qunbound))
738 Fset (Vminibuffer_history_variable, Qnil);
740 histval = Fsymbol_value (Vminibuffer_history_variable);
742 /* The value of the history variable must be a cons or nil. Other
743 values are unacceptable. We silently ignore these values. */
745 if (NILP (histval)
746 || (CONSP (histval)
747 /* Don't duplicate the most recent entry in the history. */
748 && NILP (Fequal (histstring, Fcar (histval)))))
750 Lisp_Object length;
752 histval = Fcons (histstring, histval);
753 Fset (Vminibuffer_history_variable, histval);
755 /* Truncate if requested. */
756 length = Fget (Vminibuffer_history_variable, Qhistory_length);
757 if (NILP (length)) length = Vhistory_length;
758 if (INTEGERP (length))
760 if (XINT (length) <= 0)
761 Fset (Vminibuffer_history_variable, Qnil);
762 else
764 Lisp_Object temp;
766 temp = Fnthcdr (Fsub1 (length), histval);
767 if (CONSP (temp)) Fsetcdr (temp, Qnil);
773 /* If Lisp form desired instead of string, parse it. */
774 if (expflag)
775 val = string_to_object (val, defalt);
777 /* The appropriate frame will get selected
778 in set-window-configuration. */
779 UNGCPRO;
780 return unbind_to (count, val);
783 /* Return a buffer to be used as the minibuffer at depth `depth'.
784 depth = 0 is the lowest allowed argument, and that is the value
785 used for nonrecursive minibuffer invocations */
787 Lisp_Object
788 get_minibuffer (depth)
789 int depth;
791 Lisp_Object tail, num, buf;
792 char name[24];
793 extern Lisp_Object nconc2 ();
795 XSETFASTINT (num, depth);
796 tail = Fnthcdr (num, Vminibuffer_list);
797 if (NILP (tail))
799 tail = Fcons (Qnil, Qnil);
800 Vminibuffer_list = nconc2 (Vminibuffer_list, tail);
802 buf = Fcar (tail);
803 if (NILP (buf) || NILP (XBUFFER (buf)->name))
805 sprintf (name, " *Minibuf-%d*", depth);
806 buf = Fget_buffer_create (build_string (name));
808 /* Although the buffer's name starts with a space, undo should be
809 enabled in it. */
810 Fbuffer_enable_undo (buf);
812 XSETCAR (tail, buf);
814 else
816 int count = SPECPDL_INDEX ();
817 /* `reset_buffer' blindly sets the list of overlays to NULL, so we
818 have to empty the list, otherwise we end up with overlays that
819 think they belong to this buffer while the buffer doesn't know about
820 them any more. */
821 delete_all_overlays (XBUFFER (buf));
822 reset_buffer (XBUFFER (buf));
823 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
824 Fset_buffer (buf);
825 Fkill_all_local_variables ();
826 unbind_to (count, Qnil);
829 return buf;
832 static Lisp_Object
833 run_exit_minibuf_hook (data)
834 Lisp_Object data;
836 if (!NILP (Vminibuffer_exit_hook) && !EQ (Vminibuffer_exit_hook, Qunbound)
837 && !NILP (Vrun_hooks))
838 safe_run_hooks (Qminibuffer_exit_hook);
840 return Qnil;
843 /* This function is called on exiting minibuffer, whether normally or
844 not, and it restores the current window, buffer, etc. */
846 static Lisp_Object
847 read_minibuf_unwind (data)
848 Lisp_Object data;
850 Lisp_Object old_deactivate_mark;
851 Lisp_Object window;
853 /* If this was a recursive minibuffer,
854 tie the minibuffer window back to the outer level minibuffer buffer. */
855 minibuf_level--;
857 window = minibuf_window;
858 /* To keep things predictable, in case it matters, let's be in the
859 minibuffer when we reset the relevant variables. */
860 Fset_buffer (XWINDOW (window)->buffer);
862 /* Restore prompt, etc, from outer minibuffer level. */
863 minibuf_prompt = Fcar (minibuf_save_list);
864 minibuf_save_list = Fcdr (minibuf_save_list);
865 minibuf_prompt_width = XFASTINT (Fcar (minibuf_save_list));
866 minibuf_save_list = Fcdr (minibuf_save_list);
867 Vhelp_form = Fcar (minibuf_save_list);
868 minibuf_save_list = Fcdr (minibuf_save_list);
869 Vcurrent_prefix_arg = Fcar (minibuf_save_list);
870 minibuf_save_list = Fcdr (minibuf_save_list);
871 Vminibuffer_history_position = Fcar (minibuf_save_list);
872 minibuf_save_list = Fcdr (minibuf_save_list);
873 Vminibuffer_history_variable = Fcar (minibuf_save_list);
874 minibuf_save_list = Fcdr (minibuf_save_list);
875 Voverriding_local_map = Fcar (minibuf_save_list);
876 minibuf_save_list = Fcdr (minibuf_save_list);
877 #if 0
878 temp = Fcar (minibuf_save_list);
879 if (FRAME_LIVE_P (XFRAME (WINDOW_FRAME (XWINDOW (temp)))))
880 minibuf_window = temp;
881 #endif
882 minibuf_save_list = Fcdr (minibuf_save_list);
884 /* Erase the minibuffer we were using at this level. */
886 int count = SPECPDL_INDEX ();
887 /* Prevent error in erase-buffer. */
888 specbind (Qinhibit_read_only, Qt);
889 specbind (Qinhibit_modification_hooks, Qt);
890 old_deactivate_mark = Vdeactivate_mark;
891 Ferase_buffer ();
892 Vdeactivate_mark = old_deactivate_mark;
893 unbind_to (count, Qnil);
896 /* When we get to the outmost level, make sure we resize the
897 mini-window back to its normal size. */
898 if (minibuf_level == 0)
899 resize_mini_window (XWINDOW (window), 0);
901 /* Make sure minibuffer window is erased, not ignored. */
902 windows_or_buffers_changed++;
903 XSETFASTINT (XWINDOW (window)->last_modified, 0);
904 XSETFASTINT (XWINDOW (window)->last_overlay_modified, 0);
905 return Qnil;
909 DEFUN ("read-from-minibuffer", Fread_from_minibuffer, Sread_from_minibuffer, 1, 7, 0,
910 doc: /* Read a string from the minibuffer, prompting with string PROMPT.
911 The optional second arg INITIAL-CONTENTS is an obsolete alternative to
912 DEFAULT-VALUE. It normally should be nil in new code, except when
913 HIST is a cons. It is discussed in more detail below.
914 Third arg KEYMAP is a keymap to use whilst reading;
915 if omitted or nil, the default is `minibuffer-local-map'.
916 If fourth arg READ is non-nil, then interpret the result as a Lisp object
917 and return that object:
918 in other words, do `(car (read-from-string INPUT-STRING))'
919 Fifth arg HIST, if non-nil, specifies a history list and optionally
920 the initial position in the list. It can be a symbol, which is the
921 history list variable to use, or it can be a cons cell
922 (HISTVAR . HISTPOS). In that case, HISTVAR is the history list variable
923 to use, and HISTPOS is the initial position for use by the minibuffer
924 history commands. For consistency, you should also specify that
925 element of the history as the value of INITIAL-CONTENTS. Positions
926 are counted starting from 1 at the beginning of the list.
927 Sixth arg DEFAULT-VALUE is the default value. If non-nil, it is available
928 for history commands; but, unless READ is non-nil, `read-from-minibuffer'
929 does NOT return DEFAULT-VALUE if the user enters empty input! It returns
930 the empty string.
931 Seventh arg INHERIT-INPUT-METHOD, if non-nil, means the minibuffer inherits
932 the current input method and the setting of `enable-multibyte-characters'.
933 If the variable `minibuffer-allow-text-properties' is non-nil,
934 then the string which is returned includes whatever text properties
935 were present in the minibuffer. Otherwise the value has no text properties.
937 The remainder of this documentation string describes the
938 INITIAL-CONTENTS argument in more detail. It is only relevant when
939 studying existing code, or when HIST is a cons. If non-nil,
940 INITIAL-CONTENTS is a string to be inserted into the minibuffer before
941 reading input. Normally, point is put at the end of that string.
942 However, if INITIAL-CONTENTS is \(STRING . POSITION), the initial
943 input is STRING, but point is placed at _one-indexed_ position
944 POSITION in the minibuffer. Any integer value less than or equal to
945 one puts point at the beginning of the string. *Note* that this
946 behavior differs from the way such arguments are used in `completing-read'
947 and some related functions, which use zero-indexing for POSITION. */)
948 (prompt, initial_contents, keymap, read, hist, default_value, inherit_input_method)
949 Lisp_Object prompt, initial_contents, keymap, read, hist, default_value;
950 Lisp_Object inherit_input_method;
952 Lisp_Object histvar, histpos, val;
953 struct gcpro gcpro1;
955 CHECK_STRING (prompt);
956 if (NILP (keymap))
957 keymap = Vminibuffer_local_map;
958 else
959 keymap = get_keymap (keymap, 1, 0);
961 if (SYMBOLP (hist))
963 histvar = hist;
964 histpos = Qnil;
966 else
968 histvar = Fcar_safe (hist);
969 histpos = Fcdr_safe (hist);
971 if (NILP (histvar))
972 histvar = Qminibuffer_history;
973 if (NILP (histpos))
974 XSETFASTINT (histpos, 0);
976 GCPRO1 (default_value);
977 val = read_minibuf (keymap, initial_contents, prompt,
978 Qnil, !NILP (read),
979 histvar, histpos, default_value,
980 minibuffer_allow_text_properties,
981 !NILP (inherit_input_method));
982 UNGCPRO;
983 return val;
986 DEFUN ("read-minibuffer", Fread_minibuffer, Sread_minibuffer, 1, 2, 0,
987 doc: /* Return a Lisp object read using the minibuffer, unevaluated.
988 Prompt with PROMPT. If non-nil, optional second arg INITIAL-CONTENTS
989 is a string to insert in the minibuffer before reading.
990 \(INITIAL-CONTENTS can also be a cons of a string and an integer. Such
991 arguments are used as in `read-from-minibuffer') */)
992 (prompt, initial_contents)
993 Lisp_Object prompt, initial_contents;
995 CHECK_STRING (prompt);
996 return read_minibuf (Vminibuffer_local_map, initial_contents,
997 prompt, Qnil, 1, Qminibuffer_history,
998 make_number (0), Qnil, 0, 0);
1001 DEFUN ("eval-minibuffer", Feval_minibuffer, Seval_minibuffer, 1, 2, 0,
1002 doc: /* Return value of Lisp expression read using the minibuffer.
1003 Prompt with PROMPT. If non-nil, optional second arg INITIAL-CONTENTS
1004 is a string to insert in the minibuffer before reading.
1005 \(INITIAL-CONTENTS can also be a cons of a string and an integer. Such
1006 arguments are used as in `read-from-minibuffer') */)
1007 (prompt, initial_contents)
1008 Lisp_Object prompt, initial_contents;
1010 return Feval (Fread_minibuffer (prompt, initial_contents));
1013 /* Functions that use the minibuffer to read various things. */
1015 DEFUN ("read-string", Fread_string, Sread_string, 1, 5, 0,
1016 doc: /* Read a string from the minibuffer, prompting with string PROMPT.
1017 If non-nil, second arg INITIAL-INPUT is a string to insert before reading.
1018 This argument has been superseded by DEFAULT-VALUE and should normally
1019 be nil in new code. It behaves as in `read-from-minibuffer'. See the
1020 documentation string of that function for details.
1021 The third arg HISTORY, if non-nil, specifies a history list
1022 and optionally the initial position in the list.
1023 See `read-from-minibuffer' for details of HISTORY argument.
1024 Fourth arg DEFAULT-VALUE is the default value. If non-nil, it is used
1025 for history commands, and as the value to return if the user enters
1026 the empty string.
1027 Fifth arg INHERIT-INPUT-METHOD, if non-nil, means the minibuffer inherits
1028 the current input method and the setting of `enable-multibyte-characters'. */)
1029 (prompt, initial_input, history, default_value, inherit_input_method)
1030 Lisp_Object prompt, initial_input, history, default_value;
1031 Lisp_Object inherit_input_method;
1033 Lisp_Object val;
1034 val = Fread_from_minibuffer (prompt, initial_input, Qnil,
1035 Qnil, history, default_value,
1036 inherit_input_method);
1037 if (STRINGP (val) && SCHARS (val) == 0 && ! NILP (default_value))
1038 val = default_value;
1039 return val;
1042 DEFUN ("read-no-blanks-input", Fread_no_blanks_input, Sread_no_blanks_input, 1, 3, 0,
1043 doc: /* Read a string from the terminal, not allowing blanks.
1044 Prompt with PROMPT. Whitespace terminates the input. If INITIAL is
1045 non-nil, it should be a string, which is used as initial input, with
1046 point positioned at the end, so that SPACE will accept the input.
1047 \(Actually, INITIAL can also be a cons of a string and an integer.
1048 Such values are treated as in `read-from-minibuffer', but are normally
1049 not useful in this function.)
1050 Third arg INHERIT-INPUT-METHOD, if non-nil, means the minibuffer inherits
1051 the current input method and the setting of`enable-multibyte-characters'. */)
1052 (prompt, initial, inherit_input_method)
1053 Lisp_Object prompt, initial, inherit_input_method;
1055 CHECK_STRING (prompt);
1056 return read_minibuf (Vminibuffer_local_ns_map, initial, prompt, Qnil,
1057 0, Qminibuffer_history, make_number (0), Qnil, 0,
1058 !NILP (inherit_input_method));
1061 DEFUN ("read-command", Fread_command, Sread_command, 1, 2, 0,
1062 doc: /* Read the name of a command and return as a symbol.
1063 Prompt with PROMPT. By default, return DEFAULT-VALUE. */)
1064 (prompt, default_value)
1065 Lisp_Object prompt, default_value;
1067 Lisp_Object name, default_string;
1069 if (NILP (default_value))
1070 default_string = Qnil;
1071 else if (SYMBOLP (default_value))
1072 default_string = SYMBOL_NAME (default_value);
1073 else
1074 default_string = default_value;
1076 name = Fcompleting_read (prompt, Vobarray, Qcommandp, Qt,
1077 Qnil, Qnil, default_string, Qnil);
1078 if (NILP (name))
1079 return name;
1080 return Fintern (name, Qnil);
1083 #ifdef NOTDEF
1084 DEFUN ("read-function", Fread_function, Sread_function, 1, 1, 0,
1085 doc: /* One arg PROMPT, a string. Read the name of a function and return as a symbol.
1086 Prompt with PROMPT. */)
1087 (prompt)
1088 Lisp_Object prompt;
1090 return Fintern (Fcompleting_read (prompt, Vobarray, Qfboundp, Qt, Qnil, Qnil, Qnil, Qnil),
1091 Qnil);
1093 #endif /* NOTDEF */
1095 DEFUN ("read-variable", Fread_variable, Sread_variable, 1, 2, 0,
1096 doc: /* Read the name of a user variable and return it as a symbol.
1097 Prompt with PROMPT. By default, return DEFAULT-VALUE.
1098 A user variable is one for which `user-variable-p' returns non-nil. */)
1099 (prompt, default_value)
1100 Lisp_Object prompt, default_value;
1102 Lisp_Object name, default_string;
1104 if (NILP (default_value))
1105 default_string = Qnil;
1106 else if (SYMBOLP (default_value))
1107 default_string = SYMBOL_NAME (default_value);
1108 else
1109 default_string = default_value;
1111 name = Fcompleting_read (prompt, Vobarray,
1112 Quser_variable_p, Qt,
1113 Qnil, Qnil, default_string, Qnil);
1114 if (NILP (name))
1115 return name;
1116 return Fintern (name, Qnil);
1119 DEFUN ("read-buffer", Fread_buffer, Sread_buffer, 1, 3, 0,
1120 doc: /* Read the name of a buffer and return as a string.
1121 Prompt with PROMPT.
1122 Optional second arg DEF is value to return if user enters an empty line.
1123 If optional third arg REQUIRE-MATCH is non-nil,
1124 only existing buffer names are allowed. */)
1125 (prompt, def, require_match)
1126 Lisp_Object prompt, def, require_match;
1128 Lisp_Object args[4];
1130 if (BUFFERP (def))
1131 def = XBUFFER (def)->name;
1133 if (NILP (Vread_buffer_function))
1135 if (!NILP (def))
1137 args[0] = build_string ("%s(default %s) ");
1138 args[1] = prompt;
1139 args[2] = def;
1140 prompt = Fformat (3, args);
1143 return Fcompleting_read (prompt, Vbuffer_alist, Qnil,
1144 require_match, Qnil, Qbuffer_name_history,
1145 def, Qnil);
1147 else
1149 args[0] = Vread_buffer_function;
1150 args[1] = prompt;
1151 args[2] = def;
1152 args[3] = require_match;
1153 return Ffuncall(4, args);
1157 static Lisp_Object
1158 minibuf_conform_representation (string, basis)
1159 Lisp_Object string, basis;
1161 if (STRING_MULTIBYTE (string) == STRING_MULTIBYTE (basis))
1162 return string;
1164 if (STRING_MULTIBYTE (string))
1165 return Fstring_make_unibyte (string);
1166 else
1167 return Fstring_make_multibyte (string);
1170 DEFUN ("try-completion", Ftry_completion, Stry_completion, 2, 3, 0,
1171 doc: /* Return common substring of all completions of STRING in ALIST.
1172 Each car of each element of ALIST (or each element if it is not a cons cell)
1173 is tested to see if it begins with STRING.
1174 All that match are compared together; the longest initial sequence
1175 common to all matches is returned as a string.
1176 If there is no match at all, nil is returned.
1177 For a unique match which is exact, t is returned.
1179 If ALIST is a hash-table, all the string keys are the possible matches.
1180 If ALIST is an obarray, the names of all symbols in the obarray
1181 are the possible matches.
1183 ALIST can also be a function to do the completion itself.
1184 It receives three arguments: the values STRING, PREDICATE and nil.
1185 Whatever it returns becomes the value of `try-completion'.
1187 If optional third argument PREDICATE is non-nil,
1188 it is used to test each possible match.
1189 The match is a candidate only if PREDICATE returns non-nil.
1190 The argument given to PREDICATE is the alist element
1191 or the symbol from the obarray. If ALIST is a hash-table,
1192 predicate is called with two arguments: the key and the value.
1193 Additionally to this predicate, `completion-regexp-list'
1194 is used to further constrain the set of candidates. */)
1195 (string, alist, predicate)
1196 Lisp_Object string, alist, predicate;
1198 Lisp_Object bestmatch, tail, elt, eltstring;
1199 /* Size in bytes of BESTMATCH. */
1200 int bestmatchsize = 0;
1201 /* These are in bytes, too. */
1202 int compare, matchsize;
1203 int type = HASH_TABLE_P (alist) ? 3
1204 : VECTORP (alist) ? 2
1205 : NILP (alist) || (CONSP (alist)
1206 && (!SYMBOLP (XCAR (alist))
1207 || NILP (XCAR (alist))));
1208 int index = 0, obsize = 0;
1209 int matchcount = 0;
1210 Lisp_Object bucket, zero, end, tem;
1211 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
1213 CHECK_STRING (string);
1214 if (type == 0)
1215 return call3 (alist, string, predicate, Qnil);
1217 bestmatch = bucket = Qnil;
1219 /* If ALIST is not a list, set TAIL just for gc pro. */
1220 tail = alist;
1221 if (type == 2)
1223 obsize = XVECTOR (alist)->size;
1224 bucket = XVECTOR (alist)->contents[index];
1227 while (1)
1229 /* Get the next element of the alist, obarray, or hash-table. */
1230 /* Exit the loop if the elements are all used up. */
1231 /* elt gets the alist element or symbol.
1232 eltstring gets the name to check as a completion. */
1234 if (type == 1)
1236 if (!CONSP (tail))
1237 break;
1238 elt = XCAR (tail);
1239 eltstring = CONSP (elt) ? XCAR (elt) : elt;
1240 tail = XCDR (tail);
1242 else if (type == 2)
1244 if (XFASTINT (bucket) != 0)
1246 elt = bucket;
1247 eltstring = Fsymbol_name (elt);
1248 if (XSYMBOL (bucket)->next)
1249 XSETSYMBOL (bucket, XSYMBOL (bucket)->next);
1250 else
1251 XSETFASTINT (bucket, 0);
1253 else if (++index >= obsize)
1254 break;
1255 else
1257 bucket = XVECTOR (alist)->contents[index];
1258 continue;
1261 else /* if (type == 3) */
1263 while (index < HASH_TABLE_SIZE (XHASH_TABLE (alist))
1264 && NILP (HASH_HASH (XHASH_TABLE (alist), index)))
1265 index++;
1266 if (index >= HASH_TABLE_SIZE (XHASH_TABLE (alist)))
1267 break;
1268 else
1269 elt = eltstring = HASH_KEY (XHASH_TABLE (alist), index++);
1272 /* Is this element a possible completion? */
1274 if (STRINGP (eltstring)
1275 && SCHARS (string) <= SCHARS (eltstring)
1276 && (tem = Fcompare_strings (eltstring, make_number (0),
1277 make_number (SCHARS (string)),
1278 string, make_number (0), Qnil,
1279 completion_ignore_case ? Qt : Qnil),
1280 EQ (Qt, tem)))
1282 /* Yes. */
1283 Lisp_Object regexps;
1284 Lisp_Object zero;
1285 XSETFASTINT (zero, 0);
1287 /* Ignore this element if it fails to match all the regexps. */
1288 if (CONSP (Vcompletion_regexp_list))
1290 int count = SPECPDL_INDEX ();
1291 specbind (Qcase_fold_search, completion_ignore_case ? Qt : Qnil);
1292 for (regexps = Vcompletion_regexp_list; CONSP (regexps);
1293 regexps = XCDR (regexps))
1295 tem = Fstring_match (XCAR (regexps), eltstring, zero);
1296 if (NILP (tem))
1297 break;
1299 unbind_to (count, Qnil);
1300 if (CONSP (regexps))
1301 continue;
1304 /* Ignore this element if there is a predicate
1305 and the predicate doesn't like it. */
1307 if (!NILP (predicate))
1309 if (EQ (predicate, Qcommandp))
1310 tem = Fcommandp (elt, Qnil);
1311 else
1313 GCPRO4 (tail, string, eltstring, bestmatch);
1314 tem = type == 3
1315 ? call2 (predicate, elt,
1316 HASH_VALUE (XHASH_TABLE (alist), index - 1))
1317 : call1 (predicate, elt);
1318 UNGCPRO;
1320 if (NILP (tem)) continue;
1323 /* Update computation of how much all possible completions match */
1325 if (NILP (bestmatch))
1327 matchcount = 1;
1328 bestmatch = eltstring;
1329 bestmatchsize = SCHARS (eltstring);
1331 else
1333 compare = min (bestmatchsize, SCHARS (eltstring));
1334 tem = Fcompare_strings (bestmatch, make_number (0),
1335 make_number (compare),
1336 eltstring, make_number (0),
1337 make_number (compare),
1338 completion_ignore_case ? Qt : Qnil);
1339 if (EQ (tem, Qt))
1340 matchsize = compare;
1341 else if (XINT (tem) < 0)
1342 matchsize = - XINT (tem) - 1;
1343 else
1344 matchsize = XINT (tem) - 1;
1346 if (matchsize < 0)
1347 /* When can this happen ? -stef */
1348 matchsize = compare;
1349 if (completion_ignore_case)
1351 /* If this is an exact match except for case,
1352 use it as the best match rather than one that is not an
1353 exact match. This way, we get the case pattern
1354 of the actual match. */
1355 if ((matchsize == SCHARS (eltstring)
1356 && matchsize < SCHARS (bestmatch))
1358 /* If there is more than one exact match ignoring case,
1359 and one of them is exact including case,
1360 prefer that one. */
1361 /* If there is no exact match ignoring case,
1362 prefer a match that does not change the case
1363 of the input. */
1364 ((matchsize == SCHARS (eltstring))
1366 (matchsize == SCHARS (bestmatch))
1367 && (tem = Fcompare_strings (eltstring, make_number (0),
1368 make_number (SCHARS (string)),
1369 string, make_number (0),
1370 Qnil,
1371 Qnil),
1372 EQ (Qt, tem))
1373 && (tem = Fcompare_strings (bestmatch, make_number (0),
1374 make_number (SCHARS (string)),
1375 string, make_number (0),
1376 Qnil,
1377 Qnil),
1378 ! EQ (Qt, tem))))
1379 bestmatch = eltstring;
1381 if (bestmatchsize != SCHARS (eltstring)
1382 || bestmatchsize != matchsize)
1383 /* Don't count the same string multiple times. */
1384 matchcount++;
1385 bestmatchsize = matchsize;
1386 if (matchsize <= SCHARS (string)
1387 && matchcount > 1)
1388 /* No need to look any further. */
1389 break;
1394 if (NILP (bestmatch))
1395 return Qnil; /* No completions found */
1396 /* If we are ignoring case, and there is no exact match,
1397 and no additional text was supplied,
1398 don't change the case of what the user typed. */
1399 if (completion_ignore_case && bestmatchsize == SCHARS (string)
1400 && SCHARS (bestmatch) > bestmatchsize)
1401 return minibuf_conform_representation (string, bestmatch);
1403 /* Return t if the supplied string is an exact match (counting case);
1404 it does not require any change to be made. */
1405 if (matchcount == 1 && bestmatchsize == SCHARS (string)
1406 && (tem = Fcompare_strings (bestmatch, make_number (0),
1407 make_number (bestmatchsize),
1408 string, make_number (0),
1409 make_number (bestmatchsize),
1410 Qnil),
1411 EQ (Qt, tem)))
1412 return Qt;
1414 XSETFASTINT (zero, 0); /* Else extract the part in which */
1415 XSETFASTINT (end, bestmatchsize); /* all completions agree */
1416 return Fsubstring (bestmatch, zero, end);
1419 DEFUN ("all-completions", Fall_completions, Sall_completions, 2, 4, 0,
1420 doc: /* Search for partial matches to STRING in ALIST.
1421 Each car of each element of ALIST (or each element if it is not a cons cell)
1422 is tested to see if it begins with STRING.
1423 The value is a list of all the strings from ALIST that match.
1425 If ALIST is a hash-table, all the string keys are the possible matches.
1426 If ALIST is an obarray, the names of all symbols in the obarray
1427 are the possible matches.
1429 ALIST can also be a function to do the completion itself.
1430 It receives three arguments: the values STRING, PREDICATE and t.
1431 Whatever it returns becomes the value of `all-completions'.
1433 If optional third argument PREDICATE is non-nil,
1434 it is used to test each possible match.
1435 The match is a candidate only if PREDICATE returns non-nil.
1436 The argument given to PREDICATE is the alist element
1437 or the symbol from the obarray. If ALIST is a hash-table,
1438 predicate is called with two arguments: the key and the value.
1439 Additionally to this predicate, `completion-regexp-list'
1440 is used to further constrain the set of candidates.
1442 If the optional fourth argument HIDE-SPACES is non-nil,
1443 strings in ALIST that start with a space
1444 are ignored unless STRING itself starts with a space. */)
1445 (string, alist, predicate, hide_spaces)
1446 Lisp_Object string, alist, predicate, hide_spaces;
1448 Lisp_Object tail, elt, eltstring;
1449 Lisp_Object allmatches;
1450 int type = HASH_TABLE_P (alist) ? 3
1451 : VECTORP (alist) ? 2
1452 : NILP (alist) || (CONSP (alist)
1453 && (!SYMBOLP (XCAR (alist))
1454 || NILP (XCAR (alist))));
1455 int index = 0, obsize = 0;
1456 Lisp_Object bucket, tem;
1457 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
1459 CHECK_STRING (string);
1460 if (type == 0)
1461 return call3 (alist, string, predicate, Qt);
1462 allmatches = bucket = Qnil;
1464 /* If ALIST is not a list, set TAIL just for gc pro. */
1465 tail = alist;
1466 if (type == 2)
1468 obsize = XVECTOR (alist)->size;
1469 bucket = XVECTOR (alist)->contents[index];
1472 while (1)
1474 /* Get the next element of the alist, obarray, or hash-table. */
1475 /* Exit the loop if the elements are all used up. */
1476 /* elt gets the alist element or symbol.
1477 eltstring gets the name to check as a completion. */
1479 if (type == 1)
1481 if (!CONSP (tail))
1482 break;
1483 elt = XCAR (tail);
1484 eltstring = CONSP (elt) ? XCAR (elt) : elt;
1485 tail = XCDR (tail);
1487 else if (type == 2)
1489 if (XFASTINT (bucket) != 0)
1491 elt = bucket;
1492 eltstring = Fsymbol_name (elt);
1493 if (XSYMBOL (bucket)->next)
1494 XSETSYMBOL (bucket, XSYMBOL (bucket)->next);
1495 else
1496 XSETFASTINT (bucket, 0);
1498 else if (++index >= obsize)
1499 break;
1500 else
1502 bucket = XVECTOR (alist)->contents[index];
1503 continue;
1506 else /* if (type == 3) */
1508 while (index < HASH_TABLE_SIZE (XHASH_TABLE (alist))
1509 && NILP (HASH_HASH (XHASH_TABLE (alist), index)))
1510 index++;
1511 if (index >= HASH_TABLE_SIZE (XHASH_TABLE (alist)))
1512 break;
1513 else
1514 elt = eltstring = HASH_KEY (XHASH_TABLE (alist), index++);
1517 /* Is this element a possible completion? */
1519 if (STRINGP (eltstring)
1520 && SCHARS (string) <= SCHARS (eltstring)
1521 /* If HIDE_SPACES, reject alternatives that start with space
1522 unless the input starts with space. */
1523 && ((SBYTES (string) > 0
1524 && SREF (string, 0) == ' ')
1525 || SREF (eltstring, 0) != ' '
1526 || NILP (hide_spaces))
1527 && (tem = Fcompare_strings (eltstring, make_number (0),
1528 make_number (SCHARS (string)),
1529 string, make_number (0),
1530 make_number (SCHARS (string)),
1531 completion_ignore_case ? Qt : Qnil),
1532 EQ (Qt, tem)))
1534 /* Yes. */
1535 Lisp_Object regexps;
1536 Lisp_Object zero;
1537 XSETFASTINT (zero, 0);
1539 /* Ignore this element if it fails to match all the regexps. */
1540 if (CONSP (Vcompletion_regexp_list))
1542 int count = SPECPDL_INDEX ();
1543 specbind (Qcase_fold_search, completion_ignore_case ? Qt : Qnil);
1544 for (regexps = Vcompletion_regexp_list; CONSP (regexps);
1545 regexps = XCDR (regexps))
1547 tem = Fstring_match (XCAR (regexps), eltstring, zero);
1548 if (NILP (tem))
1549 break;
1551 unbind_to (count, Qnil);
1552 if (CONSP (regexps))
1553 continue;
1556 /* Ignore this element if there is a predicate
1557 and the predicate doesn't like it. */
1559 if (!NILP (predicate))
1561 if (EQ (predicate, Qcommandp))
1562 tem = Fcommandp (elt, Qnil);
1563 else
1565 GCPRO4 (tail, eltstring, allmatches, string);
1566 tem = type == 3
1567 ? call2 (predicate, elt,
1568 HASH_VALUE (XHASH_TABLE (alist), index - 1))
1569 : call1 (predicate, elt);
1570 UNGCPRO;
1572 if (NILP (tem)) continue;
1574 /* Ok => put it on the list. */
1575 allmatches = Fcons (eltstring, allmatches);
1579 return Fnreverse (allmatches);
1582 Lisp_Object Vminibuffer_completion_table, Qminibuffer_completion_table;
1583 Lisp_Object Vminibuffer_completion_predicate, Qminibuffer_completion_predicate;
1584 Lisp_Object Vminibuffer_completion_confirm, Qminibuffer_completion_confirm;
1585 Lisp_Object Vminibuffer_completing_file_name;
1587 DEFUN ("completing-read", Fcompleting_read, Scompleting_read, 2, 8, 0,
1588 doc: /* Read a string in the minibuffer, with completion.
1589 PROMPT is a string to prompt with; normally it ends in a colon and a space.
1590 TABLE can be an list of strings, an alist, an obarray or a hash table.
1591 TABLE can also be a function to do the completion itself.
1592 PREDICATE limits completion to a subset of TABLE.
1593 See `try-completion' and `all-completions' for more details
1594 on completion, TABLE, and PREDICATE.
1596 If REQUIRE-MATCH is non-nil, the user is not allowed to exit unless
1597 the input is (or completes to) an element of TABLE or is null.
1598 If it is also not t, typing RET does not exit if it does non-null completion.
1599 If the input is null, `completing-read' returns DEF, or an empty string
1600 if DEF is nil, regardless of the value of REQUIRE-MATCH.
1602 If INITIAL-INPUT is non-nil, insert it in the minibuffer initially,
1603 with point positioned at the end.
1604 If it is (STRING . POSITION), the initial input is STRING, but point
1605 is placed at _zero-indexed_ position POSITION in STRING. (*Note*
1606 that this is different from `read-from-minibuffer' and related
1607 functions, which use one-indexing for POSITION.) This feature is
1608 deprecated--it is best to pass nil for INITIAL-INPUT and supply the
1609 default value DEF instead. The user can yank the default value into
1610 the minibuffer easily using \\[next-history-element].
1612 HIST, if non-nil, specifies a history list and optionally the initial
1613 position in the list. It can be a symbol, which is the history list
1614 variable to use, or it can be a cons cell (HISTVAR . HISTPOS). In
1615 that case, HISTVAR is the history list variable to use, and HISTPOS
1616 is the initial position (the position in the list used by the
1617 minibuffer history commands). For consistency, you should also
1618 specify that element of the history as the value of
1619 INITIAL-INPUT. (This is the only case in which you should use
1620 INITIAL-INPUT instead of DEF.) Positions are counted starting from
1621 1 at the beginning of the list. The variable `history-length'
1622 controls the maximum length of a history list.
1624 DEF, if non-nil, is the default value.
1626 If INHERIT-INPUT-METHOD is non-nil, the minibuffer inherits
1627 the current input method and the setting of `enable-multibyte-characters'.
1629 Completion ignores case if the ambient value of
1630 `completion-ignore-case' is non-nil. */)
1631 (prompt, table, predicate, require_match, initial_input, hist, def, inherit_input_method)
1632 Lisp_Object prompt, table, predicate, require_match, initial_input;
1633 Lisp_Object hist, def, inherit_input_method;
1635 Lisp_Object val, histvar, histpos, position;
1636 Lisp_Object init;
1637 int pos = 0;
1638 int count = SPECPDL_INDEX ();
1639 struct gcpro gcpro1;
1641 init = initial_input;
1642 GCPRO1 (def);
1644 specbind (Qminibuffer_completion_table, table);
1645 specbind (Qminibuffer_completion_predicate, predicate);
1646 specbind (Qminibuffer_completion_confirm,
1647 EQ (require_match, Qt) ? Qnil : require_match);
1648 last_exact_completion = Qnil;
1650 position = Qnil;
1651 if (!NILP (init))
1653 if (CONSP (init))
1655 position = Fcdr (init);
1656 init = Fcar (init);
1658 CHECK_STRING (init);
1659 if (!NILP (position))
1661 CHECK_NUMBER (position);
1662 /* Convert to distance from end of input. */
1663 pos = XINT (position) - SCHARS (init);
1667 if (SYMBOLP (hist))
1669 histvar = hist;
1670 histpos = Qnil;
1672 else
1674 histvar = Fcar_safe (hist);
1675 histpos = Fcdr_safe (hist);
1677 if (NILP (histvar))
1678 histvar = Qminibuffer_history;
1679 if (NILP (histpos))
1680 XSETFASTINT (histpos, 0);
1682 val = read_minibuf (NILP (require_match)
1683 ? Vminibuffer_local_completion_map
1684 : Vminibuffer_local_must_match_map,
1685 init, prompt, make_number (pos), 0,
1686 histvar, histpos, def, 0,
1687 !NILP (inherit_input_method));
1689 if (STRINGP (val) && SCHARS (val) == 0 && ! NILP (def))
1690 val = def;
1692 RETURN_UNGCPRO (unbind_to (count, val));
1695 Lisp_Object Fminibuffer_completion_help ();
1696 Lisp_Object Fassoc_string ();
1698 /* Test whether TXT is an exact completion. */
1699 DEFUN ("test-completion", Ftest_completion, Stest_completion, 2, 3, 0,
1700 doc: /* Return non-nil if STRING is a valid completion.
1701 Takes the same arguments as `all-completions' and `try-completion'.
1702 If ALIST is a function, it is called with three arguments:
1703 the values STRING, PREDICATE and `lambda'. */)
1704 (string, alist, predicate)
1705 Lisp_Object string, alist, predicate;
1707 Lisp_Object regexps, tail, tem = Qnil;
1708 int i = 0;
1710 CHECK_STRING (string);
1712 if ((CONSP (alist) && (!SYMBOLP (XCAR (alist)) || NILP (XCAR (alist))))
1713 || NILP (alist))
1715 tem = Fassoc_string (string, alist, completion_ignore_case ? Qt : Qnil);
1716 if NILP (tem)
1717 return Qnil;
1719 else if (VECTORP (alist))
1721 /* Bypass intern-soft as that loses for nil. */
1722 tem = oblookup (alist,
1723 SDATA (string),
1724 SCHARS (string),
1725 SBYTES (string));
1726 if (!SYMBOLP (tem))
1728 if (STRING_MULTIBYTE (string))
1729 string = Fstring_make_unibyte (string);
1730 else
1731 string = Fstring_make_multibyte (string);
1733 tem = oblookup (alist,
1734 SDATA (string),
1735 SCHARS (string),
1736 SBYTES (string));
1739 if (completion_ignore_case && !SYMBOLP (tem))
1741 for (i = XVECTOR (alist)->size - 1; i >= 0; i--)
1743 tail = XVECTOR (alist)->contents[i];
1744 if (SYMBOLP (tail))
1745 while (1)
1747 if (EQ((Fcompare_strings (string, make_number (0), Qnil,
1748 Fsymbol_name (tail),
1749 make_number (0) , Qnil, Qt)),
1750 Qt))
1752 tem = tail;
1753 break;
1755 if (XSYMBOL (tail)->next == 0)
1756 break;
1757 XSETSYMBOL (tail, XSYMBOL (tail)->next);
1762 if (!SYMBOLP (tem))
1763 return Qnil;
1765 else if (HASH_TABLE_P (alist))
1767 struct Lisp_Hash_Table *h = XHASH_TABLE (alist);
1768 i = hash_lookup (h, string, NULL);
1769 if (i >= 0)
1770 tem = HASH_KEY (h, i);
1771 else
1772 for (i = 0; i < HASH_TABLE_SIZE (h); ++i)
1773 if (!NILP (HASH_HASH (h, i)) &&
1774 EQ (Fcompare_strings (string, make_number (0), Qnil,
1775 HASH_KEY (h, i), make_number (0) , Qnil,
1776 completion_ignore_case ? Qt : Qnil),
1777 Qt))
1779 tem = HASH_KEY (h, i);
1780 break;
1782 if (!STRINGP (tem))
1783 return Qnil;
1785 else
1786 return call3 (alist, string, predicate, Qlambda);
1788 /* Reject this element if it fails to match all the regexps. */
1789 if (CONSP (Vcompletion_regexp_list))
1791 int count = SPECPDL_INDEX ();
1792 specbind (Qcase_fold_search, completion_ignore_case ? Qt : Qnil);
1793 for (regexps = Vcompletion_regexp_list; CONSP (regexps);
1794 regexps = XCDR (regexps))
1796 if (NILP (Fstring_match (XCAR (regexps),
1797 SYMBOLP (tem) ? string : tem,
1798 Qnil)))
1799 return unbind_to (count, Qnil);
1801 unbind_to (count, Qnil);
1804 /* Finally, check the predicate. */
1805 if (!NILP (predicate))
1807 return HASH_TABLE_P (alist)
1808 ? call2 (predicate, tem, HASH_VALUE (XHASH_TABLE (alist), i))
1809 : call1 (predicate, tem);
1811 else
1812 return Qt;
1815 /* returns:
1816 * 0 no possible completion
1817 * 1 was already an exact and unique completion
1818 * 3 was already an exact completion
1819 * 4 completed to an exact completion
1820 * 5 some completion happened
1821 * 6 no completion happened
1824 do_completion ()
1826 Lisp_Object completion, string, tem;
1827 int completedp;
1828 Lisp_Object last;
1829 struct gcpro gcpro1, gcpro2;
1831 completion = Ftry_completion (minibuffer_completion_contents (),
1832 Vminibuffer_completion_table,
1833 Vminibuffer_completion_predicate);
1834 last = last_exact_completion;
1835 last_exact_completion = Qnil;
1837 GCPRO2 (completion, last);
1839 if (NILP (completion))
1841 bitch_at_user ();
1842 temp_echo_area_glyphs (build_string (" [No match]"));
1843 UNGCPRO;
1844 return 0;
1847 if (EQ (completion, Qt)) /* exact and unique match */
1849 UNGCPRO;
1850 return 1;
1853 string = minibuffer_completion_contents ();
1855 /* COMPLETEDP should be true if some completion was done, which
1856 doesn't include simply changing the case of the entered string.
1857 However, for appearance, the string is rewritten if the case
1858 changes. */
1859 tem = Fcompare_strings (completion, Qnil, Qnil, string, Qnil, Qnil, Qt);
1860 completedp = !EQ (tem, Qt);
1862 tem = Fcompare_strings (completion, Qnil, Qnil, string, Qnil, Qnil, Qnil);
1863 if (!EQ (tem, Qt))
1864 /* Rewrite the user's input. */
1866 int prompt_end = XINT (Fminibuffer_prompt_end ());
1867 /* Some completion happened */
1869 if (! NILP (Vminibuffer_completing_file_name)
1870 && SREF (completion, SBYTES (completion) - 1) == '/'
1871 && PT < ZV
1872 && FETCH_CHAR (PT_BYTE) == '/')
1874 del_range (prompt_end, PT + 1);
1876 else
1877 del_range (prompt_end, PT);
1879 Finsert (1, &completion);
1881 if (! completedp)
1882 /* The case of the string changed, but that's all. We're not
1883 sure whether this is a unique completion or not, so try again
1884 using the real case (this shouldn't recurse again, because
1885 the next time try-completion will return either `t' or the
1886 exact string). */
1888 UNGCPRO;
1889 return do_completion ();
1893 /* It did find a match. Do we match some possibility exactly now? */
1894 tem = Ftest_completion (Fminibuffer_contents (),
1895 Vminibuffer_completion_table,
1896 Vminibuffer_completion_predicate);
1897 if (NILP (tem))
1899 /* not an exact match */
1900 UNGCPRO;
1901 if (completedp)
1902 return 5;
1903 else if (!NILP (Vcompletion_auto_help))
1904 Fminibuffer_completion_help ();
1905 else
1906 temp_echo_area_glyphs (build_string (" [Next char not unique]"));
1907 return 6;
1909 else if (completedp)
1911 UNGCPRO;
1912 return 4;
1914 /* If the last exact completion and this one were the same,
1915 it means we've already given a "Complete but not unique"
1916 message and the user's hit TAB again, so now we give him help. */
1917 last_exact_completion = completion;
1918 if (!NILP (last))
1920 tem = minibuffer_completion_contents ();
1921 if (!NILP (Fequal (tem, last)))
1922 Fminibuffer_completion_help ();
1924 UNGCPRO;
1925 return 3;
1928 /* Like assoc but assumes KEY is a string, and ignores case if appropriate. */
1930 DEFUN ("assoc-string", Fassoc_string, Sassoc_string, 2, 3, 0,
1931 doc: /* Like `assoc' but specifically for strings.
1932 Unibyte strings are converted to multibyte for comparison.
1933 And case is ignored if CASE-FOLD is non-nil.
1934 As opposed to `assoc', it will also match an entry consisting of a single
1935 string rather than a cons cell whose car is a string. */)
1936 (key, list, case_fold)
1937 register Lisp_Object key;
1938 Lisp_Object list, case_fold;
1940 register Lisp_Object tail;
1942 for (tail = list; !NILP (tail); tail = Fcdr (tail))
1944 register Lisp_Object elt, tem, thiscar;
1945 elt = Fcar (tail);
1946 thiscar = CONSP (elt) ? XCAR (elt) : elt;
1947 if (!STRINGP (thiscar))
1948 continue;
1949 tem = Fcompare_strings (thiscar, make_number (0), Qnil,
1950 key, make_number (0), Qnil,
1951 case_fold);
1952 if (EQ (tem, Qt))
1953 return elt;
1954 QUIT;
1956 return Qnil;
1959 DEFUN ("minibuffer-complete", Fminibuffer_complete, Sminibuffer_complete, 0, 0, "",
1960 doc: /* Complete the minibuffer contents as far as possible.
1961 Return nil if there is no valid completion, else t.
1962 If no characters can be completed, display a list of possible completions.
1963 If you repeat this command after it displayed such a list,
1964 scroll the window of possible completions. */)
1967 register int i;
1968 Lisp_Object window, tem;
1970 /* If the previous command was not this,
1971 mark the completion buffer obsolete. */
1972 if (! EQ (current_kboard->Vlast_command, Vthis_command))
1973 Vminibuf_scroll_window = Qnil;
1975 window = Vminibuf_scroll_window;
1976 /* If there's a fresh completion window with a live buffer,
1977 and this command is repeated, scroll that window. */
1978 if (! NILP (window) && ! NILP (XWINDOW (window)->buffer)
1979 && !NILP (XBUFFER (XWINDOW (window)->buffer)->name))
1981 struct buffer *obuf = current_buffer;
1983 Fset_buffer (XWINDOW (window)->buffer);
1984 tem = Fpos_visible_in_window_p (make_number (ZV), window, Qnil);
1985 if (! NILP (tem))
1986 /* If end is in view, scroll up to the beginning. */
1987 Fset_window_start (window, make_number (BEGV), Qnil);
1988 else
1989 /* Else scroll down one screen. */
1990 Fscroll_other_window (Qnil);
1992 set_buffer_internal (obuf);
1993 return Qnil;
1996 i = do_completion ();
1997 switch (i)
1999 case 0:
2000 return Qnil;
2002 case 1:
2003 if (PT != ZV)
2004 Fgoto_char (make_number (ZV));
2005 temp_echo_area_glyphs (build_string (" [Sole completion]"));
2006 break;
2008 case 3:
2009 if (PT != ZV)
2010 Fgoto_char (make_number (ZV));
2011 temp_echo_area_glyphs (build_string (" [Complete, but not unique]"));
2012 break;
2015 return Qt;
2018 /* Subroutines of Fminibuffer_complete_and_exit. */
2020 /* This one is called by internal_condition_case to do the real work. */
2022 Lisp_Object
2023 complete_and_exit_1 ()
2025 return make_number (do_completion ());
2028 /* This one is called by internal_condition_case if an error happens.
2029 Pretend the current value is an exact match. */
2031 Lisp_Object
2032 complete_and_exit_2 (ignore)
2033 Lisp_Object ignore;
2035 return make_number (1);
2038 DEFUN ("minibuffer-complete-and-exit", Fminibuffer_complete_and_exit,
2039 Sminibuffer_complete_and_exit, 0, 0, "",
2040 doc: /* If the minibuffer contents is a valid completion then exit.
2041 Otherwise try to complete it. If completion leads to a valid completion,
2042 a repetition of this command will exit. */)
2045 register int i;
2046 Lisp_Object val;
2048 /* Allow user to specify null string */
2049 if (XINT (Fminibuffer_prompt_end ()) == ZV)
2050 goto exit;
2052 if (!NILP (Ftest_completion (Fminibuffer_contents (),
2053 Vminibuffer_completion_table,
2054 Vminibuffer_completion_predicate)))
2055 goto exit;
2057 /* Call do_completion, but ignore errors. */
2058 SET_PT (ZV);
2059 val = internal_condition_case (complete_and_exit_1, Qerror,
2060 complete_and_exit_2);
2062 i = XFASTINT (val);
2063 switch (i)
2065 case 1:
2066 case 3:
2067 goto exit;
2069 case 4:
2070 if (!NILP (Vminibuffer_completion_confirm))
2072 temp_echo_area_glyphs (build_string (" [Confirm]"));
2073 return Qnil;
2075 else
2076 goto exit;
2078 default:
2079 return Qnil;
2081 exit:
2082 return Fthrow (Qexit, Qnil);
2083 /* NOTREACHED */
2086 DEFUN ("minibuffer-complete-word", Fminibuffer_complete_word, Sminibuffer_complete_word,
2087 0, 0, "",
2088 doc: /* Complete the minibuffer contents at most a single word.
2089 After one word is completed as much as possible, a space or hyphen
2090 is added, provided that matches some possible completion.
2091 Return nil if there is no valid completion, else t. */)
2094 Lisp_Object completion, tem, tem1;
2095 register int i, i_byte;
2096 register const unsigned char *completion_string;
2097 struct gcpro gcpro1, gcpro2;
2098 int prompt_end_charpos = XINT (Fminibuffer_prompt_end ());
2100 /* We keep calling Fbuffer_string rather than arrange for GC to
2101 hold onto a pointer to one of the strings thus made. */
2103 completion = Ftry_completion (minibuffer_completion_contents (),
2104 Vminibuffer_completion_table,
2105 Vminibuffer_completion_predicate);
2106 if (NILP (completion))
2108 bitch_at_user ();
2109 temp_echo_area_glyphs (build_string (" [No match]"));
2110 return Qnil;
2112 if (EQ (completion, Qt))
2113 return Qnil;
2115 #if 0 /* How the below code used to look, for reference. */
2116 tem = Fminibuffer_contents ();
2117 b = SDATA (tem);
2118 i = ZV - 1 - SCHARS (completion);
2119 p = SDATA (completion);
2120 if (i > 0 ||
2121 0 <= scmp (b, p, ZV - 1))
2123 i = 1;
2124 /* Set buffer to longest match of buffer tail and completion head. */
2125 while (0 <= scmp (b + i, p, ZV - 1 - i))
2126 i++;
2127 del_range (1, i + 1);
2128 SET_PT (ZV);
2130 #else /* Rewritten code */
2132 int buffer_nchars, completion_nchars;
2134 CHECK_STRING (completion);
2135 tem = minibuffer_completion_contents ();
2136 GCPRO2 (completion, tem);
2137 /* If reading a file name,
2138 expand any $ENVVAR refs in the buffer and in TEM. */
2139 if (! NILP (Vminibuffer_completing_file_name))
2141 Lisp_Object substituted;
2142 substituted = Fsubstitute_in_file_name (tem);
2143 if (! EQ (substituted, tem))
2145 tem = substituted;
2146 del_range (prompt_end_charpos, PT);
2147 Finsert (1, &tem);
2150 buffer_nchars = SCHARS (tem); /* # chars in what we completed. */
2151 completion_nchars = SCHARS (completion);
2152 i = buffer_nchars - completion_nchars;
2153 if (i > 0
2155 (tem1 = Fcompare_strings (tem, make_number (0),
2156 make_number (buffer_nchars),
2157 completion, make_number (0),
2158 make_number (buffer_nchars),
2159 completion_ignore_case ? Qt : Qnil),
2160 ! EQ (tem1, Qt)))
2162 int start_pos;
2164 /* Make buffer (before point) contain the longest match
2165 of TEM's tail and COMPLETION's head. */
2166 if (i <= 0) i = 1;
2167 start_pos= i;
2168 buffer_nchars -= i;
2169 while (i > 0)
2171 tem1 = Fcompare_strings (tem, make_number (start_pos), Qnil,
2172 completion, make_number (0),
2173 make_number (buffer_nchars),
2174 completion_ignore_case ? Qt : Qnil);
2175 start_pos++;
2176 if (EQ (tem1, Qt))
2177 break;
2178 i++;
2179 buffer_nchars--;
2181 del_range (start_pos, start_pos + buffer_nchars);
2183 UNGCPRO;
2185 #endif /* Rewritten code */
2188 int prompt_end_bytepos;
2189 prompt_end_bytepos = CHAR_TO_BYTE (prompt_end_charpos);
2190 i = PT - prompt_end_charpos;
2191 i_byte = PT_BYTE - prompt_end_bytepos;
2194 /* If completion finds next char not unique,
2195 consider adding a space or a hyphen. */
2196 if (i == SCHARS (completion))
2198 GCPRO1 (completion);
2199 tem = Ftry_completion (concat2 (minibuffer_completion_contents (),
2200 build_string (" ")),
2201 Vminibuffer_completion_table,
2202 Vminibuffer_completion_predicate);
2203 UNGCPRO;
2205 if (STRINGP (tem))
2206 completion = tem;
2207 else
2209 GCPRO1 (completion);
2210 tem =
2211 Ftry_completion (concat2 (minibuffer_completion_contents (),
2212 build_string ("-")),
2213 Vminibuffer_completion_table,
2214 Vminibuffer_completion_predicate);
2215 UNGCPRO;
2217 if (STRINGP (tem))
2218 completion = tem;
2222 /* Now find first word-break in the stuff found by completion.
2223 i gets index in string of where to stop completing. */
2225 int len, c;
2226 int bytes = SBYTES (completion);
2227 completion_string = SDATA (completion);
2228 for (; i_byte < SBYTES (completion); i_byte += len, i++)
2230 c = STRING_CHAR_AND_LENGTH (completion_string + i_byte,
2231 bytes - i_byte,
2232 len);
2233 if (SYNTAX (c) != Sword)
2235 i_byte += len;
2236 i++;
2237 break;
2242 /* If got no characters, print help for user. */
2244 if (i == PT - prompt_end_charpos)
2246 if (!NILP (Vcompletion_auto_help))
2247 Fminibuffer_completion_help ();
2248 return Qnil;
2251 /* Otherwise insert in minibuffer the chars we got */
2253 if (! NILP (Vminibuffer_completing_file_name)
2254 && SREF (completion, SBYTES (completion) - 1) == '/'
2255 && PT < ZV
2256 && FETCH_CHAR (PT_BYTE) == '/')
2258 del_range (prompt_end_charpos, PT + 1);
2260 else
2261 del_range (prompt_end_charpos, PT);
2263 insert_from_string (completion, 0, 0, i, i_byte, 1);
2264 return Qt;
2267 DEFUN ("display-completion-list", Fdisplay_completion_list, Sdisplay_completion_list,
2268 1, 1, 0,
2269 doc: /* Display the list of completions, COMPLETIONS, using `standard-output'.
2270 Each element may be just a symbol or string
2271 or may be a list of two strings to be printed as if concatenated.
2272 If it is a list of two strings, the first is the actual completion
2273 alternative, the second serves as annotation.
2274 `standard-output' must be a buffer.
2275 The actual completion alternatives, as inserted, are given `mouse-face'
2276 properties of `highlight'.
2277 At the end, this runs the normal hook `completion-setup-hook'.
2278 It can find the completion buffer in `standard-output'. */)
2279 (completions)
2280 Lisp_Object completions;
2282 Lisp_Object tail, elt;
2283 register int i;
2284 int column = 0;
2285 struct gcpro gcpro1, gcpro2;
2286 struct buffer *old = current_buffer;
2287 int first = 1;
2289 /* Note that (when it matters) every variable
2290 points to a non-string that is pointed to by COMPLETIONS,
2291 except for ELT. ELT can be pointing to a string
2292 when terpri or Findent_to calls a change hook. */
2293 elt = Qnil;
2294 GCPRO2 (completions, elt);
2296 if (BUFFERP (Vstandard_output))
2297 set_buffer_internal (XBUFFER (Vstandard_output));
2299 if (NILP (completions))
2300 write_string ("There are no possible completions of what you have typed.",
2301 -1);
2302 else
2304 write_string ("Possible completions are:", -1);
2305 for (tail = completions, i = 0; !NILP (tail); tail = Fcdr (tail), i++)
2307 Lisp_Object tem, string;
2308 int length;
2309 Lisp_Object startpos, endpos;
2311 startpos = Qnil;
2313 elt = Fcar (tail);
2314 if (SYMBOLP (elt))
2315 elt = SYMBOL_NAME (elt);
2316 /* Compute the length of this element. */
2317 if (CONSP (elt))
2319 tem = XCAR (elt);
2320 CHECK_STRING (tem);
2321 length = SCHARS (tem);
2323 tem = Fcar (XCDR (elt));
2324 CHECK_STRING (tem);
2325 length += SCHARS (tem);
2327 else
2329 CHECK_STRING (elt);
2330 length = SCHARS (elt);
2333 /* This does a bad job for narrower than usual windows.
2334 Sadly, the window it will appear in is not known
2335 until after the text has been made. */
2337 if (BUFFERP (Vstandard_output))
2338 XSETINT (startpos, BUF_PT (XBUFFER (Vstandard_output)));
2340 /* If the previous completion was very wide,
2341 or we have two on this line already,
2342 don't put another on the same line. */
2343 if (column > 33 || first
2344 /* If this is really wide, don't put it second on a line. */
2345 || (column > 0 && length > 45))
2347 Fterpri (Qnil);
2348 column = 0;
2350 /* Otherwise advance to column 35. */
2351 else
2353 if (BUFFERP (Vstandard_output))
2355 tem = Findent_to (make_number (35), make_number (2));
2357 column = XINT (tem);
2359 else
2363 write_string (" ", -1);
2364 column++;
2366 while (column < 35);
2370 if (BUFFERP (Vstandard_output))
2372 XSETINT (endpos, BUF_PT (XBUFFER (Vstandard_output)));
2373 Fset_text_properties (startpos, endpos,
2374 Qnil, Vstandard_output);
2377 /* Output this element.
2378 If necessary, convert it to unibyte or to multibyte first. */
2379 if (CONSP (elt))
2380 string = Fcar (elt);
2381 else
2382 string = elt;
2383 if (NILP (current_buffer->enable_multibyte_characters)
2384 && STRING_MULTIBYTE (string))
2385 string = Fstring_make_unibyte (string);
2386 else if (!NILP (current_buffer->enable_multibyte_characters)
2387 && !STRING_MULTIBYTE (string))
2388 string = Fstring_make_multibyte (string);
2390 if (BUFFERP (Vstandard_output))
2392 XSETINT (startpos, BUF_PT (XBUFFER (Vstandard_output)));
2394 Fprinc (string, Qnil);
2396 XSETINT (endpos, BUF_PT (XBUFFER (Vstandard_output)));
2398 Fput_text_property (startpos, endpos,
2399 Qmouse_face, intern ("highlight"),
2400 Vstandard_output);
2402 else
2404 Fprinc (string, Qnil);
2407 /* Output the annotation for this element. */
2408 if (CONSP (elt))
2410 if (BUFFERP (Vstandard_output))
2412 XSETINT (startpos, BUF_PT (XBUFFER (Vstandard_output)));
2414 Fprinc (Fcar (Fcdr (elt)), Qnil);
2416 XSETINT (endpos, BUF_PT (XBUFFER (Vstandard_output)));
2418 Fset_text_properties (startpos, endpos, Qnil,
2419 Vstandard_output);
2421 else
2423 Fprinc (Fcar (Fcdr (elt)), Qnil);
2428 /* Update COLUMN for what we have output. */
2429 column += length;
2431 /* If output is to a buffer, recompute COLUMN in a way
2432 that takes account of character widths. */
2433 if (BUFFERP (Vstandard_output))
2435 tem = Fcurrent_column ();
2436 column = XINT (tem);
2439 first = 0;
2443 UNGCPRO;
2445 if (BUFFERP (Vstandard_output))
2446 set_buffer_internal (old);
2448 if (!NILP (Vrun_hooks))
2449 call1 (Vrun_hooks, intern ("completion-setup-hook"));
2451 return Qnil;
2454 DEFUN ("minibuffer-completion-help", Fminibuffer_completion_help, Sminibuffer_completion_help,
2455 0, 0, "",
2456 doc: /* Display a list of possible completions of the current minibuffer contents. */)
2459 Lisp_Object completions;
2461 message ("Making completion list...");
2462 completions = Fall_completions (minibuffer_completion_contents (),
2463 Vminibuffer_completion_table,
2464 Vminibuffer_completion_predicate,
2465 Qt);
2466 clear_message (1, 0);
2468 if (NILP (completions))
2470 bitch_at_user ();
2471 temp_echo_area_glyphs (build_string (" [No completions]"));
2473 else
2474 internal_with_output_to_temp_buffer ("*Completions*",
2475 Fdisplay_completion_list,
2476 Fsort (completions, Qstring_lessp));
2477 return Qnil;
2480 DEFUN ("self-insert-and-exit", Fself_insert_and_exit, Sself_insert_and_exit, 0, 0, "",
2481 doc: /* Terminate minibuffer input. */)
2484 if (INTEGERP (last_command_char))
2485 internal_self_insert (XINT (last_command_char), 0);
2486 else
2487 bitch_at_user ();
2489 return Fthrow (Qexit, Qnil);
2492 DEFUN ("exit-minibuffer", Fexit_minibuffer, Sexit_minibuffer, 0, 0, "",
2493 doc: /* Terminate this minibuffer argument. */)
2496 return Fthrow (Qexit, Qnil);
2499 DEFUN ("minibuffer-depth", Fminibuffer_depth, Sminibuffer_depth, 0, 0, 0,
2500 doc: /* Return current depth of activations of minibuffer, a nonnegative integer. */)
2503 return make_number (minibuf_level);
2506 DEFUN ("minibuffer-prompt", Fminibuffer_prompt, Sminibuffer_prompt, 0, 0, 0,
2507 doc: /* Return the prompt string of the currently-active minibuffer.
2508 If no minibuffer is active, return nil. */)
2511 return Fcopy_sequence (minibuf_prompt);
2515 /* Temporarily display STRING at the end of the current
2516 minibuffer contents. This is used to display things like
2517 "[No Match]" when the user requests a completion for a prefix
2518 that has no possible completions, and other quick, unobtrusive
2519 messages. */
2521 void
2522 temp_echo_area_glyphs (string)
2523 Lisp_Object string;
2525 int osize = ZV;
2526 int osize_byte = ZV_BYTE;
2527 int opoint = PT;
2528 int opoint_byte = PT_BYTE;
2529 Lisp_Object oinhibit;
2530 oinhibit = Vinhibit_quit;
2532 /* Clear out any old echo-area message to make way for our new thing. */
2533 message (0);
2535 SET_PT_BOTH (osize, osize_byte);
2536 insert_from_string (string, 0, 0, SCHARS (string), SBYTES (string), 0);
2537 SET_PT_BOTH (opoint, opoint_byte);
2538 Vinhibit_quit = Qt;
2539 Fsit_for (make_number (2), Qnil, Qnil);
2540 del_range_both (osize, osize_byte, ZV, ZV_BYTE, 1);
2541 SET_PT_BOTH (opoint, opoint_byte);
2542 if (!NILP (Vquit_flag))
2544 Vquit_flag = Qnil;
2545 Vunread_command_events = Fcons (make_number (quit_char), Qnil);
2547 Vinhibit_quit = oinhibit;
2550 DEFUN ("minibuffer-message", Fminibuffer_message, Sminibuffer_message,
2551 1, 1, 0,
2552 doc: /* Temporarily display STRING at the end of the minibuffer.
2553 The text is displayed for two seconds,
2554 or until the next input event arrives, whichever comes first. */)
2555 (string)
2556 Lisp_Object string;
2558 CHECK_STRING (string);
2559 temp_echo_area_glyphs (string);
2560 return Qnil;
2563 void
2564 init_minibuf_once ()
2566 Vminibuffer_list = Qnil;
2567 staticpro (&Vminibuffer_list);
2570 void
2571 syms_of_minibuf ()
2573 minibuf_level = 0;
2574 minibuf_prompt = Qnil;
2575 staticpro (&minibuf_prompt);
2577 minibuf_save_list = Qnil;
2578 staticpro (&minibuf_save_list);
2580 Qread_file_name_internal = intern ("read-file-name-internal");
2581 staticpro (&Qread_file_name_internal);
2583 Qminibuffer_default = intern ("minibuffer-default");
2584 staticpro (&Qminibuffer_default);
2585 Fset (Qminibuffer_default, Qnil);
2587 Qminibuffer_completion_table = intern ("minibuffer-completion-table");
2588 staticpro (&Qminibuffer_completion_table);
2590 Qminibuffer_completion_confirm = intern ("minibuffer-completion-confirm");
2591 staticpro (&Qminibuffer_completion_confirm);
2593 Qminibuffer_completion_predicate = intern ("minibuffer-completion-predicate");
2594 staticpro (&Qminibuffer_completion_predicate);
2596 staticpro (&last_exact_completion);
2597 last_exact_completion = Qnil;
2599 staticpro (&last_minibuf_string);
2600 last_minibuf_string = Qnil;
2602 Quser_variable_p = intern ("user-variable-p");
2603 staticpro (&Quser_variable_p);
2605 Qminibuffer_history = intern ("minibuffer-history");
2606 staticpro (&Qminibuffer_history);
2608 Qbuffer_name_history = intern ("buffer-name-history");
2609 staticpro (&Qbuffer_name_history);
2610 Fset (Qbuffer_name_history, Qnil);
2612 Qminibuffer_setup_hook = intern ("minibuffer-setup-hook");
2613 staticpro (&Qminibuffer_setup_hook);
2615 Qminibuffer_exit_hook = intern ("minibuffer-exit-hook");
2616 staticpro (&Qminibuffer_exit_hook);
2618 Qhistory_length = intern ("history-length");
2619 staticpro (&Qhistory_length);
2621 Qcurrent_input_method = intern ("current-input-method");
2622 staticpro (&Qcurrent_input_method);
2624 Qactivate_input_method = intern ("activate-input-method");
2625 staticpro (&Qactivate_input_method);
2627 Qcase_fold_search = intern ("case-fold-search");
2628 staticpro (&Qcase_fold_search);
2630 DEFVAR_LISP ("read-buffer-function", &Vread_buffer_function,
2631 doc: /* If this is non-nil, `read-buffer' does its work by calling this function. */);
2632 Vread_buffer_function = Qnil;
2634 DEFVAR_LISP ("minibuffer-setup-hook", &Vminibuffer_setup_hook,
2635 doc: /* Normal hook run just after entry to minibuffer. */);
2636 Vminibuffer_setup_hook = Qnil;
2638 DEFVAR_LISP ("minibuffer-exit-hook", &Vminibuffer_exit_hook,
2639 doc: /* Normal hook run just after exit from minibuffer. */);
2640 Vminibuffer_exit_hook = Qnil;
2642 DEFVAR_LISP ("history-length", &Vhistory_length,
2643 doc: /* *Maximum length for history lists before truncation takes place.
2644 A number means that length; t means infinite. Truncation takes place
2645 just after a new element is inserted. Setting the history-length
2646 property of a history variable overrides this default. */);
2647 XSETFASTINT (Vhistory_length, 30);
2649 DEFVAR_LISP ("completion-auto-help", &Vcompletion_auto_help,
2650 doc: /* *Non-nil means automatically provide help for invalid completion input. */);
2651 Vcompletion_auto_help = Qt;
2653 DEFVAR_BOOL ("completion-ignore-case", &completion_ignore_case,
2654 doc: /* Non-nil means don't consider case significant in completion. */);
2655 completion_ignore_case = 0;
2657 DEFVAR_BOOL ("enable-recursive-minibuffers", &enable_recursive_minibuffers,
2658 doc: /* *Non-nil means to allow minibuffer commands while in the minibuffer.
2659 This variable makes a difference whenever the minibuffer window is active. */);
2660 enable_recursive_minibuffers = 0;
2662 DEFVAR_LISP ("minibuffer-completion-table", &Vminibuffer_completion_table,
2663 doc: /* Alist or obarray used for completion in the minibuffer.
2664 This becomes the ALIST argument to `try-completion' and `all-completions'.
2665 The value can also be a list of strings or a hash table.
2667 The value may alternatively be a function, which is given three arguments:
2668 STRING, the current buffer contents;
2669 PREDICATE, the predicate for filtering possible matches;
2670 CODE, which says what kind of things to do.
2671 CODE can be nil, t or `lambda'.
2672 nil means to return the best completion of STRING, or nil if there is none.
2673 t means to return a list of all possible completions of STRING.
2674 `lambda' means to return t if STRING is a valid completion as it stands. */);
2675 Vminibuffer_completion_table = Qnil;
2677 DEFVAR_LISP ("minibuffer-completion-predicate", &Vminibuffer_completion_predicate,
2678 doc: /* Within call to `completing-read', this holds the PREDICATE argument. */);
2679 Vminibuffer_completion_predicate = Qnil;
2681 DEFVAR_LISP ("minibuffer-completion-confirm", &Vminibuffer_completion_confirm,
2682 doc: /* Non-nil means to demand confirmation of completion before exiting minibuffer. */);
2683 Vminibuffer_completion_confirm = Qnil;
2685 DEFVAR_LISP ("minibuffer-completing-file-name",
2686 &Vminibuffer_completing_file_name,
2687 doc: /* Non-nil means completing file names. */);
2688 Vminibuffer_completing_file_name = Qnil;
2690 DEFVAR_LISP ("minibuffer-help-form", &Vminibuffer_help_form,
2691 doc: /* Value that `help-form' takes on inside the minibuffer. */);
2692 Vminibuffer_help_form = Qnil;
2694 DEFVAR_LISP ("minibuffer-history-variable", &Vminibuffer_history_variable,
2695 doc: /* History list symbol to add minibuffer values to.
2696 Each string of minibuffer input, as it appears on exit from the minibuffer,
2697 is added with
2698 (set minibuffer-history-variable
2699 (cons STRING (symbol-value minibuffer-history-variable))) */);
2700 XSETFASTINT (Vminibuffer_history_variable, 0);
2702 DEFVAR_LISP ("minibuffer-history-position", &Vminibuffer_history_position,
2703 doc: /* Current position of redoing in the history list. */);
2704 Vminibuffer_history_position = Qnil;
2706 DEFVAR_BOOL ("minibuffer-auto-raise", &minibuffer_auto_raise,
2707 doc: /* *Non-nil means entering the minibuffer raises the minibuffer's frame.
2708 Some uses of the echo area also raise that frame (since they use it too). */);
2709 minibuffer_auto_raise = 0;
2711 DEFVAR_LISP ("completion-regexp-list", &Vcompletion_regexp_list,
2712 doc: /* List of regexps that should restrict possible completions.
2713 The basic completion functions only consider a completion acceptable
2714 if it matches all regular expressions in this list, with
2715 `case-fold-search' bound to the value of `completion-ignore-case'.
2716 See Info node `(elisp)Basic Completion', for a description of these
2717 functions. */);
2718 Vcompletion_regexp_list = Qnil;
2720 DEFVAR_BOOL ("minibuffer-allow-text-properties",
2721 &minibuffer_allow_text_properties,
2722 doc: /* Non-nil means `read-from-minibuffer' should not discard text properties.
2723 This also affects `read-string', but it does not affect `read-minibuffer',
2724 `read-no-blanks-input', or any of the functions that do minibuffer input
2725 with completion; they always discard text properties. */);
2726 minibuffer_allow_text_properties = 0;
2728 DEFVAR_LISP ("minibuffer-prompt-properties", &Vminibuffer_prompt_properties,
2729 doc: /* Text properties that are added to minibuffer prompts.
2730 These are in addition to the basic `field' property, and stickiness
2731 properties. */);
2732 /* We use `intern' here instead of Qread_only to avoid
2733 initialization-order problems. */
2734 Vminibuffer_prompt_properties
2735 = Fcons (intern ("read-only"), Fcons (Qt, Qnil));
2737 defsubr (&Sset_minibuffer_window);
2738 defsubr (&Sread_from_minibuffer);
2739 defsubr (&Seval_minibuffer);
2740 defsubr (&Sread_minibuffer);
2741 defsubr (&Sread_string);
2742 defsubr (&Sread_command);
2743 defsubr (&Sread_variable);
2744 defsubr (&Sread_buffer);
2745 defsubr (&Sread_no_blanks_input);
2746 defsubr (&Sminibuffer_depth);
2747 defsubr (&Sminibuffer_prompt);
2749 defsubr (&Sminibufferp);
2750 defsubr (&Sminibuffer_prompt_end);
2751 defsubr (&Sminibuffer_contents);
2752 defsubr (&Sminibuffer_contents_no_properties);
2753 defsubr (&Sdelete_minibuffer_contents);
2755 defsubr (&Stry_completion);
2756 defsubr (&Sall_completions);
2757 defsubr (&Stest_completion);
2758 defsubr (&Sassoc_string);
2759 defsubr (&Scompleting_read);
2760 defsubr (&Sminibuffer_complete);
2761 defsubr (&Sminibuffer_complete_word);
2762 defsubr (&Sminibuffer_complete_and_exit);
2763 defsubr (&Sdisplay_completion_list);
2764 defsubr (&Sminibuffer_completion_help);
2766 defsubr (&Sself_insert_and_exit);
2767 defsubr (&Sexit_minibuffer);
2769 defsubr (&Sminibuffer_message);
2772 void
2773 keys_of_minibuf ()
2775 initial_define_key (Vminibuffer_local_map, Ctl ('g'),
2776 "abort-recursive-edit");
2777 initial_define_key (Vminibuffer_local_map, Ctl ('m'),
2778 "exit-minibuffer");
2779 initial_define_key (Vminibuffer_local_map, Ctl ('j'),
2780 "exit-minibuffer");
2782 initial_define_key (Vminibuffer_local_ns_map, ' ',
2783 "exit-minibuffer");
2784 initial_define_key (Vminibuffer_local_ns_map, '\t',
2785 "exit-minibuffer");
2786 initial_define_key (Vminibuffer_local_ns_map, '?',
2787 "self-insert-and-exit");
2789 initial_define_key (Vminibuffer_local_completion_map, '\t',
2790 "minibuffer-complete");
2791 initial_define_key (Vminibuffer_local_completion_map, ' ',
2792 "minibuffer-complete-word");
2793 initial_define_key (Vminibuffer_local_completion_map, '?',
2794 "minibuffer-completion-help");
2796 initial_define_key (Vminibuffer_local_must_match_map, Ctl ('m'),
2797 "minibuffer-complete-and-exit");
2798 initial_define_key (Vminibuffer_local_must_match_map, Ctl ('j'),
2799 "minibuffer-complete-and-exit");
2802 /* arch-tag: 8f69b601-fba3-484c-a6dd-ceaee54a7a73
2803 (do not change this comment) */