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