(display-time): Call display-time-mode.
[emacs.git] / src / minibuf.c
blob0d107f97b1bdfb4f743cc6e7dd12aa21827476df
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 /* I don't think that any frames may validly have a null minibuffer
117 window anymore. */
118 if (NILP (selected_frame->minibuffer_window))
119 abort ();
121 Fset_window_buffer (selected_frame->minibuffer_window,
122 XWINDOW (minibuf_window)->buffer);
123 minibuf_window = selected_frame->minibuffer_window;
127 DEFUN ("set-minibuffer-window", Fset_minibuffer_window,
128 Sset_minibuffer_window, 1, 1, 0,
129 "Specify which minibuffer window to use for the minibuffer.\n\
130 This effects where the minibuffer is displayed if you put text in it\n\
131 without invoking the usual minibuffer commands.")
132 (window)
133 Lisp_Object window;
135 CHECK_WINDOW (window, 1);
136 if (! MINI_WINDOW_P (XWINDOW (window)))
137 error ("Window is not a minibuffer window");
139 minibuf_window = window;
141 return window;
145 /* Actual minibuffer invocation. */
147 void read_minibuf_unwind ();
148 Lisp_Object get_minibuffer ();
149 Lisp_Object read_minibuf ();
151 /* Read from the minibuffer using keymap MAP, initial contents INITIAL
152 (a string), putting point minus BACKUP_N chars from the end of INITIAL,
153 prompting with PROMPT (a string), using history list HISTVAR
154 with initial position HISTPOS. (BACKUP_N should be <= 0.)
156 Normally return the result as a string (the text that was read),
157 but if EXPFLAG is nonzero, read it and return the object read.
158 If HISTVAR is given, save the value read on that history only if it doesn't
159 match the front of that history list exactly. The value is pushed onto
160 the list as the string that was read. */
162 Lisp_Object
163 read_minibuf (map, initial, prompt, backup_n, expflag, histvar, histpos)
164 Lisp_Object map;
165 Lisp_Object initial;
166 Lisp_Object prompt;
167 Lisp_Object backup_n;
168 int expflag;
169 Lisp_Object histvar;
170 Lisp_Object histpos;
172 Lisp_Object val;
173 int count = specpdl_ptr - specpdl;
174 Lisp_Object mini_frame, ambient_dir;
175 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
177 single_kboard_state ();
179 val = Qnil;
180 ambient_dir = current_buffer->directory;
182 /* Don't need to protect PROMPT, HISTVAR, and HISTPOS because we
183 store them away before we can GC. Don't need to protect
184 BACKUP_N because we use the value only if it is an integer. */
185 GCPRO4 (map, initial, val, ambient_dir);
187 if (!STRINGP (prompt))
188 prompt = build_string ("");
190 if (!enable_recursive_minibuffers
191 && minibuf_level > 0
192 && (EQ (selected_window, minibuf_window)))
193 error ("Command attempted to use minibuffer while in minibuffer");
195 /* Choose the minibuffer window and frame, and take action on them. */
197 choose_minibuf_frame ();
199 record_unwind_protect (Fset_window_configuration,
200 Fcurrent_window_configuration (Qnil));
202 /* If the minibuffer window is on a different frame, save that
203 frame's configuration too. */
204 #ifdef MULTI_FRAME
205 mini_frame = WINDOW_FRAME (XWINDOW (minibuf_window));
206 if (XFRAME (mini_frame) != selected_frame)
207 record_unwind_protect (Fset_window_configuration,
208 Fcurrent_window_configuration (mini_frame));
210 /* If the minibuffer is on an iconified or invisible frame,
211 make it visible now. */
212 Fmake_frame_visible (mini_frame);
214 if (minibuffer_auto_raise)
215 Fraise_frame (mini_frame);
216 #endif
218 /* We have to do this after saving the window configuration
219 since that is what restores the current buffer. */
221 /* Arrange to restore a number of minibuffer-related variables.
222 We could bind each variable separately, but that would use lots of
223 specpdl slots. */
224 minibuf_save_list
225 = Fcons (Voverriding_local_map,
226 Fcons (minibuf_window, minibuf_save_list));
227 minibuf_save_list
228 = Fcons (minibuf_prompt,
229 Fcons (make_number (minibuf_prompt_width),
230 Fcons (Vhelp_form,
231 Fcons (Vcurrent_prefix_arg,
232 Fcons (Vminibuffer_history_position,
233 Fcons (Vminibuffer_history_variable,
234 minibuf_save_list))))));
236 record_unwind_protect (read_minibuf_unwind, Qnil);
237 minibuf_level++;
239 /* Now that we can restore all those variables, start changing them. */
241 minibuf_prompt_width = 0; /* xdisp.c puts in the right value. */
242 minibuf_prompt = Fcopy_sequence (prompt);
243 Vminibuffer_history_position = histpos;
244 Vminibuffer_history_variable = histvar;
245 Vhelp_form = Vminibuffer_help_form;
247 /* Switch to the minibuffer. */
249 Fset_buffer (get_minibuffer (minibuf_level));
251 /* The current buffer's default directory is usually the right thing
252 for our minibuffer here. However, if you're typing a command at
253 a minibuffer-only frame when minibuf_level is zero, then buf IS
254 the current_buffer, so reset_buffer leaves buf's default
255 directory unchanged. This is a bummer when you've just started
256 up Emacs and buf's default directory is Qnil. Here's a hack; can
257 you think of something better to do? Find another buffer with a
258 better directory, and use that one instead. */
259 if (STRINGP (ambient_dir))
260 current_buffer->directory = ambient_dir;
261 else
263 Lisp_Object buf_list;
265 for (buf_list = Vbuffer_alist;
266 CONSP (buf_list);
267 buf_list = XCONS (buf_list)->cdr)
269 Lisp_Object other_buf;
271 other_buf = XCONS (XCONS (buf_list)->car)->cdr;
272 if (STRINGP (XBUFFER (other_buf)->directory))
274 current_buffer->directory = XBUFFER (other_buf)->directory;
275 break;
280 #ifdef MULTI_FRAME
281 if (XFRAME (mini_frame) != selected_frame)
282 Fredirect_frame_focus (Fselected_frame (), mini_frame);
283 #endif
285 Vminibuf_scroll_window = selected_window;
286 Fset_window_buffer (minibuf_window, Fcurrent_buffer ());
287 Fselect_window (minibuf_window);
288 XSETFASTINT (XWINDOW (minibuf_window)->hscroll, 0);
290 Fmake_local_variable (Qprint_escape_newlines);
291 print_escape_newlines = 1;
293 /* Erase the buffer. */
295 int count1 = specpdl_ptr - specpdl;
296 specbind (Qinhibit_read_only, Qt);
297 Ferase_buffer ();
298 unbind_to (count1, Qnil);
301 /* Put in the initial input. */
302 if (!NILP (initial))
304 Finsert (1, &initial);
305 if (!NILP (backup_n) && INTEGERP (backup_n))
306 Fforward_char (backup_n);
309 echo_area_glyphs = 0;
310 /* This is in case the minibuffer-setup-hook calls Fsit_for. */
311 previous_echo_glyphs = 0;
313 current_buffer->keymap = map;
315 /* Run our hook, but not if it is empty.
316 (run-hooks would do nothing if it is empty,
317 but it's important to save time here in the usual case). */
318 if (!NILP (Vminibuffer_setup_hook) && !EQ (Vminibuffer_setup_hook, Qunbound)
319 && !NILP (Vrun_hooks))
320 call1 (Vrun_hooks, Qminibuffer_setup_hook);
322 /* ??? MCC did redraw_screen here if switching screens. */
323 recursive_edit_1 ();
325 /* If cursor is on the minibuffer line,
326 show the user we have exited by putting it in column 0. */
327 if ((FRAME_CURSOR_Y (selected_frame)
328 >= XFASTINT (XWINDOW (minibuf_window)->top))
329 && !noninteractive)
331 FRAME_CURSOR_X (selected_frame) = 0;
332 update_frame (selected_frame, 1, 1);
335 /* Make minibuffer contents into a string */
336 val = make_buffer_string (1, Z, 1);
337 #if 0 /* make_buffer_string should handle the gap. */
338 bcopy (GAP_END_ADDR, XSTRING (val)->data + GPT - BEG, Z - GPT);
339 #endif
341 /* VAL is the string of minibuffer text. */
342 last_minibuf_string = val;
344 /* Add the value to the appropriate history list unless it is empty. */
345 if (XSTRING (val)->size != 0
346 && SYMBOLP (Vminibuffer_history_variable)
347 && ! EQ (XSYMBOL (Vminibuffer_history_variable)->value, Qunbound))
349 /* If the caller wanted to save the value read on a history list,
350 then do so if the value is not already the front of the list. */
351 Lisp_Object histval;
352 histval = Fsymbol_value (Vminibuffer_history_variable);
354 /* The value of the history variable must be a cons or nil. Other
355 values are unacceptable. We silently ignore these values. */
356 if (NILP (histval)
357 || (CONSP (histval)
358 && NILP (Fequal (last_minibuf_string, Fcar (histval)))))
359 Fset (Vminibuffer_history_variable,
360 Fcons (last_minibuf_string, histval));
363 /* If Lisp form desired instead of string, parse it. */
364 if (expflag)
366 Lisp_Object expr_and_pos;
367 unsigned char *p;
369 expr_and_pos = Fread_from_string (val, Qnil, Qnil);
370 /* Ignore trailing whitespace; any other trailing junk is an error. */
371 for (p = XSTRING (val)->data + XINT (Fcdr (expr_and_pos)); *p; p++)
372 if (*p != ' ' && *p != '\t' && *p != '\n')
373 error ("Trailing garbage following expression");
374 val = Fcar (expr_and_pos);
377 /* The appropriate frame will get selected
378 in set-window-configuration. */
379 RETURN_UNGCPRO (unbind_to (count, val));
382 /* Return a buffer to be used as the minibuffer at depth `depth'.
383 depth = 0 is the lowest allowed argument, and that is the value
384 used for nonrecursive minibuffer invocations */
386 Lisp_Object
387 get_minibuffer (depth)
388 int depth;
390 Lisp_Object tail, num, buf;
391 char name[24];
392 extern Lisp_Object nconc2 ();
394 XSETFASTINT (num, depth);
395 tail = Fnthcdr (num, Vminibuffer_list);
396 if (NILP (tail))
398 tail = Fcons (Qnil, Qnil);
399 Vminibuffer_list = nconc2 (Vminibuffer_list, tail);
401 buf = Fcar (tail);
402 if (NILP (buf) || NILP (XBUFFER (buf)->name))
404 sprintf (name, " *Minibuf-%d*", depth);
405 buf = Fget_buffer_create (build_string (name));
407 /* Although the buffer's name starts with a space, undo should be
408 enabled in it. */
409 Fbuffer_enable_undo (buf);
411 XCONS (tail)->car = buf;
413 else
415 int count = specpdl_ptr - specpdl;
417 reset_buffer (XBUFFER (buf));
418 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
419 Fset_buffer (buf);
420 Fkill_all_local_variables ();
421 unbind_to (count, Qnil);
424 return buf;
427 /* This function is called on exiting minibuffer, whether normally or not,
428 and it restores the current window, buffer, etc. */
430 void
431 read_minibuf_unwind (data)
432 Lisp_Object data;
434 Lisp_Object old_deactivate_mark;
435 Lisp_Object window;
437 /* We are exiting the minibuffer one way or the other,
438 so run the hook. */
439 if (!NILP (Vminibuffer_exit_hook) && !EQ (Vminibuffer_exit_hook, Qunbound)
440 && !NILP (Vrun_hooks))
441 safe_run_hooks (Qminibuffer_exit_hook);
443 /* If this was a recursive minibuffer,
444 tie the minibuffer window back to the outer level minibuffer buffer. */
445 minibuf_level--;
447 window = minibuf_window;
448 /* To keep things predictable, in case it matters, let's be in the minibuffer
449 when we reset the relevant variables. */
450 Fset_buffer (XWINDOW (window)->buffer);
452 /* Restore prompt, etc, from outer minibuffer level. */
453 minibuf_prompt = Fcar (minibuf_save_list);
454 minibuf_save_list = Fcdr (minibuf_save_list);
455 minibuf_prompt_width = XFASTINT (Fcar (minibuf_save_list));
456 minibuf_save_list = Fcdr (minibuf_save_list);
457 Vhelp_form = Fcar (minibuf_save_list);
458 minibuf_save_list = Fcdr (minibuf_save_list);
459 Vcurrent_prefix_arg = Fcar (minibuf_save_list);
460 minibuf_save_list = Fcdr (minibuf_save_list);
461 Vminibuffer_history_position = Fcar (minibuf_save_list);
462 minibuf_save_list = Fcdr (minibuf_save_list);
463 Vminibuffer_history_variable = Fcar (minibuf_save_list);
464 minibuf_save_list = Fcdr (minibuf_save_list);
465 Voverriding_local_map = Fcar (minibuf_save_list);
466 minibuf_save_list = Fcdr (minibuf_save_list);
467 minibuf_window = Fcar (minibuf_save_list);
468 minibuf_save_list = Fcdr (minibuf_save_list);
470 /* Erase the minibuffer we were using at this level. */
472 int count = specpdl_ptr - specpdl;
473 /* Prevent error in erase-buffer. */
474 specbind (Qinhibit_read_only, Qt);
475 old_deactivate_mark = Vdeactivate_mark;
476 Ferase_buffer ();
477 Vdeactivate_mark = old_deactivate_mark;
478 unbind_to (count, Qnil);
481 /* Make sure minibuffer window is erased, not ignored. */
482 windows_or_buffers_changed++;
483 XSETFASTINT (XWINDOW (window)->last_modified, 0);
487 /* This comment supplies the doc string for read-from-minibuffer,
488 for make-docfile to see. We cannot put this in the real DEFUN
489 due to limits in the Unix cpp.
491 DEFUN ("read-from-minibuffer", Fread_from_minibuffer, Sread_from_minibuffer, 1, 5, 0,
492 "Read a string from the minibuffer, prompting with string PROMPT.\n\
493 If optional second arg INITIAL-CONTENTS is non-nil, it is a string\n\
494 to be inserted into the minibuffer before reading input.\n\
495 If INITIAL-CONTENTS is (STRING . POSITION), the initial input\n\
496 is STRING, but point is placed at position POSITION in the minibuffer.\n\
497 Third arg KEYMAP is a keymap to use whilst reading;\n\
498 if omitted or nil, the default is `minibuffer-local-map'.\n\
499 If fourth arg READ is non-nil, then interpret the result as a lisp object\n\
500 and return that object:\n\
501 in other words, do `(car (read-from-string INPUT-STRING))'\n\
502 Fifth arg HIST, if non-nil, specifies a history list\n\
503 and optionally the initial position in the list.\n\
504 It can be a symbol, which is the history list variable to use,\n\
505 or it can be a cons cell (HISTVAR . HISTPOS).\n\
506 In that case, HISTVAR is the history list variable to use,\n\
507 and HISTPOS is the initial position (the position in the list\n\
508 which INITIAL-CONTENTS corresponds to).\n\
509 Positions are counted starting from 1 at the beginning of the list."
512 DEFUN ("read-from-minibuffer", Fread_from_minibuffer, Sread_from_minibuffer, 1, 5, 0,
513 0 /* See immediately above */)
514 (prompt, initial_contents, keymap, read, hist)
515 Lisp_Object prompt, initial_contents, keymap, read, hist;
517 int pos = 0;
518 Lisp_Object histvar, histpos, position;
519 position = Qnil;
521 CHECK_STRING (prompt, 0);
522 if (!NILP (initial_contents))
524 if (CONSP (initial_contents))
526 position = Fcdr (initial_contents);
527 initial_contents = Fcar (initial_contents);
529 CHECK_STRING (initial_contents, 1);
530 if (!NILP (position))
532 CHECK_NUMBER (position, 0);
533 /* Convert to distance from end of input. */
534 if (XINT (position) < 1)
535 /* A number too small means the beginning of the string. */
536 pos = - XSTRING (initial_contents)->size;
537 else
538 pos = XINT (position) - 1 - XSTRING (initial_contents)->size;
542 if (NILP (keymap))
543 keymap = Vminibuffer_local_map;
544 else
545 keymap = get_keymap (keymap,2);
547 if (SYMBOLP (hist))
549 histvar = hist;
550 histpos = Qnil;
552 else
554 histvar = Fcar_safe (hist);
555 histpos = Fcdr_safe (hist);
557 if (NILP (histvar))
558 histvar = Qminibuffer_history;
559 if (NILP (histpos))
560 XSETFASTINT (histpos, 0);
562 return read_minibuf (keymap, initial_contents, prompt,
563 make_number (pos), !NILP (read), histvar, histpos);
566 DEFUN ("read-minibuffer", Fread_minibuffer, Sread_minibuffer, 1, 2, 0,
567 "Return a Lisp object read using the minibuffer.\n\
568 Prompt with PROMPT. If non-nil, optional second arg INITIAL-CONTENTS\n\
569 is a string to insert in the minibuffer before reading.")
570 (prompt, initial_contents)
571 Lisp_Object prompt, initial_contents;
573 CHECK_STRING (prompt, 0);
574 if (!NILP (initial_contents))
575 CHECK_STRING (initial_contents, 1);
576 return read_minibuf (Vminibuffer_local_map, initial_contents,
577 prompt, Qnil, 1, Qminibuffer_history, make_number (0));
580 DEFUN ("eval-minibuffer", Feval_minibuffer, Seval_minibuffer, 1, 2, 0,
581 "Return value of Lisp expression read using the minibuffer.\n\
582 Prompt with PROMPT. If non-nil, optional second arg INITIAL-CONTENTS\n\
583 is a string to insert in the minibuffer before reading.")
584 (prompt, initial_contents)
585 Lisp_Object prompt, initial_contents;
587 return Feval (Fread_minibuffer (prompt, initial_contents));
590 /* Functions that use the minibuffer to read various things. */
592 DEFUN ("read-string", Fread_string, Sread_string, 1, 3, 0,
593 "Read a string from the minibuffer, prompting with string PROMPT.\n\
594 If non-nil, second arg INITIAL-INPUT is a string to insert before reading.\n\
595 The third arg HISTORY, if non-nil, specifies a history list\n\
596 and optionally the initial position in the list.\n\
597 See `read-from-minibuffer' for details of HISTORY argument.")
598 (prompt, initial_input, history)
599 Lisp_Object prompt, initial_input, history;
601 return Fread_from_minibuffer (prompt, initial_input, Qnil, Qnil, history);
604 DEFUN ("read-no-blanks-input", Fread_no_blanks_input, Sread_no_blanks_input, 1, 2, 0,
605 "Args PROMPT and INIT, strings. Read a string from the terminal, not allowing blanks.\n\
606 Prompt with PROMPT, and provide INIT as an initial value of the input string.")
607 (prompt, init)
608 Lisp_Object prompt, init;
610 CHECK_STRING (prompt, 0);
611 if (! NILP (init))
612 CHECK_STRING (init, 1);
614 return read_minibuf (Vminibuffer_local_ns_map, init, prompt, Qnil, 0,
615 Qminibuffer_history, make_number (0));
618 DEFUN ("read-command", Fread_command, Sread_command, 1, 1, 0,
619 "One arg PROMPT, a string. Read the name of a command and return as a symbol.\n\
620 Prompts with PROMPT.")
621 (prompt)
622 Lisp_Object prompt;
624 return Fintern (Fcompleting_read (prompt, Vobarray, Qcommandp, Qt, Qnil, Qnil),
625 Qnil);
628 #ifdef NOTDEF
629 DEFUN ("read-function", Fread_function, Sread_function, 1, 1, 0,
630 "One arg PROMPT, a string. Read the name of a function and return as a symbol.\n\
631 Prompts with PROMPT.")
632 (prompt)
633 Lisp_Object prompt;
635 return Fintern (Fcompleting_read (prompt, Vobarray, Qfboundp, Qt, Qnil, Qnil),
636 Qnil);
638 #endif /* NOTDEF */
640 DEFUN ("read-variable", Fread_variable, Sread_variable, 1, 1, 0,
641 "One arg PROMPT, a string. Read the name of a user variable and return\n\
642 it as a symbol. Prompts with PROMPT.\n\
643 A user variable is one whose documentation starts with a `*' character.")
644 (prompt)
645 Lisp_Object prompt;
647 return Fintern (Fcompleting_read (prompt, Vobarray,
648 Quser_variable_p, Qt, Qnil, Qnil),
649 Qnil);
652 DEFUN ("read-buffer", Fread_buffer, Sread_buffer, 1, 3, 0,
653 "One arg PROMPT, a string. Read the name of a buffer and return as a string.\n\
654 Prompts with PROMPT.\n\
655 Optional second arg is value to return if user enters an empty line.\n\
656 If optional third arg REQUIRE-MATCH is non-nil, only existing buffer names are allowed.")
657 (prompt, def, require_match)
658 Lisp_Object prompt, def, require_match;
660 Lisp_Object tem;
661 Lisp_Object args[3];
662 struct gcpro gcpro1;
664 if (BUFFERP (def))
665 def = XBUFFER (def)->name;
666 if (!NILP (def))
668 args[0] = build_string ("%s(default %s) ");
669 args[1] = prompt;
670 args[2] = def;
671 prompt = Fformat (3, args);
673 GCPRO1 (def);
674 tem = Fcompleting_read (prompt, Vbuffer_alist, Qnil, require_match, Qnil, Qnil);
675 UNGCPRO;
676 if (XSTRING (tem)->size)
677 return tem;
678 return def;
681 DEFUN ("try-completion", Ftry_completion, Stry_completion, 2, 3, 0,
682 "Return common substring of all completions of STRING in ALIST.\n\
683 Each car of each element of ALIST is tested to see if it begins with STRING.\n\
684 All that match are compared together; the longest initial sequence\n\
685 common to all matches is returned as a string.\n\
686 If there is no match at all, nil is returned.\n\
687 For an exact match, t is returned.\n\
689 ALIST can be an obarray instead of an alist.\n\
690 Then the print names of all symbols in the obarray are the possible matches.\n\
692 ALIST can also be a function to do the completion itself.\n\
693 It receives three arguments: the values STRING, PREDICATE and nil.\n\
694 Whatever it returns becomes the value of `try-completion'.\n\
696 If optional third argument PREDICATE is non-nil,\n\
697 it is used to test each possible match.\n\
698 The match is a candidate only if PREDICATE returns non-nil.\n\
699 The argument given to PREDICATE is the alist element\n\
700 or the symbol from the obarray.")
701 (string, alist, predicate)
702 Lisp_Object string, alist, predicate;
704 Lisp_Object bestmatch, tail, elt, eltstring;
705 int bestmatchsize;
706 int compare, matchsize;
707 int list = CONSP (alist) || NILP (alist);
708 int index, obsize;
709 int matchcount = 0;
710 Lisp_Object bucket, zero, end, tem;
711 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
713 CHECK_STRING (string, 0);
714 if (!list && !VECTORP (alist))
715 return call3 (alist, string, predicate, Qnil);
717 bestmatch = Qnil;
719 /* If ALIST is not a list, set TAIL just for gc pro. */
720 tail = alist;
721 if (! list)
723 index = 0;
724 obsize = XVECTOR (alist)->size;
725 bucket = XVECTOR (alist)->contents[index];
728 while (1)
730 /* Get the next element of the alist or obarray. */
731 /* Exit the loop if the elements are all used up. */
732 /* elt gets the alist element or symbol.
733 eltstring gets the name to check as a completion. */
735 if (list)
737 if (NILP (tail))
738 break;
739 elt = Fcar (tail);
740 eltstring = Fcar (elt);
741 tail = Fcdr (tail);
743 else
745 if (XFASTINT (bucket) != 0)
747 elt = bucket;
748 eltstring = Fsymbol_name (elt);
749 if (XSYMBOL (bucket)->next)
750 XSETSYMBOL (bucket, XSYMBOL (bucket)->next);
751 else
752 XSETFASTINT (bucket, 0);
754 else if (++index >= obsize)
755 break;
756 else
758 bucket = XVECTOR (alist)->contents[index];
759 continue;
763 /* Is this element a possible completion? */
765 if (STRINGP (eltstring)
766 && XSTRING (string)->size <= XSTRING (eltstring)->size
767 && 0 > scmp (XSTRING (eltstring)->data, XSTRING (string)->data,
768 XSTRING (string)->size))
770 /* Yes. */
771 Lisp_Object regexps;
772 Lisp_Object zero;
773 XSETFASTINT (zero, 0);
775 /* Ignore this element if it fails to match all the regexps. */
776 for (regexps = Vcompletion_regexp_list; CONSP (regexps);
777 regexps = XCONS (regexps)->cdr)
779 tem = Fstring_match (XCONS (regexps)->car, eltstring, zero);
780 if (NILP (tem))
781 break;
783 if (CONSP (regexps))
784 continue;
786 /* Ignore this element if there is a predicate
787 and the predicate doesn't like it. */
789 if (!NILP (predicate))
791 if (EQ (predicate, Qcommandp))
792 tem = Fcommandp (elt);
793 else
795 GCPRO4 (tail, string, eltstring, bestmatch);
796 tem = call1 (predicate, elt);
797 UNGCPRO;
799 if (NILP (tem)) continue;
802 /* Update computation of how much all possible completions match */
804 matchcount++;
805 if (NILP (bestmatch))
806 bestmatch = eltstring, bestmatchsize = XSTRING (eltstring)->size;
807 else
809 compare = min (bestmatchsize, XSTRING (eltstring)->size);
810 matchsize = scmp (XSTRING (bestmatch)->data,
811 XSTRING (eltstring)->data,
812 compare);
813 if (matchsize < 0)
814 matchsize = compare;
815 if (completion_ignore_case)
817 /* If this is an exact match except for case,
818 use it as the best match rather than one that is not an
819 exact match. This way, we get the case pattern
820 of the actual match. */
821 if ((matchsize == XSTRING (eltstring)->size
822 && matchsize < XSTRING (bestmatch)->size)
824 /* If there is more than one exact match ignoring case,
825 and one of them is exact including case,
826 prefer that one. */
827 /* If there is no exact match ignoring case,
828 prefer a match that does not change the case
829 of the input. */
830 ((matchsize == XSTRING (eltstring)->size)
832 (matchsize == XSTRING (bestmatch)->size)
833 && !bcmp (XSTRING (eltstring)->data,
834 XSTRING (string)->data, XSTRING (string)->size)
835 && bcmp (XSTRING (bestmatch)->data,
836 XSTRING (string)->data, XSTRING (string)->size)))
837 bestmatch = eltstring;
839 bestmatchsize = matchsize;
844 if (NILP (bestmatch))
845 return Qnil; /* No completions found */
846 /* If we are ignoring case, and there is no exact match,
847 and no additional text was supplied,
848 don't change the case of what the user typed. */
849 if (completion_ignore_case && bestmatchsize == XSTRING (string)->size
850 && XSTRING (bestmatch)->size > bestmatchsize)
851 return string;
853 /* Return t if the supplied string is an exact match (counting case);
854 it does not require any change to be made. */
855 if (matchcount == 1 && bestmatchsize == XSTRING (string)->size
856 && !bcmp (XSTRING (bestmatch)->data, XSTRING (string)->data,
857 bestmatchsize))
858 return Qt;
860 XSETFASTINT (zero, 0); /* Else extract the part in which */
861 XSETFASTINT (end, bestmatchsize); /* all completions agree */
862 return Fsubstring (bestmatch, zero, end);
865 /* Compare exactly LEN chars of strings at S1 and S2,
866 ignoring case if appropriate.
867 Return -1 if strings match,
868 else number of chars that match at the beginning. */
871 scmp (s1, s2, len)
872 register unsigned char *s1, *s2;
873 int len;
875 register int l = len;
877 if (completion_ignore_case)
879 while (l && DOWNCASE (*s1++) == DOWNCASE (*s2++))
880 l--;
882 else
884 while (l && *s1++ == *s2++)
885 l--;
887 if (l == 0)
888 return -1;
889 else
890 return len - l;
893 DEFUN ("all-completions", Fall_completions, Sall_completions, 2, 4, 0,
894 "Search for partial matches to STRING in ALIST.\n\
895 Each car of each element of ALIST is tested to see if it begins with STRING.\n\
896 The value is a list of all the strings from ALIST that match.\n\
898 ALIST can be an obarray instead of an alist.\n\
899 Then the print names of all symbols in the obarray are the possible matches.\n\
901 ALIST can also be a function to do the completion itself.\n\
902 It receives three arguments: the values STRING, PREDICATE and t.\n\
903 Whatever it returns becomes the value of `all-completion'.\n\
905 If optional third argument PREDICATE is non-nil,\n\
906 it is used to test each possible match.\n\
907 The match is a candidate only if PREDICATE returns non-nil.\n\
908 The argument given to PREDICATE is the alist element\n\
909 or the symbol from the obarray.\n\
911 If the optional fourth argument HIDE-SPACES is non-nil,\n\
912 strings in ALIST that start with a space\n\
913 are ignored unless STRING itself starts with a space.")
914 (string, alist, predicate, hide_spaces)
915 Lisp_Object string, alist, predicate, hide_spaces;
917 Lisp_Object tail, elt, eltstring;
918 Lisp_Object allmatches;
919 int list = CONSP (alist) || NILP (alist);
920 int index, obsize;
921 Lisp_Object bucket, tem;
922 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
924 CHECK_STRING (string, 0);
925 if (!list && !VECTORP (alist))
927 return call3 (alist, string, predicate, Qt);
929 allmatches = Qnil;
931 /* If ALIST is not a list, set TAIL just for gc pro. */
932 tail = alist;
933 if (! list)
935 index = 0;
936 obsize = XVECTOR (alist)->size;
937 bucket = XVECTOR (alist)->contents[index];
940 while (1)
942 /* Get the next element of the alist or obarray. */
943 /* Exit the loop if the elements are all used up. */
944 /* elt gets the alist element or symbol.
945 eltstring gets the name to check as a completion. */
947 if (list)
949 if (NILP (tail))
950 break;
951 elt = Fcar (tail);
952 eltstring = Fcar (elt);
953 tail = Fcdr (tail);
955 else
957 if (XFASTINT (bucket) != 0)
959 elt = bucket;
960 eltstring = Fsymbol_name (elt);
961 if (XSYMBOL (bucket)->next)
962 XSETSYMBOL (bucket, XSYMBOL (bucket)->next);
963 else
964 XSETFASTINT (bucket, 0);
966 else if (++index >= obsize)
967 break;
968 else
970 bucket = XVECTOR (alist)->contents[index];
971 continue;
975 /* Is this element a possible completion? */
977 if (STRINGP (eltstring)
978 && XSTRING (string)->size <= XSTRING (eltstring)->size
979 /* If HIDE_SPACES, reject alternatives that start with space
980 unless the input starts with space. */
981 && ((XSTRING (string)->size > 0 && XSTRING (string)->data[0] == ' ')
982 || XSTRING (eltstring)->data[0] != ' '
983 || NILP (hide_spaces))
984 && 0 > scmp (XSTRING (eltstring)->data, XSTRING (string)->data,
985 XSTRING (string)->size))
987 /* Yes. */
988 Lisp_Object regexps;
989 Lisp_Object zero;
990 XSETFASTINT (zero, 0);
992 /* Ignore this element if it fails to match all the regexps. */
993 for (regexps = Vcompletion_regexp_list; CONSP (regexps);
994 regexps = XCONS (regexps)->cdr)
996 tem = Fstring_match (XCONS (regexps)->car, eltstring, zero);
997 if (NILP (tem))
998 break;
1000 if (CONSP (regexps))
1001 continue;
1003 /* Ignore this element if there is a predicate
1004 and the predicate doesn't like it. */
1006 if (!NILP (predicate))
1008 if (EQ (predicate, Qcommandp))
1009 tem = Fcommandp (elt);
1010 else
1012 GCPRO4 (tail, eltstring, allmatches, string);
1013 tem = call1 (predicate, elt);
1014 UNGCPRO;
1016 if (NILP (tem)) continue;
1018 /* Ok => put it on the list. */
1019 allmatches = Fcons (eltstring, allmatches);
1023 return Fnreverse (allmatches);
1026 Lisp_Object Vminibuffer_completion_table, Qminibuffer_completion_table;
1027 Lisp_Object Vminibuffer_completion_predicate, Qminibuffer_completion_predicate;
1028 Lisp_Object Vminibuffer_completion_confirm, Qminibuffer_completion_confirm;
1030 /* This comment supplies the doc string for completing-read,
1031 for make-docfile to see. We cannot put this in the real DEFUN
1032 due to limits in the Unix cpp.
1034 DEFUN ("completing-read", Fcompleting_read, Scompleting_read, 2, 6, 0,
1035 "Read a string in the minibuffer, with completion.\n\
1036 PROMPT is a string to prompt with; normally it ends in a colon and a space.\n\
1037 TABLE is an alist whose elements' cars are strings, or an obarray.\n\
1038 PREDICATE limits completion to a subset of TABLE.\n\
1039 See `try-completion' and `all-completions' for more details
1040 on completion, TABLE, and PREDICATE.\n\
1042 If REQUIRE-MATCH is non-nil, the user is not allowed to exit unless\n\
1043 the input is (or completes to) an element of TABLE or is null.\n\
1044 If it is also not t, Return does not exit if it does non-null completion.\n\
1045 If the input is null, `completing-read' returns nil,\n\
1046 regardless of the value of REQUIRE-MATCH.\n\
1048 If INITIAL-INPUT is non-nil, insert it in the minibuffer initially.\n\
1049 If it is (STRING . POSITION), the initial input\n\
1050 is STRING, but point is placed POSITION characters into the string.\n\
1051 HIST, if non-nil, specifies a history list\n\
1052 and optionally the initial position in the list.\n\
1053 It can be a symbol, which is the history list variable to use,\n\
1054 or it can be a cons cell (HISTVAR . HISTPOS).\n\
1055 In that case, HISTVAR is the history list variable to use,\n\
1056 and HISTPOS is the initial position (the position in the list\n\
1057 which INITIAL-CONTENTS corresponds to).\n\
1058 Positions are counted starting from 1 at the beginning of the list.\n\
1059 Completion ignores case if the ambient value of\n\
1060 `completion-ignore-case' is non-nil."
1062 DEFUN ("completing-read", Fcompleting_read, Scompleting_read, 2, 6, 0,
1063 0 /* See immediately above */)
1064 (prompt, table, predicate, require_match, init, hist)
1065 Lisp_Object prompt, table, predicate, require_match, init, hist;
1067 Lisp_Object val, histvar, histpos, position;
1068 int pos = 0;
1069 int count = specpdl_ptr - specpdl;
1070 specbind (Qminibuffer_completion_table, table);
1071 specbind (Qminibuffer_completion_predicate, predicate);
1072 specbind (Qminibuffer_completion_confirm,
1073 EQ (require_match, Qt) ? Qnil : Qt);
1074 last_exact_completion = Qnil;
1076 position = Qnil;
1077 if (!NILP (init))
1079 if (CONSP (init))
1081 position = Fcdr (init);
1082 init = Fcar (init);
1084 CHECK_STRING (init, 0);
1085 if (!NILP (position))
1087 CHECK_NUMBER (position, 0);
1088 /* Convert to distance from end of input. */
1089 pos = XINT (position) - XSTRING (init)->size;
1093 if (SYMBOLP (hist))
1095 histvar = hist;
1096 histpos = Qnil;
1098 else
1100 histvar = Fcar_safe (hist);
1101 histpos = Fcdr_safe (hist);
1103 if (NILP (histvar))
1104 histvar = Qminibuffer_history;
1105 if (NILP (histpos))
1106 XSETFASTINT (histpos, 0);
1108 val = read_minibuf (NILP (require_match)
1109 ? Vminibuffer_local_completion_map
1110 : Vminibuffer_local_must_match_map,
1111 init, prompt, make_number (pos), 0,
1112 histvar, histpos);
1113 return unbind_to (count, val);
1116 /* Temporarily display the string M at the end of the current
1117 minibuffer contents. This is used to display things like
1118 "[No Match]" when the user requests a completion for a prefix
1119 that has no possible completions, and other quick, unobtrusive
1120 messages. */
1122 temp_echo_area_glyphs (m)
1123 char *m;
1125 int osize = ZV;
1126 int opoint = PT;
1127 Lisp_Object oinhibit;
1128 oinhibit = Vinhibit_quit;
1130 /* Clear out any old echo-area message to make way for our new thing. */
1131 message (0);
1133 SET_PT (osize);
1134 insert_string (m);
1135 SET_PT (opoint);
1136 Vinhibit_quit = Qt;
1137 Fsit_for (make_number (2), Qnil, Qnil);
1138 del_range (osize, ZV);
1139 SET_PT (opoint);
1140 if (!NILP (Vquit_flag))
1142 Vquit_flag = Qnil;
1143 Vunread_command_events = Fcons (make_number (quit_char), Qnil);
1145 Vinhibit_quit = oinhibit;
1148 Lisp_Object Fminibuffer_completion_help ();
1149 Lisp_Object assoc_for_completion ();
1150 /* A subroutine of Fintern_soft. */
1151 extern Lisp_Object oblookup ();
1154 /* Test whether TXT is an exact completion. */
1155 Lisp_Object
1156 test_completion (txt)
1157 Lisp_Object txt;
1159 Lisp_Object tem;
1161 if (CONSP (Vminibuffer_completion_table)
1162 || NILP (Vminibuffer_completion_table))
1163 return assoc_for_completion (txt, Vminibuffer_completion_table);
1164 else if (VECTORP (Vminibuffer_completion_table))
1166 /* Bypass intern-soft as that loses for nil */
1167 tem = oblookup (Vminibuffer_completion_table,
1168 XSTRING (txt)->data, XSTRING (txt)->size);
1169 if (!SYMBOLP (tem))
1170 return Qnil;
1171 else if (!NILP (Vminibuffer_completion_predicate))
1172 return call1 (Vminibuffer_completion_predicate, tem);
1173 else
1174 return Qt;
1176 else
1177 return call3 (Vminibuffer_completion_table, txt,
1178 Vminibuffer_completion_predicate, Qlambda);
1181 /* returns:
1182 * 0 no possible completion
1183 * 1 was already an exact and unique completion
1184 * 3 was already an exact completion
1185 * 4 completed to an exact completion
1186 * 5 some completion happened
1187 * 6 no completion happened
1190 do_completion ()
1192 Lisp_Object completion, tem;
1193 int completedp;
1194 Lisp_Object last;
1195 struct gcpro gcpro1, gcpro2;
1197 completion = Ftry_completion (Fbuffer_string (), Vminibuffer_completion_table,
1198 Vminibuffer_completion_predicate);
1199 last = last_exact_completion;
1200 last_exact_completion = Qnil;
1202 GCPRO2 (completion, last);
1204 if (NILP (completion))
1206 bitch_at_user ();
1207 temp_echo_area_glyphs (" [No match]");
1208 UNGCPRO;
1209 return 0;
1212 if (EQ (completion, Qt)) /* exact and unique match */
1214 UNGCPRO;
1215 return 1;
1218 /* compiler bug */
1219 tem = Fstring_equal (completion, Fbuffer_string());
1220 if (completedp = NILP (tem))
1222 Ferase_buffer (); /* Some completion happened */
1223 Finsert (1, &completion);
1226 /* It did find a match. Do we match some possibility exactly now? */
1227 tem = test_completion (Fbuffer_string ());
1228 if (NILP (tem))
1230 /* not an exact match */
1231 UNGCPRO;
1232 if (completedp)
1233 return 5;
1234 else if (auto_help)
1235 Fminibuffer_completion_help ();
1236 else
1237 temp_echo_area_glyphs (" [Next char not unique]");
1238 return 6;
1240 else if (completedp)
1242 UNGCPRO;
1243 return 4;
1245 /* If the last exact completion and this one were the same,
1246 it means we've already given a "Complete but not unique"
1247 message and the user's hit TAB again, so now we give him help. */
1248 last_exact_completion = completion;
1249 if (!NILP (last))
1251 tem = Fbuffer_string ();
1252 if (!NILP (Fequal (tem, last)))
1253 Fminibuffer_completion_help ();
1255 UNGCPRO;
1256 return 3;
1259 /* Like assoc but assumes KEY is a string, and ignores case if appropriate. */
1261 Lisp_Object
1262 assoc_for_completion (key, list)
1263 register Lisp_Object key;
1264 Lisp_Object list;
1266 register Lisp_Object tail;
1268 if (completion_ignore_case)
1269 key = Fupcase (key);
1271 for (tail = list; !NILP (tail); tail = Fcdr (tail))
1273 register Lisp_Object elt, tem, thiscar;
1274 elt = Fcar (tail);
1275 if (!CONSP (elt)) continue;
1276 thiscar = Fcar (elt);
1277 if (!STRINGP (thiscar))
1278 continue;
1279 if (completion_ignore_case)
1280 thiscar = Fupcase (thiscar);
1281 tem = Fequal (thiscar, key);
1282 if (!NILP (tem)) return elt;
1283 QUIT;
1285 return Qnil;
1288 DEFUN ("minibuffer-complete", Fminibuffer_complete, Sminibuffer_complete, 0, 0, "",
1289 "Complete the minibuffer contents as far as possible.\n\
1290 Return nil if there is no valid completion, else t.\n\
1291 If no characters can be completed, display a list of possible completions.\n\
1292 If you repeat this command after it displayed such a list,\n\
1293 scroll the window of possible completions.")
1296 register int i;
1297 Lisp_Object window, tem;
1299 /* If the previous command was not this, then mark the completion
1300 buffer obsolete. */
1301 if (! EQ (current_kboard->Vlast_command, this_command))
1302 Vminibuf_scroll_window = Qnil;
1304 window = Vminibuf_scroll_window;
1305 /* If there's a fresh completion window with a live buffer,
1306 and this command is repeated, scroll that window. */
1307 if (! NILP (window) && ! NILP (XWINDOW (window)->buffer)
1308 && !NILP (XBUFFER (XWINDOW (window)->buffer)->name))
1310 struct buffer *obuf = current_buffer;
1312 Fset_buffer (XWINDOW (window)->buffer);
1313 tem = Fpos_visible_in_window_p (make_number (ZV), window);
1314 if (! NILP (tem))
1315 /* If end is in view, scroll up to the beginning. */
1316 Fset_window_start (window, BEGV, Qnil);
1317 else
1318 /* Else scroll down one screen. */
1319 Fscroll_other_window (Qnil);
1321 set_buffer_internal (obuf);
1322 return Qnil;
1325 i = do_completion ();
1326 switch (i)
1328 case 0:
1329 return Qnil;
1331 case 1:
1332 temp_echo_area_glyphs (" [Sole completion]");
1333 break;
1335 case 3:
1336 temp_echo_area_glyphs (" [Complete, but not unique]");
1337 break;
1340 return Qt;
1343 /* Subroutines of Fminibuffer_complete_and_exit. */
1345 /* This one is called by internal_condition_case to do the real work. */
1347 Lisp_Object
1348 complete_and_exit_1 ()
1350 return make_number (do_completion ());
1353 /* This one is called by internal_condition_case if an error happens.
1354 Pretend the current value is an exact match. */
1356 Lisp_Object
1357 complete_and_exit_2 (ignore)
1358 Lisp_Object ignore;
1360 return make_number (1);
1363 DEFUN ("minibuffer-complete-and-exit", Fminibuffer_complete_and_exit,
1364 Sminibuffer_complete_and_exit, 0, 0, "",
1365 "If the minibuffer contents is a valid completion then exit.\n\
1366 Otherwise try to complete it. If completion leads to a valid completion,\n\
1367 a repetition of this command will exit.")
1370 register int i;
1371 Lisp_Object val;
1373 /* Allow user to specify null string */
1374 if (BEGV == ZV)
1375 goto exit;
1377 if (!NILP (test_completion (Fbuffer_string ())))
1378 goto exit;
1380 /* Call do_completion, but ignore errors. */
1381 val = internal_condition_case (complete_and_exit_1, Qerror,
1382 complete_and_exit_2);
1384 i = XFASTINT (val);
1385 switch (i)
1387 case 1:
1388 case 3:
1389 goto exit;
1391 case 4:
1392 if (!NILP (Vminibuffer_completion_confirm))
1394 temp_echo_area_glyphs (" [Confirm]");
1395 return Qnil;
1397 else
1398 goto exit;
1400 default:
1401 return Qnil;
1403 exit:
1404 Fthrow (Qexit, Qnil);
1405 /* NOTREACHED */
1408 DEFUN ("minibuffer-complete-word", Fminibuffer_complete_word, Sminibuffer_complete_word,
1409 0, 0, "",
1410 "Complete the minibuffer contents at most a single word.\n\
1411 After one word is completed as much as possible, a space or hyphen\n\
1412 is added, provided that matches some possible completion.\n\
1413 Return nil if there is no valid completion, else t.")
1416 Lisp_Object completion, tem;
1417 register int i;
1418 register unsigned char *completion_string;
1419 struct gcpro gcpro1, gcpro2;
1421 /* We keep calling Fbuffer_string rather than arrange for GC to
1422 hold onto a pointer to one of the strings thus made. */
1424 completion = Ftry_completion (Fbuffer_string (),
1425 Vminibuffer_completion_table,
1426 Vminibuffer_completion_predicate);
1427 if (NILP (completion))
1429 bitch_at_user ();
1430 temp_echo_area_glyphs (" [No match]");
1431 return Qnil;
1433 if (EQ (completion, Qt))
1434 return Qnil;
1436 #if 0 /* How the below code used to look, for reference. */
1437 tem = Fbuffer_string ();
1438 b = XSTRING (tem)->data;
1439 i = ZV - 1 - XSTRING (completion)->size;
1440 p = XSTRING (completion)->data;
1441 if (i > 0 ||
1442 0 <= scmp (b, p, ZV - 1))
1444 i = 1;
1445 /* Set buffer to longest match of buffer tail and completion head. */
1446 while (0 <= scmp (b + i, p, ZV - 1 - i))
1447 i++;
1448 del_range (1, i + 1);
1449 SET_PT (ZV);
1451 #else /* Rewritten code */
1453 register unsigned char *buffer_string;
1454 int buffer_length, completion_length;
1456 tem = Fbuffer_string ();
1457 GCPRO2 (completion, tem);
1458 /* If reading a file name,
1459 expand any $ENVVAR refs in the buffer and in TEM. */
1460 if (EQ (Vminibuffer_completion_table, Qread_file_name_internal))
1462 Lisp_Object substituted;
1463 substituted = Fsubstitute_in_file_name (tem);
1464 if (! EQ (substituted, tem))
1466 tem = substituted;
1467 Ferase_buffer ();
1468 insert_from_string (tem, 0, XSTRING (tem)->size, 0);
1471 buffer_string = XSTRING (tem)->data;
1472 completion_string = XSTRING (completion)->data;
1473 buffer_length = XSTRING (tem)->size; /* ie ZV - BEGV */
1474 completion_length = XSTRING (completion)->size;
1475 i = buffer_length - completion_length;
1476 /* Mly: I don't understand what this is supposed to do AT ALL */
1477 if (i > 0 ||
1478 0 <= scmp (buffer_string, completion_string, buffer_length))
1480 /* Set buffer to longest match of buffer tail and completion head. */
1481 if (i <= 0) i = 1;
1482 buffer_string += i;
1483 buffer_length -= i;
1484 while (0 <= scmp (buffer_string++, completion_string, buffer_length--))
1485 i++;
1486 del_range (1, i + 1);
1487 SET_PT (ZV);
1489 UNGCPRO;
1491 #endif /* Rewritten code */
1492 i = ZV - BEGV;
1494 /* If completion finds next char not unique,
1495 consider adding a space or a hyphen. */
1496 if (i == XSTRING (completion)->size)
1498 GCPRO1 (completion);
1499 tem = Ftry_completion (concat2 (Fbuffer_string (), build_string (" ")),
1500 Vminibuffer_completion_table,
1501 Vminibuffer_completion_predicate);
1502 UNGCPRO;
1504 if (STRINGP (tem))
1505 completion = tem;
1506 else
1508 GCPRO1 (completion);
1509 tem =
1510 Ftry_completion (concat2 (Fbuffer_string (), build_string ("-")),
1511 Vminibuffer_completion_table,
1512 Vminibuffer_completion_predicate);
1513 UNGCPRO;
1515 if (STRINGP (tem))
1516 completion = tem;
1520 /* Now find first word-break in the stuff found by completion.
1521 i gets index in string of where to stop completing. */
1523 completion_string = XSTRING (completion)->data;
1525 for (; i < XSTRING (completion)->size; i++)
1526 if (SYNTAX (completion_string[i]) != Sword) break;
1527 if (i < XSTRING (completion)->size)
1528 i = i + 1;
1530 /* If got no characters, print help for user. */
1532 if (i == ZV - BEGV)
1534 if (auto_help)
1535 Fminibuffer_completion_help ();
1536 return Qnil;
1539 /* Otherwise insert in minibuffer the chars we got */
1541 Ferase_buffer ();
1542 insert_from_string (completion, 0, i, 1);
1543 return Qt;
1546 DEFUN ("display-completion-list", Fdisplay_completion_list, Sdisplay_completion_list,
1547 1, 1, 0,
1548 "Display the list of completions, COMPLETIONS, using `standard-output'.\n\
1549 Each element may be just a symbol or string\n\
1550 or may be a list of two strings to be printed as if concatenated.\n\
1551 `standard-output' must be a buffer.\n\
1552 At the end, run the normal hook `completion-setup-hook'.\n\
1553 It can find the completion buffer in `standard-output'.")
1554 (completions)
1555 Lisp_Object completions;
1557 Lisp_Object tail, elt;
1558 register int i;
1559 int column = 0;
1560 struct gcpro gcpro1, gcpro2;
1561 struct buffer *old = current_buffer;
1562 int first = 1;
1564 /* Note that (when it matters) every variable
1565 points to a non-string that is pointed to by COMPLETIONS,
1566 except for ELT. ELT can be pointing to a string
1567 when terpri or Findent_to calls a change hook. */
1568 elt = Qnil;
1569 GCPRO2 (completions, elt);
1571 if (BUFFERP (Vstandard_output))
1572 set_buffer_internal (XBUFFER (Vstandard_output));
1574 if (NILP (completions))
1575 write_string ("There are no possible completions of what you have typed.",
1576 -1);
1577 else
1579 write_string ("Possible completions are:", -1);
1580 for (tail = completions, i = 0; !NILP (tail); tail = Fcdr (tail), i++)
1582 Lisp_Object tem;
1583 int length;
1584 Lisp_Object startpos, endpos;
1586 elt = Fcar (tail);
1587 /* Compute the length of this element. */
1588 if (CONSP (elt))
1590 tem = Fcar (elt);
1591 CHECK_STRING (tem, 0);
1592 length = XINT (XSTRING (tem)->size);
1594 tem = Fcar (Fcdr (elt));
1595 CHECK_STRING (tem, 0);
1596 length += XINT (XSTRING (tem)->size);
1598 else
1600 CHECK_STRING (elt, 0);
1601 length = XINT (XSTRING (elt)->size);
1604 /* This does a bad job for narrower than usual windows.
1605 Sadly, the window it will appear in is not known
1606 until after the text has been made. */
1608 if (BUFFERP (Vstandard_output))
1609 XSETINT (startpos, BUF_PT (XBUFFER (Vstandard_output)));
1611 /* If the previous completion was very wide,
1612 or we have two on this line already,
1613 don't put another on the same line. */
1614 if (column > 33 || first
1615 /* If this is really wide, don't put it second on a line. */
1616 || column > 0 && length > 45)
1618 Fterpri (Qnil);
1619 column = 0;
1621 /* Otherwise advance to column 35. */
1622 else
1624 if (BUFFERP (Vstandard_output))
1626 tem = Findent_to (make_number (35), make_number (2));
1628 column = XINT (tem);
1630 else
1634 write_string (" ", -1);
1635 column++;
1637 while (column < 35);
1641 if (BUFFERP (Vstandard_output))
1643 XSETINT (endpos, BUF_PT (XBUFFER (Vstandard_output)));
1644 Fset_text_properties (startpos, endpos,
1645 Qnil, Vstandard_output);
1648 /* Output this element and update COLUMN. */
1649 if (CONSP (elt))
1651 Fprinc (Fcar (elt), Qnil);
1652 Fprinc (Fcar (Fcdr (elt)), Qnil);
1654 else
1655 Fprinc (elt, Qnil);
1657 column += length;
1659 /* If output is to a buffer, recompute COLUMN in a way
1660 that takes account of character widths. */
1661 if (BUFFERP (Vstandard_output))
1663 tem = Fcurrent_column ();
1664 column = XINT (tem);
1667 first = 0;
1671 UNGCPRO;
1673 if (BUFFERP (Vstandard_output))
1674 set_buffer_internal (old);
1676 if (!NILP (Vrun_hooks))
1677 call1 (Vrun_hooks, intern ("completion-setup-hook"));
1679 return Qnil;
1682 DEFUN ("minibuffer-completion-help", Fminibuffer_completion_help, Sminibuffer_completion_help,
1683 0, 0, "",
1684 "Display a list of possible completions of the current minibuffer contents.")
1687 Lisp_Object completions;
1689 message ("Making completion list...");
1690 completions = Fall_completions (Fbuffer_string (),
1691 Vminibuffer_completion_table,
1692 Vminibuffer_completion_predicate,
1693 Qt);
1694 echo_area_glyphs = 0;
1696 if (NILP (completions))
1698 bitch_at_user ();
1699 temp_echo_area_glyphs (" [No completions]");
1701 else
1702 internal_with_output_to_temp_buffer ("*Completions*",
1703 Fdisplay_completion_list,
1704 Fsort (completions, Qstring_lessp));
1705 return Qnil;
1708 DEFUN ("self-insert-and-exit", Fself_insert_and_exit, Sself_insert_and_exit, 0, 0, "",
1709 "Terminate minibuffer input.")
1712 if (INTEGERP (last_command_char))
1713 internal_self_insert (last_command_char, 0);
1714 else
1715 bitch_at_user ();
1717 Fthrow (Qexit, Qnil);
1720 DEFUN ("exit-minibuffer", Fexit_minibuffer, Sexit_minibuffer, 0, 0, "",
1721 "Terminate this minibuffer argument.")
1724 Fthrow (Qexit, Qnil);
1727 DEFUN ("minibuffer-depth", Fminibuffer_depth, Sminibuffer_depth, 0, 0, 0,
1728 "Return current depth of activations of minibuffer, a nonnegative integer.")
1731 return make_number (minibuf_level);
1734 DEFUN ("minibuffer-prompt", Fminibuffer_prompt, Sminibuffer_prompt, 0, 0, 0,
1735 "Return the prompt string of the currently-active minibuffer.\n\
1736 If no minibuffer is active, return nil.")
1739 return Fcopy_sequence (minibuf_prompt);
1742 DEFUN ("minibuffer-prompt-width", Fminibuffer_prompt_width,
1743 Sminibuffer_prompt_width, 0, 0, 0,
1744 "Return the display width of the minibuffer prompt.")
1747 Lisp_Object width;
1748 XSETFASTINT (width, minibuf_prompt_width);
1749 return width;
1752 init_minibuf_once ()
1754 Vminibuffer_list = Qnil;
1755 staticpro (&Vminibuffer_list);
1758 syms_of_minibuf ()
1760 minibuf_level = 0;
1761 minibuf_prompt = Qnil;
1762 staticpro (&minibuf_prompt);
1764 minibuf_save_list = Qnil;
1765 staticpro (&minibuf_save_list);
1767 Qread_file_name_internal = intern ("read-file-name-internal");
1768 staticpro (&Qread_file_name_internal);
1770 Qminibuffer_completion_table = intern ("minibuffer-completion-table");
1771 staticpro (&Qminibuffer_completion_table);
1773 Qminibuffer_completion_confirm = intern ("minibuffer-completion-confirm");
1774 staticpro (&Qminibuffer_completion_confirm);
1776 Qminibuffer_completion_predicate = intern ("minibuffer-completion-predicate");
1777 staticpro (&Qminibuffer_completion_predicate);
1779 staticpro (&last_exact_completion);
1780 last_exact_completion = Qnil;
1782 staticpro (&last_minibuf_string);
1783 last_minibuf_string = Qnil;
1785 Quser_variable_p = intern ("user-variable-p");
1786 staticpro (&Quser_variable_p);
1788 Qminibuffer_history = intern ("minibuffer-history");
1789 staticpro (&Qminibuffer_history);
1791 Qminibuffer_setup_hook = intern ("minibuffer-setup-hook");
1792 staticpro (&Qminibuffer_setup_hook);
1794 Qminibuffer_exit_hook = intern ("minibuffer-exit-hook");
1795 staticpro (&Qminibuffer_exit_hook);
1797 DEFVAR_LISP ("minibuffer-setup-hook", &Vminibuffer_setup_hook,
1798 "Normal hook run just after entry to minibuffer.");
1799 Vminibuffer_setup_hook = Qnil;
1801 DEFVAR_LISP ("minibuffer-exit-hook", &Vminibuffer_exit_hook,
1802 "Normal hook run just after exit from minibuffer.");
1803 Vminibuffer_exit_hook = Qnil;
1805 DEFVAR_BOOL ("completion-auto-help", &auto_help,
1806 "*Non-nil means automatically provide help for invalid completion input.");
1807 auto_help = 1;
1809 DEFVAR_BOOL ("completion-ignore-case", &completion_ignore_case,
1810 "Non-nil means don't consider case significant in completion.");
1811 completion_ignore_case = 0;
1813 DEFVAR_BOOL ("enable-recursive-minibuffers", &enable_recursive_minibuffers,
1814 "*Non-nil means to allow minibuffer commands while in the minibuffer.\n\
1815 More precisely, this variable makes a difference when the minibuffer window\n\
1816 is the selected window. If you are in some other window, minibuffer commands\n\
1817 are allowed even if a minibuffer is active.");
1818 enable_recursive_minibuffers = 0;
1820 DEFVAR_LISP ("minibuffer-completion-table", &Vminibuffer_completion_table,
1821 "Alist or obarray used for completion in the minibuffer.\n\
1822 This becomes the ALIST argument to `try-completion' and `all-completion'.\n\
1824 The value may alternatively be a function, which is given three arguments:\n\
1825 STRING, the current buffer contents;\n\
1826 PREDICATE, the predicate for filtering possible matches;\n\
1827 CODE, which says what kind of things to do.\n\
1828 CODE can be nil, t or `lambda'.\n\
1829 nil means to return the best completion of STRING, or nil if there is none.\n\
1830 t means to return a list of all possible completions of STRING.\n\
1831 `lambda' means to return t if STRING is a valid completion as it stands.");
1832 Vminibuffer_completion_table = Qnil;
1834 DEFVAR_LISP ("minibuffer-completion-predicate", &Vminibuffer_completion_predicate,
1835 "Within call to `completing-read', this holds the PREDICATE argument.");
1836 Vminibuffer_completion_predicate = Qnil;
1838 DEFVAR_LISP ("minibuffer-completion-confirm", &Vminibuffer_completion_confirm,
1839 "Non-nil => demand confirmation of completion before exiting minibuffer.");
1840 Vminibuffer_completion_confirm = Qnil;
1842 DEFVAR_LISP ("minibuffer-help-form", &Vminibuffer_help_form,
1843 "Value that `help-form' takes on inside the minibuffer.");
1844 Vminibuffer_help_form = Qnil;
1846 DEFVAR_LISP ("minibuffer-history-variable", &Vminibuffer_history_variable,
1847 "History list symbol to add minibuffer values to.\n\
1848 Each string of minibuffer input, as it appears on exit from the minibuffer,\n\
1849 is added with\n\
1850 (set minibuffer-history-variable\n\
1851 (cons STRING (symbol-value minibuffer-history-variable)))");
1852 XSETFASTINT (Vminibuffer_history_variable, 0);
1854 DEFVAR_LISP ("minibuffer-history-position", &Vminibuffer_history_position,
1855 "Current position of redoing in the history list.");
1856 Vminibuffer_history_position = Qnil;
1858 DEFVAR_BOOL ("minibuffer-auto-raise", &minibuffer_auto_raise,
1859 "*Non-nil means entering the minibuffer raises the minibuffer's frame.");
1860 minibuffer_auto_raise = 0;
1862 DEFVAR_LISP ("completion-regexp-list", &Vcompletion_regexp_list,
1863 "List of regexps that should restrict possible completions.");
1864 Vcompletion_regexp_list = Qnil;
1866 defsubr (&Sset_minibuffer_window);
1867 defsubr (&Sread_from_minibuffer);
1868 defsubr (&Seval_minibuffer);
1869 defsubr (&Sread_minibuffer);
1870 defsubr (&Sread_string);
1871 defsubr (&Sread_command);
1872 defsubr (&Sread_variable);
1873 defsubr (&Sread_buffer);
1874 defsubr (&Sread_no_blanks_input);
1875 defsubr (&Sminibuffer_depth);
1876 defsubr (&Sminibuffer_prompt);
1877 defsubr (&Sminibuffer_prompt_width);
1879 defsubr (&Stry_completion);
1880 defsubr (&Sall_completions);
1881 defsubr (&Scompleting_read);
1882 defsubr (&Sminibuffer_complete);
1883 defsubr (&Sminibuffer_complete_word);
1884 defsubr (&Sminibuffer_complete_and_exit);
1885 defsubr (&Sdisplay_completion_list);
1886 defsubr (&Sminibuffer_completion_help);
1888 defsubr (&Sself_insert_and_exit);
1889 defsubr (&Sexit_minibuffer);
1893 keys_of_minibuf ()
1895 initial_define_key (Vminibuffer_local_map, Ctl ('g'),
1896 "abort-recursive-edit");
1897 initial_define_key (Vminibuffer_local_map, Ctl ('m'),
1898 "exit-minibuffer");
1899 initial_define_key (Vminibuffer_local_map, Ctl ('j'),
1900 "exit-minibuffer");
1902 initial_define_key (Vminibuffer_local_ns_map, Ctl ('g'),
1903 "abort-recursive-edit");
1904 initial_define_key (Vminibuffer_local_ns_map, Ctl ('m'),
1905 "exit-minibuffer");
1906 initial_define_key (Vminibuffer_local_ns_map, Ctl ('j'),
1907 "exit-minibuffer");
1909 initial_define_key (Vminibuffer_local_ns_map, ' ',
1910 "exit-minibuffer");
1911 initial_define_key (Vminibuffer_local_ns_map, '\t',
1912 "exit-minibuffer");
1913 initial_define_key (Vminibuffer_local_ns_map, '?',
1914 "self-insert-and-exit");
1916 initial_define_key (Vminibuffer_local_completion_map, Ctl ('g'),
1917 "abort-recursive-edit");
1918 initial_define_key (Vminibuffer_local_completion_map, Ctl ('m'),
1919 "exit-minibuffer");
1920 initial_define_key (Vminibuffer_local_completion_map, Ctl ('j'),
1921 "exit-minibuffer");
1923 initial_define_key (Vminibuffer_local_completion_map, '\t',
1924 "minibuffer-complete");
1925 initial_define_key (Vminibuffer_local_completion_map, ' ',
1926 "minibuffer-complete-word");
1927 initial_define_key (Vminibuffer_local_completion_map, '?',
1928 "minibuffer-completion-help");
1930 initial_define_key (Vminibuffer_local_must_match_map, Ctl ('g'),
1931 "abort-recursive-edit");
1932 initial_define_key (Vminibuffer_local_must_match_map, Ctl ('m'),
1933 "minibuffer-complete-and-exit");
1934 initial_define_key (Vminibuffer_local_must_match_map, Ctl ('j'),
1935 "minibuffer-complete-and-exit");
1936 initial_define_key (Vminibuffer_local_must_match_map, '\t',
1937 "minibuffer-complete");
1938 initial_define_key (Vminibuffer_local_must_match_map, ' ',
1939 "minibuffer-complete-word");
1940 initial_define_key (Vminibuffer_local_must_match_map, '?',
1941 "minibuffer-completion-help");