1 /* Minibuffer input and completion.
2 Copyright (C) 1985,86,93,94,95,96,97,98,99,2000,01,03,04
3 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
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)
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.
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. */
30 #include "dispextern.h"
35 #include "intervals.h"
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. */
46 Lisp_Object Vminibuffer_list
;
48 /* Data to remember during recursive minibuffer invocations */
50 Lisp_Object minibuf_save_list
;
52 /* Depth in minibuffer invocations. */
56 /* Nonzero means display completion help for invalid input. */
58 Lisp_Object Vcompletion_auto_help
;
60 /* The maximum length of a minibuffer history. */
62 Lisp_Object Qhistory_length
, Vhistory_length
;
64 /* No duplicates in history. */
66 int history_delete_duplicates
;
68 /* Fread_minibuffer leaves the input here as a string. */
70 Lisp_Object last_minibuf_string
;
72 /* Nonzero means let functions called when within a minibuffer
73 invoke recursive minibuffers (to read arguments, or whatever) */
75 int enable_recursive_minibuffers
;
77 /* Nonzero means don't ignore text properties
78 in Fread_from_minibuffer. */
80 int minibuffer_allow_text_properties
;
82 /* help-form is bound to this while in the minibuffer. */
84 Lisp_Object Vminibuffer_help_form
;
86 /* Variable which is the history list to add minibuffer values to. */
88 Lisp_Object Vminibuffer_history_variable
;
90 /* Current position in the history list (adjusted by M-n and M-p). */
92 Lisp_Object Vminibuffer_history_position
;
94 /* Text properties that are added to minibuffer prompts.
95 These are in addition to the basic `field' property, and stickiness
98 Lisp_Object Vminibuffer_prompt_properties
;
100 Lisp_Object Qminibuffer_history
, Qbuffer_name_history
;
102 Lisp_Object Qread_file_name_internal
;
104 /* Normal hooks for entry to and exit from minibuffer. */
106 Lisp_Object Qminibuffer_setup_hook
, Vminibuffer_setup_hook
;
107 Lisp_Object Qminibuffer_exit_hook
, Vminibuffer_exit_hook
;
109 /* Function to call to read a buffer name. */
110 Lisp_Object Vread_buffer_function
;
112 /* Nonzero means completion ignores case. */
114 int completion_ignore_case
;
116 /* List of regexps that should restrict possible completions. */
118 Lisp_Object Vcompletion_regexp_list
;
120 /* Nonzero means raise the minibuffer frame when the minibuffer
123 int minibuffer_auto_raise
;
125 /* If last completion attempt reported "Complete but not unique"
126 then this is the string completed then; otherwise this is nil. */
128 static Lisp_Object last_exact_completion
;
130 extern Lisp_Object Voverriding_local_map
;
132 Lisp_Object Quser_variable_p
;
134 Lisp_Object Qminibuffer_default
;
136 Lisp_Object Qcurrent_input_method
, Qactivate_input_method
;
138 Lisp_Object Qcase_fold_search
;
140 extern Lisp_Object Qmouse_face
;
142 extern Lisp_Object Qfield
;
144 /* Put minibuf on currently selected frame's minibuffer.
145 We do this whenever the user starts a new minibuffer
146 or when a minibuffer exits. */
149 choose_minibuf_frame ()
151 if (FRAMEP (selected_frame
)
152 && FRAME_LIVE_P (XFRAME (selected_frame
))
153 && !EQ (minibuf_window
, XFRAME (selected_frame
)->minibuffer_window
))
155 struct frame
*sf
= XFRAME (selected_frame
);
158 /* I don't think that any frames may validly have a null minibuffer
160 if (NILP (sf
->minibuffer_window
))
163 /* Under X, we come here with minibuf_window being the
164 minibuffer window of the unused termcap window created in
165 init_window_once. That window doesn't have a buffer. */
166 buffer
= XWINDOW (minibuf_window
)->buffer
;
167 if (BUFFERP (buffer
))
168 Fset_window_buffer (sf
->minibuffer_window
, buffer
, Qnil
);
169 minibuf_window
= sf
->minibuffer_window
;
172 /* Make sure no other frame has a minibuffer as its selected window,
173 because the text would not be displayed in it, and that would be
174 confusing. Only allow the selected frame to do this,
175 and that only if the minibuffer is active. */
177 Lisp_Object tail
, frame
;
179 FOR_EACH_FRAME (tail
, frame
)
180 if (MINI_WINDOW_P (XWINDOW (FRAME_SELECTED_WINDOW (XFRAME (frame
))))
181 && !(EQ (frame
, selected_frame
)
182 && minibuf_level
> 0))
183 Fset_frame_selected_window (frame
, Fframe_first_window (frame
));
188 choose_minibuf_frame_1 (ignore
)
191 choose_minibuf_frame ();
195 DEFUN ("set-minibuffer-window", Fset_minibuffer_window
,
196 Sset_minibuffer_window
, 1, 1, 0,
197 doc
: /* Specify which minibuffer window to use for the minibuffer.
198 This affects where the minibuffer is displayed if you put text in it
199 without invoking the usual minibuffer commands. */)
203 CHECK_WINDOW (window
);
204 if (! MINI_WINDOW_P (XWINDOW (window
)))
205 error ("Window is not a minibuffer window");
207 minibuf_window
= window
;
213 /* Actual minibuffer invocation. */
215 static Lisp_Object read_minibuf_unwind
P_ ((Lisp_Object
));
216 static Lisp_Object run_exit_minibuf_hook
P_ ((Lisp_Object
));
217 static Lisp_Object read_minibuf
P_ ((Lisp_Object
, Lisp_Object
,
218 Lisp_Object
, Lisp_Object
,
220 Lisp_Object
, Lisp_Object
,
222 static Lisp_Object read_minibuf_noninteractive
P_ ((Lisp_Object
, Lisp_Object
,
223 Lisp_Object
, Lisp_Object
,
225 Lisp_Object
, Lisp_Object
,
227 static Lisp_Object string_to_object
P_ ((Lisp_Object
, Lisp_Object
));
230 /* Read a Lisp object from VAL and return it. If VAL is an empty
231 string, and DEFALT is a string, read from DEFALT instead of VAL. */
234 string_to_object (val
, defalt
)
235 Lisp_Object val
, defalt
;
237 struct gcpro gcpro1
, gcpro2
;
238 Lisp_Object expr_and_pos
;
241 GCPRO2 (val
, defalt
);
243 if (STRINGP (val
) && SCHARS (val
) == 0
247 expr_and_pos
= Fread_from_string (val
, Qnil
, Qnil
);
248 pos
= XINT (Fcdr (expr_and_pos
));
249 if (pos
!= SCHARS (val
))
251 /* Ignore trailing whitespace; any other trailing junk
254 pos
= string_char_to_byte (val
, pos
);
255 for (i
= pos
; i
< SBYTES (val
); i
++)
257 int c
= SREF (val
, i
);
258 if (c
!= ' ' && c
!= '\t' && c
!= '\n')
259 error ("Trailing garbage following expression");
263 val
= Fcar (expr_and_pos
);
264 RETURN_UNGCPRO (val
);
268 /* Like read_minibuf but reading from stdin. This function is called
269 from read_minibuf to do the job if noninteractive. */
272 read_minibuf_noninteractive (map
, initial
, prompt
, backup_n
, expflag
,
273 histvar
, histpos
, defalt
, allow_props
,
274 inherit_input_method
)
278 Lisp_Object backup_n
;
284 int inherit_input_method
;
290 fprintf (stdout
, "%s", SDATA (prompt
));
296 line
= (char *) xmalloc (size
* sizeof *line
);
297 while ((s
= fgets (line
+ len
, size
- len
, stdin
)) != NULL
298 && (len
= strlen (line
),
299 len
== size
- 1 && line
[len
- 1] != '\n'))
302 line
= (char *) xrealloc (line
, size
);
309 if (len
> 0 && line
[len
- 1] == '\n')
312 val
= build_string (line
);
318 error ("Error reading from stdin");
321 /* If Lisp form desired instead of string, parse it. */
323 val
= string_to_object (val
, defalt
);
328 DEFUN ("minibufferp", Fminibufferp
,
329 Sminibufferp
, 0, 1, 0,
330 doc
: /* Return t if BUFFER is a minibuffer.
331 No argument or nil as argument means use current buffer as BUFFER.
332 BUFFER can be a buffer or a buffer name. */)
339 buffer
= Fcurrent_buffer ();
340 else if (STRINGP (buffer
))
341 buffer
= Fget_buffer (buffer
);
343 CHECK_BUFFER (buffer
);
345 tem
= Fmemq (buffer
, Vminibuffer_list
);
346 return ! NILP (tem
) ? Qt
: Qnil
;
349 DEFUN ("minibuffer-prompt-end", Fminibuffer_prompt_end
,
350 Sminibuffer_prompt_end
, 0, 0, 0,
351 doc
: /* Return the buffer position of the end of the minibuffer prompt.
352 Return (point-min) if current buffer is not a mini-buffer. */)
355 /* This function is written to be most efficient when there's a prompt. */
356 Lisp_Object beg
, end
, tem
;
357 beg
= make_number (BEGV
);
359 tem
= Fmemq (Fcurrent_buffer (), Vminibuffer_list
);
363 end
= Ffield_end (beg
, Qnil
, Qnil
);
365 if (XINT (end
) == ZV
&& NILP (Fget_char_property (beg
, Qfield
, Qnil
)))
371 DEFUN ("minibuffer-contents", Fminibuffer_contents
,
372 Sminibuffer_contents
, 0, 0, 0,
373 doc
: /* Return the user input in a minibuffer as a string.
374 The current buffer must be a minibuffer. */)
377 int prompt_end
= XINT (Fminibuffer_prompt_end ());
378 return make_buffer_string (prompt_end
, ZV
, 1);
381 DEFUN ("minibuffer-contents-no-properties", Fminibuffer_contents_no_properties
,
382 Sminibuffer_contents_no_properties
, 0, 0, 0,
383 doc
: /* Return the user input in a minibuffer as a string, without text-properties.
384 The current buffer must be a minibuffer. */)
387 int prompt_end
= XINT (Fminibuffer_prompt_end ());
388 return make_buffer_string (prompt_end
, ZV
, 0);
391 DEFUN ("delete-minibuffer-contents", Fdelete_minibuffer_contents
,
392 Sdelete_minibuffer_contents
, 0, 0, 0,
393 doc
: /* Delete all user input in a minibuffer.
394 The current buffer must be a minibuffer. */)
397 int prompt_end
= XINT (Fminibuffer_prompt_end ());
399 del_range (prompt_end
, ZV
);
403 /* Get the text in the minibuffer before point.
404 That is what completion commands operate on. */
407 minibuffer_completion_contents ()
409 int prompt_end
= XINT (Fminibuffer_prompt_end ());
411 error ("Cannot do completion in the prompt");
412 return make_buffer_string (prompt_end
, PT
, 1);
415 /* Read from the minibuffer using keymap MAP and initial contents INITIAL,
416 putting point minus BACKUP_N bytes from the end of INITIAL,
417 prompting with PROMPT (a string), using history list HISTVAR
418 with initial position HISTPOS. INITIAL should be a string or a
419 cons of a string and an integer. BACKUP_N should be <= 0, or
420 Qnil, which is equivalent to 0. If INITIAL is a cons, BACKUP_N is
421 ignored and replaced with an integer that puts point at one-indexed
422 position N in INITIAL, where N is the CDR of INITIAL, or at the
423 beginning of INITIAL if N <= 0.
425 Normally return the result as a string (the text that was read),
426 but if EXPFLAG is nonzero, read it and return the object read.
427 If HISTVAR is given, save the value read on that history only if it doesn't
428 match the front of that history list exactly. The value is pushed onto
429 the list as the string that was read.
431 DEFALT specifies the default value for the sake of history commands.
433 If ALLOW_PROPS is nonzero, we do not throw away text properties.
435 if INHERIT_INPUT_METHOD is nonzero, the minibuffer inherits the
436 current input method. */
439 read_minibuf (map
, initial
, prompt
, backup_n
, expflag
,
440 histvar
, histpos
, defalt
, allow_props
, inherit_input_method
,
445 Lisp_Object backup_n
;
451 int inherit_input_method
;
455 int count
= SPECPDL_INDEX ();
456 Lisp_Object mini_frame
, ambient_dir
, minibuffer
, input_method
;
457 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
, gcpro5
;
458 Lisp_Object enable_multibyte
;
459 int pos
= INTEGERP (backup_n
) ? XINT (backup_n
) : 0;
461 /* String to add to the history. */
462 Lisp_Object histstring
;
464 extern Lisp_Object Qfront_sticky
;
465 extern Lisp_Object Qrear_nonsticky
;
467 specbind (Qminibuffer_default
, defalt
);
469 single_kboard_state ();
470 #ifdef HAVE_X_WINDOWS
471 if (display_hourglass_p
)
479 backup_n
= Fcdr (initial
);
480 initial
= Fcar (initial
);
481 CHECK_STRING (initial
);
482 if (!NILP (backup_n
))
484 CHECK_NUMBER (backup_n
);
485 /* Convert to distance from end of input. */
486 if (XINT (backup_n
) < 1)
487 /* A number too small means the beginning of the string. */
488 pos
= - SCHARS (initial
);
490 pos
= XINT (backup_n
) - 1 - SCHARS (initial
);
494 CHECK_STRING (initial
);
497 ambient_dir
= current_buffer
->directory
;
499 enable_multibyte
= Qnil
;
501 /* Don't need to protect PROMPT, HISTVAR, and HISTPOS because we
502 store them away before we can GC. Don't need to protect
503 BACKUP_N because we use the value only if it is an integer. */
504 GCPRO5 (map
, initial
, val
, ambient_dir
, input_method
);
506 if (!STRINGP (prompt
))
507 prompt
= empty_string
;
509 if (!enable_recursive_minibuffers
510 && minibuf_level
> 0)
512 if (EQ (selected_window
, minibuf_window
))
513 error ("Command attempted to use minibuffer while in minibuffer");
515 /* If we're in another window, cancel the minibuffer that's active. */
517 build_string ("Command attempted to use minibuffer while in minibuffer"));
522 val
= read_minibuf_noninteractive (map
, initial
, prompt
,
524 expflag
, histvar
, histpos
, defalt
,
525 allow_props
, inherit_input_method
);
527 return unbind_to (count
, val
);
530 /* Choose the minibuffer window and frame, and take action on them. */
532 choose_minibuf_frame ();
534 record_unwind_protect (choose_minibuf_frame_1
, Qnil
);
536 record_unwind_protect (Fset_window_configuration
,
537 Fcurrent_window_configuration (Qnil
));
539 /* If the minibuffer window is on a different frame, save that
540 frame's configuration too. */
541 mini_frame
= WINDOW_FRAME (XWINDOW (minibuf_window
));
542 if (!EQ (mini_frame
, selected_frame
))
543 record_unwind_protect (Fset_window_configuration
,
544 Fcurrent_window_configuration (mini_frame
));
546 /* If the minibuffer is on an iconified or invisible frame,
547 make it visible now. */
548 Fmake_frame_visible (mini_frame
);
550 if (minibuffer_auto_raise
)
551 Fraise_frame (mini_frame
);
553 /* We have to do this after saving the window configuration
554 since that is what restores the current buffer. */
556 /* Arrange to restore a number of minibuffer-related variables.
557 We could bind each variable separately, but that would use lots of
560 = Fcons (Voverriding_local_map
,
561 Fcons (minibuf_window
, minibuf_save_list
));
563 = Fcons (minibuf_prompt
,
564 Fcons (make_number (minibuf_prompt_width
),
566 Fcons (Vcurrent_prefix_arg
,
567 Fcons (Vminibuffer_history_position
,
568 Fcons (Vminibuffer_history_variable
,
569 minibuf_save_list
))))));
571 record_unwind_protect (read_minibuf_unwind
, Qnil
);
573 /* We are exiting the minibuffer one way or the other, so run the hook.
574 It should be run before unwinding the minibuf settings. Do it
575 separately from read_minibuf_unwind because we need to make sure that
576 read_minibuf_unwind is fully executed even if exit-minibuffer-hook
577 signals an error. --Stef */
578 record_unwind_protect (run_exit_minibuf_hook
, Qnil
);
580 /* Now that we can restore all those variables, start changing them. */
582 minibuf_prompt_width
= 0;
583 minibuf_prompt
= Fcopy_sequence (prompt
);
584 Vminibuffer_history_position
= histpos
;
585 Vminibuffer_history_variable
= histvar
;
586 Vhelp_form
= Vminibuffer_help_form
;
588 if (inherit_input_method
)
590 /* `current-input-method' is buffer local. So, remember it in
591 INPUT_METHOD before changing the current buffer. */
592 input_method
= Fsymbol_value (Qcurrent_input_method
);
593 enable_multibyte
= current_buffer
->enable_multibyte_characters
;
596 /* Switch to the minibuffer. */
598 minibuffer
= get_minibuffer (minibuf_level
);
599 Fset_buffer (minibuffer
);
601 /* The current buffer's default directory is usually the right thing
602 for our minibuffer here. However, if you're typing a command at
603 a minibuffer-only frame when minibuf_level is zero, then buf IS
604 the current_buffer, so reset_buffer leaves buf's default
605 directory unchanged. This is a bummer when you've just started
606 up Emacs and buf's default directory is Qnil. Here's a hack; can
607 you think of something better to do? Find another buffer with a
608 better directory, and use that one instead. */
609 if (STRINGP (ambient_dir
))
610 current_buffer
->directory
= ambient_dir
;
613 Lisp_Object buf_list
;
615 for (buf_list
= Vbuffer_alist
;
617 buf_list
= XCDR (buf_list
))
619 Lisp_Object other_buf
;
621 other_buf
= XCDR (XCAR (buf_list
));
622 if (STRINGP (XBUFFER (other_buf
)->directory
))
624 current_buffer
->directory
= XBUFFER (other_buf
)->directory
;
630 if (!EQ (mini_frame
, selected_frame
))
631 Fredirect_frame_focus (selected_frame
, mini_frame
);
633 Vminibuf_scroll_window
= selected_window
;
634 if (minibuf_level
== 1 || !EQ (minibuf_window
, selected_window
))
635 minibuf_selected_window
= selected_window
;
636 Fset_window_buffer (minibuf_window
, Fcurrent_buffer (), Qnil
);
637 Fselect_window (minibuf_window
, Qnil
);
638 XSETFASTINT (XWINDOW (minibuf_window
)->hscroll
, 0);
640 Fmake_local_variable (Qprint_escape_newlines
);
641 print_escape_newlines
= 1;
643 /* Erase the buffer. */
645 int count1
= SPECPDL_INDEX ();
646 specbind (Qinhibit_read_only
, Qt
);
647 specbind (Qinhibit_modification_hooks
, Qt
);
649 unbind_to (count1
, Qnil
);
652 if (!NILP (current_buffer
->enable_multibyte_characters
)
653 && ! STRING_MULTIBYTE (minibuf_prompt
))
654 minibuf_prompt
= Fstring_make_multibyte (minibuf_prompt
);
656 /* Insert the prompt, record where it ends. */
657 Finsert (1, &minibuf_prompt
);
660 Fput_text_property (make_number (BEG
), make_number (PT
),
661 Qfront_sticky
, Qt
, Qnil
);
662 Fput_text_property (make_number (BEG
), make_number (PT
),
663 Qrear_nonsticky
, Qt
, Qnil
);
664 Fput_text_property (make_number (BEG
), make_number (PT
),
666 Fadd_text_properties (make_number (BEG
), make_number (PT
),
667 Vminibuffer_prompt_properties
, Qnil
);
670 minibuf_prompt_width
= (int) current_column (); /* iftc */
672 /* If appropriate, copy enable-multibyte-characters into the minibuffer. */
673 if (inherit_input_method
)
674 current_buffer
->enable_multibyte_characters
= enable_multibyte
;
676 /* Put in the initial input. */
679 Finsert (1, &initial
);
680 Fforward_char (make_number (pos
));
683 clear_message (1, 1);
684 current_buffer
->keymap
= map
;
686 /* Turn on an input method stored in INPUT_METHOD if any. */
687 if (STRINGP (input_method
) && !NILP (Ffboundp (Qactivate_input_method
)))
688 call1 (Qactivate_input_method
, input_method
);
690 /* Run our hook, but not if it is empty.
691 (run-hooks would do nothing if it is empty,
692 but it's important to save time here in the usual case.) */
693 if (!NILP (Vminibuffer_setup_hook
) && !EQ (Vminibuffer_setup_hook
, Qunbound
)
694 && !NILP (Vrun_hooks
))
695 call1 (Vrun_hooks
, Qminibuffer_setup_hook
);
697 /* Don't allow the user to undo past this point. */
698 current_buffer
->undo_list
= Qnil
;
702 /* If cursor is on the minibuffer line,
703 show the user we have exited by putting it in column 0. */
704 if (XWINDOW (minibuf_window
)->cursor
.vpos
>= 0
707 XWINDOW (minibuf_window
)->cursor
.hpos
= 0;
708 XWINDOW (minibuf_window
)->cursor
.x
= 0;
709 XWINDOW (minibuf_window
)->must_be_updated_p
= 1;
710 update_frame (XFRAME (selected_frame
), 1, 1);
711 if (rif
&& rif
->flush_display
)
712 rif
->flush_display (XFRAME (XWINDOW (minibuf_window
)->frame
));
715 /* Make minibuffer contents into a string. */
716 Fset_buffer (minibuffer
);
718 val
= Fminibuffer_contents ();
720 val
= Fminibuffer_contents_no_properties ();
722 /* VAL is the string of minibuffer text. */
724 last_minibuf_string
= val
;
726 /* Choose the string to add to the history. */
727 if (SCHARS (val
) != 0 || keep_all
)
729 else if (STRINGP (defalt
))
734 /* Add the value to the appropriate history list, if any. */
735 if (SYMBOLP (Vminibuffer_history_variable
)
736 && !NILP (histstring
))
738 /* If the caller wanted to save the value read on a history list,
739 then do so if the value is not already the front of the list. */
742 /* If variable is unbound, make it nil. */
743 if (EQ (SYMBOL_VALUE (Vminibuffer_history_variable
), Qunbound
))
744 Fset (Vminibuffer_history_variable
, Qnil
);
746 histval
= Fsymbol_value (Vminibuffer_history_variable
);
748 /* The value of the history variable must be a cons or nil. Other
749 values are unacceptable. We silently ignore these values. */
753 /* Don't duplicate the most recent entry in the history. */
755 || NILP (Fequal (histstring
, Fcar (histval
))))))
759 if (history_delete_duplicates
) Fdelete (histstring
, histval
);
760 histval
= Fcons (histstring
, histval
);
761 Fset (Vminibuffer_history_variable
, histval
);
763 /* Truncate if requested. */
764 length
= Fget (Vminibuffer_history_variable
, Qhistory_length
);
765 if (NILP (length
)) length
= Vhistory_length
;
766 if (INTEGERP (length
))
768 if (XINT (length
) <= 0)
769 Fset (Vminibuffer_history_variable
, Qnil
);
774 temp
= Fnthcdr (Fsub1 (length
), histval
);
775 if (CONSP (temp
)) Fsetcdr (temp
, Qnil
);
781 /* If Lisp form desired instead of string, parse it. */
783 val
= string_to_object (val
, defalt
);
785 /* The appropriate frame will get selected
786 in set-window-configuration. */
788 return unbind_to (count
, val
);
791 /* Return a buffer to be used as the minibuffer at depth `depth'.
792 depth = 0 is the lowest allowed argument, and that is the value
793 used for nonrecursive minibuffer invocations */
796 get_minibuffer (depth
)
799 Lisp_Object tail
, num
, buf
;
801 extern Lisp_Object
nconc2 ();
803 XSETFASTINT (num
, depth
);
804 tail
= Fnthcdr (num
, Vminibuffer_list
);
807 tail
= Fcons (Qnil
, Qnil
);
808 Vminibuffer_list
= nconc2 (Vminibuffer_list
, tail
);
811 if (NILP (buf
) || NILP (XBUFFER (buf
)->name
))
813 sprintf (name
, " *Minibuf-%d*", depth
);
814 buf
= Fget_buffer_create (build_string (name
));
816 /* Although the buffer's name starts with a space, undo should be
818 Fbuffer_enable_undo (buf
);
824 int count
= SPECPDL_INDEX ();
825 /* `reset_buffer' blindly sets the list of overlays to NULL, so we
826 have to empty the list, otherwise we end up with overlays that
827 think they belong to this buffer while the buffer doesn't know about
829 delete_all_overlays (XBUFFER (buf
));
830 reset_buffer (XBUFFER (buf
));
831 record_unwind_protect (Fset_buffer
, Fcurrent_buffer ());
833 Fkill_all_local_variables ();
834 unbind_to (count
, Qnil
);
841 run_exit_minibuf_hook (data
)
844 if (!NILP (Vminibuffer_exit_hook
) && !EQ (Vminibuffer_exit_hook
, Qunbound
)
845 && !NILP (Vrun_hooks
))
846 safe_run_hooks (Qminibuffer_exit_hook
);
851 /* This function is called on exiting minibuffer, whether normally or
852 not, and it restores the current window, buffer, etc. */
855 read_minibuf_unwind (data
)
858 Lisp_Object old_deactivate_mark
;
861 /* If this was a recursive minibuffer,
862 tie the minibuffer window back to the outer level minibuffer buffer. */
865 window
= minibuf_window
;
866 /* To keep things predictable, in case it matters, let's be in the
867 minibuffer when we reset the relevant variables. */
868 Fset_buffer (XWINDOW (window
)->buffer
);
870 /* Restore prompt, etc, from outer minibuffer level. */
871 minibuf_prompt
= Fcar (minibuf_save_list
);
872 minibuf_save_list
= Fcdr (minibuf_save_list
);
873 minibuf_prompt_width
= XFASTINT (Fcar (minibuf_save_list
));
874 minibuf_save_list
= Fcdr (minibuf_save_list
);
875 Vhelp_form
= Fcar (minibuf_save_list
);
876 minibuf_save_list
= Fcdr (minibuf_save_list
);
877 Vcurrent_prefix_arg
= Fcar (minibuf_save_list
);
878 minibuf_save_list
= Fcdr (minibuf_save_list
);
879 Vminibuffer_history_position
= Fcar (minibuf_save_list
);
880 minibuf_save_list
= Fcdr (minibuf_save_list
);
881 Vminibuffer_history_variable
= Fcar (minibuf_save_list
);
882 minibuf_save_list
= Fcdr (minibuf_save_list
);
883 Voverriding_local_map
= Fcar (minibuf_save_list
);
884 minibuf_save_list
= Fcdr (minibuf_save_list
);
886 temp
= Fcar (minibuf_save_list
);
887 if (FRAME_LIVE_P (XFRAME (WINDOW_FRAME (XWINDOW (temp
)))))
888 minibuf_window
= temp
;
890 minibuf_save_list
= Fcdr (minibuf_save_list
);
892 /* Erase the minibuffer we were using at this level. */
894 int count
= SPECPDL_INDEX ();
895 /* Prevent error in erase-buffer. */
896 specbind (Qinhibit_read_only
, Qt
);
897 specbind (Qinhibit_modification_hooks
, Qt
);
898 old_deactivate_mark
= Vdeactivate_mark
;
900 Vdeactivate_mark
= old_deactivate_mark
;
901 unbind_to (count
, Qnil
);
904 /* When we get to the outmost level, make sure we resize the
905 mini-window back to its normal size. */
906 if (minibuf_level
== 0)
907 resize_mini_window (XWINDOW (window
), 0);
909 /* Make sure minibuffer window is erased, not ignored. */
910 windows_or_buffers_changed
++;
911 XSETFASTINT (XWINDOW (window
)->last_modified
, 0);
912 XSETFASTINT (XWINDOW (window
)->last_overlay_modified
, 0);
917 DEFUN ("read-from-minibuffer", Fread_from_minibuffer
, Sread_from_minibuffer
, 1, 8, 0,
918 doc
: /* Read a string from the minibuffer, prompting with string PROMPT.
919 The optional second arg INITIAL-CONTENTS is an obsolete alternative to
920 DEFAULT-VALUE. It normally should be nil in new code, except when
921 HIST is a cons. It is discussed in more detail below.
922 Third arg KEYMAP is a keymap to use whilst reading;
923 if omitted or nil, the default is `minibuffer-local-map'.
924 If fourth arg READ is non-nil, then interpret the result as a Lisp object
925 and return that object:
926 in other words, do `(car (read-from-string INPUT-STRING))'
927 Fifth arg HIST, if non-nil, specifies a history list and optionally
928 the initial position in the list. It can be a symbol, which is the
929 history list variable to use, or it can be a cons cell
930 (HISTVAR . HISTPOS). In that case, HISTVAR is the history list variable
931 to use, and HISTPOS is the initial position for use by the minibuffer
932 history commands. For consistency, you should also specify that
933 element of the history as the value of INITIAL-CONTENTS. Positions
934 are counted starting from 1 at the beginning of the list.
935 Sixth arg DEFAULT-VALUE is the default value. If non-nil, it is available
936 for history commands; but, unless READ is non-nil, `read-from-minibuffer'
937 does NOT return DEFAULT-VALUE if the user enters empty input! It returns
939 Seventh arg INHERIT-INPUT-METHOD, if non-nil, means the minibuffer inherits
940 the current input method and the setting of `enable-multibyte-characters'.
941 Eight arg KEEP-ALL, if non-nil, says to put all inputs in the history list,
942 even empty or duplicate inputs.
943 If the variable `minibuffer-allow-text-properties' is non-nil,
944 then the string which is returned includes whatever text properties
945 were present in the minibuffer. Otherwise the value has no text properties.
947 The remainder of this documentation string describes the
948 INITIAL-CONTENTS argument in more detail. It is only relevant when
949 studying existing code, or when HIST is a cons. If non-nil,
950 INITIAL-CONTENTS is a string to be inserted into the minibuffer before
951 reading input. Normally, point is put at the end of that string.
952 However, if INITIAL-CONTENTS is \(STRING . POSITION), the initial
953 input is STRING, but point is placed at _one-indexed_ position
954 POSITION in the minibuffer. Any integer value less than or equal to
955 one puts point at the beginning of the string. *Note* that this
956 behavior differs from the way such arguments are used in `completing-read'
957 and some related functions, which use zero-indexing for POSITION. */)
958 (prompt
, initial_contents
, keymap
, read
, hist
, default_value
, inherit_input_method
, keep_all
)
959 Lisp_Object prompt
, initial_contents
, keymap
, read
, hist
, default_value
;
960 Lisp_Object inherit_input_method
, keep_all
;
962 Lisp_Object histvar
, histpos
, val
;
965 CHECK_STRING (prompt
);
967 keymap
= Vminibuffer_local_map
;
969 keymap
= get_keymap (keymap
, 1, 0);
978 histvar
= Fcar_safe (hist
);
979 histpos
= Fcdr_safe (hist
);
982 histvar
= Qminibuffer_history
;
984 XSETFASTINT (histpos
, 0);
986 GCPRO1 (default_value
);
987 val
= read_minibuf (keymap
, initial_contents
, prompt
,
989 histvar
, histpos
, default_value
,
990 minibuffer_allow_text_properties
,
991 !NILP (inherit_input_method
),
997 DEFUN ("read-minibuffer", Fread_minibuffer
, Sread_minibuffer
, 1, 2, 0,
998 doc
: /* Return a Lisp object read using the minibuffer, unevaluated.
999 Prompt with PROMPT. If non-nil, optional second arg INITIAL-CONTENTS
1000 is a string to insert in the minibuffer before reading.
1001 \(INITIAL-CONTENTS can also be a cons of a string and an integer. Such
1002 arguments are used as in `read-from-minibuffer') */)
1003 (prompt
, initial_contents
)
1004 Lisp_Object prompt
, initial_contents
;
1006 CHECK_STRING (prompt
);
1007 return read_minibuf (Vminibuffer_local_map
, initial_contents
,
1008 prompt
, Qnil
, 1, Qminibuffer_history
,
1009 make_number (0), Qnil
, 0, 0, 0);
1012 DEFUN ("eval-minibuffer", Feval_minibuffer
, Seval_minibuffer
, 1, 2, 0,
1013 doc
: /* Return value of Lisp expression read using the minibuffer.
1014 Prompt with PROMPT. If non-nil, optional second arg INITIAL-CONTENTS
1015 is a string to insert in the minibuffer before reading.
1016 \(INITIAL-CONTENTS can also be a cons of a string and an integer. Such
1017 arguments are used as in `read-from-minibuffer') */)
1018 (prompt
, initial_contents
)
1019 Lisp_Object prompt
, initial_contents
;
1021 return Feval (Fread_minibuffer (prompt
, initial_contents
));
1024 /* Functions that use the minibuffer to read various things. */
1026 DEFUN ("read-string", Fread_string
, Sread_string
, 1, 5, 0,
1027 doc
: /* Read a string from the minibuffer, prompting with string PROMPT.
1028 If non-nil, second arg INITIAL-INPUT is a string to insert before reading.
1029 This argument has been superseded by DEFAULT-VALUE and should normally
1030 be nil in new code. It behaves as in `read-from-minibuffer'. See the
1031 documentation string of that function for details.
1032 The third arg HISTORY, if non-nil, specifies a history list
1033 and optionally the initial position in the list.
1034 See `read-from-minibuffer' for details of HISTORY argument.
1035 Fourth arg DEFAULT-VALUE is the default value. If non-nil, it is used
1036 for history commands, and as the value to return if the user enters
1038 Fifth arg INHERIT-INPUT-METHOD, if non-nil, means the minibuffer inherits
1039 the current input method and the setting of `enable-multibyte-characters'. */)
1040 (prompt
, initial_input
, history
, default_value
, inherit_input_method
)
1041 Lisp_Object prompt
, initial_input
, history
, default_value
;
1042 Lisp_Object inherit_input_method
;
1045 val
= Fread_from_minibuffer (prompt
, initial_input
, Qnil
,
1046 Qnil
, history
, default_value
,
1047 inherit_input_method
, Qnil
);
1048 if (STRINGP (val
) && SCHARS (val
) == 0 && ! NILP (default_value
))
1049 val
= default_value
;
1053 DEFUN ("read-no-blanks-input", Fread_no_blanks_input
, Sread_no_blanks_input
, 1, 3, 0,
1054 doc
: /* Read a string from the terminal, not allowing blanks.
1055 Prompt with PROMPT. Whitespace terminates the input. If INITIAL is
1056 non-nil, it should be a string, which is used as initial input, with
1057 point positioned at the end, so that SPACE will accept the input.
1058 \(Actually, INITIAL can also be a cons of a string and an integer.
1059 Such values are treated as in `read-from-minibuffer', but are normally
1060 not useful in this function.)
1061 Third arg INHERIT-INPUT-METHOD, if non-nil, means the minibuffer inherits
1062 the current input method and the setting of`enable-multibyte-characters'. */)
1063 (prompt
, initial
, inherit_input_method
)
1064 Lisp_Object prompt
, initial
, inherit_input_method
;
1066 CHECK_STRING (prompt
);
1067 return read_minibuf (Vminibuffer_local_ns_map
, initial
, prompt
, Qnil
,
1068 0, Qminibuffer_history
, make_number (0), Qnil
, 0,
1069 !NILP (inherit_input_method
), 0);
1072 DEFUN ("read-command", Fread_command
, Sread_command
, 1, 2, 0,
1073 doc
: /* Read the name of a command and return as a symbol.
1074 Prompt with PROMPT. By default, return DEFAULT-VALUE. */)
1075 (prompt
, default_value
)
1076 Lisp_Object prompt
, default_value
;
1078 Lisp_Object name
, default_string
;
1080 if (NILP (default_value
))
1081 default_string
= Qnil
;
1082 else if (SYMBOLP (default_value
))
1083 default_string
= SYMBOL_NAME (default_value
);
1085 default_string
= default_value
;
1087 name
= Fcompleting_read (prompt
, Vobarray
, Qcommandp
, Qt
,
1088 Qnil
, Qnil
, default_string
, Qnil
);
1091 return Fintern (name
, Qnil
);
1095 DEFUN ("read-function", Fread_function
, Sread_function
, 1, 1, 0,
1096 doc
: /* One arg PROMPT, a string. Read the name of a function and return as a symbol.
1097 Prompt with PROMPT. */)
1101 return Fintern (Fcompleting_read (prompt
, Vobarray
, Qfboundp
, Qt
, Qnil
, Qnil
, Qnil
, Qnil
),
1106 DEFUN ("read-variable", Fread_variable
, Sread_variable
, 1, 2, 0,
1107 doc
: /* Read the name of a user variable and return it as a symbol.
1108 Prompt with PROMPT. By default, return DEFAULT-VALUE.
1109 A user variable is one for which `user-variable-p' returns non-nil. */)
1110 (prompt
, default_value
)
1111 Lisp_Object prompt
, default_value
;
1113 Lisp_Object name
, default_string
;
1115 if (NILP (default_value
))
1116 default_string
= Qnil
;
1117 else if (SYMBOLP (default_value
))
1118 default_string
= SYMBOL_NAME (default_value
);
1120 default_string
= default_value
;
1122 name
= Fcompleting_read (prompt
, Vobarray
,
1123 Quser_variable_p
, Qt
,
1124 Qnil
, Qnil
, default_string
, Qnil
);
1127 return Fintern (name
, Qnil
);
1130 DEFUN ("read-buffer", Fread_buffer
, Sread_buffer
, 1, 3, 0,
1131 doc
: /* Read the name of a buffer and return as a string.
1133 Optional second arg DEF is value to return if user enters an empty line.
1134 If optional third arg REQUIRE-MATCH is non-nil,
1135 only existing buffer names are allowed. */)
1136 (prompt
, def
, require_match
)
1137 Lisp_Object prompt
, def
, require_match
;
1139 Lisp_Object args
[4];
1142 def
= XBUFFER (def
)->name
;
1144 if (NILP (Vread_buffer_function
))
1148 args
[0] = build_string ("%s(default %s) ");
1151 prompt
= Fformat (3, args
);
1154 return Fcompleting_read (prompt
, Vbuffer_alist
, Qnil
,
1155 require_match
, Qnil
, Qbuffer_name_history
,
1160 args
[0] = Vread_buffer_function
;
1163 args
[3] = require_match
;
1164 return Ffuncall(4, args
);
1169 minibuf_conform_representation (string
, basis
)
1170 Lisp_Object string
, basis
;
1172 if (STRING_MULTIBYTE (string
) == STRING_MULTIBYTE (basis
))
1175 if (STRING_MULTIBYTE (string
))
1176 return Fstring_make_unibyte (string
);
1178 return Fstring_make_multibyte (string
);
1181 DEFUN ("try-completion", Ftry_completion
, Stry_completion
, 2, 3, 0,
1182 doc
: /* Return common substring of all completions of STRING in ALIST.
1183 Each car of each element of ALIST (or each element if it is not a cons cell)
1184 is tested to see if it begins with STRING.
1185 All that match are compared together; the longest initial sequence
1186 common to all matches is returned as a string.
1187 If there is no match at all, nil is returned.
1188 For a unique match which is exact, t is returned.
1190 If ALIST is a hash-table, all the string keys are the possible matches.
1191 If ALIST is an obarray, the names of all symbols in the obarray
1192 are the possible matches.
1194 ALIST can also be a function to do the completion itself.
1195 It receives three arguments: the values STRING, PREDICATE and nil.
1196 Whatever it returns becomes the value of `try-completion'.
1198 If optional third argument PREDICATE is non-nil,
1199 it is used to test each possible match.
1200 The match is a candidate only if PREDICATE returns non-nil.
1201 The argument given to PREDICATE is the alist element
1202 or the symbol from the obarray. If ALIST is a hash-table,
1203 predicate is called with two arguments: the key and the value.
1204 Additionally to this predicate, `completion-regexp-list'
1205 is used to further constrain the set of candidates. */)
1206 (string
, alist
, predicate
)
1207 Lisp_Object string
, alist
, predicate
;
1209 Lisp_Object bestmatch
, tail
, elt
, eltstring
;
1210 /* Size in bytes of BESTMATCH. */
1211 int bestmatchsize
= 0;
1212 /* These are in bytes, too. */
1213 int compare
, matchsize
;
1214 int type
= HASH_TABLE_P (alist
) ? 3
1215 : VECTORP (alist
) ? 2
1216 : NILP (alist
) || (CONSP (alist
)
1217 && (!SYMBOLP (XCAR (alist
))
1218 || NILP (XCAR (alist
))));
1219 int index
= 0, obsize
= 0;
1222 Lisp_Object bucket
, zero
, end
, tem
;
1223 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
1225 CHECK_STRING (string
);
1227 return call3 (alist
, string
, predicate
, Qnil
);
1229 bestmatch
= bucket
= Qnil
;
1230 zero
= make_number (0);
1232 /* If ALIST is not a list, set TAIL just for gc pro. */
1236 obsize
= XVECTOR (alist
)->size
;
1237 bucket
= XVECTOR (alist
)->contents
[index
];
1242 /* Get the next element of the alist, obarray, or hash-table. */
1243 /* Exit the loop if the elements are all used up. */
1244 /* elt gets the alist element or symbol.
1245 eltstring gets the name to check as a completion. */
1252 eltstring
= CONSP (elt
) ? XCAR (elt
) : elt
;
1257 if (!EQ (bucket
, zero
))
1260 eltstring
= Fsymbol_name (elt
);
1261 if (XSYMBOL (bucket
)->next
)
1262 XSETSYMBOL (bucket
, XSYMBOL (bucket
)->next
);
1264 XSETFASTINT (bucket
, 0);
1266 else if (++index
>= obsize
)
1270 bucket
= XVECTOR (alist
)->contents
[index
];
1274 else /* if (type == 3) */
1276 while (index
< HASH_TABLE_SIZE (XHASH_TABLE (alist
))
1277 && NILP (HASH_HASH (XHASH_TABLE (alist
), index
)))
1279 if (index
>= HASH_TABLE_SIZE (XHASH_TABLE (alist
)))
1282 elt
= eltstring
= HASH_KEY (XHASH_TABLE (alist
), index
++);
1285 /* Is this element a possible completion? */
1287 if (STRINGP (eltstring
)
1288 && SCHARS (string
) <= SCHARS (eltstring
)
1289 && (tem
= Fcompare_strings (eltstring
, zero
,
1290 make_number (SCHARS (string
)),
1292 completion_ignore_case
? Qt
: Qnil
),
1296 Lisp_Object regexps
;
1298 /* Ignore this element if it fails to match all the regexps. */
1300 for (regexps
= Vcompletion_regexp_list
; CONSP (regexps
);
1301 regexps
= XCDR (regexps
))
1303 if (bindcount
< 0) {
1304 bindcount
= SPECPDL_INDEX ();
1305 specbind (Qcase_fold_search
,
1306 completion_ignore_case
? Qt
: Qnil
);
1308 tem
= Fstring_match (XCAR (regexps
), eltstring
, zero
);
1312 if (CONSP (regexps
))
1316 /* Ignore this element if there is a predicate
1317 and the predicate doesn't like it. */
1319 if (!NILP (predicate
))
1321 if (EQ (predicate
, Qcommandp
))
1322 tem
= Fcommandp (elt
, Qnil
);
1325 if (bindcount
>= 0) {
1326 unbind_to (bindcount
, Qnil
);
1329 GCPRO4 (tail
, string
, eltstring
, bestmatch
);
1331 ? call2 (predicate
, elt
,
1332 HASH_VALUE (XHASH_TABLE (alist
), index
- 1))
1333 : call1 (predicate
, elt
);
1336 if (NILP (tem
)) continue;
1339 /* Update computation of how much all possible completions match */
1341 if (NILP (bestmatch
))
1344 bestmatch
= eltstring
;
1345 bestmatchsize
= SCHARS (eltstring
);
1349 compare
= min (bestmatchsize
, SCHARS (eltstring
));
1350 tem
= Fcompare_strings (bestmatch
, zero
,
1351 make_number (compare
),
1353 make_number (compare
),
1354 completion_ignore_case
? Qt
: Qnil
);
1356 matchsize
= compare
;
1357 else if (XINT (tem
) < 0)
1358 matchsize
= - XINT (tem
) - 1;
1360 matchsize
= XINT (tem
) - 1;
1363 /* When can this happen ? -stef */
1364 matchsize
= compare
;
1365 if (completion_ignore_case
)
1367 /* If this is an exact match except for case,
1368 use it as the best match rather than one that is not an
1369 exact match. This way, we get the case pattern
1370 of the actual match. */
1371 if ((matchsize
== SCHARS (eltstring
)
1372 && matchsize
< SCHARS (bestmatch
))
1374 /* If there is more than one exact match ignoring case,
1375 and one of them is exact including case,
1377 /* If there is no exact match ignoring case,
1378 prefer a match that does not change the case
1380 ((matchsize
== SCHARS (eltstring
))
1382 (matchsize
== SCHARS (bestmatch
))
1383 && (tem
= Fcompare_strings (eltstring
, zero
,
1384 make_number (SCHARS (string
)),
1389 && (tem
= Fcompare_strings (bestmatch
, zero
,
1390 make_number (SCHARS (string
)),
1395 bestmatch
= eltstring
;
1397 if (bestmatchsize
!= SCHARS (eltstring
)
1398 || bestmatchsize
!= matchsize
)
1399 /* Don't count the same string multiple times. */
1401 bestmatchsize
= matchsize
;
1402 if (matchsize
<= SCHARS (string
)
1404 /* No need to look any further. */
1410 if (bindcount
>= 0) {
1411 unbind_to (bindcount
, Qnil
);
1415 if (NILP (bestmatch
))
1416 return Qnil
; /* No completions found */
1417 /* If we are ignoring case, and there is no exact match,
1418 and no additional text was supplied,
1419 don't change the case of what the user typed. */
1420 if (completion_ignore_case
&& bestmatchsize
== SCHARS (string
)
1421 && SCHARS (bestmatch
) > bestmatchsize
)
1422 return minibuf_conform_representation (string
, bestmatch
);
1424 /* Return t if the supplied string is an exact match (counting case);
1425 it does not require any change to be made. */
1426 if (matchcount
== 1 && bestmatchsize
== SCHARS (string
)
1427 && (tem
= Fcompare_strings (bestmatch
, make_number (0),
1428 make_number (bestmatchsize
),
1429 string
, make_number (0),
1430 make_number (bestmatchsize
),
1435 XSETFASTINT (zero
, 0); /* Else extract the part in which */
1436 XSETFASTINT (end
, bestmatchsize
); /* all completions agree */
1437 return Fsubstring (bestmatch
, zero
, end
);
1440 DEFUN ("all-completions", Fall_completions
, Sall_completions
, 2, 4, 0,
1441 doc
: /* Search for partial matches to STRING in ALIST.
1442 Each car of each element of ALIST (or each element if it is not a cons cell)
1443 is tested to see if it begins with STRING.
1444 The value is a list of all the strings from ALIST that match.
1446 If ALIST is a hash-table, all the string keys are the possible matches.
1447 If ALIST is an obarray, the names of all symbols in the obarray
1448 are the possible matches.
1450 ALIST can also be a function to do the completion itself.
1451 It receives three arguments: the values STRING, PREDICATE and t.
1452 Whatever it returns becomes the value of `all-completions'.
1454 If optional third argument PREDICATE is non-nil,
1455 it is used to test each possible match.
1456 The match is a candidate only if PREDICATE returns non-nil.
1457 The argument given to PREDICATE is the alist element
1458 or the symbol from the obarray. If ALIST is a hash-table,
1459 predicate is called with two arguments: the key and the value.
1460 Additionally to this predicate, `completion-regexp-list'
1461 is used to further constrain the set of candidates.
1463 If the optional fourth argument HIDE-SPACES is non-nil,
1464 strings in ALIST that start with a space
1465 are ignored unless STRING itself starts with a space. */)
1466 (string
, alist
, predicate
, hide_spaces
)
1467 Lisp_Object string
, alist
, predicate
, hide_spaces
;
1469 Lisp_Object tail
, elt
, eltstring
;
1470 Lisp_Object allmatches
;
1471 int type
= HASH_TABLE_P (alist
) ? 3
1472 : VECTORP (alist
) ? 2
1473 : NILP (alist
) || (CONSP (alist
)
1474 && (!SYMBOLP (XCAR (alist
))
1475 || NILP (XCAR (alist
))));
1476 int index
= 0, obsize
= 0;
1478 Lisp_Object bucket
, tem
, zero
;
1479 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
1481 CHECK_STRING (string
);
1483 return call3 (alist
, string
, predicate
, Qt
);
1484 allmatches
= bucket
= Qnil
;
1485 zero
= make_number (0);
1487 /* If ALIST is not a list, set TAIL just for gc pro. */
1491 obsize
= XVECTOR (alist
)->size
;
1492 bucket
= XVECTOR (alist
)->contents
[index
];
1497 /* Get the next element of the alist, obarray, or hash-table. */
1498 /* Exit the loop if the elements are all used up. */
1499 /* elt gets the alist element or symbol.
1500 eltstring gets the name to check as a completion. */
1507 eltstring
= CONSP (elt
) ? XCAR (elt
) : elt
;
1512 if (!EQ (bucket
, zero
))
1515 eltstring
= Fsymbol_name (elt
);
1516 if (XSYMBOL (bucket
)->next
)
1517 XSETSYMBOL (bucket
, XSYMBOL (bucket
)->next
);
1519 XSETFASTINT (bucket
, 0);
1521 else if (++index
>= obsize
)
1525 bucket
= XVECTOR (alist
)->contents
[index
];
1529 else /* if (type == 3) */
1531 while (index
< HASH_TABLE_SIZE (XHASH_TABLE (alist
))
1532 && NILP (HASH_HASH (XHASH_TABLE (alist
), index
)))
1534 if (index
>= HASH_TABLE_SIZE (XHASH_TABLE (alist
)))
1537 elt
= eltstring
= HASH_KEY (XHASH_TABLE (alist
), index
++);
1540 /* Is this element a possible completion? */
1542 if (STRINGP (eltstring
)
1543 && SCHARS (string
) <= SCHARS (eltstring
)
1544 /* If HIDE_SPACES, reject alternatives that start with space
1545 unless the input starts with space. */
1546 && ((SBYTES (string
) > 0
1547 && SREF (string
, 0) == ' ')
1548 || SREF (eltstring
, 0) != ' '
1549 || NILP (hide_spaces
))
1550 && (tem
= Fcompare_strings (eltstring
, zero
,
1551 make_number (SCHARS (string
)),
1553 make_number (SCHARS (string
)),
1554 completion_ignore_case
? Qt
: Qnil
),
1558 Lisp_Object regexps
;
1560 XSETFASTINT (zero
, 0);
1562 /* Ignore this element if it fails to match all the regexps. */
1564 for (regexps
= Vcompletion_regexp_list
; CONSP (regexps
);
1565 regexps
= XCDR (regexps
))
1567 if (bindcount
< 0) {
1568 bindcount
= SPECPDL_INDEX ();
1569 specbind (Qcase_fold_search
,
1570 completion_ignore_case
? Qt
: Qnil
);
1572 tem
= Fstring_match (XCAR (regexps
), eltstring
, zero
);
1576 if (CONSP (regexps
))
1580 /* Ignore this element if there is a predicate
1581 and the predicate doesn't like it. */
1583 if (!NILP (predicate
))
1585 if (EQ (predicate
, Qcommandp
))
1586 tem
= Fcommandp (elt
, Qnil
);
1589 if (bindcount
>= 0) {
1590 unbind_to (bindcount
, Qnil
);
1593 GCPRO4 (tail
, eltstring
, allmatches
, string
);
1595 ? call2 (predicate
, elt
,
1596 HASH_VALUE (XHASH_TABLE (alist
), index
- 1))
1597 : call1 (predicate
, elt
);
1600 if (NILP (tem
)) continue;
1602 /* Ok => put it on the list. */
1603 allmatches
= Fcons (eltstring
, allmatches
);
1607 if (bindcount
>= 0) {
1608 unbind_to (bindcount
, Qnil
);
1612 return Fnreverse (allmatches
);
1615 Lisp_Object Vminibuffer_completion_table
, Qminibuffer_completion_table
;
1616 Lisp_Object Vminibuffer_completion_predicate
, Qminibuffer_completion_predicate
;
1617 Lisp_Object Vminibuffer_completion_confirm
, Qminibuffer_completion_confirm
;
1618 Lisp_Object Vminibuffer_completing_file_name
;
1620 DEFUN ("completing-read", Fcompleting_read
, Scompleting_read
, 2, 8, 0,
1621 doc
: /* Read a string in the minibuffer, with completion.
1622 PROMPT is a string to prompt with; normally it ends in a colon and a space.
1623 TABLE can be an list of strings, an alist, an obarray or a hash table.
1624 TABLE can also be a function to do the completion itself.
1625 PREDICATE limits completion to a subset of TABLE.
1626 See `try-completion' and `all-completions' for more details
1627 on completion, TABLE, and PREDICATE.
1629 If REQUIRE-MATCH is non-nil, the user is not allowed to exit unless
1630 the input is (or completes to) an element of TABLE or is null.
1631 If it is also not t, typing RET does not exit if it does non-null completion.
1632 If the input is null, `completing-read' returns DEF, or an empty string
1633 if DEF is nil, regardless of the value of REQUIRE-MATCH.
1635 If INITIAL-INPUT is non-nil, insert it in the minibuffer initially,
1636 with point positioned at the end.
1637 If it is (STRING . POSITION), the initial input is STRING, but point
1638 is placed at _zero-indexed_ position POSITION in STRING. (*Note*
1639 that this is different from `read-from-minibuffer' and related
1640 functions, which use one-indexing for POSITION.) This feature is
1641 deprecated--it is best to pass nil for INITIAL-INPUT and supply the
1642 default value DEF instead. The user can yank the default value into
1643 the minibuffer easily using \\[next-history-element].
1645 HIST, if non-nil, specifies a history list and optionally the initial
1646 position in the list. It can be a symbol, which is the history list
1647 variable to use, or it can be a cons cell (HISTVAR . HISTPOS). In
1648 that case, HISTVAR is the history list variable to use, and HISTPOS
1649 is the initial position (the position in the list used by the
1650 minibuffer history commands). For consistency, you should also
1651 specify that element of the history as the value of
1652 INITIAL-INPUT. (This is the only case in which you should use
1653 INITIAL-INPUT instead of DEF.) Positions are counted starting from
1654 1 at the beginning of the list. The variable `history-length'
1655 controls the maximum length of a history list.
1657 DEF, if non-nil, is the default value.
1659 If INHERIT-INPUT-METHOD is non-nil, the minibuffer inherits
1660 the current input method and the setting of `enable-multibyte-characters'.
1662 Completion ignores case if the ambient value of
1663 `completion-ignore-case' is non-nil. */)
1664 (prompt
, table
, predicate
, require_match
, initial_input
, hist
, def
, inherit_input_method
)
1665 Lisp_Object prompt
, table
, predicate
, require_match
, initial_input
;
1666 Lisp_Object hist
, def
, inherit_input_method
;
1668 Lisp_Object val
, histvar
, histpos
, position
;
1671 int count
= SPECPDL_INDEX ();
1672 struct gcpro gcpro1
;
1674 init
= initial_input
;
1677 specbind (Qminibuffer_completion_table
, table
);
1678 specbind (Qminibuffer_completion_predicate
, predicate
);
1679 specbind (Qminibuffer_completion_confirm
,
1680 EQ (require_match
, Qt
) ? Qnil
: require_match
);
1681 last_exact_completion
= Qnil
;
1688 position
= Fcdr (init
);
1691 CHECK_STRING (init
);
1692 if (!NILP (position
))
1694 CHECK_NUMBER (position
);
1695 /* Convert to distance from end of input. */
1696 pos
= XINT (position
) - SCHARS (init
);
1707 histvar
= Fcar_safe (hist
);
1708 histpos
= Fcdr_safe (hist
);
1711 histvar
= Qminibuffer_history
;
1713 XSETFASTINT (histpos
, 0);
1715 val
= read_minibuf (NILP (require_match
)
1716 ? Vminibuffer_local_completion_map
1717 : Vminibuffer_local_must_match_map
,
1718 init
, prompt
, make_number (pos
), 0,
1719 histvar
, histpos
, def
, 0,
1720 !NILP (inherit_input_method
), 0);
1722 if (STRINGP (val
) && SCHARS (val
) == 0 && ! NILP (def
))
1725 RETURN_UNGCPRO (unbind_to (count
, val
));
1728 Lisp_Object
Fminibuffer_completion_help ();
1729 Lisp_Object
Fassoc_string ();
1731 /* Test whether TXT is an exact completion. */
1732 DEFUN ("test-completion", Ftest_completion
, Stest_completion
, 2, 3, 0,
1733 doc
: /* Return non-nil if STRING is a valid completion.
1734 Takes the same arguments as `all-completions' and `try-completion'.
1735 If ALIST is a function, it is called with three arguments:
1736 the values STRING, PREDICATE and `lambda'. */)
1737 (string
, alist
, predicate
)
1738 Lisp_Object string
, alist
, predicate
;
1740 Lisp_Object regexps
, tail
, tem
= Qnil
;
1743 CHECK_STRING (string
);
1745 if ((CONSP (alist
) && (!SYMBOLP (XCAR (alist
)) || NILP (XCAR (alist
))))
1748 tem
= Fassoc_string (string
, alist
, completion_ignore_case
? Qt
: Qnil
);
1752 else if (VECTORP (alist
))
1754 /* Bypass intern-soft as that loses for nil. */
1755 tem
= oblookup (alist
,
1761 if (STRING_MULTIBYTE (string
))
1762 string
= Fstring_make_unibyte (string
);
1764 string
= Fstring_make_multibyte (string
);
1766 tem
= oblookup (alist
,
1772 if (completion_ignore_case
&& !SYMBOLP (tem
))
1774 for (i
= XVECTOR (alist
)->size
- 1; i
>= 0; i
--)
1776 tail
= XVECTOR (alist
)->contents
[i
];
1780 if (EQ((Fcompare_strings (string
, make_number (0), Qnil
,
1781 Fsymbol_name (tail
),
1782 make_number (0) , Qnil
, Qt
)),
1788 if (XSYMBOL (tail
)->next
== 0)
1790 XSETSYMBOL (tail
, XSYMBOL (tail
)->next
);
1798 else if (HASH_TABLE_P (alist
))
1800 struct Lisp_Hash_Table
*h
= XHASH_TABLE (alist
);
1801 i
= hash_lookup (h
, string
, NULL
);
1803 tem
= HASH_KEY (h
, i
);
1805 for (i
= 0; i
< HASH_TABLE_SIZE (h
); ++i
)
1806 if (!NILP (HASH_HASH (h
, i
)) &&
1807 EQ (Fcompare_strings (string
, make_number (0), Qnil
,
1808 HASH_KEY (h
, i
), make_number (0) , Qnil
,
1809 completion_ignore_case
? Qt
: Qnil
),
1812 tem
= HASH_KEY (h
, i
);
1819 return call3 (alist
, string
, predicate
, Qlambda
);
1821 /* Reject this element if it fails to match all the regexps. */
1822 if (CONSP (Vcompletion_regexp_list
))
1824 int count
= SPECPDL_INDEX ();
1825 specbind (Qcase_fold_search
, completion_ignore_case
? Qt
: Qnil
);
1826 for (regexps
= Vcompletion_regexp_list
; CONSP (regexps
);
1827 regexps
= XCDR (regexps
))
1829 if (NILP (Fstring_match (XCAR (regexps
),
1830 SYMBOLP (tem
) ? string
: tem
,
1832 return unbind_to (count
, Qnil
);
1834 unbind_to (count
, Qnil
);
1837 /* Finally, check the predicate. */
1838 if (!NILP (predicate
))
1840 return HASH_TABLE_P (alist
)
1841 ? call2 (predicate
, tem
, HASH_VALUE (XHASH_TABLE (alist
), i
))
1842 : call1 (predicate
, tem
);
1849 * 0 no possible completion
1850 * 1 was already an exact and unique completion
1851 * 3 was already an exact completion
1852 * 4 completed to an exact completion
1853 * 5 some completion happened
1854 * 6 no completion happened
1859 Lisp_Object completion
, string
, tem
;
1862 struct gcpro gcpro1
, gcpro2
;
1864 completion
= Ftry_completion (minibuffer_completion_contents (),
1865 Vminibuffer_completion_table
,
1866 Vminibuffer_completion_predicate
);
1867 last
= last_exact_completion
;
1868 last_exact_completion
= Qnil
;
1870 GCPRO2 (completion
, last
);
1872 if (NILP (completion
))
1875 temp_echo_area_glyphs (build_string (" [No match]"));
1880 if (EQ (completion
, Qt
)) /* exact and unique match */
1886 string
= minibuffer_completion_contents ();
1888 /* COMPLETEDP should be true if some completion was done, which
1889 doesn't include simply changing the case of the entered string.
1890 However, for appearance, the string is rewritten if the case
1892 tem
= Fcompare_strings (completion
, Qnil
, Qnil
, string
, Qnil
, Qnil
, Qt
);
1893 completedp
= !EQ (tem
, Qt
);
1895 tem
= Fcompare_strings (completion
, Qnil
, Qnil
, string
, Qnil
, Qnil
, Qnil
);
1897 /* Rewrite the user's input. */
1899 int prompt_end
= XINT (Fminibuffer_prompt_end ());
1900 /* Some completion happened */
1902 if (! NILP (Vminibuffer_completing_file_name
)
1903 && SREF (completion
, SBYTES (completion
) - 1) == '/'
1905 && FETCH_CHAR (PT_BYTE
) == '/')
1907 del_range (prompt_end
, PT
+ 1);
1910 del_range (prompt_end
, PT
);
1912 Finsert (1, &completion
);
1915 /* The case of the string changed, but that's all. We're not
1916 sure whether this is a unique completion or not, so try again
1917 using the real case (this shouldn't recurse again, because
1918 the next time try-completion will return either `t' or the
1922 return do_completion ();
1926 /* It did find a match. Do we match some possibility exactly now? */
1927 tem
= Ftest_completion (Fminibuffer_contents (),
1928 Vminibuffer_completion_table
,
1929 Vminibuffer_completion_predicate
);
1932 /* not an exact match */
1936 else if (!NILP (Vcompletion_auto_help
))
1937 Fminibuffer_completion_help ();
1939 temp_echo_area_glyphs (build_string (" [Next char not unique]"));
1942 else if (completedp
)
1947 /* If the last exact completion and this one were the same,
1948 it means we've already given a "Complete but not unique"
1949 message and the user's hit TAB again, so now we give him help. */
1950 last_exact_completion
= completion
;
1953 tem
= minibuffer_completion_contents ();
1954 if (!NILP (Fequal (tem
, last
)))
1955 Fminibuffer_completion_help ();
1961 /* Like assoc but assumes KEY is a string, and ignores case if appropriate. */
1963 DEFUN ("assoc-string", Fassoc_string
, Sassoc_string
, 2, 3, 0,
1964 doc
: /* Like `assoc' but specifically for strings.
1965 Unibyte strings are converted to multibyte for comparison.
1966 And case is ignored if CASE-FOLD is non-nil.
1967 As opposed to `assoc', it will also match an entry consisting of a single
1968 string rather than a cons cell whose car is a string. */)
1969 (key
, list
, case_fold
)
1970 register Lisp_Object key
;
1971 Lisp_Object list
, case_fold
;
1973 register Lisp_Object tail
;
1975 for (tail
= list
; !NILP (tail
); tail
= Fcdr (tail
))
1977 register Lisp_Object elt
, tem
, thiscar
;
1979 thiscar
= CONSP (elt
) ? XCAR (elt
) : elt
;
1980 if (!STRINGP (thiscar
))
1982 tem
= Fcompare_strings (thiscar
, make_number (0), Qnil
,
1983 key
, make_number (0), Qnil
,
1992 DEFUN ("minibuffer-complete", Fminibuffer_complete
, Sminibuffer_complete
, 0, 0, "",
1993 doc
: /* Complete the minibuffer contents as far as possible.
1994 Return nil if there is no valid completion, else t.
1995 If no characters can be completed, display a list of possible completions.
1996 If you repeat this command after it displayed such a list,
1997 scroll the window of possible completions. */)
2001 Lisp_Object window
, tem
;
2003 /* If the previous command was not this,
2004 mark the completion buffer obsolete. */
2005 if (! EQ (current_kboard
->Vlast_command
, Vthis_command
))
2006 Vminibuf_scroll_window
= Qnil
;
2008 window
= Vminibuf_scroll_window
;
2009 /* If there's a fresh completion window with a live buffer,
2010 and this command is repeated, scroll that window. */
2011 if (! NILP (window
) && ! NILP (XWINDOW (window
)->buffer
)
2012 && !NILP (XBUFFER (XWINDOW (window
)->buffer
)->name
))
2014 struct buffer
*obuf
= current_buffer
;
2016 Fset_buffer (XWINDOW (window
)->buffer
);
2017 tem
= Fpos_visible_in_window_p (make_number (ZV
), window
, Qnil
);
2019 /* If end is in view, scroll up to the beginning. */
2020 Fset_window_start (window
, make_number (BEGV
), Qnil
);
2022 /* Else scroll down one screen. */
2023 Fscroll_other_window (Qnil
);
2025 set_buffer_internal (obuf
);
2029 i
= do_completion ();
2037 Fgoto_char (make_number (ZV
));
2038 temp_echo_area_glyphs (build_string (" [Sole completion]"));
2043 Fgoto_char (make_number (ZV
));
2044 temp_echo_area_glyphs (build_string (" [Complete, but not unique]"));
2051 /* Subroutines of Fminibuffer_complete_and_exit. */
2053 /* This one is called by internal_condition_case to do the real work. */
2056 complete_and_exit_1 ()
2058 return make_number (do_completion ());
2061 /* This one is called by internal_condition_case if an error happens.
2062 Pretend the current value is an exact match. */
2065 complete_and_exit_2 (ignore
)
2068 return make_number (1);
2071 DEFUN ("minibuffer-complete-and-exit", Fminibuffer_complete_and_exit
,
2072 Sminibuffer_complete_and_exit
, 0, 0, "",
2073 doc
: /* If the minibuffer contents is a valid completion then exit.
2074 Otherwise try to complete it. If completion leads to a valid completion,
2075 a repetition of this command will exit. */)
2081 /* Allow user to specify null string */
2082 if (XINT (Fminibuffer_prompt_end ()) == ZV
)
2085 val
= Fminibuffer_contents ();
2086 if (!NILP (Ftest_completion (val
,
2087 Vminibuffer_completion_table
,
2088 Vminibuffer_completion_predicate
)))
2090 if (completion_ignore_case
)
2091 { /* Fixup case of the field, if necessary. */
2093 = Ftry_completion (val
,
2094 Vminibuffer_completion_table
,
2095 Vminibuffer_completion_predicate
);
2097 /* If it weren't for this piece of paranoia, I'd replace
2098 the whole thing with a call to do_completion. */
2099 && EQ (Flength (val
), Flength (compl)))
2101 del_range (XINT (Fminibuffer_prompt_end ()), ZV
);
2102 Finsert (1, &compl);
2108 /* Call do_completion, but ignore errors. */
2110 val
= internal_condition_case (complete_and_exit_1
, Qerror
,
2111 complete_and_exit_2
);
2121 if (!NILP (Vminibuffer_completion_confirm
))
2123 temp_echo_area_glyphs (build_string (" [Confirm]"));
2133 return Fthrow (Qexit
, Qnil
);
2137 DEFUN ("minibuffer-complete-word", Fminibuffer_complete_word
, Sminibuffer_complete_word
,
2139 doc
: /* Complete the minibuffer contents at most a single word.
2140 After one word is completed as much as possible, a space or hyphen
2141 is added, provided that matches some possible completion.
2142 Return nil if there is no valid completion, else t. */)
2145 Lisp_Object completion
, tem
, tem1
;
2146 register int i
, i_byte
;
2147 register const unsigned char *completion_string
;
2148 struct gcpro gcpro1
, gcpro2
;
2149 int prompt_end_charpos
= XINT (Fminibuffer_prompt_end ());
2151 /* We keep calling Fbuffer_string rather than arrange for GC to
2152 hold onto a pointer to one of the strings thus made. */
2154 completion
= Ftry_completion (minibuffer_completion_contents (),
2155 Vminibuffer_completion_table
,
2156 Vminibuffer_completion_predicate
);
2157 if (NILP (completion
))
2160 temp_echo_area_glyphs (build_string (" [No match]"));
2163 if (EQ (completion
, Qt
))
2166 #if 0 /* How the below code used to look, for reference. */
2167 tem
= Fminibuffer_contents ();
2169 i
= ZV
- 1 - SCHARS (completion
);
2170 p
= SDATA (completion
);
2172 0 <= scmp (b
, p
, ZV
- 1))
2175 /* Set buffer to longest match of buffer tail and completion head. */
2176 while (0 <= scmp (b
+ i
, p
, ZV
- 1 - i
))
2178 del_range (1, i
+ 1);
2181 #else /* Rewritten code */
2183 int buffer_nchars
, completion_nchars
;
2185 CHECK_STRING (completion
);
2186 tem
= minibuffer_completion_contents ();
2187 GCPRO2 (completion
, tem
);
2188 /* If reading a file name,
2189 expand any $ENVVAR refs in the buffer and in TEM. */
2190 if (! NILP (Vminibuffer_completing_file_name
))
2192 Lisp_Object substituted
;
2193 substituted
= Fsubstitute_in_file_name (tem
);
2194 if (! EQ (substituted
, tem
))
2197 del_range (prompt_end_charpos
, PT
);
2201 buffer_nchars
= SCHARS (tem
); /* # chars in what we completed. */
2202 completion_nchars
= SCHARS (completion
);
2203 i
= buffer_nchars
- completion_nchars
;
2206 (tem1
= Fcompare_strings (tem
, make_number (0),
2207 make_number (buffer_nchars
),
2208 completion
, make_number (0),
2209 make_number (buffer_nchars
),
2210 completion_ignore_case
? Qt
: Qnil
),
2215 /* Make buffer (before point) contain the longest match
2216 of TEM's tail and COMPLETION's head. */
2222 tem1
= Fcompare_strings (tem
, make_number (start_pos
), Qnil
,
2223 completion
, make_number (0),
2224 make_number (buffer_nchars
),
2225 completion_ignore_case
? Qt
: Qnil
);
2232 del_range (start_pos
, start_pos
+ buffer_nchars
);
2236 #endif /* Rewritten code */
2239 int prompt_end_bytepos
;
2240 prompt_end_bytepos
= CHAR_TO_BYTE (prompt_end_charpos
);
2241 i
= PT
- prompt_end_charpos
;
2242 i_byte
= PT_BYTE
- prompt_end_bytepos
;
2245 /* If completion finds next char not unique,
2246 consider adding a space or a hyphen. */
2247 if (i
== SCHARS (completion
))
2249 GCPRO1 (completion
);
2250 tem
= Ftry_completion (concat2 (minibuffer_completion_contents (),
2251 build_string (" ")),
2252 Vminibuffer_completion_table
,
2253 Vminibuffer_completion_predicate
);
2260 GCPRO1 (completion
);
2262 Ftry_completion (concat2 (minibuffer_completion_contents (),
2263 build_string ("-")),
2264 Vminibuffer_completion_table
,
2265 Vminibuffer_completion_predicate
);
2273 /* Now find first word-break in the stuff found by completion.
2274 i gets index in string of where to stop completing. */
2277 int bytes
= SBYTES (completion
);
2278 completion_string
= SDATA (completion
);
2279 for (; i_byte
< SBYTES (completion
); i_byte
+= len
, i
++)
2281 c
= STRING_CHAR_AND_LENGTH (completion_string
+ i_byte
,
2284 if (SYNTAX (c
) != Sword
)
2293 /* If got no characters, print help for user. */
2295 if (i
== PT
- prompt_end_charpos
)
2297 if (!NILP (Vcompletion_auto_help
))
2298 Fminibuffer_completion_help ();
2302 /* Otherwise insert in minibuffer the chars we got */
2304 if (! NILP (Vminibuffer_completing_file_name
)
2305 && SREF (completion
, SBYTES (completion
) - 1) == '/'
2307 && FETCH_CHAR (PT_BYTE
) == '/')
2309 del_range (prompt_end_charpos
, PT
+ 1);
2312 del_range (prompt_end_charpos
, PT
);
2314 insert_from_string (completion
, 0, 0, i
, i_byte
, 1);
2318 DEFUN ("display-completion-list", Fdisplay_completion_list
, Sdisplay_completion_list
,
2320 doc
: /* Display the list of completions, COMPLETIONS, using `standard-output'.
2321 Each element may be just a symbol or string
2322 or may be a list of two strings to be printed as if concatenated.
2323 If it is a list of two strings, the first is the actual completion
2324 alternative, the second serves as annotation.
2325 `standard-output' must be a buffer.
2326 The actual completion alternatives, as inserted, are given `mouse-face'
2327 properties of `highlight'.
2328 At the end, this runs the normal hook `completion-setup-hook'.
2329 It can find the completion buffer in `standard-output'. */)
2331 Lisp_Object completions
;
2333 Lisp_Object tail
, elt
;
2336 struct gcpro gcpro1
, gcpro2
;
2337 struct buffer
*old
= current_buffer
;
2340 /* Note that (when it matters) every variable
2341 points to a non-string that is pointed to by COMPLETIONS,
2342 except for ELT. ELT can be pointing to a string
2343 when terpri or Findent_to calls a change hook. */
2345 GCPRO2 (completions
, elt
);
2347 if (BUFFERP (Vstandard_output
))
2348 set_buffer_internal (XBUFFER (Vstandard_output
));
2350 if (NILP (completions
))
2351 write_string ("There are no possible completions of what you have typed.",
2355 write_string ("Possible completions are:", -1);
2356 for (tail
= completions
, i
= 0; !NILP (tail
); tail
= Fcdr (tail
), i
++)
2358 Lisp_Object tem
, string
;
2360 Lisp_Object startpos
, endpos
;
2366 elt
= SYMBOL_NAME (elt
);
2367 /* Compute the length of this element. */
2372 length
= SCHARS (tem
);
2374 tem
= Fcar (XCDR (elt
));
2376 length
+= SCHARS (tem
);
2381 length
= SCHARS (elt
);
2384 /* This does a bad job for narrower than usual windows.
2385 Sadly, the window it will appear in is not known
2386 until after the text has been made. */
2388 if (BUFFERP (Vstandard_output
))
2389 XSETINT (startpos
, BUF_PT (XBUFFER (Vstandard_output
)));
2391 /* If the previous completion was very wide,
2392 or we have two on this line already,
2393 don't put another on the same line. */
2394 if (column
> 33 || first
2395 /* If this is really wide, don't put it second on a line. */
2396 || (column
> 0 && length
> 45))
2401 /* Otherwise advance to column 35. */
2404 if (BUFFERP (Vstandard_output
))
2406 tem
= Findent_to (make_number (35), make_number (2));
2408 column
= XINT (tem
);
2414 write_string (" ", -1);
2417 while (column
< 35);
2421 if (BUFFERP (Vstandard_output
))
2423 XSETINT (endpos
, BUF_PT (XBUFFER (Vstandard_output
)));
2424 Fset_text_properties (startpos
, endpos
,
2425 Qnil
, Vstandard_output
);
2428 /* Output this element.
2429 If necessary, convert it to unibyte or to multibyte first. */
2431 string
= Fcar (elt
);
2434 if (NILP (current_buffer
->enable_multibyte_characters
)
2435 && STRING_MULTIBYTE (string
))
2436 string
= Fstring_make_unibyte (string
);
2437 else if (!NILP (current_buffer
->enable_multibyte_characters
)
2438 && !STRING_MULTIBYTE (string
))
2439 string
= Fstring_make_multibyte (string
);
2441 if (BUFFERP (Vstandard_output
))
2443 XSETINT (startpos
, BUF_PT (XBUFFER (Vstandard_output
)));
2445 Fprinc (string
, Qnil
);
2447 XSETINT (endpos
, BUF_PT (XBUFFER (Vstandard_output
)));
2449 Fput_text_property (startpos
, endpos
,
2450 Qmouse_face
, intern ("highlight"),
2455 Fprinc (string
, Qnil
);
2458 /* Output the annotation for this element. */
2461 if (BUFFERP (Vstandard_output
))
2463 XSETINT (startpos
, BUF_PT (XBUFFER (Vstandard_output
)));
2465 Fprinc (Fcar (Fcdr (elt
)), Qnil
);
2467 XSETINT (endpos
, BUF_PT (XBUFFER (Vstandard_output
)));
2469 Fset_text_properties (startpos
, endpos
, Qnil
,
2474 Fprinc (Fcar (Fcdr (elt
)), Qnil
);
2479 /* Update COLUMN for what we have output. */
2482 /* If output is to a buffer, recompute COLUMN in a way
2483 that takes account of character widths. */
2484 if (BUFFERP (Vstandard_output
))
2486 tem
= Fcurrent_column ();
2487 column
= XINT (tem
);
2496 if (BUFFERP (Vstandard_output
))
2497 set_buffer_internal (old
);
2499 if (!NILP (Vrun_hooks
))
2500 call1 (Vrun_hooks
, intern ("completion-setup-hook"));
2505 DEFUN ("minibuffer-completion-help", Fminibuffer_completion_help
, Sminibuffer_completion_help
,
2507 doc
: /* Display a list of possible completions of the current minibuffer contents. */)
2510 Lisp_Object completions
;
2512 message ("Making completion list...");
2513 completions
= Fall_completions (minibuffer_completion_contents (),
2514 Vminibuffer_completion_table
,
2515 Vminibuffer_completion_predicate
,
2517 clear_message (1, 0);
2519 if (NILP (completions
))
2522 temp_echo_area_glyphs (build_string (" [No completions]"));
2525 internal_with_output_to_temp_buffer ("*Completions*",
2526 Fdisplay_completion_list
,
2527 Fsort (completions
, Qstring_lessp
));
2531 DEFUN ("self-insert-and-exit", Fself_insert_and_exit
, Sself_insert_and_exit
, 0, 0, "",
2532 doc
: /* Terminate minibuffer input. */)
2535 if (INTEGERP (last_command_char
))
2536 internal_self_insert (XINT (last_command_char
), 0);
2540 return Fthrow (Qexit
, Qnil
);
2543 DEFUN ("exit-minibuffer", Fexit_minibuffer
, Sexit_minibuffer
, 0, 0, "",
2544 doc
: /* Terminate this minibuffer argument. */)
2547 return Fthrow (Qexit
, Qnil
);
2550 DEFUN ("minibuffer-depth", Fminibuffer_depth
, Sminibuffer_depth
, 0, 0, 0,
2551 doc
: /* Return current depth of activations of minibuffer, a nonnegative integer. */)
2554 return make_number (minibuf_level
);
2557 DEFUN ("minibuffer-prompt", Fminibuffer_prompt
, Sminibuffer_prompt
, 0, 0, 0,
2558 doc
: /* Return the prompt string of the currently-active minibuffer.
2559 If no minibuffer is active, return nil. */)
2562 return Fcopy_sequence (minibuf_prompt
);
2566 /* Temporarily display STRING at the end of the current
2567 minibuffer contents. This is used to display things like
2568 "[No Match]" when the user requests a completion for a prefix
2569 that has no possible completions, and other quick, unobtrusive
2573 temp_echo_area_glyphs (string
)
2577 int osize_byte
= ZV_BYTE
;
2579 int opoint_byte
= PT_BYTE
;
2580 Lisp_Object oinhibit
;
2581 oinhibit
= Vinhibit_quit
;
2583 /* Clear out any old echo-area message to make way for our new thing. */
2586 SET_PT_BOTH (osize
, osize_byte
);
2587 insert_from_string (string
, 0, 0, SCHARS (string
), SBYTES (string
), 0);
2588 SET_PT_BOTH (opoint
, opoint_byte
);
2590 Fsit_for (make_number (2), Qnil
, Qnil
);
2591 del_range_both (osize
, osize_byte
, ZV
, ZV_BYTE
, 1);
2592 SET_PT_BOTH (opoint
, opoint_byte
);
2593 if (!NILP (Vquit_flag
))
2596 Vunread_command_events
= Fcons (make_number (quit_char
), Qnil
);
2598 Vinhibit_quit
= oinhibit
;
2601 DEFUN ("minibuffer-message", Fminibuffer_message
, Sminibuffer_message
,
2603 doc
: /* Temporarily display STRING at the end of the minibuffer.
2604 The text is displayed for two seconds,
2605 or until the next input event arrives, whichever comes first. */)
2609 CHECK_STRING (string
);
2610 temp_echo_area_glyphs (string
);
2615 init_minibuf_once ()
2617 Vminibuffer_list
= Qnil
;
2618 staticpro (&Vminibuffer_list
);
2625 minibuf_prompt
= Qnil
;
2626 staticpro (&minibuf_prompt
);
2628 minibuf_save_list
= Qnil
;
2629 staticpro (&minibuf_save_list
);
2631 Qread_file_name_internal
= intern ("read-file-name-internal");
2632 staticpro (&Qread_file_name_internal
);
2634 Qminibuffer_default
= intern ("minibuffer-default");
2635 staticpro (&Qminibuffer_default
);
2636 Fset (Qminibuffer_default
, Qnil
);
2638 Qminibuffer_completion_table
= intern ("minibuffer-completion-table");
2639 staticpro (&Qminibuffer_completion_table
);
2641 Qminibuffer_completion_confirm
= intern ("minibuffer-completion-confirm");
2642 staticpro (&Qminibuffer_completion_confirm
);
2644 Qminibuffer_completion_predicate
= intern ("minibuffer-completion-predicate");
2645 staticpro (&Qminibuffer_completion_predicate
);
2647 staticpro (&last_exact_completion
);
2648 last_exact_completion
= Qnil
;
2650 staticpro (&last_minibuf_string
);
2651 last_minibuf_string
= Qnil
;
2653 Quser_variable_p
= intern ("user-variable-p");
2654 staticpro (&Quser_variable_p
);
2656 Qminibuffer_history
= intern ("minibuffer-history");
2657 staticpro (&Qminibuffer_history
);
2659 Qbuffer_name_history
= intern ("buffer-name-history");
2660 staticpro (&Qbuffer_name_history
);
2661 Fset (Qbuffer_name_history
, Qnil
);
2663 Qminibuffer_setup_hook
= intern ("minibuffer-setup-hook");
2664 staticpro (&Qminibuffer_setup_hook
);
2666 Qminibuffer_exit_hook
= intern ("minibuffer-exit-hook");
2667 staticpro (&Qminibuffer_exit_hook
);
2669 Qhistory_length
= intern ("history-length");
2670 staticpro (&Qhistory_length
);
2672 Qcurrent_input_method
= intern ("current-input-method");
2673 staticpro (&Qcurrent_input_method
);
2675 Qactivate_input_method
= intern ("activate-input-method");
2676 staticpro (&Qactivate_input_method
);
2678 Qcase_fold_search
= intern ("case-fold-search");
2679 staticpro (&Qcase_fold_search
);
2681 DEFVAR_LISP ("read-buffer-function", &Vread_buffer_function
,
2682 doc
: /* If this is non-nil, `read-buffer' does its work by calling this function. */);
2683 Vread_buffer_function
= Qnil
;
2685 DEFVAR_LISP ("minibuffer-setup-hook", &Vminibuffer_setup_hook
,
2686 doc
: /* Normal hook run just after entry to minibuffer. */);
2687 Vminibuffer_setup_hook
= Qnil
;
2689 DEFVAR_LISP ("minibuffer-exit-hook", &Vminibuffer_exit_hook
,
2690 doc
: /* Normal hook run just after exit from minibuffer. */);
2691 Vminibuffer_exit_hook
= Qnil
;
2693 DEFVAR_LISP ("history-length", &Vhistory_length
,
2694 doc
: /* *Maximum length for history lists before truncation takes place.
2695 A number means that length; t means infinite. Truncation takes place
2696 just after a new element is inserted. Setting the history-length
2697 property of a history variable overrides this default. */);
2698 XSETFASTINT (Vhistory_length
, 30);
2700 DEFVAR_BOOL ("history-delete-duplicates", &history_delete_duplicates
,
2701 doc
: /* *Non-nil means to delete duplicates in history.
2702 If set to t when adding a new history element, all previous identical
2703 elements are deleted. */);
2704 history_delete_duplicates
= 0;
2706 DEFVAR_LISP ("completion-auto-help", &Vcompletion_auto_help
,
2707 doc
: /* *Non-nil means automatically provide help for invalid completion input. */);
2708 Vcompletion_auto_help
= Qt
;
2710 DEFVAR_BOOL ("completion-ignore-case", &completion_ignore_case
,
2711 doc
: /* Non-nil means don't consider case significant in completion.
2713 For file-name completion, the variable `read-file-name-completion-ignore-case'
2714 controls the behavior, rather than this variable. */);
2715 completion_ignore_case
= 0;
2717 DEFVAR_BOOL ("enable-recursive-minibuffers", &enable_recursive_minibuffers
,
2718 doc
: /* *Non-nil means to allow minibuffer commands while in the minibuffer.
2719 This variable makes a difference whenever the minibuffer window is active. */);
2720 enable_recursive_minibuffers
= 0;
2722 DEFVAR_LISP ("minibuffer-completion-table", &Vminibuffer_completion_table
,
2723 doc
: /* Alist or obarray used for completion in the minibuffer.
2724 This becomes the ALIST argument to `try-completion' and `all-completions'.
2725 The value can also be a list of strings or a hash table.
2727 The value may alternatively be a function, which is given three arguments:
2728 STRING, the current buffer contents;
2729 PREDICATE, the predicate for filtering possible matches;
2730 CODE, which says what kind of things to do.
2731 CODE can be nil, t or `lambda'.
2732 nil means to return the best completion of STRING, or nil if there is none.
2733 t means to return a list of all possible completions of STRING.
2734 `lambda' means to return t if STRING is a valid completion as it stands. */);
2735 Vminibuffer_completion_table
= Qnil
;
2737 DEFVAR_LISP ("minibuffer-completion-predicate", &Vminibuffer_completion_predicate
,
2738 doc
: /* Within call to `completing-read', this holds the PREDICATE argument. */);
2739 Vminibuffer_completion_predicate
= Qnil
;
2741 DEFVAR_LISP ("minibuffer-completion-confirm", &Vminibuffer_completion_confirm
,
2742 doc
: /* Non-nil means to demand confirmation of completion before exiting minibuffer. */);
2743 Vminibuffer_completion_confirm
= Qnil
;
2745 DEFVAR_LISP ("minibuffer-completing-file-name",
2746 &Vminibuffer_completing_file_name
,
2747 doc
: /* Non-nil means completing file names. */);
2748 Vminibuffer_completing_file_name
= Qnil
;
2750 DEFVAR_LISP ("minibuffer-help-form", &Vminibuffer_help_form
,
2751 doc
: /* Value that `help-form' takes on inside the minibuffer. */);
2752 Vminibuffer_help_form
= Qnil
;
2754 DEFVAR_LISP ("minibuffer-history-variable", &Vminibuffer_history_variable
,
2755 doc
: /* History list symbol to add minibuffer values to.
2756 Each string of minibuffer input, as it appears on exit from the minibuffer,
2758 (set minibuffer-history-variable
2759 (cons STRING (symbol-value minibuffer-history-variable))) */);
2760 XSETFASTINT (Vminibuffer_history_variable
, 0);
2762 DEFVAR_LISP ("minibuffer-history-position", &Vminibuffer_history_position
,
2763 doc
: /* Current position of redoing in the history list. */);
2764 Vminibuffer_history_position
= Qnil
;
2766 DEFVAR_BOOL ("minibuffer-auto-raise", &minibuffer_auto_raise
,
2767 doc
: /* *Non-nil means entering the minibuffer raises the minibuffer's frame.
2768 Some uses of the echo area also raise that frame (since they use it too). */);
2769 minibuffer_auto_raise
= 0;
2771 DEFVAR_LISP ("completion-regexp-list", &Vcompletion_regexp_list
,
2772 doc
: /* List of regexps that should restrict possible completions.
2773 The basic completion functions only consider a completion acceptable
2774 if it matches all regular expressions in this list, with
2775 `case-fold-search' bound to the value of `completion-ignore-case'.
2776 See Info node `(elisp)Basic Completion', for a description of these
2778 Vcompletion_regexp_list
= Qnil
;
2780 DEFVAR_BOOL ("minibuffer-allow-text-properties",
2781 &minibuffer_allow_text_properties
,
2782 doc
: /* Non-nil means `read-from-minibuffer' should not discard text properties.
2783 This also affects `read-string', but it does not affect `read-minibuffer',
2784 `read-no-blanks-input', or any of the functions that do minibuffer input
2785 with completion; they always discard text properties. */);
2786 minibuffer_allow_text_properties
= 0;
2788 DEFVAR_LISP ("minibuffer-prompt-properties", &Vminibuffer_prompt_properties
,
2789 doc
: /* Text properties that are added to minibuffer prompts.
2790 These are in addition to the basic `field' property, and stickiness
2792 /* We use `intern' here instead of Qread_only to avoid
2793 initialization-order problems. */
2794 Vminibuffer_prompt_properties
2795 = Fcons (intern ("read-only"), Fcons (Qt
, Qnil
));
2797 defsubr (&Sset_minibuffer_window
);
2798 defsubr (&Sread_from_minibuffer
);
2799 defsubr (&Seval_minibuffer
);
2800 defsubr (&Sread_minibuffer
);
2801 defsubr (&Sread_string
);
2802 defsubr (&Sread_command
);
2803 defsubr (&Sread_variable
);
2804 defsubr (&Sread_buffer
);
2805 defsubr (&Sread_no_blanks_input
);
2806 defsubr (&Sminibuffer_depth
);
2807 defsubr (&Sminibuffer_prompt
);
2809 defsubr (&Sminibufferp
);
2810 defsubr (&Sminibuffer_prompt_end
);
2811 defsubr (&Sminibuffer_contents
);
2812 defsubr (&Sminibuffer_contents_no_properties
);
2813 defsubr (&Sdelete_minibuffer_contents
);
2815 defsubr (&Stry_completion
);
2816 defsubr (&Sall_completions
);
2817 defsubr (&Stest_completion
);
2818 defsubr (&Sassoc_string
);
2819 defsubr (&Scompleting_read
);
2820 defsubr (&Sminibuffer_complete
);
2821 defsubr (&Sminibuffer_complete_word
);
2822 defsubr (&Sminibuffer_complete_and_exit
);
2823 defsubr (&Sdisplay_completion_list
);
2824 defsubr (&Sminibuffer_completion_help
);
2826 defsubr (&Sself_insert_and_exit
);
2827 defsubr (&Sexit_minibuffer
);
2829 defsubr (&Sminibuffer_message
);
2835 initial_define_key (Vminibuffer_local_map
, Ctl ('g'),
2836 "abort-recursive-edit");
2837 initial_define_key (Vminibuffer_local_map
, Ctl ('m'),
2839 initial_define_key (Vminibuffer_local_map
, Ctl ('j'),
2842 initial_define_key (Vminibuffer_local_ns_map
, ' ',
2844 initial_define_key (Vminibuffer_local_ns_map
, '\t',
2846 initial_define_key (Vminibuffer_local_ns_map
, '?',
2847 "self-insert-and-exit");
2849 initial_define_key (Vminibuffer_local_completion_map
, '\t',
2850 "minibuffer-complete");
2851 initial_define_key (Vminibuffer_local_completion_map
, ' ',
2852 "minibuffer-complete-word");
2853 initial_define_key (Vminibuffer_local_completion_map
, '?',
2854 "minibuffer-completion-help");
2856 initial_define_key (Vminibuffer_local_must_match_map
, Ctl ('m'),
2857 "minibuffer-complete-and-exit");
2858 initial_define_key (Vminibuffer_local_must_match_map
, Ctl ('j'),
2859 "minibuffer-complete-and-exit");
2862 /* arch-tag: 8f69b601-fba3-484c-a6dd-ceaee54a7a73
2863 (do not change this comment) */