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