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