Comment change.
[emacs.git] / src / minibuf.c
blobbab116f4ba77e51f24c00e9eb765a5b4278dc12c
1 /* Minibuffer input and completion.
2 Copyright (C) 1985, 1986, 93, 94, 95, 1996 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
22 #include <config.h>
23 #include "lisp.h"
24 #include "commands.h"
25 #include "buffer.h"
26 #include "dispextern.h"
27 #include "frame.h"
28 #include "window.h"
29 #include "syntax.h"
30 #include "keyboard.h"
32 #define min(a, b) ((a) < (b) ? (a) : (b))
34 extern int quit_char;
36 /* List of buffers for use as minibuffers.
37 The first element of the list is used for the outermost minibuffer
38 invocation, the next element is used for a recursive minibuffer
39 invocation, etc. The list is extended at the end as deeper
40 minibuffer recursions are encountered. */
41 Lisp_Object Vminibuffer_list;
43 /* Data to remember during recursive minibuffer invocations */
44 Lisp_Object minibuf_save_list;
46 /* Depth in minibuffer invocations. */
47 int minibuf_level;
49 /* Nonzero means display completion help for invalid input */
50 int auto_help;
52 /* Fread_minibuffer leaves the input here as a string. */
53 Lisp_Object last_minibuf_string;
55 /* Nonzero means let functions called when within a minibuffer
56 invoke recursive minibuffers (to read arguments, or whatever) */
57 int enable_recursive_minibuffers;
59 /* help-form is bound to this while in the minibuffer. */
61 Lisp_Object Vminibuffer_help_form;
63 /* Variable which is the history list to add minibuffer values to. */
65 Lisp_Object Vminibuffer_history_variable;
67 /* Current position in the history list (adjusted by M-n and M-p). */
69 Lisp_Object Vminibuffer_history_position;
71 Lisp_Object Qminibuffer_history;
73 Lisp_Object Qread_file_name_internal;
75 /* Normal hooks for entry to and exit from minibuffer. */
77 Lisp_Object Qminibuffer_setup_hook, Vminibuffer_setup_hook;
78 Lisp_Object Qminibuffer_exit_hook, Vminibuffer_exit_hook;
80 /* Nonzero means completion ignores case. */
82 int completion_ignore_case;
84 /* List of regexps that should restrict possible completions. */
86 Lisp_Object Vcompletion_regexp_list;
88 /* Nonzero means raise the minibuffer frame when the minibuffer
89 is entered. */
91 int minibuffer_auto_raise;
93 /* If last completion attempt reported "Complete but not unique"
94 then this is the string completed then; otherwise this is nil. */
96 static Lisp_Object last_exact_completion;
98 Lisp_Object Quser_variable_p;
100 /* Non-nil means it is the window for C-M-v to scroll
101 when the minibuffer is selected. */
102 extern Lisp_Object Vminibuf_scroll_window;
104 extern Lisp_Object Voverriding_local_map;
106 /* Put minibuf on currently selected frame's minibuffer.
107 We do this whenever the user starts a new minibuffer
108 or when a minibuffer exits. */
110 void
111 choose_minibuf_frame ()
113 if (selected_frame != 0
114 && !EQ (minibuf_window, selected_frame->minibuffer_window))
116 #if defined(MSDOS) && !defined(HAVE_X_WINDOWS)
117 selected_frame->minibuffer_window = minibuf_window;
118 #else
119 /* I don't think that any frames may validly have a null minibuffer
120 window anymore. */
121 if (NILP (selected_frame->minibuffer_window))
122 abort ();
124 Fset_window_buffer (selected_frame->minibuffer_window,
125 XWINDOW (minibuf_window)->buffer);
126 minibuf_window = selected_frame->minibuffer_window;
127 #endif
131 DEFUN ("set-minibuffer-window", Fset_minibuffer_window,
132 Sset_minibuffer_window, 1, 1, 0,
133 "Specify which minibuffer window to use for the minibuffer.\n\
134 This effects where the minibuffer is displayed if you put text in it\n\
135 without invoking the usual minibuffer commands.")
136 (window)
137 Lisp_Object window;
139 CHECK_WINDOW (window, 1);
140 if (! MINI_WINDOW_P (XWINDOW (window)))
141 error ("Window is not a minibuffer window");
143 minibuf_window = window;
145 return window;
149 /* Actual minibuffer invocation. */
151 void read_minibuf_unwind ();
152 Lisp_Object get_minibuffer ();
153 Lisp_Object read_minibuf ();
155 /* Read from the minibuffer using keymap MAP, initial contents INITIAL
156 (a string), putting point minus BACKUP_N chars from the end of INITIAL,
157 prompting with PROMPT (a string), using history list HISTVAR
158 with initial position HISTPOS. (BACKUP_N should be <= 0.)
160 Normally return the result as a string (the text that was read),
161 but if EXPFLAG is nonzero, read it and return the object read.
162 If HISTVAR is given, save the value read on that history only if it doesn't
163 match the front of that history list exactly. The value is pushed onto
164 the list as the string that was read. */
166 Lisp_Object
167 read_minibuf (map, initial, prompt, backup_n, expflag, histvar, histpos)
168 Lisp_Object map;
169 Lisp_Object initial;
170 Lisp_Object prompt;
171 Lisp_Object backup_n;
172 int expflag;
173 Lisp_Object histvar;
174 Lisp_Object histpos;
176 Lisp_Object val;
177 int count = specpdl_ptr - specpdl;
178 Lisp_Object mini_frame;
179 struct gcpro gcpro1, gcpro2, gcpro3;
181 single_kboard_state ();
183 val = Qnil;
184 /* Don't need to protect PROMPT, HISTVAR, and HISTPOS because we
185 store them away before we can GC. Don't need to protect
186 BACKUP_N because we use the value only if it is an integer. */
187 GCPRO3 (map, initial, val);
189 if (!STRINGP (prompt))
190 prompt = build_string ("");
192 if (!enable_recursive_minibuffers
193 && minibuf_level > 0
194 && (EQ (selected_window, minibuf_window)))
195 error ("Command attempted to use minibuffer while in minibuffer");
197 /* Could we simply bind these variables instead? */
198 minibuf_save_list
199 = Fcons (Voverriding_local_map,
200 Fcons (minibuf_window, minibuf_save_list));
201 minibuf_save_list
202 = Fcons (minibuf_prompt,
203 Fcons (make_number (minibuf_prompt_width),
204 Fcons (Vhelp_form,
205 Fcons (Vcurrent_prefix_arg,
206 Fcons (Vminibuffer_history_position,
207 Fcons (Vminibuffer_history_variable,
208 minibuf_save_list))))));
210 minibuf_prompt_width = 0; /* xdisp.c puts in the right value. */
211 minibuf_prompt = Fcopy_sequence (prompt);
212 Vminibuffer_history_position = histpos;
213 Vminibuffer_history_variable = histvar;
215 choose_minibuf_frame ();
217 record_unwind_protect (Fset_window_configuration,
218 Fcurrent_window_configuration (Qnil));
220 /* If the minibuffer window is on a different frame, save that
221 frame's configuration too. */
222 #ifdef MULTI_FRAME
223 mini_frame = WINDOW_FRAME (XWINDOW (minibuf_window));
224 if (XFRAME (mini_frame) != selected_frame)
225 record_unwind_protect (Fset_window_configuration,
226 Fcurrent_window_configuration (mini_frame));
228 /* If the minibuffer is on an iconified or invisible frame,
229 make it visible now. */
230 Fmake_frame_visible (mini_frame);
232 if (minibuffer_auto_raise)
233 Fraise_frame (mini_frame);
234 #endif
236 val = current_buffer->directory;
237 Fset_buffer (get_minibuffer (minibuf_level));
239 /* The current buffer's default directory is usually the right thing
240 for our minibuffer here. However, if you're typing a command at
241 a minibuffer-only frame when minibuf_level is zero, then buf IS
242 the current_buffer, so reset_buffer leaves buf's default
243 directory unchanged. This is a bummer when you've just started
244 up Emacs and buf's default directory is Qnil. Here's a hack; can
245 you think of something better to do? Find another buffer with a
246 better directory, and use that one instead. */
247 if (STRINGP (val))
248 current_buffer->directory = val;
249 else
251 Lisp_Object buf_list;
253 for (buf_list = Vbuffer_alist;
254 CONSP (buf_list);
255 buf_list = XCONS (buf_list)->cdr)
257 Lisp_Object other_buf;
259 other_buf = XCONS (XCONS (buf_list)->car)->cdr;
260 if (STRINGP (XBUFFER (other_buf)->directory))
262 current_buffer->directory = XBUFFER (other_buf)->directory;
263 break;
268 #ifdef MULTI_FRAME
269 if (XFRAME (mini_frame) != selected_frame)
270 Fredirect_frame_focus (Fselected_frame (), mini_frame);
271 #endif
272 Fmake_local_variable (Qprint_escape_newlines);
273 print_escape_newlines = 1;
275 record_unwind_protect (read_minibuf_unwind, Qnil);
277 Vminibuf_scroll_window = selected_window;
278 Fset_window_buffer (minibuf_window, Fcurrent_buffer ());
279 Fselect_window (minibuf_window);
280 XSETFASTINT (XWINDOW (minibuf_window)->hscroll, 0);
282 Ferase_buffer ();
283 minibuf_level++;
285 if (!NILP (initial))
287 Finsert (1, &initial);
288 if (!NILP (backup_n) && INTEGERP (backup_n))
289 Fforward_char (backup_n);
292 echo_area_glyphs = 0;
293 /* This is in case the minibuffer-setup-hook calls Fsit_for. */
294 previous_echo_glyphs = 0;
296 Vhelp_form = Vminibuffer_help_form;
297 current_buffer->keymap = map;
299 /* Run our hook, but not if it is empty.
300 (run-hooks would do nothing if it is empty,
301 but it's important to save time here in the usual case. */
302 if (!NILP (Vminibuffer_setup_hook) && !EQ (Vminibuffer_setup_hook, Qunbound)
303 && !NILP (Vrun_hooks))
304 call1 (Vrun_hooks, Qminibuffer_setup_hook);
306 /* ??? MCC did redraw_screen here if switching screens. */
307 recursive_edit_1 ();
309 /* If cursor is on the minibuffer line,
310 show the user we have exited by putting it in column 0. */
311 if ((FRAME_CURSOR_Y (selected_frame)
312 >= XFASTINT (XWINDOW (minibuf_window)->top))
313 && !noninteractive)
315 FRAME_CURSOR_X (selected_frame) = 0;
316 update_frame (selected_frame, 1, 1);
319 /* Make minibuffer contents into a string */
320 val = make_buffer_string (1, Z, 1);
321 #if 0 /* make_buffer_string should handle the gap. */
322 bcopy (GAP_END_ADDR, XSTRING (val)->data + GPT - BEG, Z - GPT);
323 #endif
325 /* VAL is the string of minibuffer text. */
326 last_minibuf_string = val;
328 /* Add the value to the appropriate history list unless it is empty. */
329 if (XSTRING (val)->size != 0
330 && SYMBOLP (Vminibuffer_history_variable)
331 && ! EQ (XSYMBOL (Vminibuffer_history_variable)->value, Qunbound))
333 /* If the caller wanted to save the value read on a history list,
334 then do so if the value is not already the front of the list. */
335 Lisp_Object histval;
336 histval = Fsymbol_value (Vminibuffer_history_variable);
338 /* The value of the history variable must be a cons or nil. Other
339 values are unacceptable. We silently ignore these values. */
340 if (NILP (histval)
341 || (CONSP (histval)
342 && NILP (Fequal (last_minibuf_string, Fcar (histval)))))
343 Fset (Vminibuffer_history_variable,
344 Fcons (last_minibuf_string, histval));
347 /* If Lisp form desired instead of string, parse it. */
348 if (expflag)
350 Lisp_Object expr_and_pos;
351 unsigned char *p;
353 expr_and_pos = Fread_from_string (val, Qnil, Qnil);
354 /* Ignore trailing whitespace; any other trailing junk is an error. */
355 for (p = XSTRING (val)->data + XINT (Fcdr (expr_and_pos)); *p; p++)
356 if (*p != ' ' && *p != '\t' && *p != '\n')
357 error ("Trailing garbage following expression");
358 val = Fcar (expr_and_pos);
361 /* The appropriate frame will get selected
362 in set-window-configuration. */
363 RETURN_UNGCPRO (unbind_to (count, val));
366 /* Return a buffer to be used as the minibuffer at depth `depth'.
367 depth = 0 is the lowest allowed argument, and that is the value
368 used for nonrecursive minibuffer invocations */
370 Lisp_Object
371 get_minibuffer (depth)
372 int depth;
374 Lisp_Object tail, num, buf;
375 char name[24];
376 extern Lisp_Object nconc2 ();
378 XSETFASTINT (num, depth);
379 tail = Fnthcdr (num, Vminibuffer_list);
380 if (NILP (tail))
382 tail = Fcons (Qnil, Qnil);
383 Vminibuffer_list = nconc2 (Vminibuffer_list, tail);
385 buf = Fcar (tail);
386 if (NILP (buf) || NILP (XBUFFER (buf)->name))
388 sprintf (name, " *Minibuf-%d*", depth);
389 buf = Fget_buffer_create (build_string (name));
391 /* Although the buffer's name starts with a space, undo should be
392 enabled in it. */
393 Fbuffer_enable_undo (buf);
395 XCONS (tail)->car = buf;
397 else
399 int count = specpdl_ptr - specpdl;
401 reset_buffer (XBUFFER (buf));
402 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
403 Fset_buffer (buf);
404 Fkill_all_local_variables ();
405 unbind_to (count, Qnil);
408 return buf;
411 /* This function is called on exiting minibuffer, whether normally or not,
412 and it restores the current window, buffer, etc. */
414 void
415 read_minibuf_unwind (data)
416 Lisp_Object data;
418 Lisp_Object old_deactivate_mark;
420 /* We are exiting the minibuffer one way or the other,
421 so run the hook. */
422 if (!NILP (Vminibuffer_exit_hook) && !EQ (Vminibuffer_exit_hook, Qunbound)
423 && !NILP (Vrun_hooks))
424 safe_run_hooks (Qminibuffer_exit_hook);
426 /* Erase the minibuffer we were using at this level. */
427 Fset_buffer (XWINDOW (minibuf_window)->buffer);
429 /* Prevent error in erase-buffer. */
430 current_buffer->read_only = Qnil;
432 old_deactivate_mark = Vdeactivate_mark;
433 Ferase_buffer ();
434 Vdeactivate_mark = old_deactivate_mark;
436 /* If this was a recursive minibuffer,
437 tie the minibuffer window back to the outer level minibuffer buffer */
438 minibuf_level--;
439 /* Make sure minibuffer window is erased, not ignored */
440 windows_or_buffers_changed++;
441 XSETFASTINT (XWINDOW (minibuf_window)->last_modified, 0);
443 /* Restore prompt, etc from outer minibuffer */
444 minibuf_prompt = Fcar (minibuf_save_list);
445 minibuf_save_list = Fcdr (minibuf_save_list);
446 minibuf_prompt_width = XFASTINT (Fcar (minibuf_save_list));
447 minibuf_save_list = Fcdr (minibuf_save_list);
448 Vhelp_form = Fcar (minibuf_save_list);
449 minibuf_save_list = Fcdr (minibuf_save_list);
450 Vcurrent_prefix_arg = Fcar (minibuf_save_list);
451 minibuf_save_list = Fcdr (minibuf_save_list);
452 Vminibuffer_history_position = Fcar (minibuf_save_list);
453 minibuf_save_list = Fcdr (minibuf_save_list);
454 Vminibuffer_history_variable = Fcar (minibuf_save_list);
455 minibuf_save_list = Fcdr (minibuf_save_list);
456 Voverriding_local_map = Fcar (minibuf_save_list);
457 minibuf_save_list = Fcdr (minibuf_save_list);
458 minibuf_window = Fcar (minibuf_save_list);
459 minibuf_save_list = Fcdr (minibuf_save_list);
463 /* This comment supplies the doc string for read-from-minibuffer,
464 for make-docfile to see. We cannot put this in the real DEFUN
465 due to limits in the Unix cpp.
467 DEFUN ("read-from-minibuffer", Fread_from_minibuffer, Sread_from_minibuffer, 1, 5, 0,
468 "Read a string from the minibuffer, prompting with string PROMPT.\n\
469 If optional second arg INITIAL-CONTENTS is non-nil, it is a string\n\
470 to be inserted into the minibuffer before reading input.\n\
471 If INITIAL-CONTENTS is (STRING . POSITION), the initial input\n\
472 is STRING, but point is placed POSITION characters into the string.\n\
473 Third arg KEYMAP is a keymap to use whilst reading;\n\
474 if omitted or nil, the default is `minibuffer-local-map'.\n\
475 If fourth arg READ is non-nil, then interpret the result as a lisp object\n\
476 and return that object:\n\
477 in other words, do `(car (read-from-string INPUT-STRING))'\n\
478 Fifth arg HIST, if non-nil, specifies a history list\n\
479 and optionally the initial position in the list.\n\
480 It can be a symbol, which is the history list variable to use,\n\
481 or it can be a cons cell (HISTVAR . HISTPOS).\n\
482 In that case, HISTVAR is the history list variable to use,\n\
483 and HISTPOS is the initial position (the position in the list\n\
484 which INITIAL-CONTENTS corresponds to).\n\
485 Positions are counted starting from 1 at the beginning of the list."
488 DEFUN ("read-from-minibuffer", Fread_from_minibuffer, Sread_from_minibuffer, 1, 5, 0,
489 0 /* See immediately above */)
490 (prompt, initial_contents, keymap, read, hist)
491 Lisp_Object prompt, initial_contents, keymap, read, hist;
493 int pos = 0;
494 Lisp_Object histvar, histpos, position;
495 position = Qnil;
497 CHECK_STRING (prompt, 0);
498 if (!NILP (initial_contents))
500 if (CONSP (initial_contents))
502 position = Fcdr (initial_contents);
503 initial_contents = Fcar (initial_contents);
505 CHECK_STRING (initial_contents, 1);
506 if (!NILP (position))
508 CHECK_NUMBER (position, 0);
509 /* Convert to distance from end of input. */
510 pos = XINT (position) - 1 - XSTRING (initial_contents)->size;
514 if (NILP (keymap))
515 keymap = Vminibuffer_local_map;
516 else
517 keymap = get_keymap (keymap,2);
519 if (SYMBOLP (hist))
521 histvar = hist;
522 histpos = Qnil;
524 else
526 histvar = Fcar_safe (hist);
527 histpos = Fcdr_safe (hist);
529 if (NILP (histvar))
530 histvar = Qminibuffer_history;
531 if (NILP (histpos))
532 XSETFASTINT (histpos, 0);
534 return read_minibuf (keymap, initial_contents, prompt,
535 make_number (pos), !NILP (read), histvar, histpos);
538 DEFUN ("read-minibuffer", Fread_minibuffer, Sread_minibuffer, 1, 2, 0,
539 "Return a Lisp object read using the minibuffer.\n\
540 Prompt with PROMPT. If non-nil, optional second arg INITIAL-CONTENTS\n\
541 is a string to insert in the minibuffer before reading.")
542 (prompt, initial_contents)
543 Lisp_Object prompt, initial_contents;
545 CHECK_STRING (prompt, 0);
546 if (!NILP (initial_contents))
547 CHECK_STRING (initial_contents, 1);
548 return read_minibuf (Vminibuffer_local_map, initial_contents,
549 prompt, Qnil, 1, Qminibuffer_history, make_number (0));
552 DEFUN ("eval-minibuffer", Feval_minibuffer, Seval_minibuffer, 1, 2, 0,
553 "Return value of Lisp expression read using the minibuffer.\n\
554 Prompt with PROMPT. If non-nil, optional second arg INITIAL-CONTENTS\n\
555 is a string to insert in the minibuffer before reading.")
556 (prompt, initial_contents)
557 Lisp_Object prompt, initial_contents;
559 return Feval (Fread_minibuffer (prompt, initial_contents));
562 /* Functions that use the minibuffer to read various things. */
564 DEFUN ("read-string", Fread_string, Sread_string, 1, 3, 0,
565 "Read a string from the minibuffer, prompting with string PROMPT.\n\
566 If non-nil, second arg INITIAL-INPUT is a string to insert before reading.\n\
567 The third arg HISTORY, if non-nil, specifies a history list\n\
568 and optionally the initial position in the list.\n\
569 See `read-from-minibuffer' for details of HISTORY argument.")
570 (prompt, initial_input, history)
571 Lisp_Object prompt, initial_input, history;
573 return Fread_from_minibuffer (prompt, initial_input, Qnil, Qnil, history);
576 DEFUN ("read-no-blanks-input", Fread_no_blanks_input, Sread_no_blanks_input, 1, 2, 0,
577 "Args PROMPT and INIT, strings. Read a string from the terminal, not allowing blanks.\n\
578 Prompt with PROMPT, and provide INIT as an initial value of the input string.")
579 (prompt, init)
580 Lisp_Object prompt, init;
582 CHECK_STRING (prompt, 0);
583 if (! NILP (init))
584 CHECK_STRING (init, 1);
586 return read_minibuf (Vminibuffer_local_ns_map, init, prompt, Qnil, 0,
587 Qminibuffer_history, make_number (0));
590 DEFUN ("read-command", Fread_command, Sread_command, 1, 1, 0,
591 "One arg PROMPT, a string. Read the name of a command and return as a symbol.\n\
592 Prompts with PROMPT.")
593 (prompt)
594 Lisp_Object prompt;
596 return Fintern (Fcompleting_read (prompt, Vobarray, Qcommandp, Qt, Qnil, Qnil),
597 Qnil);
600 #ifdef NOTDEF
601 DEFUN ("read-function", Fread_function, Sread_function, 1, 1, 0,
602 "One arg PROMPT, a string. Read the name of a function and return as a symbol.\n\
603 Prompts with PROMPT.")
604 (prompt)
605 Lisp_Object prompt;
607 return Fintern (Fcompleting_read (prompt, Vobarray, Qfboundp, Qt, Qnil, Qnil),
608 Qnil);
610 #endif /* NOTDEF */
612 DEFUN ("read-variable", Fread_variable, Sread_variable, 1, 1, 0,
613 "One arg PROMPT, a string. Read the name of a user variable and return\n\
614 it as a symbol. Prompts with PROMPT.\n\
615 A user variable is one whose documentation starts with a `*' character.")
616 (prompt)
617 Lisp_Object prompt;
619 return Fintern (Fcompleting_read (prompt, Vobarray,
620 Quser_variable_p, Qt, Qnil, Qnil),
621 Qnil);
624 DEFUN ("read-buffer", Fread_buffer, Sread_buffer, 1, 3, 0,
625 "One arg PROMPT, a string. Read the name of a buffer and return as a string.\n\
626 Prompts with PROMPT.\n\
627 Optional second arg is value to return if user enters an empty line.\n\
628 If optional third arg REQUIRE-MATCH is non-nil, only existing buffer names are allowed.")
629 (prompt, def, require_match)
630 Lisp_Object prompt, def, require_match;
632 Lisp_Object tem;
633 Lisp_Object args[3];
634 struct gcpro gcpro1;
636 if (BUFFERP (def))
637 def = XBUFFER (def)->name;
638 if (!NILP (def))
640 args[0] = build_string ("%s(default %s) ");
641 args[1] = prompt;
642 args[2] = def;
643 prompt = Fformat (3, args);
645 GCPRO1 (def);
646 tem = Fcompleting_read (prompt, Vbuffer_alist, Qnil, require_match, Qnil, Qnil);
647 UNGCPRO;
648 if (XSTRING (tem)->size)
649 return tem;
650 return def;
653 DEFUN ("try-completion", Ftry_completion, Stry_completion, 2, 3, 0,
654 "Return common substring of all completions of STRING in ALIST.\n\
655 Each car of each element of ALIST is tested to see if it begins with STRING.\n\
656 All that match are compared together; the longest initial sequence\n\
657 common to all matches is returned as a string.\n\
658 If there is no match at all, nil is returned.\n\
659 For an exact match, t is returned.\n\
661 ALIST can be an obarray instead of an alist.\n\
662 Then the print names of all symbols in the obarray are the possible matches.\n\
664 ALIST can also be a function to do the completion itself.\n\
665 It receives three arguments: the values STRING, PREDICATE and nil.\n\
666 Whatever it returns becomes the value of `try-completion'.\n\
668 If optional third argument PREDICATE is non-nil,\n\
669 it is used to test each possible match.\n\
670 The match is a candidate only if PREDICATE returns non-nil.\n\
671 The argument given to PREDICATE is the alist element\n\
672 or the symbol from the obarray.")
673 (string, alist, predicate)
674 Lisp_Object string, alist, predicate;
676 Lisp_Object bestmatch, tail, elt, eltstring;
677 int bestmatchsize;
678 int compare, matchsize;
679 int list = CONSP (alist) || NILP (alist);
680 int index, obsize;
681 int matchcount = 0;
682 Lisp_Object bucket, zero, end, tem;
683 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
685 CHECK_STRING (string, 0);
686 if (!list && !VECTORP (alist))
687 return call3 (alist, string, predicate, Qnil);
689 bestmatch = Qnil;
691 /* If ALIST is not a list, set TAIL just for gc pro. */
692 tail = alist;
693 if (! list)
695 index = 0;
696 obsize = XVECTOR (alist)->size;
697 bucket = XVECTOR (alist)->contents[index];
700 while (1)
702 /* Get the next element of the alist or obarray. */
703 /* Exit the loop if the elements are all used up. */
704 /* elt gets the alist element or symbol.
705 eltstring gets the name to check as a completion. */
707 if (list)
709 if (NILP (tail))
710 break;
711 elt = Fcar (tail);
712 eltstring = Fcar (elt);
713 tail = Fcdr (tail);
715 else
717 if (XFASTINT (bucket) != 0)
719 elt = bucket;
720 eltstring = Fsymbol_name (elt);
721 if (XSYMBOL (bucket)->next)
722 XSETSYMBOL (bucket, XSYMBOL (bucket)->next);
723 else
724 XSETFASTINT (bucket, 0);
726 else if (++index >= obsize)
727 break;
728 else
730 bucket = XVECTOR (alist)->contents[index];
731 continue;
735 /* Is this element a possible completion? */
737 if (STRINGP (eltstring)
738 && XSTRING (string)->size <= XSTRING (eltstring)->size
739 && 0 > scmp (XSTRING (eltstring)->data, XSTRING (string)->data,
740 XSTRING (string)->size))
742 /* Yes. */
743 Lisp_Object regexps;
744 Lisp_Object zero;
745 XSETFASTINT (zero, 0);
747 /* Ignore this element if it fails to match all the regexps. */
748 for (regexps = Vcompletion_regexp_list; CONSP (regexps);
749 regexps = XCONS (regexps)->cdr)
751 tem = Fstring_match (XCONS (regexps)->car, eltstring, zero);
752 if (NILP (tem))
753 break;
755 if (CONSP (regexps))
756 continue;
758 /* Ignore this element if there is a predicate
759 and the predicate doesn't like it. */
761 if (!NILP (predicate))
763 if (EQ (predicate, Qcommandp))
764 tem = Fcommandp (elt);
765 else
767 GCPRO4 (tail, string, eltstring, bestmatch);
768 tem = call1 (predicate, elt);
769 UNGCPRO;
771 if (NILP (tem)) continue;
774 /* Update computation of how much all possible completions match */
776 matchcount++;
777 if (NILP (bestmatch))
778 bestmatch = eltstring, bestmatchsize = XSTRING (eltstring)->size;
779 else
781 compare = min (bestmatchsize, XSTRING (eltstring)->size);
782 matchsize = scmp (XSTRING (bestmatch)->data,
783 XSTRING (eltstring)->data,
784 compare);
785 if (matchsize < 0)
786 matchsize = compare;
787 if (completion_ignore_case)
789 /* If this is an exact match except for case,
790 use it as the best match rather than one that is not an
791 exact match. This way, we get the case pattern
792 of the actual match. */
793 if ((matchsize == XSTRING (eltstring)->size
794 && matchsize < XSTRING (bestmatch)->size)
796 /* If there is more than one exact match ignoring case,
797 and one of them is exact including case,
798 prefer that one. */
799 /* If there is no exact match ignoring case,
800 prefer a match that does not change the case
801 of the input. */
802 ((matchsize == XSTRING (eltstring)->size)
804 (matchsize == XSTRING (bestmatch)->size)
805 && !bcmp (XSTRING (eltstring)->data,
806 XSTRING (string)->data, XSTRING (string)->size)
807 && bcmp (XSTRING (bestmatch)->data,
808 XSTRING (string)->data, XSTRING (string)->size)))
809 bestmatch = eltstring;
811 bestmatchsize = matchsize;
816 if (NILP (bestmatch))
817 return Qnil; /* No completions found */
818 /* If we are ignoring case, and there is no exact match,
819 and no additional text was supplied,
820 don't change the case of what the user typed. */
821 if (completion_ignore_case && bestmatchsize == XSTRING (string)->size
822 && XSTRING (bestmatch)->size > bestmatchsize)
823 return string;
825 /* Return t if the supplied string is an exact match (counting case);
826 it does not require any change to be made. */
827 if (matchcount == 1 && bestmatchsize == XSTRING (string)->size
828 && !bcmp (XSTRING (bestmatch)->data, XSTRING (string)->data,
829 bestmatchsize))
830 return Qt;
832 XSETFASTINT (zero, 0); /* Else extract the part in which */
833 XSETFASTINT (end, bestmatchsize); /* all completions agree */
834 return Fsubstring (bestmatch, zero, end);
837 /* Compare exactly LEN chars of strings at S1 and S2,
838 ignoring case if appropriate.
839 Return -1 if strings match,
840 else number of chars that match at the beginning. */
843 scmp (s1, s2, len)
844 register unsigned char *s1, *s2;
845 int len;
847 register int l = len;
849 if (completion_ignore_case)
851 while (l && DOWNCASE (*s1++) == DOWNCASE (*s2++))
852 l--;
854 else
856 while (l && *s1++ == *s2++)
857 l--;
859 if (l == 0)
860 return -1;
861 else
862 return len - l;
865 DEFUN ("all-completions", Fall_completions, Sall_completions, 2, 4, 0,
866 "Search for partial matches to STRING in ALIST.\n\
867 Each car of each element of ALIST is tested to see if it begins with STRING.\n\
868 The value is a list of all the strings from ALIST that match.\n\
870 ALIST can be an obarray instead of an alist.\n\
871 Then the print names of all symbols in the obarray are the possible matches.\n\
873 ALIST can also be a function to do the completion itself.\n\
874 It receives three arguments: the values STRING, PREDICATE and t.\n\
875 Whatever it returns becomes the value of `all-completion'.\n\
877 If optional third argument PREDICATE is non-nil,\n\
878 it is used to test each possible match.\n\
879 The match is a candidate only if PREDICATE returns non-nil.\n\
880 The argument given to PREDICATE is the alist element\n\
881 or the symbol from the obarray.\n\
883 If the optional fourth argument HIDE-SPACES is non-nil,\n\
884 strings in ALIST that start with a space\n\
885 are ignored unless STRING itself starts with a space.")
886 (string, alist, predicate, hide_spaces)
887 Lisp_Object string, alist, predicate, hide_spaces;
889 Lisp_Object tail, elt, eltstring;
890 Lisp_Object allmatches;
891 int list = CONSP (alist) || NILP (alist);
892 int index, obsize;
893 Lisp_Object bucket, tem;
894 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
896 CHECK_STRING (string, 0);
897 if (!list && !VECTORP (alist))
899 return call3 (alist, string, predicate, Qt);
901 allmatches = Qnil;
903 /* If ALIST is not a list, set TAIL just for gc pro. */
904 tail = alist;
905 if (! list)
907 index = 0;
908 obsize = XVECTOR (alist)->size;
909 bucket = XVECTOR (alist)->contents[index];
912 while (1)
914 /* Get the next element of the alist or obarray. */
915 /* Exit the loop if the elements are all used up. */
916 /* elt gets the alist element or symbol.
917 eltstring gets the name to check as a completion. */
919 if (list)
921 if (NILP (tail))
922 break;
923 elt = Fcar (tail);
924 eltstring = Fcar (elt);
925 tail = Fcdr (tail);
927 else
929 if (XFASTINT (bucket) != 0)
931 elt = bucket;
932 eltstring = Fsymbol_name (elt);
933 if (XSYMBOL (bucket)->next)
934 XSETSYMBOL (bucket, XSYMBOL (bucket)->next);
935 else
936 XSETFASTINT (bucket, 0);
938 else if (++index >= obsize)
939 break;
940 else
942 bucket = XVECTOR (alist)->contents[index];
943 continue;
947 /* Is this element a possible completion? */
949 if (STRINGP (eltstring)
950 && XSTRING (string)->size <= XSTRING (eltstring)->size
951 /* If HIDE_SPACES, reject alternatives that start with space
952 unless the input starts with space. */
953 && ((XSTRING (string)->size > 0 && XSTRING (string)->data[0] == ' ')
954 || XSTRING (eltstring)->data[0] != ' '
955 || NILP (hide_spaces))
956 && 0 > scmp (XSTRING (eltstring)->data, XSTRING (string)->data,
957 XSTRING (string)->size))
959 /* Yes. */
960 Lisp_Object regexps;
961 Lisp_Object zero;
962 XSETFASTINT (zero, 0);
964 /* Ignore this element if it fails to match all the regexps. */
965 for (regexps = Vcompletion_regexp_list; CONSP (regexps);
966 regexps = XCONS (regexps)->cdr)
968 tem = Fstring_match (XCONS (regexps)->car, eltstring, zero);
969 if (NILP (tem))
970 break;
972 if (CONSP (regexps))
973 continue;
975 /* Ignore this element if there is a predicate
976 and the predicate doesn't like it. */
978 if (!NILP (predicate))
980 if (EQ (predicate, Qcommandp))
981 tem = Fcommandp (elt);
982 else
984 GCPRO4 (tail, eltstring, allmatches, string);
985 tem = call1 (predicate, elt);
986 UNGCPRO;
988 if (NILP (tem)) continue;
990 /* Ok => put it on the list. */
991 allmatches = Fcons (eltstring, allmatches);
995 return Fnreverse (allmatches);
998 Lisp_Object Vminibuffer_completion_table, Qminibuffer_completion_table;
999 Lisp_Object Vminibuffer_completion_predicate, Qminibuffer_completion_predicate;
1000 Lisp_Object Vminibuffer_completion_confirm, Qminibuffer_completion_confirm;
1002 /* This comment supplies the doc string for completing-read,
1003 for make-docfile to see. We cannot put this in the real DEFUN
1004 due to limits in the Unix cpp.
1006 DEFUN ("completing-read", Fcompleting_read, Scompleting_read, 2, 6, 0,
1007 "Read a string in the minibuffer, with completion.\n\
1008 PROMPT is a string to prompt with; normally it ends in a colon and a space.\n\
1009 TABLE is an alist whose elements' cars are strings, or an obarray.\n\
1010 PREDICATE limits completion to a subset of TABLE.\n\
1011 See `try-completion' and `all-completions' for more details
1012 on completion, TABLE, and PREDICATE.\n\
1014 If REQUIRE-MATCH is non-nil, the user is not allowed to exit unless\n\
1015 the input is (or completes to) an element of TABLE or is null.\n\
1016 If it is also not t, Return does not exit if it does non-null completion.\n\
1017 If the input is null, `completing-read' returns nil,\n\
1018 regardless of the value of REQUIRE-MATCH.\n\
1020 If INITIAL-INPUT is non-nil, insert it in the minibuffer initially.\n\
1021 If it is (STRING . POSITION), the initial input\n\
1022 is STRING, but point is placed POSITION characters into the string.\n\
1023 HIST, if non-nil, specifies a history list\n\
1024 and optionally the initial position in the list.\n\
1025 It can be a symbol, which is the history list variable to use,\n\
1026 or it can be a cons cell (HISTVAR . HISTPOS).\n\
1027 In that case, HISTVAR is the history list variable to use,\n\
1028 and HISTPOS is the initial position (the position in the list\n\
1029 which INITIAL-CONTENTS corresponds to).\n\
1030 Positions are counted starting from 1 at the beginning of the list.\n\
1031 Completion ignores case if the ambient value of\n\
1032 `completion-ignore-case' is non-nil."
1034 DEFUN ("completing-read", Fcompleting_read, Scompleting_read, 2, 6, 0,
1035 0 /* See immediately above */)
1036 (prompt, table, predicate, require_match, init, hist)
1037 Lisp_Object prompt, table, predicate, require_match, init, hist;
1039 Lisp_Object val, histvar, histpos, position;
1040 int pos = 0;
1041 int count = specpdl_ptr - specpdl;
1042 specbind (Qminibuffer_completion_table, table);
1043 specbind (Qminibuffer_completion_predicate, predicate);
1044 specbind (Qminibuffer_completion_confirm,
1045 EQ (require_match, Qt) ? Qnil : Qt);
1046 last_exact_completion = Qnil;
1048 position = Qnil;
1049 if (!NILP (init))
1051 if (CONSP (init))
1053 position = Fcdr (init);
1054 init = Fcar (init);
1056 CHECK_STRING (init, 0);
1057 if (!NILP (position))
1059 CHECK_NUMBER (position, 0);
1060 /* Convert to distance from end of input. */
1061 pos = XINT (position) - XSTRING (init)->size;
1065 if (SYMBOLP (hist))
1067 histvar = hist;
1068 histpos = Qnil;
1070 else
1072 histvar = Fcar_safe (hist);
1073 histpos = Fcdr_safe (hist);
1075 if (NILP (histvar))
1076 histvar = Qminibuffer_history;
1077 if (NILP (histpos))
1078 XSETFASTINT (histpos, 0);
1080 val = read_minibuf (NILP (require_match)
1081 ? Vminibuffer_local_completion_map
1082 : Vminibuffer_local_must_match_map,
1083 init, prompt, make_number (pos), 0,
1084 histvar, histpos);
1085 return unbind_to (count, val);
1088 /* Temporarily display the string M at the end of the current
1089 minibuffer contents. This is used to display things like
1090 "[No Match]" when the user requests a completion for a prefix
1091 that has no possible completions, and other quick, unobtrusive
1092 messages. */
1094 temp_echo_area_glyphs (m)
1095 char *m;
1097 int osize = ZV;
1098 int opoint = PT;
1099 Lisp_Object oinhibit;
1100 oinhibit = Vinhibit_quit;
1102 /* Clear out any old echo-area message to make way for our new thing. */
1103 message (0);
1105 SET_PT (osize);
1106 insert_string (m);
1107 SET_PT (opoint);
1108 Vinhibit_quit = Qt;
1109 Fsit_for (make_number (2), Qnil, Qnil);
1110 del_range (osize, ZV);
1111 SET_PT (opoint);
1112 if (!NILP (Vquit_flag))
1114 Vquit_flag = Qnil;
1115 Vunread_command_events = Fcons (make_number (quit_char), Qnil);
1117 Vinhibit_quit = oinhibit;
1120 Lisp_Object Fminibuffer_completion_help ();
1121 Lisp_Object assoc_for_completion ();
1122 /* A subroutine of Fintern_soft. */
1123 extern Lisp_Object oblookup ();
1126 /* Test whether TXT is an exact completion. */
1127 Lisp_Object
1128 test_completion (txt)
1129 Lisp_Object txt;
1131 Lisp_Object tem;
1133 if (CONSP (Vminibuffer_completion_table)
1134 || NILP (Vminibuffer_completion_table))
1135 return assoc_for_completion (txt, Vminibuffer_completion_table);
1136 else if (VECTORP (Vminibuffer_completion_table))
1138 /* Bypass intern-soft as that loses for nil */
1139 tem = oblookup (Vminibuffer_completion_table,
1140 XSTRING (txt)->data, XSTRING (txt)->size);
1141 if (!SYMBOLP (tem))
1142 return Qnil;
1143 else if (!NILP (Vminibuffer_completion_predicate))
1144 return call1 (Vminibuffer_completion_predicate, tem);
1145 else
1146 return Qt;
1148 else
1149 return call3 (Vminibuffer_completion_table, txt,
1150 Vminibuffer_completion_predicate, Qlambda);
1153 /* returns:
1154 * 0 no possible completion
1155 * 1 was already an exact and unique completion
1156 * 3 was already an exact completion
1157 * 4 completed to an exact completion
1158 * 5 some completion happened
1159 * 6 no completion happened
1162 do_completion ()
1164 Lisp_Object completion, tem;
1165 int completedp;
1166 Lisp_Object last;
1167 struct gcpro gcpro1, gcpro2;
1169 completion = Ftry_completion (Fbuffer_string (), Vminibuffer_completion_table,
1170 Vminibuffer_completion_predicate);
1171 last = last_exact_completion;
1172 last_exact_completion = Qnil;
1174 GCPRO2 (completion, last);
1176 if (NILP (completion))
1178 bitch_at_user ();
1179 temp_echo_area_glyphs (" [No match]");
1180 UNGCPRO;
1181 return 0;
1184 if (EQ (completion, Qt)) /* exact and unique match */
1186 UNGCPRO;
1187 return 1;
1190 /* compiler bug */
1191 tem = Fstring_equal (completion, Fbuffer_string());
1192 if (completedp = NILP (tem))
1194 Ferase_buffer (); /* Some completion happened */
1195 Finsert (1, &completion);
1198 /* It did find a match. Do we match some possibility exactly now? */
1199 tem = test_completion (Fbuffer_string ());
1200 if (NILP (tem))
1202 /* not an exact match */
1203 UNGCPRO;
1204 if (completedp)
1205 return 5;
1206 else if (auto_help)
1207 Fminibuffer_completion_help ();
1208 else
1209 temp_echo_area_glyphs (" [Next char not unique]");
1210 return 6;
1212 else if (completedp)
1214 UNGCPRO;
1215 return 4;
1217 /* If the last exact completion and this one were the same,
1218 it means we've already given a "Complete but not unique"
1219 message and the user's hit TAB again, so now we give him help. */
1220 last_exact_completion = completion;
1221 if (!NILP (last))
1223 tem = Fbuffer_string ();
1224 if (!NILP (Fequal (tem, last)))
1225 Fminibuffer_completion_help ();
1227 UNGCPRO;
1228 return 3;
1231 /* Like assoc but assumes KEY is a string, and ignores case if appropriate. */
1233 Lisp_Object
1234 assoc_for_completion (key, list)
1235 register Lisp_Object key;
1236 Lisp_Object list;
1238 register Lisp_Object tail;
1240 if (completion_ignore_case)
1241 key = Fupcase (key);
1243 for (tail = list; !NILP (tail); tail = Fcdr (tail))
1245 register Lisp_Object elt, tem, thiscar;
1246 elt = Fcar (tail);
1247 if (!CONSP (elt)) continue;
1248 thiscar = Fcar (elt);
1249 if (!STRINGP (thiscar))
1250 continue;
1251 if (completion_ignore_case)
1252 thiscar = Fupcase (thiscar);
1253 tem = Fequal (thiscar, key);
1254 if (!NILP (tem)) return elt;
1255 QUIT;
1257 return Qnil;
1260 DEFUN ("minibuffer-complete", Fminibuffer_complete, Sminibuffer_complete, 0, 0, "",
1261 "Complete the minibuffer contents as far as possible.\n\
1262 Return nil if there is no valid completion, else t.\n\
1263 If no characters can be completed, display a list of possible completions.\n\
1264 If you repeat this command after it displayed such a list,\n\
1265 scroll the window of possible completions.")
1268 register int i;
1269 Lisp_Object window, tem;
1271 /* If the previous command was not this, then mark the completion
1272 buffer obsolete. */
1273 if (! EQ (current_kboard->Vlast_command, this_command))
1274 Vminibuf_scroll_window = Qnil;
1276 window = Vminibuf_scroll_window;
1277 /* If there's a fresh completion window with a live buffer,
1278 and this command is repeated, scroll that window. */
1279 if (! NILP (window) && ! NILP (XWINDOW (window)->buffer)
1280 && !NILP (XBUFFER (XWINDOW (window)->buffer)->name))
1282 struct buffer *obuf = current_buffer;
1284 Fset_buffer (XWINDOW (window)->buffer);
1285 tem = Fpos_visible_in_window_p (make_number (ZV), window);
1286 if (! NILP (tem))
1287 /* If end is in view, scroll up to the beginning. */
1288 Fset_window_start (window, BEGV, Qnil);
1289 else
1290 /* Else scroll down one screen. */
1291 Fscroll_other_window (Qnil);
1293 set_buffer_internal (obuf);
1294 return Qnil;
1297 i = do_completion ();
1298 switch (i)
1300 case 0:
1301 return Qnil;
1303 case 1:
1304 temp_echo_area_glyphs (" [Sole completion]");
1305 break;
1307 case 3:
1308 temp_echo_area_glyphs (" [Complete, but not unique]");
1309 break;
1312 return Qt;
1315 /* Subroutines of Fminibuffer_complete_and_exit. */
1317 /* This one is called by internal_condition_case to do the real work. */
1319 Lisp_Object
1320 complete_and_exit_1 ()
1322 return make_number (do_completion ());
1325 /* This one is called by internal_condition_case if an error happens.
1326 Pretend the current value is an exact match. */
1328 Lisp_Object
1329 complete_and_exit_2 (ignore)
1330 Lisp_Object ignore;
1332 return make_number (1);
1335 DEFUN ("minibuffer-complete-and-exit", Fminibuffer_complete_and_exit,
1336 Sminibuffer_complete_and_exit, 0, 0, "",
1337 "If the minibuffer contents is a valid completion then exit.\n\
1338 Otherwise try to complete it. If completion leads to a valid completion,\n\
1339 a repetition of this command will exit.")
1342 register int i;
1343 Lisp_Object val;
1345 /* Allow user to specify null string */
1346 if (BEGV == ZV)
1347 goto exit;
1349 if (!NILP (test_completion (Fbuffer_string ())))
1350 goto exit;
1352 /* Call do_completion, but ignore errors. */
1353 val = internal_condition_case (complete_and_exit_1, Qerror,
1354 complete_and_exit_2);
1356 i = XFASTINT (val);
1357 switch (i)
1359 case 1:
1360 case 3:
1361 goto exit;
1363 case 4:
1364 if (!NILP (Vminibuffer_completion_confirm))
1366 temp_echo_area_glyphs (" [Confirm]");
1367 return Qnil;
1369 else
1370 goto exit;
1372 default:
1373 return Qnil;
1375 exit:
1376 Fthrow (Qexit, Qnil);
1377 /* NOTREACHED */
1380 DEFUN ("minibuffer-complete-word", Fminibuffer_complete_word, Sminibuffer_complete_word,
1381 0, 0, "",
1382 "Complete the minibuffer contents at most a single word.\n\
1383 After one word is completed as much as possible, a space or hyphen\n\
1384 is added, provided that matches some possible completion.\n\
1385 Return nil if there is no valid completion, else t.")
1388 Lisp_Object completion, tem;
1389 register int i;
1390 register unsigned char *completion_string;
1391 struct gcpro gcpro1, gcpro2;
1393 /* We keep calling Fbuffer_string rather than arrange for GC to
1394 hold onto a pointer to one of the strings thus made. */
1396 completion = Ftry_completion (Fbuffer_string (),
1397 Vminibuffer_completion_table,
1398 Vminibuffer_completion_predicate);
1399 if (NILP (completion))
1401 bitch_at_user ();
1402 temp_echo_area_glyphs (" [No match]");
1403 return Qnil;
1405 if (EQ (completion, Qt))
1406 return Qnil;
1408 #if 0 /* How the below code used to look, for reference. */
1409 tem = Fbuffer_string ();
1410 b = XSTRING (tem)->data;
1411 i = ZV - 1 - XSTRING (completion)->size;
1412 p = XSTRING (completion)->data;
1413 if (i > 0 ||
1414 0 <= scmp (b, p, ZV - 1))
1416 i = 1;
1417 /* Set buffer to longest match of buffer tail and completion head. */
1418 while (0 <= scmp (b + i, p, ZV - 1 - i))
1419 i++;
1420 del_range (1, i + 1);
1421 SET_PT (ZV);
1423 #else /* Rewritten code */
1425 register unsigned char *buffer_string;
1426 int buffer_length, completion_length;
1428 tem = Fbuffer_string ();
1429 GCPRO2 (completion, tem);
1430 /* If reading a file name,
1431 expand any $ENVVAR refs in the buffer and in TEM. */
1432 if (EQ (Vminibuffer_completion_table, Qread_file_name_internal))
1434 Lisp_Object substituted;
1435 substituted = Fsubstitute_in_file_name (tem);
1436 if (! EQ (substituted, tem))
1438 tem = substituted;
1439 Ferase_buffer ();
1440 insert_from_string (tem, 0, XSTRING (tem)->size, 0);
1443 buffer_string = XSTRING (tem)->data;
1444 completion_string = XSTRING (completion)->data;
1445 buffer_length = XSTRING (tem)->size; /* ie ZV - BEGV */
1446 completion_length = XSTRING (completion)->size;
1447 i = buffer_length - completion_length;
1448 /* Mly: I don't understand what this is supposed to do AT ALL */
1449 if (i > 0 ||
1450 0 <= scmp (buffer_string, completion_string, buffer_length))
1452 /* Set buffer to longest match of buffer tail and completion head. */
1453 if (i <= 0) i = 1;
1454 buffer_string += i;
1455 buffer_length -= i;
1456 while (0 <= scmp (buffer_string++, completion_string, buffer_length--))
1457 i++;
1458 del_range (1, i + 1);
1459 SET_PT (ZV);
1461 UNGCPRO;
1463 #endif /* Rewritten code */
1464 i = ZV - BEGV;
1466 /* If completion finds next char not unique,
1467 consider adding a space or a hyphen. */
1468 if (i == XSTRING (completion)->size)
1470 GCPRO1 (completion);
1471 tem = Ftry_completion (concat2 (Fbuffer_string (), build_string (" ")),
1472 Vminibuffer_completion_table,
1473 Vminibuffer_completion_predicate);
1474 UNGCPRO;
1476 if (STRINGP (tem))
1477 completion = tem;
1478 else
1480 GCPRO1 (completion);
1481 tem =
1482 Ftry_completion (concat2 (Fbuffer_string (), build_string ("-")),
1483 Vminibuffer_completion_table,
1484 Vminibuffer_completion_predicate);
1485 UNGCPRO;
1487 if (STRINGP (tem))
1488 completion = tem;
1492 /* Now find first word-break in the stuff found by completion.
1493 i gets index in string of where to stop completing. */
1495 completion_string = XSTRING (completion)->data;
1497 for (; i < XSTRING (completion)->size; i++)
1498 if (SYNTAX (completion_string[i]) != Sword) break;
1499 if (i < XSTRING (completion)->size)
1500 i = i + 1;
1502 /* If got no characters, print help for user. */
1504 if (i == ZV - BEGV)
1506 if (auto_help)
1507 Fminibuffer_completion_help ();
1508 return Qnil;
1511 /* Otherwise insert in minibuffer the chars we got */
1513 Ferase_buffer ();
1514 insert_from_string (completion, 0, i, 1);
1515 return Qt;
1518 DEFUN ("display-completion-list", Fdisplay_completion_list, Sdisplay_completion_list,
1519 1, 1, 0,
1520 "Display the list of completions, COMPLETIONS, using `standard-output'.\n\
1521 Each element may be just a symbol or string\n\
1522 or may be a list of two strings to be printed as if concatenated.\n\
1523 `standard-output' must be a buffer.\n\
1524 At the end, run the normal hook `completion-setup-hook'.\n\
1525 It can find the completion buffer in `standard-output'.")
1526 (completions)
1527 Lisp_Object completions;
1529 Lisp_Object tail, elt;
1530 register int i;
1531 int column = 0;
1532 struct gcpro gcpro1, gcpro2;
1533 struct buffer *old = current_buffer;
1534 int first = 1;
1536 /* Note that (when it matters) every variable
1537 points to a non-string that is pointed to by COMPLETIONS,
1538 except for ELT. ELT can be pointing to a string
1539 when terpri or Findent_to calls a change hook. */
1540 elt = Qnil;
1541 GCPRO2 (completions, elt);
1543 if (BUFFERP (Vstandard_output))
1544 set_buffer_internal (XBUFFER (Vstandard_output));
1546 if (NILP (completions))
1547 write_string ("There are no possible completions of what you have typed.",
1548 -1);
1549 else
1551 write_string ("Possible completions are:", -1);
1552 for (tail = completions, i = 0; !NILP (tail); tail = Fcdr (tail), i++)
1554 Lisp_Object tem;
1555 int length;
1556 Lisp_Object startpos, endpos;
1558 elt = Fcar (tail);
1559 /* Compute the length of this element. */
1560 if (CONSP (elt))
1562 tem = Fcar (elt);
1563 CHECK_STRING (tem, 0);
1564 length = XINT (XSTRING (tem)->size);
1566 tem = Fcar (Fcdr (elt));
1567 CHECK_STRING (tem, 0);
1568 length += XINT (XSTRING (tem)->size);
1570 else
1572 CHECK_STRING (elt, 0);
1573 length = XINT (XSTRING (elt)->size);
1576 /* This does a bad job for narrower than usual windows.
1577 Sadly, the window it will appear in is not known
1578 until after the text has been made. */
1580 if (BUFFERP (Vstandard_output))
1581 XSETINT (startpos, BUF_PT (XBUFFER (Vstandard_output)));
1583 /* If the previous completion was very wide,
1584 or we have two on this line already,
1585 don't put another on the same line. */
1586 if (column > 33 || first
1587 /* If this is really wide, don't put it second on a line. */
1588 || column > 0 && length > 45)
1590 Fterpri (Qnil);
1591 column = 0;
1593 /* Otherwise advance to column 35. */
1594 else
1596 if (BUFFERP (Vstandard_output))
1598 tem = Findent_to (make_number (35), make_number (2));
1600 column = XINT (tem);
1602 else
1606 write_string (" ", -1);
1607 column++;
1609 while (column < 35);
1613 if (BUFFERP (Vstandard_output))
1615 XSETINT (endpos, BUF_PT (XBUFFER (Vstandard_output)));
1616 Fset_text_properties (startpos, endpos,
1617 Qnil, Vstandard_output);
1620 /* Output this element and update COLUMN. */
1621 if (CONSP (elt))
1623 Fprinc (Fcar (elt), Qnil);
1624 Fprinc (Fcar (Fcdr (elt)), Qnil);
1626 else
1627 Fprinc (elt, Qnil);
1629 column += length;
1631 /* If output is to a buffer, recompute COLUMN in a way
1632 that takes account of character widths. */
1633 if (BUFFERP (Vstandard_output))
1635 tem = Fcurrent_column ();
1636 column = XINT (tem);
1639 first = 0;
1643 UNGCPRO;
1645 if (BUFFERP (Vstandard_output))
1646 set_buffer_internal (old);
1648 if (!NILP (Vrun_hooks))
1649 call1 (Vrun_hooks, intern ("completion-setup-hook"));
1651 return Qnil;
1654 DEFUN ("minibuffer-completion-help", Fminibuffer_completion_help, Sminibuffer_completion_help,
1655 0, 0, "",
1656 "Display a list of possible completions of the current minibuffer contents.")
1659 Lisp_Object completions;
1661 message ("Making completion list...");
1662 completions = Fall_completions (Fbuffer_string (),
1663 Vminibuffer_completion_table,
1664 Vminibuffer_completion_predicate,
1665 Qt);
1666 echo_area_glyphs = 0;
1668 if (NILP (completions))
1670 bitch_at_user ();
1671 temp_echo_area_glyphs (" [No completions]");
1673 else
1674 internal_with_output_to_temp_buffer ("*Completions*",
1675 Fdisplay_completion_list,
1676 Fsort (completions, Qstring_lessp));
1677 return Qnil;
1680 DEFUN ("self-insert-and-exit", Fself_insert_and_exit, Sself_insert_and_exit, 0, 0, "",
1681 "Terminate minibuffer input.")
1684 if (INTEGERP (last_command_char))
1685 internal_self_insert (last_command_char, 0);
1686 else
1687 bitch_at_user ();
1689 Fthrow (Qexit, Qnil);
1692 DEFUN ("exit-minibuffer", Fexit_minibuffer, Sexit_minibuffer, 0, 0, "",
1693 "Terminate this minibuffer argument.")
1696 Fthrow (Qexit, Qnil);
1699 DEFUN ("minibuffer-depth", Fminibuffer_depth, Sminibuffer_depth, 0, 0, 0,
1700 "Return current depth of activations of minibuffer, a nonnegative integer.")
1703 return make_number (minibuf_level);
1706 DEFUN ("minibuffer-prompt", Fminibuffer_prompt, Sminibuffer_prompt, 0, 0, 0,
1707 "Return the prompt string of the currently-active minibuffer.\n\
1708 If no minibuffer is active, return nil.")
1711 return Fcopy_sequence (minibuf_prompt);
1714 DEFUN ("minibuffer-prompt-width", Fminibuffer_prompt_width,
1715 Sminibuffer_prompt_width, 0, 0, 0,
1716 "Return the display width of the minibuffer prompt.")
1719 Lisp_Object width;
1720 XSETFASTINT (width, minibuf_prompt_width);
1721 return width;
1724 init_minibuf_once ()
1726 Vminibuffer_list = Qnil;
1727 staticpro (&Vminibuffer_list);
1730 syms_of_minibuf ()
1732 minibuf_level = 0;
1733 minibuf_prompt = Qnil;
1734 staticpro (&minibuf_prompt);
1736 minibuf_save_list = Qnil;
1737 staticpro (&minibuf_save_list);
1739 Qread_file_name_internal = intern ("read-file-name-internal");
1740 staticpro (&Qread_file_name_internal);
1742 Qminibuffer_completion_table = intern ("minibuffer-completion-table");
1743 staticpro (&Qminibuffer_completion_table);
1745 Qminibuffer_completion_confirm = intern ("minibuffer-completion-confirm");
1746 staticpro (&Qminibuffer_completion_confirm);
1748 Qminibuffer_completion_predicate = intern ("minibuffer-completion-predicate");
1749 staticpro (&Qminibuffer_completion_predicate);
1751 staticpro (&last_exact_completion);
1752 last_exact_completion = Qnil;
1754 staticpro (&last_minibuf_string);
1755 last_minibuf_string = Qnil;
1757 Quser_variable_p = intern ("user-variable-p");
1758 staticpro (&Quser_variable_p);
1760 Qminibuffer_history = intern ("minibuffer-history");
1761 staticpro (&Qminibuffer_history);
1763 Qminibuffer_setup_hook = intern ("minibuffer-setup-hook");
1764 staticpro (&Qminibuffer_setup_hook);
1766 Qminibuffer_exit_hook = intern ("minibuffer-exit-hook");
1767 staticpro (&Qminibuffer_exit_hook);
1769 DEFVAR_LISP ("minibuffer-setup-hook", &Vminibuffer_setup_hook,
1770 "Normal hook run just after entry to minibuffer.");
1771 Vminibuffer_setup_hook = Qnil;
1773 DEFVAR_LISP ("minibuffer-exit-hook", &Vminibuffer_exit_hook,
1774 "Normal hook run just after exit from minibuffer.");
1775 Vminibuffer_exit_hook = Qnil;
1777 DEFVAR_BOOL ("completion-auto-help", &auto_help,
1778 "*Non-nil means automatically provide help for invalid completion input.");
1779 auto_help = 1;
1781 DEFVAR_BOOL ("completion-ignore-case", &completion_ignore_case,
1782 "Non-nil means don't consider case significant in completion.");
1783 completion_ignore_case = 0;
1785 DEFVAR_BOOL ("enable-recursive-minibuffers", &enable_recursive_minibuffers,
1786 "*Non-nil means to allow minibuffer commands while in the minibuffer.\n\
1787 More precisely, this variable makes a difference when the minibuffer window\n\
1788 is the selected window. If you are in some other window, minibuffer commands\n\
1789 are allowed even if a minibuffer is active.");
1790 enable_recursive_minibuffers = 0;
1792 DEFVAR_LISP ("minibuffer-completion-table", &Vminibuffer_completion_table,
1793 "Alist or obarray used for completion in the minibuffer.\n\
1794 This becomes the ALIST argument to `try-completion' and `all-completion'.\n\
1796 The value may alternatively be a function, which is given three arguments:\n\
1797 STRING, the current buffer contents;\n\
1798 PREDICATE, the predicate for filtering possible matches;\n\
1799 CODE, which says what kind of things to do.\n\
1800 CODE can be nil, t or `lambda'.\n\
1801 nil means to return the best completion of STRING, or nil if there is none.\n\
1802 t means to return a list of all possible completions of STRING.\n\
1803 `lambda' means to return t if STRING is a valid completion as it stands.");
1804 Vminibuffer_completion_table = Qnil;
1806 DEFVAR_LISP ("minibuffer-completion-predicate", &Vminibuffer_completion_predicate,
1807 "Within call to `completing-read', this holds the PREDICATE argument.");
1808 Vminibuffer_completion_predicate = Qnil;
1810 DEFVAR_LISP ("minibuffer-completion-confirm", &Vminibuffer_completion_confirm,
1811 "Non-nil => demand confirmation of completion before exiting minibuffer.");
1812 Vminibuffer_completion_confirm = Qnil;
1814 DEFVAR_LISP ("minibuffer-help-form", &Vminibuffer_help_form,
1815 "Value that `help-form' takes on inside the minibuffer.");
1816 Vminibuffer_help_form = Qnil;
1818 DEFVAR_LISP ("minibuffer-history-variable", &Vminibuffer_history_variable,
1819 "History list symbol to add minibuffer values to.\n\
1820 Each string of minibuffer input, as it appears on exit from the minibuffer,\n\
1821 is added with\n\
1822 (set minibuffer-history-variable\n\
1823 (cons STRING (symbol-value minibuffer-history-variable)))");
1824 XSETFASTINT (Vminibuffer_history_variable, 0);
1826 DEFVAR_LISP ("minibuffer-history-position", &Vminibuffer_history_position,
1827 "Current position of redoing in the history list.");
1828 Vminibuffer_history_position = Qnil;
1830 DEFVAR_BOOL ("minibuffer-auto-raise", &minibuffer_auto_raise,
1831 "*Non-nil means entering the minibuffer raises the minibuffer's frame.");
1832 minibuffer_auto_raise = 0;
1834 DEFVAR_LISP ("completion-regexp-list", &Vcompletion_regexp_list,
1835 "List of regexps that should restrict possible completions.");
1836 Vcompletion_regexp_list = Qnil;
1838 defsubr (&Sset_minibuffer_window);
1839 defsubr (&Sread_from_minibuffer);
1840 defsubr (&Seval_minibuffer);
1841 defsubr (&Sread_minibuffer);
1842 defsubr (&Sread_string);
1843 defsubr (&Sread_command);
1844 defsubr (&Sread_variable);
1845 defsubr (&Sread_buffer);
1846 defsubr (&Sread_no_blanks_input);
1847 defsubr (&Sminibuffer_depth);
1848 defsubr (&Sminibuffer_prompt);
1849 defsubr (&Sminibuffer_prompt_width);
1851 defsubr (&Stry_completion);
1852 defsubr (&Sall_completions);
1853 defsubr (&Scompleting_read);
1854 defsubr (&Sminibuffer_complete);
1855 defsubr (&Sminibuffer_complete_word);
1856 defsubr (&Sminibuffer_complete_and_exit);
1857 defsubr (&Sdisplay_completion_list);
1858 defsubr (&Sminibuffer_completion_help);
1860 defsubr (&Sself_insert_and_exit);
1861 defsubr (&Sexit_minibuffer);
1865 keys_of_minibuf ()
1867 initial_define_key (Vminibuffer_local_map, Ctl ('g'),
1868 "abort-recursive-edit");
1869 initial_define_key (Vminibuffer_local_map, Ctl ('m'),
1870 "exit-minibuffer");
1871 initial_define_key (Vminibuffer_local_map, Ctl ('j'),
1872 "exit-minibuffer");
1874 initial_define_key (Vminibuffer_local_ns_map, Ctl ('g'),
1875 "abort-recursive-edit");
1876 initial_define_key (Vminibuffer_local_ns_map, Ctl ('m'),
1877 "exit-minibuffer");
1878 initial_define_key (Vminibuffer_local_ns_map, Ctl ('j'),
1879 "exit-minibuffer");
1881 initial_define_key (Vminibuffer_local_ns_map, ' ',
1882 "exit-minibuffer");
1883 initial_define_key (Vminibuffer_local_ns_map, '\t',
1884 "exit-minibuffer");
1885 initial_define_key (Vminibuffer_local_ns_map, '?',
1886 "self-insert-and-exit");
1888 initial_define_key (Vminibuffer_local_completion_map, Ctl ('g'),
1889 "abort-recursive-edit");
1890 initial_define_key (Vminibuffer_local_completion_map, Ctl ('m'),
1891 "exit-minibuffer");
1892 initial_define_key (Vminibuffer_local_completion_map, Ctl ('j'),
1893 "exit-minibuffer");
1895 initial_define_key (Vminibuffer_local_completion_map, '\t',
1896 "minibuffer-complete");
1897 initial_define_key (Vminibuffer_local_completion_map, ' ',
1898 "minibuffer-complete-word");
1899 initial_define_key (Vminibuffer_local_completion_map, '?',
1900 "minibuffer-completion-help");
1902 initial_define_key (Vminibuffer_local_must_match_map, Ctl ('g'),
1903 "abort-recursive-edit");
1904 initial_define_key (Vminibuffer_local_must_match_map, Ctl ('m'),
1905 "minibuffer-complete-and-exit");
1906 initial_define_key (Vminibuffer_local_must_match_map, Ctl ('j'),
1907 "minibuffer-complete-and-exit");
1908 initial_define_key (Vminibuffer_local_must_match_map, '\t',
1909 "minibuffer-complete");
1910 initial_define_key (Vminibuffer_local_must_match_map, ' ',
1911 "minibuffer-complete-word");
1912 initial_define_key (Vminibuffer_local_must_match_map, '?',
1913 "minibuffer-completion-help");