annotate src/minibuf.c @ 158:558dfa75ffb3

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