]> code.delx.au - gnu-emacs/blob - src/minibuf.c
(minibuffer_completion_contents): Add return type.
[gnu-emacs] / src / minibuf.c
1 /* Minibuffer input and completion.
2 Copyright (C) 1985, 1986, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
3 2000, 2001 Free Software Foundation, Inc.
4
5 This file is part of GNU Emacs.
6
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
21
22
23 #include <config.h>
24 #include <stdio.h>
25
26 #include "lisp.h"
27 #include "commands.h"
28 #include "buffer.h"
29 #include "charset.h"
30 #include "dispextern.h"
31 #include "keyboard.h"
32 #include "frame.h"
33 #include "window.h"
34 #include "syntax.h"
35 #include "intervals.h"
36 #include "keymap.h"
37
38 extern int quit_char;
39
40 /* List of buffers for use as minibuffers.
41 The first element of the list is used for the outermost minibuffer
42 invocation, the next element is used for a recursive minibuffer
43 invocation, etc. The list is extended at the end as deeper
44 minibuffer recursions are encountered. */
45
46 Lisp_Object Vminibuffer_list;
47
48 /* Data to remember during recursive minibuffer invocations */
49
50 Lisp_Object minibuf_save_list;
51
52 /* Depth in minibuffer invocations. */
53
54 int minibuf_level;
55
56 /* Nonzero means display completion help for invalid input. */
57
58 Lisp_Object Vcompletion_auto_help;
59
60 /* The maximum length of a minibuffer history. */
61
62 Lisp_Object Qhistory_length, Vhistory_length;
63
64 /* Fread_minibuffer leaves the input here as a string. */
65
66 Lisp_Object last_minibuf_string;
67
68 /* Nonzero means let functions called when within a minibuffer
69 invoke recursive minibuffers (to read arguments, or whatever) */
70
71 int enable_recursive_minibuffers;
72
73 /* Nonzero means don't ignore text properties
74 in Fread_from_minibuffer. */
75
76 int minibuffer_allow_text_properties;
77
78 /* help-form is bound to this while in the minibuffer. */
79
80 Lisp_Object Vminibuffer_help_form;
81
82 /* Variable which is the history list to add minibuffer values to. */
83
84 Lisp_Object Vminibuffer_history_variable;
85
86 /* Current position in the history list (adjusted by M-n and M-p). */
87
88 Lisp_Object Vminibuffer_history_position;
89
90 /* Text properties that are added to minibuffer prompts.
91 These are in addition to the basic `field' property, and stickiness
92 properties. */
93
94 Lisp_Object Vminibuffer_prompt_properties;
95
96 Lisp_Object Qminibuffer_history, Qbuffer_name_history;
97
98 Lisp_Object Qread_file_name_internal;
99
100 /* Normal hooks for entry to and exit from minibuffer. */
101
102 Lisp_Object Qminibuffer_setup_hook, Vminibuffer_setup_hook;
103 Lisp_Object Qminibuffer_exit_hook, Vminibuffer_exit_hook;
104
105 /* Function to call to read a buffer name. */
106 Lisp_Object Vread_buffer_function;
107
108 /* Nonzero means completion ignores case. */
109
110 int completion_ignore_case;
111
112 /* List of regexps that should restrict possible completions. */
113
114 Lisp_Object Vcompletion_regexp_list;
115
116 /* Nonzero means raise the minibuffer frame when the minibuffer
117 is entered. */
118
119 int minibuffer_auto_raise;
120
121 /* If last completion attempt reported "Complete but not unique"
122 then this is the string completed then; otherwise this is nil. */
123
124 static Lisp_Object last_exact_completion;
125
126 extern Lisp_Object Voverriding_local_map;
127
128 Lisp_Object Quser_variable_p;
129
130 Lisp_Object Qminibuffer_default;
131
132 Lisp_Object Qcurrent_input_method, Qactivate_input_method;
133
134 extern Lisp_Object Qmouse_face;
135
136 extern Lisp_Object Qfield;
137 \f
138 /* Put minibuf on currently selected frame's minibuffer.
139 We do this whenever the user starts a new minibuffer
140 or when a minibuffer exits. */
141
142 void
143 choose_minibuf_frame ()
144 {
145 if (FRAMEP (selected_frame)
146 && FRAME_LIVE_P (XFRAME (selected_frame))
147 && !EQ (minibuf_window, XFRAME (selected_frame)->minibuffer_window))
148 {
149 struct frame *sf = XFRAME (selected_frame);
150 Lisp_Object buffer;
151
152 /* I don't think that any frames may validly have a null minibuffer
153 window anymore. */
154 if (NILP (sf->minibuffer_window))
155 abort ();
156
157 /* Under X, we come here with minibuf_window being the
158 minibuffer window of the unused termcap window created in
159 init_window_once. That window doesn't have a buffer. */
160 buffer = XWINDOW (minibuf_window)->buffer;
161 if (BUFFERP (buffer))
162 Fset_window_buffer (sf->minibuffer_window, buffer);
163 minibuf_window = sf->minibuffer_window;
164 }
165
166 /* Make sure no other frame has a minibuffer as its selected window,
167 because the text would not be displayed in it, and that would be
168 confusing. Only allow the selected frame to do this,
169 and that only if the minibuffer is active. */
170 {
171 Lisp_Object tail, frame;
172
173 FOR_EACH_FRAME (tail, frame)
174 if (MINI_WINDOW_P (XWINDOW (FRAME_SELECTED_WINDOW (XFRAME (frame))))
175 && !(EQ (frame, selected_frame)
176 && minibuf_level > 0))
177 Fset_frame_selected_window (frame, Fframe_first_window (frame));
178 }
179 }
180
181 Lisp_Object
182 choose_minibuf_frame_1 (ignore)
183 Lisp_Object ignore;
184 {
185 choose_minibuf_frame ();
186 return Qnil;
187 }
188
189 DEFUN ("set-minibuffer-window", Fset_minibuffer_window,
190 Sset_minibuffer_window, 1, 1, 0,
191 doc: /* Specify which minibuffer window to use for the minibuffer.
192 This effects where the minibuffer is displayed if you put text in it
193 without invoking the usual minibuffer commands. */)
194 (window)
195 Lisp_Object window;
196 {
197 CHECK_WINDOW (window);
198 if (! MINI_WINDOW_P (XWINDOW (window)))
199 error ("Window is not a minibuffer window");
200
201 minibuf_window = window;
202
203 return window;
204 }
205
206 \f
207 /* Actual minibuffer invocation. */
208
209 static Lisp_Object read_minibuf_unwind P_ ((Lisp_Object));
210 static Lisp_Object read_minibuf P_ ((Lisp_Object, Lisp_Object,
211 Lisp_Object, Lisp_Object,
212 int, Lisp_Object,
213 Lisp_Object, Lisp_Object,
214 int, int));
215 static Lisp_Object read_minibuf_noninteractive P_ ((Lisp_Object, Lisp_Object,
216 Lisp_Object, Lisp_Object,
217 int, Lisp_Object,
218 Lisp_Object, Lisp_Object,
219 int, int));
220 static Lisp_Object string_to_object P_ ((Lisp_Object, Lisp_Object));
221
222
223 /* Read a Lisp object from VAL and return it. If VAL is an empty
224 string, and DEFALT is a string, read from DEFALT instead of VAL. */
225
226 static Lisp_Object
227 string_to_object (val, defalt)
228 Lisp_Object val, defalt;
229 {
230 struct gcpro gcpro1, gcpro2;
231 Lisp_Object expr_and_pos;
232 int pos;
233
234 GCPRO2 (val, defalt);
235
236 if (STRINGP (val) && XSTRING (val)->size == 0
237 && STRINGP (defalt))
238 val = defalt;
239
240 expr_and_pos = Fread_from_string (val, Qnil, Qnil);
241 pos = XINT (Fcdr (expr_and_pos));
242 if (pos != XSTRING (val)->size)
243 {
244 /* Ignore trailing whitespace; any other trailing junk
245 is an error. */
246 int i;
247 pos = string_char_to_byte (val, pos);
248 for (i = pos; i < STRING_BYTES (XSTRING (val)); i++)
249 {
250 int c = XSTRING (val)->data[i];
251 if (c != ' ' && c != '\t' && c != '\n')
252 error ("Trailing garbage following expression");
253 }
254 }
255
256 val = Fcar (expr_and_pos);
257 RETURN_UNGCPRO (val);
258 }
259
260
261 /* Like read_minibuf but reading from stdin. This function is called
262 from read_minibuf to do the job if noninteractive. */
263
264 static Lisp_Object
265 read_minibuf_noninteractive (map, initial, prompt, backup_n, expflag,
266 histvar, histpos, defalt, allow_props,
267 inherit_input_method)
268 Lisp_Object map;
269 Lisp_Object initial;
270 Lisp_Object prompt;
271 Lisp_Object backup_n;
272 int expflag;
273 Lisp_Object histvar;
274 Lisp_Object histpos;
275 Lisp_Object defalt;
276 int allow_props;
277 int inherit_input_method;
278 {
279 int size, len;
280 char *line, *s;
281 Lisp_Object val;
282
283 fprintf (stdout, "%s", XSTRING (prompt)->data);
284 fflush (stdout);
285
286 val = Qnil;
287 size = 100;
288 len = 0;
289 line = (char *) xmalloc (size * sizeof *line);
290 while ((s = fgets (line + len, size - len, stdin)) != NULL
291 && (len = strlen (line),
292 len == size - 1 && line[len - 1] != '\n'))
293 {
294 size *= 2;
295 line = (char *) xrealloc (line, size);
296 }
297
298 if (s)
299 {
300 len = strlen (line);
301
302 if (len > 0 && line[len - 1] == '\n')
303 line[--len] = '\0';
304
305 val = build_string (line);
306 xfree (line);
307 }
308 else
309 {
310 xfree (line);
311 error ("Error reading from stdin");
312 }
313
314 /* If Lisp form desired instead of string, parse it. */
315 if (expflag)
316 val = string_to_object (val, defalt);
317
318 return val;
319 }
320 \f
321 DEFUN ("minibuffer-prompt-end", Fminibuffer_prompt_end,
322 Sminibuffer_prompt_end, 0, 0, 0,
323 doc: /* Return the buffer position of the end of the minibuffer prompt.
324 Return (point-min) if current buffer is not a mini-buffer. */)
325 ()
326 {
327 /* This function is written to be most efficient when there's a prompt. */
328 Lisp_Object beg = make_number (BEGV);
329 Lisp_Object end = Ffield_end (beg, Qnil, Qnil);
330
331 if (XINT (end) == ZV && NILP (Fget_char_property (beg, Qfield, Qnil)))
332 return beg;
333 else
334 return end;
335 }
336
337 DEFUN ("minibuffer-contents", Fminibuffer_contents,
338 Sminibuffer_contents, 0, 0, 0,
339 doc: /* Return the user input in a minibuffer as a string.
340 The current buffer must be a minibuffer. */)
341 ()
342 {
343 int prompt_end = XINT (Fminibuffer_prompt_end ());
344 return make_buffer_string (prompt_end, ZV, 1);
345 }
346
347 DEFUN ("minibuffer-contents-no-properties", Fminibuffer_contents_no_properties,
348 Sminibuffer_contents_no_properties, 0, 0, 0,
349 doc: /* Return the user input in a minibuffer as a string, without text-properties.
350 The current buffer must be a minibuffer. */)
351 ()
352 {
353 int prompt_end = XINT (Fminibuffer_prompt_end ());
354 return make_buffer_string (prompt_end, ZV, 0);
355 }
356
357 DEFUN ("delete-minibuffer-contents", Fdelete_minibuffer_contents,
358 Sdelete_minibuffer_contents, 0, 0, 0,
359 doc: /* Delete all user input in a minibuffer.
360 The current buffer must be a minibuffer. */)
361 ()
362 {
363 int prompt_end = XINT (Fminibuffer_prompt_end ());
364 if (prompt_end < ZV)
365 del_range (prompt_end, ZV);
366 return Qnil;
367 }
368
369 /* Get the text in the minibuffer before point.
370 That is what completion commands operate on. */
371
372 Lisp_Object
373 minibuffer_completion_contents ()
374 {
375 int prompt_end = XINT (Fminibuffer_prompt_end ());
376 return make_buffer_string (prompt_end, PT, 1);
377 }
378 \f
379 /* Read from the minibuffer using keymap MAP, initial contents INITIAL
380 (a string), putting point minus BACKUP_N bytes from the end of INITIAL,
381 prompting with PROMPT (a string), using history list HISTVAR
382 with initial position HISTPOS. (BACKUP_N should be <= 0.)
383
384 Normally return the result as a string (the text that was read),
385 but if EXPFLAG is nonzero, read it and return the object read.
386 If HISTVAR is given, save the value read on that history only if it doesn't
387 match the front of that history list exactly. The value is pushed onto
388 the list as the string that was read.
389
390 DEFALT specifies te default value for the sake of history commands.
391
392 If ALLOW_PROPS is nonzero, we do not throw away text properties.
393
394 if INHERIT_INPUT_METHOD is nonzeor, the minibuffer inherit the
395 current input method. */
396
397 static Lisp_Object
398 read_minibuf (map, initial, prompt, backup_n, expflag,
399 histvar, histpos, defalt, allow_props, inherit_input_method)
400 Lisp_Object map;
401 Lisp_Object initial;
402 Lisp_Object prompt;
403 Lisp_Object backup_n;
404 int expflag;
405 Lisp_Object histvar;
406 Lisp_Object histpos;
407 Lisp_Object defalt;
408 int allow_props;
409 int inherit_input_method;
410 {
411 Lisp_Object val;
412 int count = specpdl_ptr - specpdl;
413 Lisp_Object mini_frame, ambient_dir, minibuffer, input_method;
414 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
415 Lisp_Object enable_multibyte;
416 extern Lisp_Object Qfront_sticky;
417 extern Lisp_Object Qrear_nonsticky;
418
419 specbind (Qminibuffer_default, defalt);
420
421 single_kboard_state ();
422 #ifdef HAVE_X_WINDOWS
423 if (display_hourglass_p)
424 cancel_hourglass ();
425 #endif
426
427 val = Qnil;
428 ambient_dir = current_buffer->directory;
429 input_method = Qnil;
430 enable_multibyte = Qnil;
431
432 /* Don't need to protect PROMPT, HISTVAR, and HISTPOS because we
433 store them away before we can GC. Don't need to protect
434 BACKUP_N because we use the value only if it is an integer. */
435 GCPRO5 (map, initial, val, ambient_dir, input_method);
436
437 if (!STRINGP (prompt))
438 prompt = empty_string;
439
440 if (!enable_recursive_minibuffers
441 && minibuf_level > 0)
442 {
443 if (EQ (selected_window, minibuf_window))
444 error ("Command attempted to use minibuffer while in minibuffer");
445 else
446 /* If we're in another window, cancel the minibuffer that's active. */
447 Fthrow (Qexit,
448 build_string ("Command attempted to use minibuffer while in minibuffer"));
449 }
450
451 if (noninteractive)
452 {
453 val = read_minibuf_noninteractive (map, initial, prompt, backup_n,
454 expflag, histvar, histpos, defalt,
455 allow_props, inherit_input_method);
456 return unbind_to (count, val);
457 }
458
459 /* Choose the minibuffer window and frame, and take action on them. */
460
461 choose_minibuf_frame ();
462
463 record_unwind_protect (choose_minibuf_frame_1, Qnil);
464
465 record_unwind_protect (Fset_window_configuration,
466 Fcurrent_window_configuration (Qnil));
467
468 /* If the minibuffer window is on a different frame, save that
469 frame's configuration too. */
470 mini_frame = WINDOW_FRAME (XWINDOW (minibuf_window));
471 if (!EQ (mini_frame, selected_frame))
472 record_unwind_protect (Fset_window_configuration,
473 Fcurrent_window_configuration (mini_frame));
474
475 /* If the minibuffer is on an iconified or invisible frame,
476 make it visible now. */
477 Fmake_frame_visible (mini_frame);
478
479 if (minibuffer_auto_raise)
480 Fraise_frame (mini_frame);
481
482 /* We have to do this after saving the window configuration
483 since that is what restores the current buffer. */
484
485 /* Arrange to restore a number of minibuffer-related variables.
486 We could bind each variable separately, but that would use lots of
487 specpdl slots. */
488 minibuf_save_list
489 = Fcons (Voverriding_local_map,
490 Fcons (minibuf_window, minibuf_save_list));
491 minibuf_save_list
492 = Fcons (minibuf_prompt,
493 Fcons (make_number (minibuf_prompt_width),
494 Fcons (Vhelp_form,
495 Fcons (Vcurrent_prefix_arg,
496 Fcons (Vminibuffer_history_position,
497 Fcons (Vminibuffer_history_variable,
498 minibuf_save_list))))));
499
500 record_unwind_protect (read_minibuf_unwind, Qnil);
501 minibuf_level++;
502
503 /* Now that we can restore all those variables, start changing them. */
504
505 minibuf_prompt_width = 0;
506 minibuf_prompt = Fcopy_sequence (prompt);
507 Vminibuffer_history_position = histpos;
508 Vminibuffer_history_variable = histvar;
509 Vhelp_form = Vminibuffer_help_form;
510
511 if (inherit_input_method)
512 {
513 /* `current-input-method' is buffer local. So, remember it in
514 INPUT_METHOD before changing the current buffer. */
515 input_method = Fsymbol_value (Qcurrent_input_method);
516 enable_multibyte = current_buffer->enable_multibyte_characters;
517 }
518
519 /* Switch to the minibuffer. */
520
521 minibuffer = get_minibuffer (minibuf_level);
522 Fset_buffer (minibuffer);
523
524 /* The current buffer's default directory is usually the right thing
525 for our minibuffer here. However, if you're typing a command at
526 a minibuffer-only frame when minibuf_level is zero, then buf IS
527 the current_buffer, so reset_buffer leaves buf's default
528 directory unchanged. This is a bummer when you've just started
529 up Emacs and buf's default directory is Qnil. Here's a hack; can
530 you think of something better to do? Find another buffer with a
531 better directory, and use that one instead. */
532 if (STRINGP (ambient_dir))
533 current_buffer->directory = ambient_dir;
534 else
535 {
536 Lisp_Object buf_list;
537
538 for (buf_list = Vbuffer_alist;
539 CONSP (buf_list);
540 buf_list = XCDR (buf_list))
541 {
542 Lisp_Object other_buf;
543
544 other_buf = XCDR (XCAR (buf_list));
545 if (STRINGP (XBUFFER (other_buf)->directory))
546 {
547 current_buffer->directory = XBUFFER (other_buf)->directory;
548 break;
549 }
550 }
551 }
552
553 if (!EQ (mini_frame, selected_frame))
554 Fredirect_frame_focus (selected_frame, mini_frame);
555
556 Vminibuf_scroll_window = selected_window;
557 if (minibuf_level == 1 || !EQ (minibuf_window, selected_window))
558 minibuf_selected_window = selected_window;
559 Fset_window_buffer (minibuf_window, Fcurrent_buffer ());
560 Fselect_window (minibuf_window);
561 XSETFASTINT (XWINDOW (minibuf_window)->hscroll, 0);
562
563 Fmake_local_variable (Qprint_escape_newlines);
564 print_escape_newlines = 1;
565
566 /* Erase the buffer. */
567 {
568 int count1 = BINDING_STACK_SIZE ();
569 specbind (Qinhibit_read_only, Qt);
570 specbind (Qinhibit_modification_hooks, Qt);
571 Ferase_buffer ();
572 unbind_to (count1, Qnil);
573 }
574
575 if (!NILP (current_buffer->enable_multibyte_characters)
576 && ! STRING_MULTIBYTE (minibuf_prompt))
577 minibuf_prompt = Fstring_make_multibyte (minibuf_prompt);
578
579 /* Insert the prompt, record where it ends. */
580 Finsert (1, &minibuf_prompt);
581 if (PT > BEG)
582 {
583 Fput_text_property (make_number (BEG), make_number (PT),
584 Qfront_sticky, Qt, Qnil);
585 Fput_text_property (make_number (BEG), make_number (PT),
586 Qrear_nonsticky, Qt, Qnil);
587 Fput_text_property (make_number (BEG), make_number (PT),
588 Qfield, Qt, Qnil);
589 Fadd_text_properties (make_number (BEG), make_number (PT),
590 Vminibuffer_prompt_properties, Qnil);
591 }
592
593 minibuf_prompt_width = (int) current_column (); /* iftc */
594
595 /* If appropriate, copy enable-multibyte-characters into the minibuffer. */
596 if (inherit_input_method)
597 current_buffer->enable_multibyte_characters = enable_multibyte;
598
599 /* Put in the initial input. */
600 if (!NILP (initial))
601 {
602 Finsert (1, &initial);
603 if (INTEGERP (backup_n))
604 Fforward_char (backup_n);
605 }
606
607 clear_message (1, 1);
608 current_buffer->keymap = map;
609
610 /* Turn on an input method stored in INPUT_METHOD if any. */
611 if (STRINGP (input_method) && !NILP (Ffboundp (Qactivate_input_method)))
612 call1 (Qactivate_input_method, input_method);
613
614 /* Run our hook, but not if it is empty.
615 (run-hooks would do nothing if it is empty,
616 but it's important to save time here in the usual case.) */
617 if (!NILP (Vminibuffer_setup_hook) && !EQ (Vminibuffer_setup_hook, Qunbound)
618 && !NILP (Vrun_hooks))
619 call1 (Vrun_hooks, Qminibuffer_setup_hook);
620
621 /* Don't allow the user to undo past this point. */
622 current_buffer->undo_list = Qnil;
623
624 recursive_edit_1 ();
625
626 /* If cursor is on the minibuffer line,
627 show the user we have exited by putting it in column 0. */
628 if (XWINDOW (minibuf_window)->cursor.vpos >= 0
629 && !noninteractive)
630 {
631 XWINDOW (minibuf_window)->cursor.hpos = 0;
632 XWINDOW (minibuf_window)->cursor.x = 0;
633 XWINDOW (minibuf_window)->must_be_updated_p = 1;
634 update_frame (XFRAME (selected_frame), 1, 1);
635 if (rif && rif->flush_display)
636 rif->flush_display (XFRAME (XWINDOW (minibuf_window)->frame));
637 }
638
639 /* Make minibuffer contents into a string. */
640 Fset_buffer (minibuffer);
641 if (allow_props)
642 val = Fminibuffer_contents ();
643 else
644 val = Fminibuffer_contents_no_properties ();
645
646 /* VAL is the string of minibuffer text. */
647
648 last_minibuf_string = val;
649
650 /* Add the value to the appropriate history list unless it is empty. */
651 if (XSTRING (val)->size != 0
652 && SYMBOLP (Vminibuffer_history_variable))
653 {
654 /* If the caller wanted to save the value read on a history list,
655 then do so if the value is not already the front of the list. */
656 Lisp_Object histval;
657
658 /* If variable is unbound, make it nil. */
659 if (EQ (SYMBOL_VALUE (Vminibuffer_history_variable), Qunbound))
660 Fset (Vminibuffer_history_variable, Qnil);
661
662 histval = Fsymbol_value (Vminibuffer_history_variable);
663
664 /* The value of the history variable must be a cons or nil. Other
665 values are unacceptable. We silently ignore these values. */
666 if (NILP (histval)
667 || (CONSP (histval)
668 && NILP (Fequal (last_minibuf_string, Fcar (histval)))))
669 {
670 Lisp_Object length;
671
672 histval = Fcons (last_minibuf_string, histval);
673 Fset (Vminibuffer_history_variable, histval);
674
675 /* Truncate if requested. */
676 length = Fget (Vminibuffer_history_variable, Qhistory_length);
677 if (NILP (length)) length = Vhistory_length;
678 if (INTEGERP (length))
679 {
680 if (XINT (length) <= 0)
681 Fset (Vminibuffer_history_variable, Qnil);
682 else
683 {
684 Lisp_Object temp;
685
686 temp = Fnthcdr (Fsub1 (length), histval);
687 if (CONSP (temp)) Fsetcdr (temp, Qnil);
688 }
689 }
690 }
691 }
692
693 /* If Lisp form desired instead of string, parse it. */
694 if (expflag)
695 val = string_to_object (val, defalt);
696
697 /* The appropriate frame will get selected
698 in set-window-configuration. */
699 RETURN_UNGCPRO (unbind_to (count, val));
700 }
701
702 /* Return a buffer to be used as the minibuffer at depth `depth'.
703 depth = 0 is the lowest allowed argument, and that is the value
704 used for nonrecursive minibuffer invocations */
705
706 Lisp_Object
707 get_minibuffer (depth)
708 int depth;
709 {
710 Lisp_Object tail, num, buf;
711 char name[24];
712 extern Lisp_Object nconc2 ();
713
714 XSETFASTINT (num, depth);
715 tail = Fnthcdr (num, Vminibuffer_list);
716 if (NILP (tail))
717 {
718 tail = Fcons (Qnil, Qnil);
719 Vminibuffer_list = nconc2 (Vminibuffer_list, tail);
720 }
721 buf = Fcar (tail);
722 if (NILP (buf) || NILP (XBUFFER (buf)->name))
723 {
724 sprintf (name, " *Minibuf-%d*", depth);
725 buf = Fget_buffer_create (build_string (name));
726
727 /* Although the buffer's name starts with a space, undo should be
728 enabled in it. */
729 Fbuffer_enable_undo (buf);
730
731 XSETCAR (tail, buf);
732 }
733 else
734 {
735 int count = specpdl_ptr - specpdl;
736
737 reset_buffer (XBUFFER (buf));
738 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
739 Fset_buffer (buf);
740 Fkill_all_local_variables ();
741 unbind_to (count, Qnil);
742 }
743
744 return buf;
745 }
746
747 /* This function is called on exiting minibuffer, whether normally or
748 not, and it restores the current window, buffer, etc. */
749
750 static Lisp_Object
751 read_minibuf_unwind (data)
752 Lisp_Object data;
753 {
754 Lisp_Object old_deactivate_mark;
755 Lisp_Object window;
756
757 /* We are exiting the minibuffer one way or the other,
758 so run the hook. */
759 if (!NILP (Vminibuffer_exit_hook) && !EQ (Vminibuffer_exit_hook, Qunbound)
760 && !NILP (Vrun_hooks))
761 safe_run_hooks (Qminibuffer_exit_hook);
762
763 /* If this was a recursive minibuffer,
764 tie the minibuffer window back to the outer level minibuffer buffer. */
765 minibuf_level--;
766
767 window = minibuf_window;
768 /* To keep things predictable, in case it matters, let's be in the
769 minibuffer when we reset the relevant variables. */
770 Fset_buffer (XWINDOW (window)->buffer);
771
772 /* Restore prompt, etc, from outer minibuffer level. */
773 minibuf_prompt = Fcar (minibuf_save_list);
774 minibuf_save_list = Fcdr (minibuf_save_list);
775 minibuf_prompt_width = XFASTINT (Fcar (minibuf_save_list));
776 minibuf_save_list = Fcdr (minibuf_save_list);
777 Vhelp_form = Fcar (minibuf_save_list);
778 minibuf_save_list = Fcdr (minibuf_save_list);
779 Vcurrent_prefix_arg = Fcar (minibuf_save_list);
780 minibuf_save_list = Fcdr (minibuf_save_list);
781 Vminibuffer_history_position = Fcar (minibuf_save_list);
782 minibuf_save_list = Fcdr (minibuf_save_list);
783 Vminibuffer_history_variable = Fcar (minibuf_save_list);
784 minibuf_save_list = Fcdr (minibuf_save_list);
785 Voverriding_local_map = Fcar (minibuf_save_list);
786 minibuf_save_list = Fcdr (minibuf_save_list);
787 #if 0
788 temp = Fcar (minibuf_save_list);
789 if (FRAME_LIVE_P (XFRAME (WINDOW_FRAME (XWINDOW (temp)))))
790 minibuf_window = temp;
791 #endif
792 minibuf_save_list = Fcdr (minibuf_save_list);
793
794 /* Erase the minibuffer we were using at this level. */
795 {
796 int count = specpdl_ptr - specpdl;
797 /* Prevent error in erase-buffer. */
798 specbind (Qinhibit_read_only, Qt);
799 specbind (Qinhibit_modification_hooks, Qt);
800 old_deactivate_mark = Vdeactivate_mark;
801 Ferase_buffer ();
802 Vdeactivate_mark = old_deactivate_mark;
803 unbind_to (count, Qnil);
804 }
805
806 /* When we get to the outmost level, make sure we resize the
807 mini-window back to its normal size. */
808 if (minibuf_level == 0)
809 resize_mini_window (XWINDOW (window), 0);
810
811 /* Make sure minibuffer window is erased, not ignored. */
812 windows_or_buffers_changed++;
813 XSETFASTINT (XWINDOW (window)->last_modified, 0);
814 XSETFASTINT (XWINDOW (window)->last_overlay_modified, 0);
815 return Qnil;
816 }
817 \f
818
819 DEFUN ("read-from-minibuffer", Fread_from_minibuffer, Sread_from_minibuffer, 1, 7, 0,
820 doc: /* Read a string from the minibuffer, prompting with string PROMPT.
821 If optional second arg INITIAL-CONTENTS is non-nil, it is a string
822 to be inserted into the minibuffer before reading input.
823 If INITIAL-CONTENTS is (STRING . POSITION), the initial input
824 is STRING, but point is placed at position POSITION in the minibuffer.
825 Third arg KEYMAP is a keymap to use whilst reading;
826 if omitted or nil, the default is `minibuffer-local-map'.
827 If fourth arg READ is non-nil, then interpret the result as a Lisp object
828 and return that object:
829 in other words, do `(car (read-from-string INPUT-STRING))'
830 Fifth arg HIST, if non-nil, specifies a history list
831 and optionally the initial position in the list.
832 It can be a symbol, which is the history list variable to use,
833 or it can be a cons cell (HISTVAR . HISTPOS).
834 In that case, HISTVAR is the history list variable to use,
835 and HISTPOS is the initial position (the position in the list
836 which INITIAL-CONTENTS corresponds to).
837 Positions are counted starting from 1 at the beginning of the list.
838 Sixth arg DEFAULT-VALUE is the default value. If non-nil, it is available
839 for history commands; but `read-from-minibuffer' does NOT return DEFAULT-VALUE
840 if the user enters empty input! It returns the empty string.
841 Seventh arg INHERIT-INPUT-METHOD, if non-nil, means the minibuffer inherits
842 the current input method and the setting of `enable-multibyte-characters'.
843 If the variable `minibuffer-allow-text-properties' is non-nil,
844 then the string which is returned includes whatever text properties
845 were present in the minibuffer. Otherwise the value has no text properties. */)
846 (prompt, initial_contents, keymap, read, hist, default_value, inherit_input_method)
847 Lisp_Object prompt, initial_contents, keymap, read, hist, default_value;
848 Lisp_Object inherit_input_method;
849 {
850 int pos = 0;
851 Lisp_Object histvar, histpos, position, val;
852 struct gcpro gcpro1;
853
854 position = Qnil;
855
856 CHECK_STRING (prompt);
857 if (!NILP (initial_contents))
858 {
859 if (CONSP (initial_contents))
860 {
861 position = Fcdr (initial_contents);
862 initial_contents = Fcar (initial_contents);
863 }
864 CHECK_STRING (initial_contents);
865 if (!NILP (position))
866 {
867 CHECK_NUMBER (position);
868 /* Convert to distance from end of input. */
869 if (XINT (position) < 1)
870 /* A number too small means the beginning of the string. */
871 pos = - XSTRING (initial_contents)->size;
872 else
873 pos = XINT (position) - 1 - XSTRING (initial_contents)->size;
874 }
875 }
876
877 if (NILP (keymap))
878 keymap = Vminibuffer_local_map;
879 else
880 keymap = get_keymap (keymap, 1, 0);
881
882 if (SYMBOLP (hist))
883 {
884 histvar = hist;
885 histpos = Qnil;
886 }
887 else
888 {
889 histvar = Fcar_safe (hist);
890 histpos = Fcdr_safe (hist);
891 }
892 if (NILP (histvar))
893 histvar = Qminibuffer_history;
894 if (NILP (histpos))
895 XSETFASTINT (histpos, 0);
896
897 GCPRO1 (default_value);
898 val = read_minibuf (keymap, initial_contents, prompt,
899 make_number (pos), !NILP (read),
900 histvar, histpos, default_value,
901 minibuffer_allow_text_properties,
902 !NILP (inherit_input_method));
903 UNGCPRO;
904 return val;
905 }
906
907 DEFUN ("read-minibuffer", Fread_minibuffer, Sread_minibuffer, 1, 2, 0,
908 doc: /* Return a Lisp object read using the minibuffer.
909 Prompt with PROMPT. If non-nil, optional second arg INITIAL-CONTENTS
910 is a string to insert in the minibuffer before reading. */)
911 (prompt, initial_contents)
912 Lisp_Object prompt, initial_contents;
913 {
914 CHECK_STRING (prompt);
915 if (!NILP (initial_contents))
916 CHECK_STRING (initial_contents);
917 return read_minibuf (Vminibuffer_local_map, initial_contents,
918 prompt, Qnil, 1, Qminibuffer_history,
919 make_number (0), Qnil, 0, 0);
920 }
921
922 DEFUN ("eval-minibuffer", Feval_minibuffer, Seval_minibuffer, 1, 2, 0,
923 doc: /* Return value of Lisp expression read using the minibuffer.
924 Prompt with PROMPT. If non-nil, optional second arg INITIAL-CONTENTS
925 is a string to insert in the minibuffer before reading. */)
926 (prompt, initial_contents)
927 Lisp_Object prompt, initial_contents;
928 {
929 return Feval (Fread_minibuffer (prompt, initial_contents));
930 }
931
932 /* Functions that use the minibuffer to read various things. */
933
934 DEFUN ("read-string", Fread_string, Sread_string, 1, 5, 0,
935 doc: /* Read a string from the minibuffer, prompting with string PROMPT.
936 If non-nil, second arg INITIAL-INPUT is a string to insert before reading.
937 The third arg HISTORY, if non-nil, specifies a history list
938 and optionally the initial position in the list.
939 See `read-from-minibuffer' for details of HISTORY argument.
940 Fourth arg DEFAULT-VALUE is the default value. If non-nil, it is used
941 for history commands, and as the value to return if the user enters
942 the empty string.
943 Fifth arg INHERIT-INPUT-METHOD, if non-nil, means the minibuffer inherits
944 the current input method and the setting of `enable-multibyte-characters'. */)
945 (prompt, initial_input, history, default_value, inherit_input_method)
946 Lisp_Object prompt, initial_input, history, default_value;
947 Lisp_Object inherit_input_method;
948 {
949 Lisp_Object val;
950 val = Fread_from_minibuffer (prompt, initial_input, Qnil,
951 Qnil, history, default_value,
952 inherit_input_method);
953 if (STRINGP (val) && XSTRING (val)->size == 0 && ! NILP (default_value))
954 val = default_value;
955 return val;
956 }
957
958 DEFUN ("read-no-blanks-input", Fread_no_blanks_input, Sread_no_blanks_input, 1, 3, 0,
959 doc: /* Read a string from the terminal, not allowing blanks.
960 Prompt with PROMPT, and provide INITIAL as an initial value of the input string.
961 Third arg INHERIT-INPUT-METHOD, if non-nil, means the minibuffer inherits
962 the current input method and the setting of `enable-multibyte-characters'. */)
963 (prompt, initial, inherit_input_method)
964 Lisp_Object prompt, initial, inherit_input_method;
965 {
966 CHECK_STRING (prompt);
967 if (! NILP (initial))
968 CHECK_STRING (initial);
969
970 return read_minibuf (Vminibuffer_local_ns_map, initial, prompt, Qnil,
971 0, Qminibuffer_history, make_number (0), Qnil, 0,
972 !NILP (inherit_input_method));
973 }
974
975 DEFUN ("read-command", Fread_command, Sread_command, 1, 2, 0,
976 doc: /* Read the name of a command and return as a symbol.
977 Prompt with PROMPT. By default, return DEFAULT-VALUE. */)
978 (prompt, default_value)
979 Lisp_Object prompt, default_value;
980 {
981 Lisp_Object name, default_string;
982
983 if (NILP (default_value))
984 default_string = Qnil;
985 else if (SYMBOLP (default_value))
986 default_string = SYMBOL_NAME (default_value);
987 else
988 default_string = default_value;
989
990 name = Fcompleting_read (prompt, Vobarray, Qcommandp, Qt,
991 Qnil, Qnil, default_string, Qnil);
992 if (NILP (name))
993 return name;
994 return Fintern (name, Qnil);
995 }
996
997 #ifdef NOTDEF
998 DEFUN ("read-function", Fread_function, Sread_function, 1, 1, 0,
999 doc: /* One arg PROMPT, a string. Read the name of a function and return as a symbol.
1000 Prompt with PROMPT. */)
1001 (prompt)
1002 Lisp_Object prompt;
1003 {
1004 return Fintern (Fcompleting_read (prompt, Vobarray, Qfboundp, Qt, Qnil, Qnil, Qnil, Qnil),
1005 Qnil);
1006 }
1007 #endif /* NOTDEF */
1008
1009 DEFUN ("read-variable", Fread_variable, Sread_variable, 1, 2, 0,
1010 doc: /* Read the name of a user variable and return it as a symbol.
1011 Prompt with PROMPT. By default, return DEFAULT-VALUE.
1012 A user variable is one whose documentation starts with a `*' character. */)
1013 (prompt, default_value)
1014 Lisp_Object prompt, default_value;
1015 {
1016 Lisp_Object name, default_string;
1017
1018 if (NILP (default_value))
1019 default_string = Qnil;
1020 else if (SYMBOLP (default_value))
1021 default_string = SYMBOL_NAME (default_value);
1022 else
1023 default_string = default_value;
1024
1025 name = Fcompleting_read (prompt, Vobarray,
1026 Quser_variable_p, Qt,
1027 Qnil, Qnil, default_string, Qnil);
1028 if (NILP (name))
1029 return name;
1030 return Fintern (name, Qnil);
1031 }
1032
1033 DEFUN ("read-buffer", Fread_buffer, Sread_buffer, 1, 3, 0,
1034 doc: /* Read the name of a buffer and return as a string.
1035 Prompt with PROMPT.
1036 Optional second arg DEF is value to return if user enters an empty line.
1037 If optional third arg REQUIRE-MATCH is non-nil,
1038 only existing buffer names are allowed. */)
1039 (prompt, def, require_match)
1040 Lisp_Object prompt, def, require_match;
1041 {
1042 Lisp_Object args[4];
1043
1044 if (BUFFERP (def))
1045 def = XBUFFER (def)->name;
1046
1047 if (NILP (Vread_buffer_function))
1048 {
1049 if (!NILP (def))
1050 {
1051 args[0] = build_string ("%s(default %s) ");
1052 args[1] = prompt;
1053 args[2] = def;
1054 prompt = Fformat (3, args);
1055 }
1056
1057 return Fcompleting_read (prompt, Vbuffer_alist, Qnil,
1058 require_match, Qnil, Qbuffer_name_history,
1059 def, Qnil);
1060 }
1061 else
1062 {
1063 args[0] = Vread_buffer_function;
1064 args[1] = prompt;
1065 args[2] = def;
1066 args[3] = require_match;
1067 return Ffuncall(4, args);
1068 }
1069 }
1070 \f
1071 static Lisp_Object
1072 minibuf_conform_representation (string, basis)
1073 Lisp_Object string, basis;
1074 {
1075 if (STRING_MULTIBYTE (string) == STRING_MULTIBYTE (basis))
1076 return string;
1077
1078 if (STRING_MULTIBYTE (string))
1079 return Fstring_make_unibyte (string);
1080 else
1081 return Fstring_make_multibyte (string);
1082 }
1083
1084 DEFUN ("try-completion", Ftry_completion, Stry_completion, 2, 3, 0,
1085 doc: /* Return common substring of all completions of STRING in ALIST.
1086 Each car of each element of ALIST is tested to see if it begins with STRING.
1087 All that match are compared together; the longest initial sequence
1088 common to all matches is returned as a string.
1089 If there is no match at all, nil is returned.
1090 For a unique match which is exact, t is returned.
1091
1092 ALIST can be an obarray instead of an alist.
1093 Then the print names of all symbols in the obarray are the possible matches.
1094
1095 ALIST can also be a function to do the completion itself.
1096 It receives three arguments: the values STRING, PREDICATE and nil.
1097 Whatever it returns becomes the value of `try-completion'.
1098
1099 If optional third argument PREDICATE is non-nil,
1100 it is used to test each possible match.
1101 The match is a candidate only if PREDICATE returns non-nil.
1102 The argument given to PREDICATE is the alist element
1103 or the symbol from the obarray.
1104 Additionally to this predicate, `completion-regexp-list'
1105 is used to further constrain the set of candidates. */)
1106 (string, alist, predicate)
1107 Lisp_Object string, alist, predicate;
1108 {
1109 Lisp_Object bestmatch, tail, elt, eltstring;
1110 /* Size in bytes of BESTMATCH. */
1111 int bestmatchsize = 0;
1112 /* These are in bytes, too. */
1113 int compare, matchsize;
1114 int list = NILP (alist) || (CONSP (alist)
1115 && (!SYMBOLP (XCAR (alist))
1116 || NILP (XCAR (alist))));
1117 int index = 0, obsize = 0;
1118 int matchcount = 0;
1119 Lisp_Object bucket, zero, end, tem;
1120 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
1121
1122 CHECK_STRING (string);
1123 if (!list && !VECTORP (alist))
1124 return call3 (alist, string, predicate, Qnil);
1125
1126 bestmatch = bucket = Qnil;
1127
1128 /* If ALIST is not a list, set TAIL just for gc pro. */
1129 tail = alist;
1130 if (! list)
1131 {
1132 index = 0;
1133 obsize = XVECTOR (alist)->size;
1134 bucket = XVECTOR (alist)->contents[index];
1135 }
1136
1137 while (1)
1138 {
1139 /* Get the next element of the alist or obarray. */
1140 /* Exit the loop if the elements are all used up. */
1141 /* elt gets the alist element or symbol.
1142 eltstring gets the name to check as a completion. */
1143
1144 if (list)
1145 {
1146 if (!CONSP (tail))
1147 break;
1148 elt = XCAR (tail);
1149 eltstring = CONSP (elt) ? XCAR (elt) : elt;
1150 tail = XCDR (tail);
1151 }
1152 else
1153 {
1154 if (XFASTINT (bucket) != 0)
1155 {
1156 elt = bucket;
1157 eltstring = Fsymbol_name (elt);
1158 if (XSYMBOL (bucket)->next)
1159 XSETSYMBOL (bucket, XSYMBOL (bucket)->next);
1160 else
1161 XSETFASTINT (bucket, 0);
1162 }
1163 else if (++index >= obsize)
1164 break;
1165 else
1166 {
1167 bucket = XVECTOR (alist)->contents[index];
1168 continue;
1169 }
1170 }
1171
1172 /* Is this element a possible completion? */
1173
1174 if (STRINGP (eltstring)
1175 && XSTRING (string)->size <= XSTRING (eltstring)->size
1176 && (tem = Fcompare_strings (eltstring, make_number (0),
1177 make_number (XSTRING (string)->size),
1178 string, make_number (0), Qnil,
1179 completion_ignore_case ?Qt : Qnil),
1180 EQ (Qt, tem)))
1181 {
1182 /* Yes. */
1183 Lisp_Object regexps;
1184 Lisp_Object zero;
1185 XSETFASTINT (zero, 0);
1186
1187 /* Ignore this element if it fails to match all the regexps. */
1188 for (regexps = Vcompletion_regexp_list; CONSP (regexps);
1189 regexps = XCDR (regexps))
1190 {
1191 tem = Fstring_match (XCAR (regexps), eltstring, zero);
1192 if (NILP (tem))
1193 break;
1194 }
1195 if (CONSP (regexps))
1196 continue;
1197
1198 /* Ignore this element if there is a predicate
1199 and the predicate doesn't like it. */
1200
1201 if (!NILP (predicate))
1202 {
1203 if (EQ (predicate, Qcommandp))
1204 tem = Fcommandp (elt, Qnil);
1205 else
1206 {
1207 GCPRO4 (tail, string, eltstring, bestmatch);
1208 tem = call1 (predicate, elt);
1209 UNGCPRO;
1210 }
1211 if (NILP (tem)) continue;
1212 }
1213
1214 /* Update computation of how much all possible completions match */
1215
1216 matchcount++;
1217 if (NILP (bestmatch))
1218 {
1219 bestmatch = eltstring;
1220 bestmatchsize = XSTRING (eltstring)->size;
1221 }
1222 else
1223 {
1224 compare = min (bestmatchsize, XSTRING (eltstring)->size);
1225 tem = Fcompare_strings (bestmatch, make_number (0),
1226 make_number (compare),
1227 eltstring, make_number (0),
1228 make_number (compare),
1229 completion_ignore_case ? Qt : Qnil);
1230 if (EQ (tem, Qt))
1231 matchsize = compare;
1232 else if (XINT (tem) < 0)
1233 matchsize = - XINT (tem) - 1;
1234 else
1235 matchsize = XINT (tem) - 1;
1236
1237 if (matchsize < 0)
1238 /* When can this happen ? -stef */
1239 matchsize = compare;
1240 if (completion_ignore_case)
1241 {
1242 /* If this is an exact match except for case,
1243 use it as the best match rather than one that is not an
1244 exact match. This way, we get the case pattern
1245 of the actual match. */
1246 if ((matchsize == XSTRING (eltstring)->size
1247 && matchsize < XSTRING (bestmatch)->size)
1248 ||
1249 /* If there is more than one exact match ignoring case,
1250 and one of them is exact including case,
1251 prefer that one. */
1252 /* If there is no exact match ignoring case,
1253 prefer a match that does not change the case
1254 of the input. */
1255 ((matchsize == XSTRING (eltstring)->size)
1256 ==
1257 (matchsize == XSTRING (bestmatch)->size)
1258 && (tem = Fcompare_strings (eltstring, make_number (0),
1259 make_number (XSTRING (string)->size),
1260 string, make_number (0),
1261 Qnil,
1262 Qnil),
1263 EQ (Qt, tem))
1264 && (tem = Fcompare_strings (bestmatch, make_number (0),
1265 make_number (XSTRING (string)->size),
1266 string, make_number (0),
1267 Qnil,
1268 Qnil),
1269 ! EQ (Qt, tem))))
1270 bestmatch = eltstring;
1271 }
1272 bestmatchsize = matchsize;
1273 if (matchsize <= XSTRING (string)->size
1274 && matchcount > 1)
1275 /* No need to look any further. */
1276 break;
1277 }
1278 }
1279 }
1280
1281 if (NILP (bestmatch))
1282 return Qnil; /* No completions found */
1283 /* If we are ignoring case, and there is no exact match,
1284 and no additional text was supplied,
1285 don't change the case of what the user typed. */
1286 if (completion_ignore_case && bestmatchsize == XSTRING (string)->size
1287 && XSTRING (bestmatch)->size > bestmatchsize)
1288 return minibuf_conform_representation (string, bestmatch);
1289
1290 /* Return t if the supplied string is an exact match (counting case);
1291 it does not require any change to be made. */
1292 if (matchcount == 1 && bestmatchsize == XSTRING (string)->size
1293 && (tem = Fcompare_strings (bestmatch, make_number (0),
1294 make_number (bestmatchsize),
1295 string, make_number (0),
1296 make_number (bestmatchsize),
1297 Qnil),
1298 EQ (Qt, tem)))
1299 return Qt;
1300
1301 XSETFASTINT (zero, 0); /* Else extract the part in which */
1302 XSETFASTINT (end, bestmatchsize); /* all completions agree */
1303 return Fsubstring (bestmatch, zero, end);
1304 }
1305 \f
1306 DEFUN ("all-completions", Fall_completions, Sall_completions, 2, 4, 0,
1307 doc: /* Search for partial matches to STRING in ALIST.
1308 Each car of each element of ALIST is tested to see if it begins with STRING.
1309 The value is a list of all the strings from ALIST that match.
1310
1311 ALIST can be an obarray instead of an alist.
1312 Then the print names of all symbols in the obarray are the possible matches.
1313
1314 ALIST can also be a function to do the completion itself.
1315 It receives three arguments: the values STRING, PREDICATE and t.
1316 Whatever it returns becomes the value of `all-completions'.
1317
1318 If optional third argument PREDICATE is non-nil,
1319 it is used to test each possible match.
1320 The match is a candidate only if PREDICATE returns non-nil.
1321 The argument given to PREDICATE is the alist element
1322 or the symbol from the obarray.
1323 Additionally to this predicate, `completion-regexp-list'
1324 is used to further constrain the set of candidates.
1325
1326 If the optional fourth argument HIDE-SPACES is non-nil,
1327 strings in ALIST that start with a space
1328 are ignored unless STRING itself starts with a space. */)
1329 (string, alist, predicate, hide_spaces)
1330 Lisp_Object string, alist, predicate, hide_spaces;
1331 {
1332 Lisp_Object tail, elt, eltstring;
1333 Lisp_Object allmatches;
1334 int list = NILP (alist) || (CONSP (alist)
1335 && (!SYMBOLP (XCAR (alist))
1336 || NILP (XCAR (alist))));
1337 int index = 0, obsize = 0;
1338 Lisp_Object bucket, tem;
1339 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
1340
1341 CHECK_STRING (string);
1342 if (!list && !VECTORP (alist))
1343 {
1344 return call3 (alist, string, predicate, Qt);
1345 }
1346 allmatches = bucket = Qnil;
1347
1348 /* If ALIST is not a list, set TAIL just for gc pro. */
1349 tail = alist;
1350 if (! list)
1351 {
1352 index = 0;
1353 obsize = XVECTOR (alist)->size;
1354 bucket = XVECTOR (alist)->contents[index];
1355 }
1356
1357 while (1)
1358 {
1359 /* Get the next element of the alist or obarray. */
1360 /* Exit the loop if the elements are all used up. */
1361 /* elt gets the alist element or symbol.
1362 eltstring gets the name to check as a completion. */
1363
1364 if (list)
1365 {
1366 if (!CONSP (tail))
1367 break;
1368 elt = XCAR (tail);
1369 eltstring = CONSP (elt) ? XCAR (elt) : elt;
1370 tail = XCDR (tail);
1371 }
1372 else
1373 {
1374 if (XFASTINT (bucket) != 0)
1375 {
1376 elt = bucket;
1377 eltstring = Fsymbol_name (elt);
1378 if (XSYMBOL (bucket)->next)
1379 XSETSYMBOL (bucket, XSYMBOL (bucket)->next);
1380 else
1381 XSETFASTINT (bucket, 0);
1382 }
1383 else if (++index >= obsize)
1384 break;
1385 else
1386 {
1387 bucket = XVECTOR (alist)->contents[index];
1388 continue;
1389 }
1390 }
1391
1392 /* Is this element a possible completion? */
1393
1394 if (STRINGP (eltstring)
1395 && XSTRING (string)->size <= XSTRING (eltstring)->size
1396 /* If HIDE_SPACES, reject alternatives that start with space
1397 unless the input starts with space. */
1398 && ((STRING_BYTES (XSTRING (string)) > 0
1399 && XSTRING (string)->data[0] == ' ')
1400 || XSTRING (eltstring)->data[0] != ' '
1401 || NILP (hide_spaces))
1402 && (tem = Fcompare_strings (eltstring, make_number (0),
1403 make_number (XSTRING (string)->size),
1404 string, make_number (0),
1405 make_number (XSTRING (string)->size),
1406 completion_ignore_case ? Qt : Qnil),
1407 EQ (Qt, tem)))
1408 {
1409 /* Yes. */
1410 Lisp_Object regexps;
1411 Lisp_Object zero;
1412 XSETFASTINT (zero, 0);
1413
1414 /* Ignore this element if it fails to match all the regexps. */
1415 for (regexps = Vcompletion_regexp_list; CONSP (regexps);
1416 regexps = XCDR (regexps))
1417 {
1418 tem = Fstring_match (XCAR (regexps), eltstring, zero);
1419 if (NILP (tem))
1420 break;
1421 }
1422 if (CONSP (regexps))
1423 continue;
1424
1425 /* Ignore this element if there is a predicate
1426 and the predicate doesn't like it. */
1427
1428 if (!NILP (predicate))
1429 {
1430 if (EQ (predicate, Qcommandp))
1431 tem = Fcommandp (elt, Qnil);
1432 else
1433 {
1434 GCPRO4 (tail, eltstring, allmatches, string);
1435 tem = call1 (predicate, elt);
1436 UNGCPRO;
1437 }
1438 if (NILP (tem)) continue;
1439 }
1440 /* Ok => put it on the list. */
1441 allmatches = Fcons (eltstring, allmatches);
1442 }
1443 }
1444
1445 return Fnreverse (allmatches);
1446 }
1447 \f
1448 Lisp_Object Vminibuffer_completion_table, Qminibuffer_completion_table;
1449 Lisp_Object Vminibuffer_completion_predicate, Qminibuffer_completion_predicate;
1450 Lisp_Object Vminibuffer_completion_confirm, Qminibuffer_completion_confirm;
1451 Lisp_Object Vminibuffer_completing_file_name;
1452
1453 DEFUN ("completing-read", Fcompleting_read, Scompleting_read, 2, 8, 0,
1454 doc: /* Read a string in the minibuffer, with completion.
1455 PROMPT is a string to prompt with; normally it ends in a colon and a space.
1456 TABLE is an alist whose elements' cars are strings, or an obarray.
1457 TABLE can also be a function to do the completion itself.
1458 PREDICATE limits completion to a subset of TABLE.
1459 See `try-completion' and `all-completions' for more details
1460 on completion, TABLE, and PREDICATE.
1461
1462 If REQUIRE-MATCH is non-nil, the user is not allowed to exit unless
1463 the input is (or completes to) an element of TABLE or is null.
1464 If it is also not t, typing RET does not exit if it does non-null completion.
1465 If the input is null, `completing-read' returns an empty string,
1466 regardless of the value of REQUIRE-MATCH.
1467
1468 If INITIAL-INPUT is non-nil, insert it in the minibuffer initially.
1469 If it is (STRING . POSITION), the initial input
1470 is STRING, but point is placed POSITION characters into the string.
1471 This feature is deprecated--it is best to pass nil for INITIAL-INPUT
1472 and supply the default value DEF instead. The user can yank the
1473 default value into the minibuffer easily using \\[next-history-element].
1474
1475 HIST, if non-nil, specifies a history list
1476 and optionally the initial position in the list.
1477 It can be a symbol, which is the history list variable to use,
1478 or it can be a cons cell (HISTVAR . HISTPOS).
1479 In that case, HISTVAR is the history list variable to use,
1480 and HISTPOS is the initial position (the position in the list
1481 which INITIAL-INPUT corresponds to).
1482 Positions are counted starting from 1 at the beginning of the list.
1483 DEF, if non-nil, is the default value.
1484
1485 If INHERIT-INPUT-METHOD is non-nil, the minibuffer inherits
1486 the current input method and the setting of `enable-multibyte-characters'.
1487
1488 Completion ignores case if the ambient value of
1489 `completion-ignore-case' is non-nil. */)
1490 (prompt, table, predicate, require_match, initial_input, hist, def, inherit_input_method)
1491 Lisp_Object prompt, table, predicate, require_match, initial_input;
1492 Lisp_Object hist, def, inherit_input_method;
1493 {
1494 Lisp_Object val, histvar, histpos, position;
1495 Lisp_Object init;
1496 int pos = 0;
1497 int count = specpdl_ptr - specpdl;
1498 struct gcpro gcpro1;
1499
1500 init = initial_input;
1501 GCPRO1 (def);
1502
1503 specbind (Qminibuffer_completion_table, table);
1504 specbind (Qminibuffer_completion_predicate, predicate);
1505 specbind (Qminibuffer_completion_confirm,
1506 EQ (require_match, Qt) ? Qnil : require_match);
1507 last_exact_completion = Qnil;
1508
1509 position = Qnil;
1510 if (!NILP (init))
1511 {
1512 if (CONSP (init))
1513 {
1514 position = Fcdr (init);
1515 init = Fcar (init);
1516 }
1517 CHECK_STRING (init);
1518 if (!NILP (position))
1519 {
1520 CHECK_NUMBER (position);
1521 /* Convert to distance from end of input. */
1522 pos = XINT (position) - XSTRING (init)->size;
1523 }
1524 }
1525
1526 if (SYMBOLP (hist))
1527 {
1528 histvar = hist;
1529 histpos = Qnil;
1530 }
1531 else
1532 {
1533 histvar = Fcar_safe (hist);
1534 histpos = Fcdr_safe (hist);
1535 }
1536 if (NILP (histvar))
1537 histvar = Qminibuffer_history;
1538 if (NILP (histpos))
1539 XSETFASTINT (histpos, 0);
1540
1541 val = read_minibuf (NILP (require_match)
1542 ? Vminibuffer_local_completion_map
1543 : Vminibuffer_local_must_match_map,
1544 init, prompt, make_number (pos), 0,
1545 histvar, histpos, def, 0,
1546 !NILP (inherit_input_method));
1547
1548 if (STRINGP (val) && XSTRING (val)->size == 0 && ! NILP (def))
1549 val = def;
1550
1551 RETURN_UNGCPRO (unbind_to (count, val));
1552 }
1553 \f
1554 Lisp_Object Fminibuffer_completion_help ();
1555 Lisp_Object Fassoc_string ();
1556
1557 /* Test whether TXT is an exact completion. */
1558 DEFUN ("test-completion", Ftest_completion, Stest_completion, 2, 3, 0,
1559 doc: /* Return non-nil if STRING is a valid completion.
1560 Takes the same arguments as `all-completions' and `try-completion'.
1561 If ALIST is a function, it is called with three arguments:
1562 the values STRING, PREDICATE and `lambda'. */)
1563 (string, alist, predicate)
1564 Lisp_Object string, alist, predicate;
1565 {
1566 Lisp_Object regexps, tem = Qnil;
1567
1568 CHECK_STRING (string);
1569
1570 if ((CONSP (alist) && (!SYMBOLP (XCAR (alist)) || NILP (XCAR (alist))))
1571 || NILP (alist))
1572 {
1573 tem = Fassoc_string (string, alist, completion_ignore_case ? Qt : Qnil);
1574 if (CONSP (tem))
1575 tem = XCAR (tem);
1576 else
1577 return Qnil;
1578 }
1579 else if (VECTORP (alist))
1580 {
1581 /* Bypass intern-soft as that loses for nil. */
1582 tem = oblookup (alist,
1583 XSTRING (string)->data,
1584 XSTRING (string)->size,
1585 STRING_BYTES (XSTRING (string)));
1586 if (!SYMBOLP (tem))
1587 {
1588 if (STRING_MULTIBYTE (string))
1589 string = Fstring_make_unibyte (string);
1590 else
1591 string = Fstring_make_multibyte (string);
1592
1593 tem = oblookup (Vminibuffer_completion_table,
1594 XSTRING (string)->data,
1595 XSTRING (string)->size,
1596 STRING_BYTES (XSTRING (string)));
1597 if (!SYMBOLP (tem))
1598 return Qnil;
1599 }
1600 }
1601 else
1602 return call3 (alist, string, predicate, Qlambda);
1603
1604 /* Reject this element if it fails to match all the regexps. */
1605 for (regexps = Vcompletion_regexp_list; CONSP (regexps);
1606 regexps = XCDR (regexps))
1607 {
1608 if (NILP (Fstring_match (XCAR (regexps),
1609 SYMBOLP (tem) ? string : tem,
1610 Qnil)))
1611 return Qnil;
1612 }
1613
1614 /* Finally, check the predicate. */
1615 if (!NILP (predicate))
1616 return call1 (predicate, tem);
1617 else
1618 return Qt;
1619 }
1620
1621 /* returns:
1622 * 0 no possible completion
1623 * 1 was already an exact and unique completion
1624 * 3 was already an exact completion
1625 * 4 completed to an exact completion
1626 * 5 some completion happened
1627 * 6 no completion happened
1628 */
1629 int
1630 do_completion ()
1631 {
1632 Lisp_Object completion, string, tem;
1633 int completedp;
1634 Lisp_Object last;
1635 struct gcpro gcpro1, gcpro2;
1636
1637 completion = Ftry_completion (minibuffer_completion_contents (),
1638 Vminibuffer_completion_table,
1639 Vminibuffer_completion_predicate);
1640 last = last_exact_completion;
1641 last_exact_completion = Qnil;
1642
1643 GCPRO2 (completion, last);
1644
1645 if (NILP (completion))
1646 {
1647 bitch_at_user ();
1648 temp_echo_area_glyphs (" [No match]");
1649 UNGCPRO;
1650 return 0;
1651 }
1652
1653 if (EQ (completion, Qt)) /* exact and unique match */
1654 {
1655 UNGCPRO;
1656 return 1;
1657 }
1658
1659 string = minibuffer_completion_contents ();
1660
1661 /* COMPLETEDP should be true if some completion was done, which
1662 doesn't include simply changing the case of the entered string.
1663 However, for appearance, the string is rewritten if the case
1664 changes. */
1665 tem = Fcompare_strings (completion, Qnil, Qnil, string, Qnil, Qnil, Qt);
1666 completedp = !EQ (tem, Qt);
1667
1668 tem = Fcompare_strings (completion, Qnil, Qnil, string, Qnil, Qnil, Qnil);
1669 if (!EQ (tem, Qt))
1670 /* Rewrite the user's input. */
1671 {
1672 int prompt_end = XINT (Fminibuffer_prompt_end ());
1673 /* Some completion happened */
1674
1675 if (! NILP (Vminibuffer_completing_file_name)
1676 && XSTRING (completion)->data[STRING_BYTES (XSTRING (completion)) - 1] == '/'
1677 && PT < ZV
1678 && FETCH_CHAR (PT_BYTE) == '/')
1679 {
1680 del_range (prompt_end, PT + 1);
1681 }
1682 else
1683 del_range (prompt_end, PT);
1684
1685 Finsert (1, &completion);
1686
1687 if (! completedp)
1688 /* The case of the string changed, but that's all. We're not
1689 sure whether this is a unique completion or not, so try again
1690 using the real case (this shouldn't recurse again, because
1691 the next time try-completion will return either `t' or the
1692 exact string). */
1693 {
1694 UNGCPRO;
1695 return do_completion ();
1696 }
1697 }
1698
1699 /* It did find a match. Do we match some possibility exactly now? */
1700 tem = Ftest_completion (Fminibuffer_contents (),
1701 Vminibuffer_completion_table,
1702 Vminibuffer_completion_predicate);
1703 if (NILP (tem))
1704 {
1705 /* not an exact match */
1706 UNGCPRO;
1707 if (completedp)
1708 return 5;
1709 else if (!NILP (Vcompletion_auto_help))
1710 Fminibuffer_completion_help ();
1711 else
1712 temp_echo_area_glyphs (" [Next char not unique]");
1713 return 6;
1714 }
1715 else if (completedp)
1716 {
1717 UNGCPRO;
1718 return 4;
1719 }
1720 /* If the last exact completion and this one were the same,
1721 it means we've already given a "Complete but not unique"
1722 message and the user's hit TAB again, so now we give him help. */
1723 last_exact_completion = completion;
1724 if (!NILP (last))
1725 {
1726 tem = minibuffer_completion_contents ();
1727 if (!NILP (Fequal (tem, last)))
1728 Fminibuffer_completion_help ();
1729 }
1730 UNGCPRO;
1731 return 3;
1732 }
1733
1734 /* Like assoc but assumes KEY is a string, and ignores case if appropriate. */
1735
1736 DEFUN ("assoc-string", Fassoc_string, Sassoc_string, 2, 3, 0,
1737 doc: /* Like `assoc' but specifically for strings.
1738 Unibyte strings are converted to multibyte for comparison.
1739 And case is ignored if CASE-FOLD is non-nil.
1740 As opposed to `assoc', it will also match an entry consisting of a single
1741 string rather than a cons cell whose car is a string. */)
1742 (key, list, case_fold)
1743 register Lisp_Object key;
1744 Lisp_Object list, case_fold;
1745 {
1746 register Lisp_Object tail;
1747
1748 for (tail = list; !NILP (tail); tail = Fcdr (tail))
1749 {
1750 register Lisp_Object elt, tem, thiscar;
1751 elt = Fcar (tail);
1752 thiscar = CONSP (elt) ? XCAR (elt) : elt;
1753 if (!STRINGP (thiscar))
1754 continue;
1755 tem = Fcompare_strings (thiscar, make_number (0), Qnil,
1756 key, make_number (0), Qnil,
1757 case_fold);
1758 if (EQ (tem, Qt))
1759 return elt;
1760 QUIT;
1761 }
1762 return Qnil;
1763 }
1764
1765 DEFUN ("minibuffer-complete", Fminibuffer_complete, Sminibuffer_complete, 0, 0, "",
1766 doc: /* Complete the minibuffer contents as far as possible.
1767 Return nil if there is no valid completion, else t.
1768 If no characters can be completed, display a list of possible completions.
1769 If you repeat this command after it displayed such a list,
1770 scroll the window of possible completions. */)
1771 ()
1772 {
1773 register int i;
1774 Lisp_Object window, tem;
1775
1776 /* If the previous command was not this,
1777 mark the completion buffer obsolete. */
1778 if (! EQ (current_kboard->Vlast_command, Vthis_command))
1779 Vminibuf_scroll_window = Qnil;
1780
1781 window = Vminibuf_scroll_window;
1782 /* If there's a fresh completion window with a live buffer,
1783 and this command is repeated, scroll that window. */
1784 if (! NILP (window) && ! NILP (XWINDOW (window)->buffer)
1785 && !NILP (XBUFFER (XWINDOW (window)->buffer)->name))
1786 {
1787 struct buffer *obuf = current_buffer;
1788
1789 Fset_buffer (XWINDOW (window)->buffer);
1790 tem = Fpos_visible_in_window_p (make_number (ZV), window, Qnil);
1791 if (! NILP (tem))
1792 /* If end is in view, scroll up to the beginning. */
1793 Fset_window_start (window, make_number (BEGV), Qnil);
1794 else
1795 /* Else scroll down one screen. */
1796 Fscroll_other_window (Qnil);
1797
1798 set_buffer_internal (obuf);
1799 return Qnil;
1800 }
1801
1802 i = do_completion ();
1803 switch (i)
1804 {
1805 case 0:
1806 return Qnil;
1807
1808 case 1:
1809 if (PT != ZV)
1810 Fgoto_char (make_number (ZV));
1811 temp_echo_area_glyphs (" [Sole completion]");
1812 break;
1813
1814 case 3:
1815 if (PT != ZV)
1816 Fgoto_char (make_number (ZV));
1817 temp_echo_area_glyphs (" [Complete, but not unique]");
1818 break;
1819 }
1820
1821 return Qt;
1822 }
1823 \f
1824 /* Subroutines of Fminibuffer_complete_and_exit. */
1825
1826 /* This one is called by internal_condition_case to do the real work. */
1827
1828 Lisp_Object
1829 complete_and_exit_1 ()
1830 {
1831 return make_number (do_completion ());
1832 }
1833
1834 /* This one is called by internal_condition_case if an error happens.
1835 Pretend the current value is an exact match. */
1836
1837 Lisp_Object
1838 complete_and_exit_2 (ignore)
1839 Lisp_Object ignore;
1840 {
1841 return make_number (1);
1842 }
1843
1844 DEFUN ("minibuffer-complete-and-exit", Fminibuffer_complete_and_exit,
1845 Sminibuffer_complete_and_exit, 0, 0, "",
1846 doc: /* If the minibuffer contents is a valid completion then exit.
1847 Otherwise try to complete it. If completion leads to a valid completion,
1848 a repetition of this command will exit. */)
1849 ()
1850 {
1851 register int i;
1852 Lisp_Object val;
1853
1854 /* Allow user to specify null string */
1855 if (XINT (Fminibuffer_prompt_end ()) == ZV)
1856 goto exit;
1857
1858 if (!NILP (Ftest_completion (Fminibuffer_contents (),
1859 Vminibuffer_completion_table,
1860 Vminibuffer_completion_predicate)))
1861 goto exit;
1862
1863 /* Call do_completion, but ignore errors. */
1864 val = internal_condition_case (complete_and_exit_1, Qerror,
1865 complete_and_exit_2);
1866
1867 i = XFASTINT (val);
1868 switch (i)
1869 {
1870 case 1:
1871 case 3:
1872 goto exit;
1873
1874 case 4:
1875 if (!NILP (Vminibuffer_completion_confirm))
1876 {
1877 temp_echo_area_glyphs (" [Confirm]");
1878 return Qnil;
1879 }
1880 else
1881 goto exit;
1882
1883 default:
1884 return Qnil;
1885 }
1886 exit:
1887 return Fthrow (Qexit, Qnil);
1888 /* NOTREACHED */
1889 }
1890
1891 DEFUN ("minibuffer-complete-word", Fminibuffer_complete_word, Sminibuffer_complete_word,
1892 0, 0, "",
1893 doc: /* Complete the minibuffer contents at most a single word.
1894 After one word is completed as much as possible, a space or hyphen
1895 is added, provided that matches some possible completion.
1896 Return nil if there is no valid completion, else t. */)
1897 ()
1898 {
1899 Lisp_Object completion, tem, tem1;
1900 register int i, i_byte;
1901 register unsigned char *completion_string;
1902 struct gcpro gcpro1, gcpro2;
1903 int prompt_end_charpos = XINT (Fminibuffer_prompt_end ());
1904
1905 /* We keep calling Fbuffer_string rather than arrange for GC to
1906 hold onto a pointer to one of the strings thus made. */
1907
1908 completion = Ftry_completion (minibuffer_completion_contents (),
1909 Vminibuffer_completion_table,
1910 Vminibuffer_completion_predicate);
1911 if (NILP (completion))
1912 {
1913 bitch_at_user ();
1914 temp_echo_area_glyphs (" [No match]");
1915 return Qnil;
1916 }
1917 if (EQ (completion, Qt))
1918 return Qnil;
1919
1920 #if 0 /* How the below code used to look, for reference. */
1921 tem = Fminibuffer_contents ();
1922 b = XSTRING (tem)->data;
1923 i = ZV - 1 - XSTRING (completion)->size;
1924 p = XSTRING (completion)->data;
1925 if (i > 0 ||
1926 0 <= scmp (b, p, ZV - 1))
1927 {
1928 i = 1;
1929 /* Set buffer to longest match of buffer tail and completion head. */
1930 while (0 <= scmp (b + i, p, ZV - 1 - i))
1931 i++;
1932 del_range (1, i + 1);
1933 SET_PT (ZV);
1934 }
1935 #else /* Rewritten code */
1936 {
1937 int buffer_nchars, completion_nchars;
1938
1939 CHECK_STRING (completion);
1940 tem = minibuffer_completion_contents ();
1941 GCPRO2 (completion, tem);
1942 /* If reading a file name,
1943 expand any $ENVVAR refs in the buffer and in TEM. */
1944 if (! NILP (Vminibuffer_completing_file_name))
1945 {
1946 Lisp_Object substituted;
1947 substituted = Fsubstitute_in_file_name (tem);
1948 if (! EQ (substituted, tem))
1949 {
1950 tem = substituted;
1951 del_range (prompt_end_charpos, PT);
1952 Finsert (1, &tem);
1953 }
1954 }
1955 buffer_nchars = XSTRING (tem)->size; /* # chars in what we completed. */
1956 completion_nchars = XSTRING (completion)->size;
1957 i = buffer_nchars - completion_nchars;
1958 if (i > 0
1959 ||
1960 (tem1 = Fcompare_strings (tem, make_number (0),
1961 make_number (buffer_nchars),
1962 completion, make_number (0),
1963 make_number (buffer_nchars),
1964 completion_ignore_case ? Qt : Qnil),
1965 ! EQ (tem1, Qt)))
1966 {
1967 int start_pos;
1968
1969 /* Make buffer (before point) contain the longest match
1970 of TEM's tail and COMPLETION's head. */
1971 if (i <= 0) i = 1;
1972 start_pos= i;
1973 buffer_nchars -= i;
1974 while (i > 0)
1975 {
1976 tem1 = Fcompare_strings (tem, make_number (start_pos), Qnil,
1977 completion, make_number (0),
1978 make_number (buffer_nchars),
1979 completion_ignore_case ? Qt : Qnil);
1980 start_pos++;
1981 if (EQ (tem1, Qt))
1982 break;
1983 i++;
1984 buffer_nchars--;
1985 }
1986 del_range (1, i + 1);
1987 }
1988 UNGCPRO;
1989 }
1990 #endif /* Rewritten code */
1991
1992 {
1993 int prompt_end_bytepos;
1994 prompt_end_bytepos = CHAR_TO_BYTE (prompt_end_charpos);
1995 i = PT - prompt_end_charpos;
1996 i_byte = PT_BYTE - prompt_end_bytepos;
1997 }
1998
1999 /* If completion finds next char not unique,
2000 consider adding a space or a hyphen. */
2001 if (i == XSTRING (completion)->size)
2002 {
2003 GCPRO1 (completion);
2004 tem = Ftry_completion (concat2 (minibuffer_completion_contents (),
2005 build_string (" ")),
2006 Vminibuffer_completion_table,
2007 Vminibuffer_completion_predicate);
2008 UNGCPRO;
2009
2010 if (STRINGP (tem))
2011 completion = tem;
2012 else
2013 {
2014 GCPRO1 (completion);
2015 tem =
2016 Ftry_completion (concat2 (minibuffer_completion_contents (),
2017 build_string ("-")),
2018 Vminibuffer_completion_table,
2019 Vminibuffer_completion_predicate);
2020 UNGCPRO;
2021
2022 if (STRINGP (tem))
2023 completion = tem;
2024 }
2025 }
2026
2027 /* Now find first word-break in the stuff found by completion.
2028 i gets index in string of where to stop completing. */
2029 {
2030 int len, c;
2031 int bytes = STRING_BYTES (XSTRING (completion));
2032 completion_string = XSTRING (completion)->data;
2033 for (; i_byte < STRING_BYTES (XSTRING (completion)); i_byte += len, i++)
2034 {
2035 c = STRING_CHAR_AND_LENGTH (completion_string + i_byte,
2036 bytes - i_byte,
2037 len);
2038 if (SYNTAX (c) != Sword)
2039 {
2040 i_byte += len;
2041 i++;
2042 break;
2043 }
2044 }
2045 }
2046
2047 /* If got no characters, print help for user. */
2048
2049 if (i == PT - prompt_end_charpos)
2050 {
2051 if (!NILP (Vcompletion_auto_help))
2052 Fminibuffer_completion_help ();
2053 return Qnil;
2054 }
2055
2056 /* Otherwise insert in minibuffer the chars we got */
2057
2058 if (! NILP (Vminibuffer_completing_file_name)
2059 && XSTRING (completion)->data[STRING_BYTES (XSTRING (completion)) - 1] == '/'
2060 && PT < ZV
2061 && FETCH_CHAR (PT_BYTE) == '/')
2062 {
2063 del_range (prompt_end_charpos, PT + 1);
2064 }
2065 else
2066 del_range (prompt_end_charpos, PT);
2067
2068 insert_from_string (completion, 0, 0, i, i_byte, 1);
2069 return Qt;
2070 }
2071 \f
2072 DEFUN ("display-completion-list", Fdisplay_completion_list, Sdisplay_completion_list,
2073 1, 1, 0,
2074 doc: /* Display the list of completions, COMPLETIONS, using `standard-output'.
2075 Each element may be just a symbol or string
2076 or may be a list of two strings to be printed as if concatenated.
2077 `standard-output' must be a buffer.
2078 The actual completion alternatives, as inserted, are given `mouse-face'
2079 properties of `highlight'.
2080 At the end, this runs the normal hook `completion-setup-hook'.
2081 It can find the completion buffer in `standard-output'. */)
2082 (completions)
2083 Lisp_Object completions;
2084 {
2085 Lisp_Object tail, elt;
2086 register int i;
2087 int column = 0;
2088 struct gcpro gcpro1, gcpro2;
2089 struct buffer *old = current_buffer;
2090 int first = 1;
2091
2092 /* Note that (when it matters) every variable
2093 points to a non-string that is pointed to by COMPLETIONS,
2094 except for ELT. ELT can be pointing to a string
2095 when terpri or Findent_to calls a change hook. */
2096 elt = Qnil;
2097 GCPRO2 (completions, elt);
2098
2099 if (BUFFERP (Vstandard_output))
2100 set_buffer_internal (XBUFFER (Vstandard_output));
2101
2102 if (NILP (completions))
2103 write_string ("There are no possible completions of what you have typed.",
2104 -1);
2105 else
2106 {
2107 write_string ("Possible completions are:", -1);
2108 for (tail = completions, i = 0; !NILP (tail); tail = Fcdr (tail), i++)
2109 {
2110 Lisp_Object tem, string;
2111 int length;
2112 Lisp_Object startpos, endpos;
2113
2114 startpos = Qnil;
2115
2116 elt = Fcar (tail);
2117 /* Compute the length of this element. */
2118 if (CONSP (elt))
2119 {
2120 tem = XCAR (elt);
2121 CHECK_STRING (tem);
2122 length = XSTRING (tem)->size;
2123
2124 tem = Fcar (XCDR (elt));
2125 CHECK_STRING (tem);
2126 length += XSTRING (tem)->size;
2127 }
2128 else
2129 {
2130 CHECK_STRING (elt);
2131 length = XSTRING (elt)->size;
2132 }
2133
2134 /* This does a bad job for narrower than usual windows.
2135 Sadly, the window it will appear in is not known
2136 until after the text has been made. */
2137
2138 if (BUFFERP (Vstandard_output))
2139 XSETINT (startpos, BUF_PT (XBUFFER (Vstandard_output)));
2140
2141 /* If the previous completion was very wide,
2142 or we have two on this line already,
2143 don't put another on the same line. */
2144 if (column > 33 || first
2145 /* If this is really wide, don't put it second on a line. */
2146 || (column > 0 && length > 45))
2147 {
2148 Fterpri (Qnil);
2149 column = 0;
2150 }
2151 /* Otherwise advance to column 35. */
2152 else
2153 {
2154 if (BUFFERP (Vstandard_output))
2155 {
2156 tem = Findent_to (make_number (35), make_number (2));
2157
2158 column = XINT (tem);
2159 }
2160 else
2161 {
2162 do
2163 {
2164 write_string (" ", -1);
2165 column++;
2166 }
2167 while (column < 35);
2168 }
2169 }
2170
2171 if (BUFFERP (Vstandard_output))
2172 {
2173 XSETINT (endpos, BUF_PT (XBUFFER (Vstandard_output)));
2174 Fset_text_properties (startpos, endpos,
2175 Qnil, Vstandard_output);
2176 }
2177
2178 /* Output this element.
2179 If necessary, convert it to unibyte or to multibyte first. */
2180 if (CONSP (elt))
2181 string = Fcar (elt);
2182 else
2183 string = elt;
2184 if (NILP (current_buffer->enable_multibyte_characters)
2185 && STRING_MULTIBYTE (string))
2186 string = Fstring_make_unibyte (string);
2187 else if (!NILP (current_buffer->enable_multibyte_characters)
2188 && !STRING_MULTIBYTE (string))
2189 string = Fstring_make_multibyte (string);
2190
2191 if (BUFFERP (Vstandard_output))
2192 {
2193 XSETINT (startpos, BUF_PT (XBUFFER (Vstandard_output)));
2194
2195 Fprinc (string, Qnil);
2196
2197 XSETINT (endpos, BUF_PT (XBUFFER (Vstandard_output)));
2198
2199 Fput_text_property (startpos, endpos,
2200 Qmouse_face, intern ("highlight"),
2201 Vstandard_output);
2202 }
2203 else
2204 {
2205 Fprinc (string, Qnil);
2206 }
2207
2208 /* Output the annotation for this element. */
2209 if (CONSP (elt))
2210 {
2211 if (BUFFERP (Vstandard_output))
2212 {
2213 XSETINT (startpos, BUF_PT (XBUFFER (Vstandard_output)));
2214
2215 Fprinc (Fcar (Fcdr (elt)), Qnil);
2216
2217 XSETINT (endpos, BUF_PT (XBUFFER (Vstandard_output)));
2218
2219 Fset_text_properties (startpos, endpos, Qnil,
2220 Vstandard_output);
2221 }
2222 else
2223 {
2224 Fprinc (Fcar (Fcdr (elt)), Qnil);
2225 }
2226 }
2227
2228
2229 /* Update COLUMN for what we have output. */
2230 column += length;
2231
2232 /* If output is to a buffer, recompute COLUMN in a way
2233 that takes account of character widths. */
2234 if (BUFFERP (Vstandard_output))
2235 {
2236 tem = Fcurrent_column ();
2237 column = XINT (tem);
2238 }
2239
2240 first = 0;
2241 }
2242 }
2243
2244 UNGCPRO;
2245
2246 if (BUFFERP (Vstandard_output))
2247 set_buffer_internal (old);
2248
2249 if (!NILP (Vrun_hooks))
2250 call1 (Vrun_hooks, intern ("completion-setup-hook"));
2251
2252 return Qnil;
2253 }
2254
2255 DEFUN ("minibuffer-completion-help", Fminibuffer_completion_help, Sminibuffer_completion_help,
2256 0, 0, "",
2257 doc: /* Display a list of possible completions of the current minibuffer contents. */)
2258 ()
2259 {
2260 Lisp_Object completions;
2261
2262 message ("Making completion list...");
2263 completions = Fall_completions (minibuffer_completion_contents (),
2264 Vminibuffer_completion_table,
2265 Vminibuffer_completion_predicate,
2266 Qt);
2267 clear_message (1, 0);
2268
2269 if (NILP (completions))
2270 {
2271 bitch_at_user ();
2272 temp_echo_area_glyphs (" [No completions]");
2273 }
2274 else
2275 internal_with_output_to_temp_buffer ("*Completions*",
2276 Fdisplay_completion_list,
2277 Fsort (completions, Qstring_lessp));
2278 return Qnil;
2279 }
2280 \f
2281 DEFUN ("self-insert-and-exit", Fself_insert_and_exit, Sself_insert_and_exit, 0, 0, "",
2282 doc: /* Terminate minibuffer input. */)
2283 ()
2284 {
2285 if (INTEGERP (last_command_char))
2286 internal_self_insert (XINT (last_command_char), 0);
2287 else
2288 bitch_at_user ();
2289
2290 return Fthrow (Qexit, Qnil);
2291 }
2292
2293 DEFUN ("exit-minibuffer", Fexit_minibuffer, Sexit_minibuffer, 0, 0, "",
2294 doc: /* Terminate this minibuffer argument. */)
2295 ()
2296 {
2297 return Fthrow (Qexit, Qnil);
2298 }
2299
2300 DEFUN ("minibuffer-depth", Fminibuffer_depth, Sminibuffer_depth, 0, 0, 0,
2301 doc: /* Return current depth of activations of minibuffer, a nonnegative integer. */)
2302 ()
2303 {
2304 return make_number (minibuf_level);
2305 }
2306
2307 DEFUN ("minibuffer-prompt", Fminibuffer_prompt, Sminibuffer_prompt, 0, 0, 0,
2308 doc: /* Return the prompt string of the currently-active minibuffer.
2309 If no minibuffer is active, return nil. */)
2310 ()
2311 {
2312 return Fcopy_sequence (minibuf_prompt);
2313 }
2314
2315 \f
2316 /* Temporarily display the string M at the end of the current
2317 minibuffer contents. This is used to display things like
2318 "[No Match]" when the user requests a completion for a prefix
2319 that has no possible completions, and other quick, unobtrusive
2320 messages. */
2321
2322 void
2323 temp_echo_area_glyphs (m)
2324 char *m;
2325 {
2326 int osize = ZV;
2327 int osize_byte = ZV_BYTE;
2328 int opoint = PT;
2329 int opoint_byte = PT_BYTE;
2330 Lisp_Object oinhibit;
2331 oinhibit = Vinhibit_quit;
2332
2333 /* Clear out any old echo-area message to make way for our new thing. */
2334 message (0);
2335
2336 SET_PT_BOTH (osize, osize_byte);
2337 insert_string (m);
2338 SET_PT_BOTH (opoint, opoint_byte);
2339 Vinhibit_quit = Qt;
2340 Fsit_for (make_number (2), Qnil, Qnil);
2341 del_range_both (osize, osize_byte, ZV, ZV_BYTE, 1);
2342 SET_PT_BOTH (opoint, opoint_byte);
2343 if (!NILP (Vquit_flag))
2344 {
2345 Vquit_flag = Qnil;
2346 Vunread_command_events = Fcons (make_number (quit_char), Qnil);
2347 }
2348 Vinhibit_quit = oinhibit;
2349 }
2350
2351 DEFUN ("minibuffer-message", Fminibuffer_message, Sminibuffer_message,
2352 1, 1, 0,
2353 doc: /* Temporarily display STRING at the end of the minibuffer.
2354 The text is displayed for two seconds,
2355 or until the next input event arrives, whichever comes first. */)
2356 (string)
2357 Lisp_Object string;
2358 {
2359 temp_echo_area_glyphs (XSTRING (string)->data);
2360 return Qnil;
2361 }
2362 \f
2363 void
2364 init_minibuf_once ()
2365 {
2366 Vminibuffer_list = Qnil;
2367 staticpro (&Vminibuffer_list);
2368 }
2369
2370 void
2371 syms_of_minibuf ()
2372 {
2373 minibuf_level = 0;
2374 minibuf_prompt = Qnil;
2375 staticpro (&minibuf_prompt);
2376
2377 minibuf_save_list = Qnil;
2378 staticpro (&minibuf_save_list);
2379
2380 Qread_file_name_internal = intern ("read-file-name-internal");
2381 staticpro (&Qread_file_name_internal);
2382
2383 Qminibuffer_default = intern ("minibuffer-default");
2384 staticpro (&Qminibuffer_default);
2385 Fset (Qminibuffer_default, Qnil);
2386
2387 Qminibuffer_completion_table = intern ("minibuffer-completion-table");
2388 staticpro (&Qminibuffer_completion_table);
2389
2390 Qminibuffer_completion_confirm = intern ("minibuffer-completion-confirm");
2391 staticpro (&Qminibuffer_completion_confirm);
2392
2393 Qminibuffer_completion_predicate = intern ("minibuffer-completion-predicate");
2394 staticpro (&Qminibuffer_completion_predicate);
2395
2396 staticpro (&last_exact_completion);
2397 last_exact_completion = Qnil;
2398
2399 staticpro (&last_minibuf_string);
2400 last_minibuf_string = Qnil;
2401
2402 Quser_variable_p = intern ("user-variable-p");
2403 staticpro (&Quser_variable_p);
2404
2405 Qminibuffer_history = intern ("minibuffer-history");
2406 staticpro (&Qminibuffer_history);
2407
2408 Qbuffer_name_history = intern ("buffer-name-history");
2409 staticpro (&Qbuffer_name_history);
2410 Fset (Qbuffer_name_history, Qnil);
2411
2412 Qminibuffer_setup_hook = intern ("minibuffer-setup-hook");
2413 staticpro (&Qminibuffer_setup_hook);
2414
2415 Qminibuffer_exit_hook = intern ("minibuffer-exit-hook");
2416 staticpro (&Qminibuffer_exit_hook);
2417
2418 Qhistory_length = intern ("history-length");
2419 staticpro (&Qhistory_length);
2420
2421 Qcurrent_input_method = intern ("current-input-method");
2422 staticpro (&Qcurrent_input_method);
2423
2424 Qactivate_input_method = intern ("activate-input-method");
2425 staticpro (&Qactivate_input_method);
2426
2427 DEFVAR_LISP ("read-buffer-function", &Vread_buffer_function,
2428 doc: /* If this is non-nil, `read-buffer' does its work by calling this function. */);
2429 Vread_buffer_function = Qnil;
2430
2431 DEFVAR_LISP ("minibuffer-setup-hook", &Vminibuffer_setup_hook,
2432 doc: /* Normal hook run just after entry to minibuffer. */);
2433 Vminibuffer_setup_hook = Qnil;
2434
2435 DEFVAR_LISP ("minibuffer-exit-hook", &Vminibuffer_exit_hook,
2436 doc: /* Normal hook run just after exit from minibuffer. */);
2437 Vminibuffer_exit_hook = Qnil;
2438
2439 DEFVAR_LISP ("history-length", &Vhistory_length,
2440 doc: /* *Maximum length for history lists before truncation takes place.
2441 A number means that length; t means infinite. Truncation takes place
2442 just after a new element is inserted. Setting the history-length
2443 property of a history variable overrides this default. */);
2444 XSETFASTINT (Vhistory_length, 30);
2445
2446 DEFVAR_LISP ("completion-auto-help", &Vcompletion_auto_help,
2447 doc: /* *Non-nil means automatically provide help for invalid completion input. */);
2448 Vcompletion_auto_help = Qt;
2449
2450 DEFVAR_BOOL ("completion-ignore-case", &completion_ignore_case,
2451 doc: /* Non-nil means don't consider case significant in completion. */);
2452 completion_ignore_case = 0;
2453
2454 DEFVAR_BOOL ("enable-recursive-minibuffers", &enable_recursive_minibuffers,
2455 doc: /* *Non-nil means to allow minibuffer commands while in the minibuffer.
2456 This variable makes a difference whenever the minibuffer window is active. */);
2457 enable_recursive_minibuffers = 0;
2458
2459 DEFVAR_LISP ("minibuffer-completion-table", &Vminibuffer_completion_table,
2460 doc: /* Alist or obarray used for completion in the minibuffer.
2461 This becomes the ALIST argument to `try-completion' and `all-completion'.
2462
2463 The value may alternatively be a function, which is given three arguments:
2464 STRING, the current buffer contents;
2465 PREDICATE, the predicate for filtering possible matches;
2466 CODE, which says what kind of things to do.
2467 CODE can be nil, t or `lambda'.
2468 nil means to return the best completion of STRING, or nil if there is none.
2469 t means to return a list of all possible completions of STRING.
2470 `lambda' means to return t if STRING is a valid completion as it stands. */);
2471 Vminibuffer_completion_table = Qnil;
2472
2473 DEFVAR_LISP ("minibuffer-completion-predicate", &Vminibuffer_completion_predicate,
2474 doc: /* Within call to `completing-read', this holds the PREDICATE argument. */);
2475 Vminibuffer_completion_predicate = Qnil;
2476
2477 DEFVAR_LISP ("minibuffer-completion-confirm", &Vminibuffer_completion_confirm,
2478 doc: /* Non-nil means to demand confirmation of completion before exiting minibuffer. */);
2479 Vminibuffer_completion_confirm = Qnil;
2480
2481 DEFVAR_LISP ("minibuffer-completing-file-name",
2482 &Vminibuffer_completing_file_name,
2483 doc: /* Non-nil means completing file names. */);
2484 Vminibuffer_completing_file_name = Qnil;
2485
2486 DEFVAR_LISP ("minibuffer-help-form", &Vminibuffer_help_form,
2487 doc: /* Value that `help-form' takes on inside the minibuffer. */);
2488 Vminibuffer_help_form = Qnil;
2489
2490 DEFVAR_LISP ("minibuffer-history-variable", &Vminibuffer_history_variable,
2491 doc: /* History list symbol to add minibuffer values to.
2492 Each string of minibuffer input, as it appears on exit from the minibuffer,
2493 is added with
2494 (set minibuffer-history-variable
2495 (cons STRING (symbol-value minibuffer-history-variable))) */);
2496 XSETFASTINT (Vminibuffer_history_variable, 0);
2497
2498 DEFVAR_LISP ("minibuffer-history-position", &Vminibuffer_history_position,
2499 doc: /* Current position of redoing in the history list. */);
2500 Vminibuffer_history_position = Qnil;
2501
2502 DEFVAR_BOOL ("minibuffer-auto-raise", &minibuffer_auto_raise,
2503 doc: /* *Non-nil means entering the minibuffer raises the minibuffer's frame.
2504 Some uses of the echo area also raise that frame (since they use it too). */);
2505 minibuffer_auto_raise = 0;
2506
2507 DEFVAR_LISP ("completion-regexp-list", &Vcompletion_regexp_list,
2508 doc: /* List of regexps that should restrict possible completions. */);
2509 Vcompletion_regexp_list = Qnil;
2510
2511 DEFVAR_BOOL ("minibuffer-allow-text-properties",
2512 &minibuffer_allow_text_properties,
2513 doc: /* Non-nil means `read-from-minibuffer' should not discard text properties.
2514 This also affects `read-string', but it does not affect `read-minibuffer',
2515 `read-no-blanks-input', or any of the functions that do minibuffer input
2516 with completion; they always discard text properties. */);
2517 minibuffer_allow_text_properties = 0;
2518
2519 DEFVAR_LISP ("minibuffer-prompt-properties", &Vminibuffer_prompt_properties,
2520 doc: /* Text properties that are added to minibuffer prompts.
2521 These are in addition to the basic `field' property, and stickiness
2522 properties. */);
2523 /* We use `intern' here instead of Qread_only to avoid
2524 initialization-order problems. */
2525 Vminibuffer_prompt_properties
2526 = Fcons (intern ("read-only"), Fcons (Qt, Qnil));
2527
2528 defsubr (&Sset_minibuffer_window);
2529 defsubr (&Sread_from_minibuffer);
2530 defsubr (&Seval_minibuffer);
2531 defsubr (&Sread_minibuffer);
2532 defsubr (&Sread_string);
2533 defsubr (&Sread_command);
2534 defsubr (&Sread_variable);
2535 defsubr (&Sread_buffer);
2536 defsubr (&Sread_no_blanks_input);
2537 defsubr (&Sminibuffer_depth);
2538 defsubr (&Sminibuffer_prompt);
2539
2540 defsubr (&Sminibuffer_prompt_end);
2541 defsubr (&Sminibuffer_contents);
2542 defsubr (&Sminibuffer_contents_no_properties);
2543 defsubr (&Sdelete_minibuffer_contents);
2544
2545 defsubr (&Stry_completion);
2546 defsubr (&Sall_completions);
2547 defsubr (&Stest_completion);
2548 defsubr (&Sassoc_string);
2549 defsubr (&Scompleting_read);
2550 defsubr (&Sminibuffer_complete);
2551 defsubr (&Sminibuffer_complete_word);
2552 defsubr (&Sminibuffer_complete_and_exit);
2553 defsubr (&Sdisplay_completion_list);
2554 defsubr (&Sminibuffer_completion_help);
2555
2556 defsubr (&Sself_insert_and_exit);
2557 defsubr (&Sexit_minibuffer);
2558
2559 defsubr (&Sminibuffer_message);
2560 }
2561
2562 void
2563 keys_of_minibuf ()
2564 {
2565 initial_define_key (Vminibuffer_local_map, Ctl ('g'),
2566 "abort-recursive-edit");
2567 initial_define_key (Vminibuffer_local_map, Ctl ('m'),
2568 "exit-minibuffer");
2569 initial_define_key (Vminibuffer_local_map, Ctl ('j'),
2570 "exit-minibuffer");
2571
2572 initial_define_key (Vminibuffer_local_ns_map, ' ',
2573 "exit-minibuffer");
2574 initial_define_key (Vminibuffer_local_ns_map, '\t',
2575 "exit-minibuffer");
2576 initial_define_key (Vminibuffer_local_ns_map, '?',
2577 "self-insert-and-exit");
2578
2579 initial_define_key (Vminibuffer_local_completion_map, '\t',
2580 "minibuffer-complete");
2581 initial_define_key (Vminibuffer_local_completion_map, ' ',
2582 "minibuffer-complete-word");
2583 initial_define_key (Vminibuffer_local_completion_map, '?',
2584 "minibuffer-completion-help");
2585
2586 initial_define_key (Vminibuffer_local_must_match_map, Ctl ('m'),
2587 "minibuffer-complete-and-exit");
2588 initial_define_key (Vminibuffer_local_must_match_map, Ctl ('j'),
2589 "minibuffer-complete-and-exit");
2590 }