annotate src/minibuf.c @ 0:376386a54a3c r19-14

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