annotate src/minibuf.c @ 117:578fd4947a72

Added tag r20-1b10 for changeset 9f59509498e1
author cvs
date Mon, 13 Aug 2007 09:23:08 +0200
parents 9f59509498e1
children 538048ae2ab8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* Minibuffer input and completion.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1985, 1986, 1992-1995 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 Copyright (C) 1995 Sun Microsystems, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 /* Synched up with: Mule 2.0, FSF 19.28. Mule-ized except as noted.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 Substantially different from FSF. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 110
diff changeset
25 /* #### dmoore - All sorts of things in here can call lisp, like message.
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 110
diff changeset
26 Track all this stuff. */
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 110
diff changeset
27
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 #include <config.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 #include "lisp.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 #include "buffer.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 #include "commands.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 #include "console-stream.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 #include "events.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 #include "frame.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 #include "insdel.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 #include "redisplay.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 #include "window.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 /* Depth in minibuffer invocations. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 int minibuf_level;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 Lisp_Object Qcompletion_ignore_case;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 /* Nonzero means completion ignores case. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 int completion_ignore_case;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 /* List of regexps that should restrict possible completions. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 Lisp_Object Vcompletion_regexp_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 /* The echo area buffer. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 Lisp_Object Vecho_area_buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 /* Prompt to display in front of the minibuffer contents */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 Lisp_Object Vminibuf_prompt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 80
diff changeset
57 /* Added on 97/3/14 by Jareth Hein (jhod@po.iijnet.or.jp) for input system support */
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 80
diff changeset
58 /* String to be displayed in front of prompt of the minibuffer contents */
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 80
diff changeset
59 Lisp_Object Vminibuf_preprompt;
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 80
diff changeset
60
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 /* Hook to run just after entry to minibuffer. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 Lisp_Object Qminibuffer_setup_hook, Vminibuffer_setup_hook;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 Lisp_Object Qappend_message, Qcurrent_message_label,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 Qclear_message, Qdisplay_message;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
68 DEFUN ("minibuffer-depth", Fminibuffer_depth, 0, 0, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 Return current depth of activations of minibuffer, a nonnegative integer.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
70 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
71 ())
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 return make_int (minibuf_level);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 /* The default buffer to use as the window-buffer of minibuffer windows */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 /* Note there is special code in kill-buffer to make this unkillable */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 Lisp_Object Vminibuffer_zero;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 /* Actual minibuffer invocation. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 read_minibuffer_internal_unwind (Lisp_Object unwind_data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 Lisp_Object frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 XWINDOW (minibuf_window)->last_modified[CURRENT_DISP] = Qzero;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 XWINDOW (minibuf_window)->last_modified[DESIRED_DISP] = Qzero;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 XWINDOW (minibuf_window)->last_modified[CMOTION_DISP] = Qzero;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 XWINDOW (minibuf_window)->last_facechange[CURRENT_DISP] = Qzero;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 XWINDOW (minibuf_window)->last_facechange[DESIRED_DISP] = Qzero;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 XWINDOW (minibuf_window)->last_facechange[CMOTION_DISP] = Qzero;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 Vminibuf_prompt = Felt (unwind_data, Qzero);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 minibuf_level = XINT (Felt (unwind_data, make_int (1)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 while (CONSP (unwind_data))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 Lisp_Object victim = unwind_data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 unwind_data = XCDR (unwind_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 free_cons (XCONS (victim));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 /* If cursor is on the minibuffer line,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 show the user we have exited by putting it in column 0. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 frame = Fselected_frame (Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 if (!noninteractive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 && !NILP (frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 && !NILP (XFRAME (frame)->minibuffer_window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 struct window *w = XWINDOW (XFRAME (frame)->minibuffer_window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 redisplay_move_cursor (w, 0, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 80
diff changeset
116 /* 97/4/13 jhod: Added for input methods */
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 80
diff changeset
117 DEFUN ("set-minibuffer-preprompt", Fset_minibuffer_preprompt, 1, 1, 0, /*
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 80
diff changeset
118 Set the minibuffer preprompt string to PREPROMPT. This is used by language
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 80
diff changeset
119 input methods to relay state information to the user.
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 80
diff changeset
120 */
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 80
diff changeset
121 (preprompt))
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 80
diff changeset
122 {
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 80
diff changeset
123 if (NILP (preprompt))
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 80
diff changeset
124 {
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 80
diff changeset
125 Vminibuf_preprompt = Qnil;
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 80
diff changeset
126 }
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 80
diff changeset
127 else
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 80
diff changeset
128 {
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 80
diff changeset
129 CHECK_STRING (preprompt);
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 80
diff changeset
130
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 80
diff changeset
131 Vminibuf_preprompt = LISP_GETTEXT (preprompt);
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 80
diff changeset
132 }
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 80
diff changeset
133 }
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 80
diff changeset
134
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
135 DEFUN ("read-minibuffer-internal", Fread_minibuffer_internal, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 Lowest-level interface to minibuffers. Don't call this.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
137 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
138 (prompt))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 int speccount = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 CHECK_STRING (prompt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 single_console_state ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 record_unwind_protect (read_minibuffer_internal_unwind,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 noseeum_cons
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 (Vminibuf_prompt,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 noseeum_cons (make_int (minibuf_level), Qnil)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 Vminibuf_prompt = LISP_GETTEXT (prompt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 /* NOTE: Here (or somewhere around here), in FSFmacs 19.30,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 choose_minibuf_frame() is called. This is the only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 place in FSFmacs that it's called any more -- there's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 also a call in xterm.c, but commented out, and 19.28
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 had the calls in different places.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 choose_minibuf_frame() does the following:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 if (!EQ (minibuf_window, selected_frame()->minibuffer_window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 Fset_window_buffer (selected_frame()->minibuffer_window,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 XWINDOW (minibuf_window)->buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 minibuf_window = selected_frame()->minibuffer_window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 #### Note that we don't do the set-window-buffer. This call is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 similar, but not identical, to a set-window-buffer call made
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 in `read-from-minibuffer' in minibuf.el. I hope it's close
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 enough, because minibuf_window isn't really exported to Lisp.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 The comment above choose_minibuf_frame() reads:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 Put minibuf on currently selected frame's minibuffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 We do this whenever the user starts a new minibuffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 or when a minibuffer exits. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 minibuf_window = FRAME_MINIBUF_WINDOW (selected_frame ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 run_hook (Qminibuffer_setup_hook);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 minibuf_level++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 clear_echo_area (selected_frame (), Qnil, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 val = call_command_loop (Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 return (unbind_to (speccount, val));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 /* Completion hair */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 /* Compare exactly LEN chars of strings at S1 and S2,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 ignoring case if appropriate.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 Return -1 if strings match,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 else number of chars that match at the beginning. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 /* Note that this function works in Charcounts, unlike most functions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 This is necessary for many reasons, one of which is that two
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 strings may match even if they have different numbers of bytes,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 if IGNORE_CASE is true. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 Charcount
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 scmp_1 (CONST Bufbyte *s1, CONST Bufbyte *s2, Charcount len,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 int ignore_case)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 Charcount l = len;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 if (ignore_case)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 while (l)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 Bufbyte c1 = DOWNCASE (current_buffer, charptr_emchar (s1));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 Bufbyte c2 = DOWNCASE (current_buffer, charptr_emchar (s2));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 if (c1 == c2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 l--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 INC_CHARPTR (s1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 INC_CHARPTR (s2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 while (l && charptr_emchar (s1) == charptr_emchar (s2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 l--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 INC_CHARPTR (s1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 INC_CHARPTR (s2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 if (l == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 return -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 else return len - l;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 regexp_ignore_completion_p (CONST Bufbyte *nonreloc,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 Lisp_Object reloc, Bytecount offset,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 Bytecount length)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 /* Ignore this element if it fails to match all the regexps. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 if (!NILP (Vcompletion_regexp_list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 Lisp_Object regexps;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 for (regexps = Vcompletion_regexp_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 CONSP (regexps);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 regexps = XCDR (regexps))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 Lisp_Object re = XCAR (regexps);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 if (STRINGP (re)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 && (fast_string_match (re, nonreloc, reloc, offset,
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 80
diff changeset
261 length, 0, ERROR_ME, 0) < 0))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 return (1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 return (0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 /* Callers should GCPRO, since this may call eval */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 ignore_completion_p (Lisp_Object completion_string,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 Lisp_Object pred, Lisp_Object completion)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 if (regexp_ignore_completion_p (0, completion_string, 0, -1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 return (1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 /* Ignore this element if there is a predicate
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 and the predicate doesn't like it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 if (!NILP (pred))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 if (EQ (pred, Qcommandp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 tem = Fcommandp (completion);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 tem = call1 (pred, completion);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 if (NILP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 return (1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 return (0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
295 DEFUN ("try-completion", Ftry_completion, 2, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 Return common substring of all completions of STRING in ALIST.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 Each car of each element of ALIST is tested to see if it begins with STRING.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 All that match are compared together; the longest initial sequence
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 common to all matches is returned as a string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 If there is no match at all, nil is returned.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 For an exact match, t is returned.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 ALIST can be an obarray instead of an alist.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 Then the print names of all symbols in the obarray are the possible matches.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 ALIST can also be a function to do the completion itself.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 It receives three arguments: the values STRING, PREDICATE and nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 Whatever it returns becomes the value of `try-completion'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 If optional third argument PREDICATE is non-nil,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 it is used to test each possible match.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 The match is a candidate only if PREDICATE returns non-nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 The argument given to PREDICATE is the alist element or the symbol from the obarray.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
314 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
315 (string, alist, pred))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 Lisp_Object bestmatch, tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 Charcount bestmatchsize = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 int list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 int indice = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 int obsize = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 int matchcount = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 Lisp_Object bucket;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 Charcount slength, blength;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 CHECK_STRING (string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 if (CONSP (alist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 Lisp_Object tem = XCAR (alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 if (SYMBOLP (tem)) /* lambda, autoload, etc. Emacs-lisp sucks */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 return call3 (alist, string, pred, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 list = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 else if (VECTORP (alist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 list = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 else if (NILP (alist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 list = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 return call3 (alist, string, pred, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 bestmatch = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 blength = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 slength = string_char_length (XSTRING (string));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 /* If ALIST is not a list, set TAIL just for gc pro. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 tail = alist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 if (!list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 obsize = vector_length (XVECTOR (alist));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 bucket = vector_data (XVECTOR (alist))[indice];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 while (1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 /* Get the next element of the alist or obarray. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 /* Exit the loop if the elements are all used up. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 /* elt gets the alist element or symbol.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 eltstring gets the name to check as a completion. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 Lisp_Object elt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 Lisp_Object eltstring;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 if (list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 if (NILP (tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 elt = Fcar (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 eltstring = Fcar (elt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 tail = Fcdr (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 if (!ZEROP (bucket))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 {
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
377 struct Lisp_Symbol *next;
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
378 if (!SYMBOLP (bucket)) {
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
379 signal_simple_error("Bad obarry passed to try-completions",
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
380 bucket);
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
381 }
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
382 next = symbol_next (XSYMBOL (bucket));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 elt = bucket;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 eltstring = Fsymbol_name (elt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 if (next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 XSETSYMBOL (bucket, next);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 bucket = Qzero;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 else if (++indice >= obsize)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 bucket = vector_data (XVECTOR (alist))[indice];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 /* Is this element a possible completion? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 if (STRINGP (eltstring))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 Charcount eltlength = string_char_length (XSTRING (eltstring));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 if (slength <= eltlength
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
405 && (0 > scmp (XSTRING_DATA (eltstring),
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
406 XSTRING_DATA (string),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 slength)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 int loser;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 GCPRO4 (tail, string, eltstring, bestmatch);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 loser = ignore_completion_p (eltstring, pred, elt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 if (loser) /* reject this one */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 /* Update computation of how much all possible
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 completions match */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 matchcount++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 if (NILP (bestmatch))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 bestmatch = eltstring;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 blength = eltlength;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 bestmatchsize = eltlength;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 Charcount compare = min (bestmatchsize, eltlength);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 Charcount matchsize =
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
433 scmp (XSTRING_DATA (bestmatch),
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
434 XSTRING_DATA (eltstring),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 compare);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 if (matchsize < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 matchsize = compare;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 if (completion_ignore_case)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 /* If this is an exact match except for case,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 use it as the best match rather than one that is not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 an exact match. This way, we get the case pattern
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 of the actual match. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 if ((matchsize == eltlength
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 && matchsize < blength)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 /* If there is more than one exact match ignoring
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 case, and one of them is exact including case,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 prefer that one. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 /* If there is no exact match ignoring case,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 prefer a match that does not change the case
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 of the input. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 ((matchsize == eltlength)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 ==
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 (matchsize == blength)
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
456 && 0 > scmp_1 (XSTRING_DATA (eltstring),
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
457 XSTRING_DATA (string),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 slength, 0)
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
459 && 0 <= scmp_1 (XSTRING_DATA (bestmatch),
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
460 XSTRING_DATA (string),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 slength, 0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 bestmatch = eltstring;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 blength = eltlength;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 bestmatchsize = matchsize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 if (NILP (bestmatch))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 return Qnil; /* No completions found */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 /* If we are ignoring case, and there is no exact match,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 and no additional text was supplied,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 don't change the case of what the user typed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 if (completion_ignore_case
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 && bestmatchsize == slength
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 && blength > bestmatchsize)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 return string;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 /* Return t if the supplied string is an exact match (counting case);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 it does not require any change to be made. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 if (matchcount == 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 && bestmatchsize == slength
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
487 && 0 > scmp_1 (XSTRING_DATA (bestmatch),
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
488 XSTRING_DATA (string),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 bestmatchsize, 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 /* Else extract the part in which all completions agree */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 return Fsubstring (bestmatch, Qzero, make_int (bestmatchsize));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
497 DEFUN ("all-completions", Fall_completions, 2, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 Search for partial matches to STRING in ALIST.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 Each car of each element of ALIST is tested to see if it begins with STRING.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 The value is a list of all the strings from ALIST that match.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 ALIST can be an obarray instead of an alist.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 Then the print names of all symbols in the obarray are the possible matches.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 ALIST can also be a function to do the completion itself.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 It receives three arguments: the values STRING, PREDICATE and t.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 Whatever it returns becomes the value of `all-completions'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 If optional third argument PREDICATE is non-nil,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 it is used to test each possible match.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 The match is a candidate only if PREDICATE returns non-nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 The argument given to PREDICATE is the alist element or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 the symbol from the obarray.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
513 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
514 (string, alist, pred))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 Lisp_Object tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 Lisp_Object allmatches;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 int list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 int indice = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 int obsize = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 Lisp_Object bucket;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 Charcount slength;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 CHECK_STRING (string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 if (CONSP (alist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 Lisp_Object tem = XCAR (alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 if (SYMBOLP (tem)) /* lambda, autoload, etc. Emacs-lisp sucks */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 return call3 (alist, string, pred, Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 list = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 else if (VECTORP (alist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 list = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 else if (NILP (alist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 list = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 return call3 (alist, string, pred, Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 allmatches = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 slength = string_char_length (XSTRING (string));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 /* If ALIST is not a list, set TAIL just for gc pro. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 tail = alist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 if (!list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 obsize = vector_length (XVECTOR (alist));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 bucket = vector_data (XVECTOR (alist))[indice];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 while (1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 /* Get the next element of the alist or obarray. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 /* Exit the loop if the elements are all used up. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 /* elt gets the alist element or symbol.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 eltstring gets the name to check as a completion. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 Lisp_Object elt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 Lisp_Object eltstring;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 if (list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 if (NILP (tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 elt = Fcar (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 eltstring = Fcar (elt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 tail = Fcdr (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 if (!ZEROP (bucket))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 struct Lisp_Symbol *next = symbol_next (XSYMBOL (bucket));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 elt = bucket;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 eltstring = Fsymbol_name (elt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 if (next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 XSETSYMBOL (bucket, next);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 bucket = Qzero;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 else if (++indice >= obsize)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 bucket = vector_data (XVECTOR (alist))[indice];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 /* Is this element a possible completion? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593 if (STRINGP (eltstring)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 && (slength <= string_char_length (XSTRING (eltstring)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 /* Reject alternatives that start with space
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 unless the input starts with space. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 && ((string_char_length (XSTRING (string)) > 0 &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 string_char (XSTRING (string), 0) == ' ')
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 || string_char (XSTRING (eltstring), 0) != ' ')
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
600 && (0 > scmp (XSTRING_DATA (eltstring),
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
601 XSTRING_DATA (string),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602 slength)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604 /* Yes. Now check whether predicate likes it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 int loser;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607 GCPRO4 (tail, eltstring, allmatches, string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 loser = ignore_completion_p (eltstring, pred, elt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 if (!loser)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 /* Ok => put it on the list. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612 allmatches = Fcons (eltstring, allmatches);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 return Fnreverse (allmatches);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 /* Useless FSFmacs functions */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 /* More than useless. I've nuked minibuf_prompt_width so they won't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 function at all in XEmacs at the moment. They are used to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 implement some braindamage in FSF which we aren't including. --cet */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625 xxDEFUN ("minibuffer-prompt", Fminibuffer_prompt, Sminibuffer_prompt, 0, 0, 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 "Return the prompt string of the currently-active minibuffer.\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 "If no minibuffer is active, return nil.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630 return (Fcopy_sequence (Vminibuf_prompt));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 xxDEFUN ("minibuffer-prompt-width", Fminibuffer_prompt_width,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 Sminibuffer_prompt_width, 0, 0, 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 "Return the display width of the minibuffer prompt.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 return (make_int (minibuf_prompt_width));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 }
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
640 #endif /* 0 */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644 /* echo area */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 extern int stdout_needs_newline;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 clear_echo_area_internal (struct frame *f, Lisp_Object label, int from_print,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 int no_restore)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 {
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 110
diff changeset
653 /* This function can call lisp */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 if (!NILP (Ffboundp (Qclear_message)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 Lisp_Object frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 XSETFRAME (frame, f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 return call4 (Qclear_message, label, frame, from_print ? Qt : Qnil,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 no_restore ? Qt : Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 write_string_to_stdio_stream (stderr, 0, (CONST Bufbyte *) "\n", 0, 1,
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
665 FORMAT_TERMINAL);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 clear_echo_area (struct frame *f, Lisp_Object label, int no_restore)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 {
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 110
diff changeset
673 /* This function can call lisp */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 return clear_echo_area_internal (f, label, 0, no_restore);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 clear_echo_area_from_print (struct frame *f, Lisp_Object label, int no_restore)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 {
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 110
diff changeset
680 /* This function can call lisp */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 return clear_echo_area_internal (f, label, 1, no_restore);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 echo_area_append (struct frame *f, CONST Bufbyte *nonreloc, Lisp_Object reloc,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686 Bytecount offset, Bytecount length,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 Lisp_Object label)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 {
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 110
diff changeset
689 /* This function can call lisp */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 Lisp_Object obj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692 Lisp_Object frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 /* some callers pass in a null string as a way of clearing the echo area.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 check for length == 0 now; if this case, neither nonreloc nor reloc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 may be valid. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 if (length == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 fixup_internal_substring (nonreloc, reloc, offset, &length);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 /* also check it here, in case the string was really blank. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 if (length == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 if (!NILP (Ffboundp (Qappend_message)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 {
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
708 if (STRINGP (reloc) && offset == 0 && length == XSTRING_LENGTH (reloc))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 obj = reloc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 if (STRINGP (reloc))
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
713 nonreloc = XSTRING_DATA (reloc);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714 obj = make_string (nonreloc + offset, length);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717 XSETFRAME (frame, f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718 GCPRO1 (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 call4 (Qappend_message, label, obj, frame,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 EQ (label, Qprint) ? Qt : Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 if (STRINGP (reloc))
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
726 nonreloc = XSTRING_DATA (reloc);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727 write_string_to_stdio_stream (stderr, 0, nonreloc, offset, length,
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
728 FORMAT_TERMINAL);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733 echo_area_message (struct frame *f, CONST Bufbyte *nonreloc,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 Lisp_Object reloc, Bytecount offset, Bytecount length,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735 Lisp_Object label)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 {
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 110
diff changeset
737 /* This function can call lisp */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738 clear_echo_area (f, label, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 echo_area_append (f, nonreloc, reloc, offset, length, label);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 echo_area_active (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 /* By definition, the echo area is active if the echo-area buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746 is not empty. No need to call Lisp code. (Anyway, this function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747 is called from redisplay.) */
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
748 struct buffer *echo_buffer = XBUFFER (Vecho_area_buffer);
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
749 return (BUF_BEGV (echo_buffer) != BUF_ZV (echo_buffer));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753 echo_area_status (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754 {
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 110
diff changeset
755 /* This function can call lisp */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756 if (!NILP (Ffboundp (Qcurrent_message_label)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758 Lisp_Object frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 XSETFRAME (frame, f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761 return (call1 (Qcurrent_message_label, frame));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 return stdout_needs_newline ? Qmessage : Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768 echo_area_contents (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 /* See above. By definition, the contents of the echo-area buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 are the contents of the echo area. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772 return Fbuffer_substring (Qnil, Qnil, Vecho_area_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775 /* Dump an informative message to the echo area. This function takes a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 string in internal format. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778 message_internal (CONST Bufbyte *nonreloc, Lisp_Object reloc,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779 Bytecount offset, Bytecount length)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780 {
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 110
diff changeset
781 /* This function can call lisp */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782 if (NILP (Vexecuting_macro))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783 echo_area_message (selected_frame (), nonreloc, reloc, offset, length,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784 Qmessage);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788 message_append_internal (CONST Bufbyte *nonreloc, Lisp_Object reloc,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789 Bytecount offset, Bytecount length)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790 {
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 110
diff changeset
791 /* This function can call lisp */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 if (NILP (Vexecuting_macro))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793 echo_area_append (selected_frame (), nonreloc, reloc, offset, length,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794 Qmessage);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797 /* The next three functions are interfaces to message_internal() that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798 take strings in external format. message() does I18N3 translating
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799 on the format string; message_no_translate() does not. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802 message_1 (CONST char *fmt, va_list args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803 {
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 110
diff changeset
804 /* This function can call lisp */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805 if (fmt)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808 /* message_internal() might GC, e.g. if there are after-change-hooks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809 on the echo area buffer */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810 Lisp_Object obj = emacs_doprnt_string_va ((CONST Bufbyte *) fmt, Qnil,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811 -1, args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812 GCPRO1 (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813 message_internal (0, obj, 0, -1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817 message_internal (0, Qnil, 0, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821 message_append_1 (CONST char *fmt, va_list args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822 {
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 110
diff changeset
823 /* This function can call lisp */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824 if (fmt)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 /* message_internal() might GC, e.g. if there are after-change-hooks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 on the echo area buffer */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829 Lisp_Object obj = emacs_doprnt_string_va ((CONST Bufbyte *) fmt, Qnil,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830 -1, args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831 GCPRO1 (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 message_append_internal (0, obj, 0, -1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836 message_append_internal (0, Qnil, 0, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840 clear_message (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841 {
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 110
diff changeset
842 /* This function can call lisp */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843 message_internal (0, Qnil, 0, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 message (CONST char *fmt, ...)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848 {
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 110
diff changeset
849 /* This function can call lisp */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850 /* I think it's OK to pass the data of Lisp strings as arguments to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
851 this function. No GC'ing will occur until the data has already
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852 been copied. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853 va_list args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855 va_start (args, fmt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 if (fmt)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857 fmt = GETTEXT (fmt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858 message_1 (fmt, args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859 va_end (args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
860 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863 message_append (CONST char *fmt, ...)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864 {
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 110
diff changeset
865 /* This function can call lisp */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 va_list args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868 va_start (args, fmt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869 if (fmt)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870 fmt = GETTEXT (fmt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871 message_append_1 (fmt, args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872 va_end (args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
876 message_no_translate (CONST char *fmt, ...)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877 {
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 110
diff changeset
878 /* This function can call lisp */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879 /* I think it's OK to pass the data of Lisp strings as arguments to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
880 this function. No GC'ing will occur until the data has already
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881 been copied. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882 va_list args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
883
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884 va_start (args, fmt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885 message_1 (fmt, args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886 va_end (args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
889
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
890 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
891 /* initialization */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
892 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
893
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
894 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895 syms_of_minibuf (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
896 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
897 defsymbol (&Qminibuffer_setup_hook, "minibuffer-setup-hook");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
899 defsymbol (&Qcompletion_ignore_case, "completion-ignore-case");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
900
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
901 DEFSUBR (Fminibuffer_depth);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
902 #if 0
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
903 DEFSUBR (Fminibuffer_prompt);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
904 DEFSUBR (Fminibuffer_prompt_width);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905 #endif
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 80
diff changeset
906 DEFSUBR (Fset_minibuffer_preprompt);
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
907 DEFSUBR (Fread_minibuffer_internal);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
908
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
909 DEFSUBR (Ftry_completion);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
910 DEFSUBR (Fall_completions);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912 defsymbol (&Qappend_message, "append-message");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913 defsymbol (&Qclear_message, "clear-message");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
914 defsymbol (&Qdisplay_message, "display-message");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
915 defsymbol (&Qcurrent_message_label, "current-message-label");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
916 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
917
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
918 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919 vars_of_minibuf (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
920 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
921 minibuf_level = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
922
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923 staticpro (&Vminibuf_prompt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924 Vminibuf_prompt = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 80
diff changeset
926 /* Added by Jareth Hein (jhod@po.iijnet.or.jp) for input system support */
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 80
diff changeset
927 staticpro (&Vminibuf_preprompt);
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 80
diff changeset
928 Vminibuf_preprompt = Qnil;
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 80
diff changeset
929
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
930 DEFVAR_LISP ("minibuffer-setup-hook", &Vminibuffer_setup_hook /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
931 Normal hook run just after entry to minibuffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933 Vminibuffer_setup_hook = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
934
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
935 DEFVAR_BOOL ("completion-ignore-case", &completion_ignore_case /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
936 Non-nil means don't consider case significant in completion.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
937 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
938 completion_ignore_case = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
940 DEFVAR_LISP ("completion-regexp-list", &Vcompletion_regexp_list /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941 List of regexps that should restrict possible completions.
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 80
diff changeset
942 Each completion has to match all regexps in this list.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
943 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
944 Vcompletion_regexp_list = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
945 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948 complex_vars_of_minibuf (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951 #ifdef I18N3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952 /* #### This needs to be fixed up so that the gettext() gets called
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953 at runtime instead of at load time. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
954 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
955 Vminibuffer_zero
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956 = Fget_buffer_create
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957 (Fpurecopy (build_string (DEFER_GETTEXT (" *Minibuf-0*"))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958 Vecho_area_buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959 = Fget_buffer_create
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960 (Fpurecopy (build_string (DEFER_GETTEXT (" *Echo Area*"))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
961 }