Mercurial > emacs
annotate src/dispnew.c @ 4480:208145c77950
* vc.el (vc-diff, vc-directory-18): Add missing paren to end of
vc-diff, and remove extra paren from vc-directory-18.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Sun, 08 Aug 1993 00:44:26 +0000 |
parents | 98605d0ea3cf |
children | 1abd3007cbb6 |
rev | line source |
---|---|
314 | 1 /* Updating of data structures for redisplay. |
2961 | 2 Copyright (C) 1985, 1986, 1987, 1988, 1993 Free Software Foundation, Inc. |
314 | 3 |
4 This file is part of GNU Emacs. | |
5 | |
6 GNU Emacs is free software; you can redistribute it and/or modify | |
7 it under the terms of the GNU General Public License as published by | |
1777
4edfaa19c7a7
* window.c (window_internal_width): New function.
Jim Blandy <jimb@redhat.com>
parents:
1766
diff
changeset
|
8 the Free Software Foundation; either version 2, or (at your option) |
314 | 9 any later version. |
10 | |
11 GNU Emacs is distributed in the hope that it will be useful, | |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 GNU General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
17 along with GNU Emacs; see the file COPYING. If not, write to | |
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
19 | |
20 | |
21 #include <signal.h> | |
22 | |
23 #include "config.h" | |
24 #include <stdio.h> | |
25 #include <ctype.h> | |
26 | |
3525
58e789baa27a
Include lisp.h earlier (before termhooks.h).
Richard M. Stallman <rms@gnu.org>
parents:
3517
diff
changeset
|
27 #include "lisp.h" |
314 | 28 #include "termchar.h" |
29 #include "termopts.h" | |
2198 | 30 #include "termhooks.h" |
314 | 31 #include "cm.h" |
32 #include "dispextern.h" | |
33 #include "buffer.h" | |
764 | 34 #include "frame.h" |
314 | 35 #include "window.h" |
36 #include "commands.h" | |
37 #include "disptab.h" | |
38 #include "indent.h" | |
4384
98605d0ea3cf
(direct_output_for_insert): Fail if character
Richard M. Stallman <rms@gnu.org>
parents:
4290
diff
changeset
|
39 #include "intervals.h" |
314 | 40 |
1042
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
41 #include "systty.h" |
554 | 42 #include "systime.h" |
43 | |
314 | 44 #ifdef HAVE_X_WINDOWS |
45 #include "xterm.h" | |
46 #endif /* HAVE_X_WINDOWS */ | |
47 | |
48 #define max(a, b) ((a) > (b) ? (a) : (b)) | |
49 #define min(a, b) ((a) < (b) ? (a) : (b)) | |
50 | |
51 #ifndef PENDING_OUTPUT_COUNT | |
52 /* Get number of chars of output now in the buffer of a stdio stream. | |
53 This ought to be built in in stdio, but it isn't. | |
54 Some s- files override this because their stdio internals differ. */ | |
55 #define PENDING_OUTPUT_COUNT(FILE) ((FILE)->_ptr - (FILE)->_base) | |
56 #endif | |
57 | |
554 | 58 /* Nonzero upon entry to redisplay means do not assume anything about |
764 | 59 current contents of actual terminal frame; clear and redraw it. */ |
314 | 60 |
764 | 61 int frame_garbaged; |
314 | 62 |
63 /* Nonzero means last display completed. Zero means it was preempted. */ | |
64 | |
65 int display_completed; | |
66 | |
67 /* Lisp variable visible-bell; enables use of screen-flash | |
68 instead of audible bell. */ | |
69 | |
70 int visible_bell; | |
71 | |
764 | 72 /* Invert the color of the whole frame, at a low level. */ |
314 | 73 |
74 int inverse_video; | |
75 | |
76 /* Line speed of the terminal. */ | |
77 | |
78 int baud_rate; | |
79 | |
80 /* nil or a symbol naming the window system under which emacs is | |
81 running ('x is the only current possibility). */ | |
82 | |
83 Lisp_Object Vwindow_system; | |
84 | |
85 /* Version number of X windows: 10, 11 or nil. */ | |
86 Lisp_Object Vwindow_system_version; | |
87 | |
88 /* Vector of glyph definitions. Indexed by glyph number, | |
89 the contents are a string which is how to output the glyph. | |
90 | |
91 If Vglyph_table is nil, a glyph is output by using its low 8 bits | |
92 as a character code. */ | |
93 | |
94 Lisp_Object Vglyph_table; | |
95 | |
96 /* Display table to use for vectors that don't specify their own. */ | |
97 | |
98 Lisp_Object Vstandard_display_table; | |
99 | |
100 /* Nonzero means reading single-character input with prompt | |
708 | 101 so put cursor on minibuffer after the prompt. |
102 positive means at end of text in echo area; | |
103 negative means at beginning of line. */ | |
314 | 104 int cursor_in_echo_area; |
105 | |
764 | 106 /* The currently selected frame. |
107 In a single-frame version, this variable always remains 0. */ | |
314 | 108 |
764 | 109 FRAME_PTR selected_frame; |
314 | 110 |
764 | 111 /* A frame which is not just a minibuffer, or 0 if there are no such |
112 frames. This is usually the most recent such frame that was | |
113 selected. In a single-frame version, this variable always remains 0. */ | |
114 FRAME_PTR last_nonminibuf_frame; | |
732 | 115 |
764 | 116 /* In a single-frame version, the information that would otherwise |
986
83605f96f58e
* dispnew.c (the_only_frame): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
960
diff
changeset
|
117 exist inside frame objects lives in the following structure instead. |
83605f96f58e
* dispnew.c (the_only_frame): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
960
diff
changeset
|
118 |
83605f96f58e
* dispnew.c (the_only_frame): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
960
diff
changeset
|
119 NOTE: the_only_frame is not checked for garbage collection; don't |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3525
diff
changeset
|
120 store collectible objects in any of its fields! |
986
83605f96f58e
* dispnew.c (the_only_frame): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
960
diff
changeset
|
121 |
83605f96f58e
* dispnew.c (the_only_frame): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
960
diff
changeset
|
122 You're not/The only frame in town/... */ |
314 | 123 |
764 | 124 #ifndef MULTI_FRAME |
125 struct frame the_only_frame; | |
732 | 126 #endif |
314 | 127 |
128 /* This is a vector, made larger whenever it isn't large enough, | |
764 | 129 which is used inside `update_frame' to hold the old contents |
130 of the FRAME_PHYS_LINES of the frame being updated. */ | |
131 struct frame_glyphs **ophys_lines; | |
314 | 132 /* Length of vector currently allocated. */ |
133 int ophys_lines_length; | |
134 | |
135 FILE *termscript; /* Stdio stream being used for copy of all output. */ | |
136 | |
137 struct cm Wcm; /* Structure for info on cursor positioning */ | |
138 | |
139 extern short ospeed; /* Output speed (from sg_ospeed) */ | |
140 | |
141 int delayed_size_change; /* 1 means SIGWINCH happened when not safe. */ | |
142 | |
764 | 143 #ifdef MULTI_FRAME |
314 | 144 |
764 | 145 DEFUN ("redraw-frame", Fredraw_frame, Sredraw_frame, 1, 1, 0, |
146 "Clear frame FRAME and output again what is supposed to appear on it.") | |
147 (frame) | |
148 Lisp_Object frame; | |
314 | 149 { |
764 | 150 FRAME_PTR f; |
314 | 151 |
764 | 152 CHECK_LIVE_FRAME (frame, 0); |
153 f = XFRAME (frame); | |
154 update_begin (f); | |
314 | 155 /* set_terminal_modes (); */ |
764 | 156 clear_frame (); |
960
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
157 clear_frame_records (f); |
764 | 158 update_end (f); |
314 | 159 fflush (stdout); |
160 windows_or_buffers_changed++; | |
161 /* Mark all windows as INaccurate, | |
162 so that every window will have its redisplay done. */ | |
764 | 163 mark_window_display_accurate (FRAME_ROOT_WINDOW (f), 0); |
164 f->garbaged = 0; | |
314 | 165 return Qnil; |
166 } | |
167 | |
764 | 168 redraw_frame (f) |
169 FRAME_PTR f; | |
314 | 170 { |
764 | 171 Lisp_Object frame; |
172 XSET (frame, Lisp_Frame, f); | |
173 Fredraw_frame (frame); | |
314 | 174 } |
175 | |
2252
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2198
diff
changeset
|
176 #else |
314 | 177 |
2252
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2198
diff
changeset
|
178 DEFUN ("redraw-frame", Fredraw_frame, Sredraw_frame, 1, 1, "", |
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2198
diff
changeset
|
179 "Clear frame FRAME and output again what is supposed to appear on it.") |
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2198
diff
changeset
|
180 (frame) |
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2198
diff
changeset
|
181 Lisp_Object frame; |
314 | 182 { |
183 update_begin (0); | |
184 set_terminal_modes (); | |
764 | 185 clear_frame (); |
314 | 186 update_end (0); |
187 fflush (stdout); | |
764 | 188 clear_frame_records (0); |
314 | 189 windows_or_buffers_changed++; |
190 /* Mark all windows as INaccurate, | |
191 so that every window will have its redisplay done. */ | |
1588
732a88db381f
* dispnew.c [not MULTI_FRAME] (Fredraw_display): Pass the correct
Jim Blandy <jimb@redhat.com>
parents:
1495
diff
changeset
|
192 mark_window_display_accurate (FRAME_ROOT_WINDOW (0), 0); |
314 | 193 return Qnil; |
194 } | |
195 | |
2252
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2198
diff
changeset
|
196 #endif |
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2198
diff
changeset
|
197 |
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2198
diff
changeset
|
198 DEFUN ("redraw-display", Fredraw_display, Sredraw_display, 0, 0, "", |
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2198
diff
changeset
|
199 "Clear and redisplay all visible frames.") |
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2198
diff
changeset
|
200 () |
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2198
diff
changeset
|
201 { |
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2198
diff
changeset
|
202 Lisp_Object tail, frame; |
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2198
diff
changeset
|
203 |
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2198
diff
changeset
|
204 FOR_EACH_FRAME (tail, frame) |
3517
657a74662346
(Fredraw_display): Redraw all visible frames.
Richard M. Stallman <rms@gnu.org>
parents:
3449
diff
changeset
|
205 if (FRAME_VISIBLE_P (XFRAME (frame))) |
657a74662346
(Fredraw_display): Redraw all visible frames.
Richard M. Stallman <rms@gnu.org>
parents:
3449
diff
changeset
|
206 Fredraw_frame (frame); |
657a74662346
(Fredraw_display): Redraw all visible frames.
Richard M. Stallman <rms@gnu.org>
parents:
3449
diff
changeset
|
207 |
657a74662346
(Fredraw_display): Redraw all visible frames.
Richard M. Stallman <rms@gnu.org>
parents:
3449
diff
changeset
|
208 return Qnil; |
657a74662346
(Fredraw_display): Redraw all visible frames.
Richard M. Stallman <rms@gnu.org>
parents:
3449
diff
changeset
|
209 } |
657a74662346
(Fredraw_display): Redraw all visible frames.
Richard M. Stallman <rms@gnu.org>
parents:
3449
diff
changeset
|
210 |
657a74662346
(Fredraw_display): Redraw all visible frames.
Richard M. Stallman <rms@gnu.org>
parents:
3449
diff
changeset
|
211 /* This is used when frame_garbaged is set. |
657a74662346
(Fredraw_display): Redraw all visible frames.
Richard M. Stallman <rms@gnu.org>
parents:
3449
diff
changeset
|
212 Redraw the individual frames marked as garbaged. */ |
657a74662346
(Fredraw_display): Redraw all visible frames.
Richard M. Stallman <rms@gnu.org>
parents:
3449
diff
changeset
|
213 |
657a74662346
(Fredraw_display): Redraw all visible frames.
Richard M. Stallman <rms@gnu.org>
parents:
3449
diff
changeset
|
214 void |
657a74662346
(Fredraw_display): Redraw all visible frames.
Richard M. Stallman <rms@gnu.org>
parents:
3449
diff
changeset
|
215 redraw_garbaged_frames () |
657a74662346
(Fredraw_display): Redraw all visible frames.
Richard M. Stallman <rms@gnu.org>
parents:
3449
diff
changeset
|
216 { |
657a74662346
(Fredraw_display): Redraw all visible frames.
Richard M. Stallman <rms@gnu.org>
parents:
3449
diff
changeset
|
217 Lisp_Object tail, frame; |
657a74662346
(Fredraw_display): Redraw all visible frames.
Richard M. Stallman <rms@gnu.org>
parents:
3449
diff
changeset
|
218 |
657a74662346
(Fredraw_display): Redraw all visible frames.
Richard M. Stallman <rms@gnu.org>
parents:
3449
diff
changeset
|
219 FOR_EACH_FRAME (tail, frame) |
2252
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2198
diff
changeset
|
220 if (FRAME_VISIBLE_P (XFRAME (frame)) |
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2198
diff
changeset
|
221 && FRAME_GARBAGED_P (XFRAME (frame))) |
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2198
diff
changeset
|
222 Fredraw_frame (frame); |
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2198
diff
changeset
|
223 } |
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2198
diff
changeset
|
224 |
314 | 225 |
764 | 226 static struct frame_glyphs * |
227 make_frame_glyphs (frame, empty) | |
228 register FRAME_PTR frame; | |
314 | 229 int empty; |
230 { | |
231 register int i; | |
764 | 232 register width = FRAME_WIDTH (frame); |
233 register height = FRAME_HEIGHT (frame); | |
234 register struct frame_glyphs *new = | |
235 (struct frame_glyphs *) xmalloc (sizeof (struct frame_glyphs)); | |
314 | 236 |
764 | 237 SET_GLYPHS_FRAME (new, frame); |
314 | 238 new->height = height; |
239 new->width = width; | |
240 new->used = (int *) xmalloc (height * sizeof (int)); | |
241 new->glyphs = (GLYPH **) xmalloc (height * sizeof (GLYPH *)); | |
242 new->highlight = (char *) xmalloc (height * sizeof (char)); | |
243 new->enable = (char *) xmalloc (height * sizeof (char)); | |
244 bzero (new->enable, height * sizeof (char)); | |
245 new->bufp = (int *) xmalloc (height * sizeof (int)); | |
246 | |
247 #ifdef HAVE_X_WINDOWS | |
960
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
248 if (FRAME_X_P (frame)) |
314 | 249 { |
250 new->top_left_x = (short *) xmalloc (height * sizeof (short)); | |
251 new->top_left_y = (short *) xmalloc (height * sizeof (short)); | |
252 new->pix_width = (short *) xmalloc (height * sizeof (short)); | |
253 new->pix_height = (short *) xmalloc (height * sizeof (short)); | |
1407
0f214040f708
* dispnew.c (scroll_frame_lines): All references to frame elements
Joseph Arceneaux <jla@gnu.org>
parents:
1192
diff
changeset
|
254 new->max_ascent = (short *) xmalloc (height * sizeof (short)); |
314 | 255 } |
256 #endif | |
257 | |
258 if (empty) | |
259 { | |
260 /* Make the buffer used by decode_mode_spec. This buffer is also | |
764 | 261 used as temporary storage when updating the frame. See scroll.c. */ |
314 | 262 unsigned int total_glyphs = (width + 2) * sizeof (GLYPH); |
263 | |
264 new->total_contents = (GLYPH *) xmalloc (total_glyphs); | |
265 bzero (new->total_contents, total_glyphs); | |
266 } | |
267 else | |
268 { | |
269 unsigned int total_glyphs = height * (width + 2) * sizeof (GLYPH); | |
270 | |
271 new->total_contents = (GLYPH *) xmalloc (total_glyphs); | |
272 bzero (new->total_contents, total_glyphs); | |
273 for (i = 0; i < height; i++) | |
274 new->glyphs[i] = new->total_contents + i * (width + 2) + 1; | |
275 } | |
276 | |
277 return new; | |
278 } | |
279 | |
280 static void | |
764 | 281 free_frame_glyphs (frame, glyphs) |
282 FRAME_PTR frame; | |
283 struct frame_glyphs *glyphs; | |
314 | 284 { |
285 if (glyphs->total_contents) | |
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2365
diff
changeset
|
286 xfree (glyphs->total_contents); |
314 | 287 |
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2365
diff
changeset
|
288 xfree (glyphs->used); |
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2365
diff
changeset
|
289 xfree (glyphs->glyphs); |
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2365
diff
changeset
|
290 xfree (glyphs->highlight); |
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2365
diff
changeset
|
291 xfree (glyphs->enable); |
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2365
diff
changeset
|
292 xfree (glyphs->bufp); |
314 | 293 |
294 #ifdef HAVE_X_WINDOWS | |
960
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
295 if (FRAME_X_P (frame)) |
314 | 296 { |
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2365
diff
changeset
|
297 xfree (glyphs->top_left_x); |
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2365
diff
changeset
|
298 xfree (glyphs->top_left_y); |
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2365
diff
changeset
|
299 xfree (glyphs->pix_width); |
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2365
diff
changeset
|
300 xfree (glyphs->pix_height); |
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2365
diff
changeset
|
301 xfree (glyphs->max_ascent); |
314 | 302 } |
303 #endif | |
304 | |
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2365
diff
changeset
|
305 xfree (glyphs); |
314 | 306 } |
307 | |
308 static void | |
764 | 309 remake_frame_glyphs (frame) |
310 FRAME_PTR frame; | |
314 | 311 { |
764 | 312 if (FRAME_CURRENT_GLYPHS (frame)) |
313 free_frame_glyphs (frame, FRAME_CURRENT_GLYPHS (frame)); | |
314 if (FRAME_DESIRED_GLYPHS (frame)) | |
315 free_frame_glyphs (frame, FRAME_DESIRED_GLYPHS (frame)); | |
316 if (FRAME_TEMP_GLYPHS (frame)) | |
317 free_frame_glyphs (frame, FRAME_TEMP_GLYPHS (frame)); | |
314 | 318 |
764 | 319 if (FRAME_MESSAGE_BUF (frame)) |
1872
ad692b76edf4
* dispnew.c (remake_frame_glyphs): When re-allocating the frame's
Jim Blandy <jimb@redhat.com>
parents:
1849
diff
changeset
|
320 { |
ad692b76edf4
* dispnew.c (remake_frame_glyphs): When re-allocating the frame's
Jim Blandy <jimb@redhat.com>
parents:
1849
diff
changeset
|
321 /* Reallocate the frame's message buffer; remember that |
ad692b76edf4
* dispnew.c (remake_frame_glyphs): When re-allocating the frame's
Jim Blandy <jimb@redhat.com>
parents:
1849
diff
changeset
|
322 echo_area_glyphs may be pointing here. */ |
ad692b76edf4
* dispnew.c (remake_frame_glyphs): When re-allocating the frame's
Jim Blandy <jimb@redhat.com>
parents:
1849
diff
changeset
|
323 char *old_message_buf = FRAME_MESSAGE_BUF (frame); |
ad692b76edf4
* dispnew.c (remake_frame_glyphs): When re-allocating the frame's
Jim Blandy <jimb@redhat.com>
parents:
1849
diff
changeset
|
324 |
ad692b76edf4
* dispnew.c (remake_frame_glyphs): When re-allocating the frame's
Jim Blandy <jimb@redhat.com>
parents:
1849
diff
changeset
|
325 FRAME_MESSAGE_BUF (frame) |
ad692b76edf4
* dispnew.c (remake_frame_glyphs): When re-allocating the frame's
Jim Blandy <jimb@redhat.com>
parents:
1849
diff
changeset
|
326 = (char *) xrealloc (FRAME_MESSAGE_BUF (frame), |
ad692b76edf4
* dispnew.c (remake_frame_glyphs): When re-allocating the frame's
Jim Blandy <jimb@redhat.com>
parents:
1849
diff
changeset
|
327 FRAME_WIDTH (frame) + 1); |
ad692b76edf4
* dispnew.c (remake_frame_glyphs): When re-allocating the frame's
Jim Blandy <jimb@redhat.com>
parents:
1849
diff
changeset
|
328 |
ad692b76edf4
* dispnew.c (remake_frame_glyphs): When re-allocating the frame's
Jim Blandy <jimb@redhat.com>
parents:
1849
diff
changeset
|
329 if (echo_area_glyphs == old_message_buf) |
ad692b76edf4
* dispnew.c (remake_frame_glyphs): When re-allocating the frame's
Jim Blandy <jimb@redhat.com>
parents:
1849
diff
changeset
|
330 echo_area_glyphs = FRAME_MESSAGE_BUF (frame); |
ad692b76edf4
* dispnew.c (remake_frame_glyphs): When re-allocating the frame's
Jim Blandy <jimb@redhat.com>
parents:
1849
diff
changeset
|
331 if (previous_echo_glyphs == old_message_buf) |
ad692b76edf4
* dispnew.c (remake_frame_glyphs): When re-allocating the frame's
Jim Blandy <jimb@redhat.com>
parents:
1849
diff
changeset
|
332 previous_echo_glyphs = FRAME_MESSAGE_BUF (frame); |
ad692b76edf4
* dispnew.c (remake_frame_glyphs): When re-allocating the frame's
Jim Blandy <jimb@redhat.com>
parents:
1849
diff
changeset
|
333 } |
314 | 334 else |
764 | 335 FRAME_MESSAGE_BUF (frame) |
336 = (char *) xmalloc (FRAME_WIDTH (frame) + 1); | |
314 | 337 |
764 | 338 FRAME_CURRENT_GLYPHS (frame) = make_frame_glyphs (frame, 0); |
339 FRAME_DESIRED_GLYPHS (frame) = make_frame_glyphs (frame, 0); | |
340 FRAME_TEMP_GLYPHS (frame) = make_frame_glyphs (frame, 1); | |
341 SET_FRAME_GARBAGED (frame); | |
314 | 342 } |
343 | |
764 | 344 /* Return the hash code of contents of line VPOS in frame-matrix M. */ |
314 | 345 |
346 static int | |
347 line_hash_code (m, vpos) | |
764 | 348 register struct frame_glyphs *m; |
314 | 349 int vpos; |
350 { | |
351 register GLYPH *body, *end; | |
352 register int h = 0; | |
353 | |
354 if (!m->enable[vpos]) | |
355 return 0; | |
356 | |
1495
f17665e7347e
(count_blanks): Leave argument r constant, and increment p.
Richard M. Stallman <rms@gnu.org>
parents:
1407
diff
changeset
|
357 /* Give all highlighted lines the same hash code |
314 | 358 so as to encourage scrolling to leave them in place. */ |
359 if (m->highlight[vpos]) | |
360 return -1; | |
361 | |
362 body = m->glyphs[vpos]; | |
363 | |
364 if (must_write_spaces) | |
365 while (1) | |
366 { | |
367 GLYPH g = *body++; | |
368 | |
369 if (g == 0) | |
370 break; | |
371 h = (((h << 4) + (h >> 24)) & 0x0fffffff) + g - SPACEGLYPH; | |
372 } | |
373 else | |
374 while (1) | |
375 { | |
376 GLYPH g = *body++; | |
377 | |
378 if (g == 0) | |
379 break; | |
380 h = (((h << 4) + (h >> 24)) & 0x0fffffff) + g; | |
381 } | |
382 | |
383 if (h) | |
384 return h; | |
385 return 1; | |
386 } | |
387 | |
388 /* Return number of characters in line in M at vpos VPOS, | |
389 except don't count leading and trailing spaces | |
390 unless the terminal requires those to be explicitly output. */ | |
391 | |
392 static unsigned int | |
393 line_draw_cost (m, vpos) | |
764 | 394 struct frame_glyphs *m; |
314 | 395 int vpos; |
396 { | |
397 register GLYPH *beg = m->glyphs[vpos]; | |
398 register GLYPH *end = m->glyphs[vpos] + m->used[vpos]; | |
399 register int i; | |
400 register int tlen = GLYPH_TABLE_LENGTH; | |
401 register Lisp_Object *tbase = GLYPH_TABLE_BASE; | |
402 | |
403 /* Ignore trailing and leading spaces if we can. */ | |
404 if (!must_write_spaces) | |
405 { | |
406 while ((end != beg) && (*end == SPACEGLYPH)) | |
407 --end; | |
408 if (end == beg) | |
409 return (0); /* All blank line. */ | |
410 | |
411 while (*beg == SPACEGLYPH) | |
412 ++beg; | |
413 } | |
414 | |
415 /* If we don't have a glyph-table, each glyph is one character, | |
416 so return the number of glyphs. */ | |
417 if (tbase == 0) | |
418 return end - beg; | |
419 | |
420 /* Otherwise, scan the glyphs and accumulate their total size in I. */ | |
421 i = 0; | |
422 while ((beg <= end) && *beg) | |
423 { | |
424 register GLYPH g = *beg++; | |
425 | |
426 if (GLYPH_SIMPLE_P (tbase, tlen, g)) | |
427 i += 1; | |
428 else | |
429 i += GLYPH_LENGTH (tbase, g); | |
430 } | |
431 return i; | |
432 } | |
433 | |
434 /* The functions on this page are the interface from xdisp.c to redisplay. | |
435 | |
436 The only other interface into redisplay is through setting | |
764 | 437 FRAME_CURSOR_X (frame) and FRAME_CURSOR_Y (frame) |
438 and SET_FRAME_GARBAGED (frame). */ | |
314 | 439 |
440 /* cancel_line eliminates any request to display a line at position `vpos' */ | |
441 | |
764 | 442 cancel_line (vpos, frame) |
314 | 443 int vpos; |
764 | 444 register FRAME_PTR frame; |
314 | 445 { |
764 | 446 FRAME_DESIRED_GLYPHS (frame)->enable[vpos] = 0; |
314 | 447 } |
448 | |
764 | 449 clear_frame_records (frame) |
450 register FRAME_PTR frame; | |
314 | 451 { |
764 | 452 bzero (FRAME_CURRENT_GLYPHS (frame)->enable, FRAME_HEIGHT (frame)); |
314 | 453 } |
454 | |
455 /* Prepare to display on line VPOS starting at HPOS within it. */ | |
456 | |
457 void | |
764 | 458 get_display_line (frame, vpos, hpos) |
459 register FRAME_PTR frame; | |
314 | 460 int vpos; |
461 register int hpos; | |
462 { | |
764 | 463 register struct frame_glyphs *glyphs; |
464 register struct frame_glyphs *desired_glyphs = FRAME_DESIRED_GLYPHS (frame); | |
314 | 465 register GLYPH *p; |
466 | |
1192
5c380ec3cfc6
* dispnew.c (get_display_line): Don't abort if the frame is
Jim Blandy <jimb@redhat.com>
parents:
1042
diff
changeset
|
467 if (vpos < 0) |
314 | 468 abort (); |
469 | |
470 if ((desired_glyphs->enable[vpos]) && desired_glyphs->used[vpos] > hpos) | |
471 abort (); | |
472 | |
473 if (! desired_glyphs->enable[vpos]) | |
474 { | |
475 desired_glyphs->used[vpos] = 0; | |
476 desired_glyphs->highlight[vpos] = 0; | |
477 desired_glyphs->enable[vpos] = 1; | |
478 } | |
479 | |
480 if (hpos > desired_glyphs->used[vpos]) | |
481 { | |
482 GLYPH *g = desired_glyphs->glyphs[vpos] + desired_glyphs->used[vpos]; | |
483 GLYPH *end = desired_glyphs->glyphs[vpos] + hpos; | |
484 | |
485 desired_glyphs->used[vpos] = hpos; | |
486 while (g != end) | |
487 *g++ = SPACEGLYPH; | |
488 } | |
489 } | |
490 | |
491 /* Like bcopy except never gets confused by overlap. */ | |
492 | |
493 void | |
494 safe_bcopy (from, to, size) | |
495 char *from, *to; | |
496 int size; | |
497 { | |
1588
732a88db381f
* dispnew.c [not MULTI_FRAME] (Fredraw_display): Pass the correct
Jim Blandy <jimb@redhat.com>
parents:
1495
diff
changeset
|
498 if (size <= 0 || from == to) |
314 | 499 return; |
500 | |
1588
732a88db381f
* dispnew.c [not MULTI_FRAME] (Fredraw_display): Pass the correct
Jim Blandy <jimb@redhat.com>
parents:
1495
diff
changeset
|
501 /* If the source and destination don't overlap, then bcopy can |
732a88db381f
* dispnew.c [not MULTI_FRAME] (Fredraw_display): Pass the correct
Jim Blandy <jimb@redhat.com>
parents:
1495
diff
changeset
|
502 handle it. If they do overlap, but the destination is lower in |
732a88db381f
* dispnew.c [not MULTI_FRAME] (Fredraw_display): Pass the correct
Jim Blandy <jimb@redhat.com>
parents:
1495
diff
changeset
|
503 memory than the source, we'll assume bcopy can handle that. */ |
732a88db381f
* dispnew.c [not MULTI_FRAME] (Fredraw_display): Pass the correct
Jim Blandy <jimb@redhat.com>
parents:
1495
diff
changeset
|
504 if (to < from || from + size <= to) |
732a88db381f
* dispnew.c [not MULTI_FRAME] (Fredraw_display): Pass the correct
Jim Blandy <jimb@redhat.com>
parents:
1495
diff
changeset
|
505 bcopy (from, to, size); |
732a88db381f
* dispnew.c [not MULTI_FRAME] (Fredraw_display): Pass the correct
Jim Blandy <jimb@redhat.com>
parents:
1495
diff
changeset
|
506 |
732a88db381f
* dispnew.c [not MULTI_FRAME] (Fredraw_display): Pass the correct
Jim Blandy <jimb@redhat.com>
parents:
1495
diff
changeset
|
507 /* Otherwise, we'll copy from the end. */ |
732a88db381f
* dispnew.c [not MULTI_FRAME] (Fredraw_display): Pass the correct
Jim Blandy <jimb@redhat.com>
parents:
1495
diff
changeset
|
508 else |
314 | 509 { |
1588
732a88db381f
* dispnew.c [not MULTI_FRAME] (Fredraw_display): Pass the correct
Jim Blandy <jimb@redhat.com>
parents:
1495
diff
changeset
|
510 register char *endf = from + size; |
732a88db381f
* dispnew.c [not MULTI_FRAME] (Fredraw_display): Pass the correct
Jim Blandy <jimb@redhat.com>
parents:
1495
diff
changeset
|
511 register char *endt = to + size; |
314 | 512 |
513 /* If TO - FROM is large, then we should break the copy into | |
514 nonoverlapping chunks of TO - FROM bytes each. However, if | |
515 TO - FROM is small, then the bcopy function call overhead | |
516 makes this not worth it. The crossover point could be about | |
1588
732a88db381f
* dispnew.c [not MULTI_FRAME] (Fredraw_display): Pass the correct
Jim Blandy <jimb@redhat.com>
parents:
1495
diff
changeset
|
517 anywhere. Since I don't think the obvious copy loop is too |
732a88db381f
* dispnew.c [not MULTI_FRAME] (Fredraw_display): Pass the correct
Jim Blandy <jimb@redhat.com>
parents:
1495
diff
changeset
|
518 bad, I'm trying to err in its favor. */ |
314 | 519 if (to - from < 64) |
520 { | |
521 do | |
522 *--endt = *--endf; | |
523 while (endf != from); | |
524 } | |
525 else | |
526 { | |
1588
732a88db381f
* dispnew.c [not MULTI_FRAME] (Fredraw_display): Pass the correct
Jim Blandy <jimb@redhat.com>
parents:
1495
diff
changeset
|
527 for (;;) |
314 | 528 { |
529 endt -= (to - from); | |
530 endf -= (to - from); | |
531 | |
1588
732a88db381f
* dispnew.c [not MULTI_FRAME] (Fredraw_display): Pass the correct
Jim Blandy <jimb@redhat.com>
parents:
1495
diff
changeset
|
532 if (endt < to) |
732a88db381f
* dispnew.c [not MULTI_FRAME] (Fredraw_display): Pass the correct
Jim Blandy <jimb@redhat.com>
parents:
1495
diff
changeset
|
533 break; |
732a88db381f
* dispnew.c [not MULTI_FRAME] (Fredraw_display): Pass the correct
Jim Blandy <jimb@redhat.com>
parents:
1495
diff
changeset
|
534 |
314 | 535 bcopy (endf, endt, to - from); |
536 } | |
1588
732a88db381f
* dispnew.c [not MULTI_FRAME] (Fredraw_display): Pass the correct
Jim Blandy <jimb@redhat.com>
parents:
1495
diff
changeset
|
537 |
732a88db381f
* dispnew.c [not MULTI_FRAME] (Fredraw_display): Pass the correct
Jim Blandy <jimb@redhat.com>
parents:
1495
diff
changeset
|
538 /* If SIZE wasn't a multiple of TO - FROM, there will be a |
314 | 539 little left over. The amount left over is |
540 (endt + (to - from)) - to, which is endt - from. */ | |
541 bcopy (from, to, endt - from); | |
542 } | |
543 } | |
544 } | |
545 | |
352 | 546 /* Rotate a vector of SIZE bytes right, by DISTANCE bytes. |
314 | 547 DISTANCE may be negative. */ |
548 | |
549 static void | |
550 rotate_vector (vector, size, distance) | |
551 char *vector; | |
552 int size; | |
553 int distance; | |
554 { | |
555 char *temp = (char *) alloca (size); | |
556 | |
557 if (distance < 0) | |
558 distance += size; | |
559 | |
560 bcopy (vector, temp + distance, size - distance); | |
561 bcopy (vector + size - distance, temp, distance); | |
562 bcopy (temp, vector, size); | |
563 } | |
564 | |
565 /* Scroll lines from vpos FROM up to but not including vpos END | |
566 down by AMOUNT lines (AMOUNT may be negative). | |
567 Returns nonzero if done, zero if terminal cannot scroll them. */ | |
568 | |
569 int | |
764 | 570 scroll_frame_lines (frame, from, end, amount) |
571 register FRAME_PTR frame; | |
314 | 572 int from, end, amount; |
573 { | |
574 register int i; | |
764 | 575 register struct frame_glyphs *current_frame |
576 = FRAME_CURRENT_GLYPHS (frame); | |
314 | 577 |
578 if (!line_ins_del_ok) | |
579 return 0; | |
580 | |
581 if (amount == 0) | |
582 return 1; | |
583 | |
584 if (amount > 0) | |
585 { | |
764 | 586 update_begin (frame); |
314 | 587 set_terminal_window (end + amount); |
588 if (!scroll_region_ok) | |
589 ins_del_lines (end, -amount); | |
590 ins_del_lines (from, amount); | |
591 set_terminal_window (0); | |
592 | |
764 | 593 rotate_vector (current_frame->glyphs + from, |
314 | 594 sizeof (GLYPH *) * (end + amount - from), |
595 amount * sizeof (GLYPH *)); | |
596 | |
764 | 597 safe_bcopy (current_frame->used + from, |
598 current_frame->used + from + amount, | |
599 (end - from) * sizeof current_frame->used[0]); | |
314 | 600 |
764 | 601 safe_bcopy (current_frame->highlight + from, |
602 current_frame->highlight + from + amount, | |
603 (end - from) * sizeof current_frame->highlight[0]); | |
314 | 604 |
764 | 605 safe_bcopy (current_frame->enable + from, |
606 current_frame->enable + from + amount, | |
607 (end - from) * sizeof current_frame->enable[0]); | |
314 | 608 |
609 /* Mark the lines made empty by scrolling as enabled, empty and | |
610 normal video. */ | |
764 | 611 bzero (current_frame->used + from, |
612 amount * sizeof current_frame->used[0]); | |
613 bzero (current_frame->highlight + from, | |
614 amount * sizeof current_frame->highlight[0]); | |
314 | 615 for (i = from; i < from + amount; i++) |
616 { | |
764 | 617 current_frame->glyphs[i][0] = '\0'; |
618 current_frame->enable[i] = 1; | |
314 | 619 } |
620 | |
764 | 621 safe_bcopy (current_frame->bufp + from, |
622 current_frame->bufp + from + amount, | |
623 (end - from) * sizeof current_frame->bufp[0]); | |
314 | 624 |
625 #ifdef HAVE_X_WINDOWS | |
960
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
626 if (FRAME_X_P (frame)) |
314 | 627 { |
764 | 628 safe_bcopy (current_frame->top_left_x + from, |
629 current_frame->top_left_x + from + amount, | |
630 (end - from) * sizeof current_frame->top_left_x[0]); | |
314 | 631 |
764 | 632 safe_bcopy (current_frame->top_left_y + from, |
633 current_frame->top_left_y + from + amount, | |
634 (end - from) * sizeof current_frame->top_left_y[0]); | |
314 | 635 |
764 | 636 safe_bcopy (current_frame->pix_width + from, |
637 current_frame->pix_width + from + amount, | |
638 (end - from) * sizeof current_frame->pix_width[0]); | |
314 | 639 |
764 | 640 safe_bcopy (current_frame->pix_height + from, |
641 current_frame->pix_height + from + amount, | |
642 (end - from) * sizeof current_frame->pix_height[0]); | |
1407
0f214040f708
* dispnew.c (scroll_frame_lines): All references to frame elements
Joseph Arceneaux <jla@gnu.org>
parents:
1192
diff
changeset
|
643 |
0f214040f708
* dispnew.c (scroll_frame_lines): All references to frame elements
Joseph Arceneaux <jla@gnu.org>
parents:
1192
diff
changeset
|
644 safe_bcopy (current_frame->max_ascent + from, |
0f214040f708
* dispnew.c (scroll_frame_lines): All references to frame elements
Joseph Arceneaux <jla@gnu.org>
parents:
1192
diff
changeset
|
645 current_frame->max_ascent + from + amount, |
0f214040f708
* dispnew.c (scroll_frame_lines): All references to frame elements
Joseph Arceneaux <jla@gnu.org>
parents:
1192
diff
changeset
|
646 (end - from) * sizeof current_frame->max_ascent[0]); |
314 | 647 } |
648 #endif /* HAVE_X_WINDOWS */ | |
649 | |
764 | 650 update_end (frame); |
314 | 651 } |
652 if (amount < 0) | |
653 { | |
764 | 654 update_begin (frame); |
314 | 655 set_terminal_window (end); |
656 ins_del_lines (from + amount, amount); | |
657 if (!scroll_region_ok) | |
658 ins_del_lines (end + amount, -amount); | |
659 set_terminal_window (0); | |
660 | |
764 | 661 rotate_vector (current_frame->glyphs + from + amount, |
314 | 662 sizeof (GLYPH *) * (end - from - amount), |
663 amount * sizeof (GLYPH *)); | |
664 | |
764 | 665 safe_bcopy (current_frame->used + from, |
666 current_frame->used + from + amount, | |
667 (end - from) * sizeof current_frame->used[0]); | |
314 | 668 |
764 | 669 safe_bcopy (current_frame->highlight + from, |
670 current_frame->highlight + from + amount, | |
671 (end - from) * sizeof current_frame->highlight[0]); | |
314 | 672 |
764 | 673 safe_bcopy (current_frame->enable + from, |
674 current_frame->enable + from + amount, | |
675 (end - from) * sizeof current_frame->enable[0]); | |
314 | 676 |
677 /* Mark the lines made empty by scrolling as enabled, empty and | |
678 normal video. */ | |
764 | 679 bzero (current_frame->used + end + amount, |
680 - amount * sizeof current_frame->used[0]); | |
681 bzero (current_frame->highlight + end + amount, | |
682 - amount * sizeof current_frame->highlight[0]); | |
314 | 683 for (i = end + amount; i < end; i++) |
684 { | |
764 | 685 current_frame->glyphs[i][0] = '\0'; |
686 current_frame->enable[i] = 1; | |
314 | 687 } |
688 | |
764 | 689 safe_bcopy (current_frame->bufp + from, |
690 current_frame->bufp + from + amount, | |
691 (end - from) * sizeof current_frame->bufp[0]); | |
314 | 692 |
693 #ifdef HAVE_X_WINDOWS | |
960
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
694 if (FRAME_X_P (frame)) |
314 | 695 { |
764 | 696 safe_bcopy (current_frame->top_left_x + from, |
697 current_frame->top_left_x + from + amount, | |
698 (end - from) * sizeof current_frame->top_left_x[0]); | |
314 | 699 |
764 | 700 safe_bcopy (current_frame->top_left_y + from, |
701 current_frame->top_left_y + from + amount, | |
702 (end - from) * sizeof current_frame->top_left_y[0]); | |
314 | 703 |
764 | 704 safe_bcopy (current_frame->pix_width + from, |
705 current_frame->pix_width + from + amount, | |
706 (end - from) * sizeof current_frame->pix_width[0]); | |
314 | 707 |
764 | 708 safe_bcopy (current_frame->pix_height + from, |
709 current_frame->pix_height + from + amount, | |
710 (end - from) * sizeof current_frame->pix_height[0]); | |
1407
0f214040f708
* dispnew.c (scroll_frame_lines): All references to frame elements
Joseph Arceneaux <jla@gnu.org>
parents:
1192
diff
changeset
|
711 |
0f214040f708
* dispnew.c (scroll_frame_lines): All references to frame elements
Joseph Arceneaux <jla@gnu.org>
parents:
1192
diff
changeset
|
712 safe_bcopy (current_frame->max_ascent + from, |
0f214040f708
* dispnew.c (scroll_frame_lines): All references to frame elements
Joseph Arceneaux <jla@gnu.org>
parents:
1192
diff
changeset
|
713 current_frame->max_ascent + from + amount, |
0f214040f708
* dispnew.c (scroll_frame_lines): All references to frame elements
Joseph Arceneaux <jla@gnu.org>
parents:
1192
diff
changeset
|
714 (end - from) * sizeof current_frame->max_ascent[0]); |
314 | 715 } |
716 #endif /* HAVE_X_WINDOWS */ | |
717 | |
764 | 718 update_end (frame); |
314 | 719 } |
720 return 1; | |
721 } | |
722 | |
764 | 723 /* After updating a window W that isn't the full frame wide, |
314 | 724 copy all the columns that W does not occupy |
764 | 725 into the FRAME_DESIRED_GLYPHS (frame) from the FRAME_PHYS_GLYPHS (frame) |
726 so that update_frame will not change those columns. */ | |
314 | 727 |
728 preserve_other_columns (w) | |
729 struct window *w; | |
730 { | |
731 register int vpos; | |
764 | 732 register struct frame_glyphs *current_frame, *desired_frame; |
733 register FRAME_PTR frame = XFRAME (w->frame); | |
314 | 734 int start = XFASTINT (w->left); |
735 int end = XFASTINT (w->left) + XFASTINT (w->width); | |
736 int bot = XFASTINT (w->top) + XFASTINT (w->height); | |
737 | |
764 | 738 current_frame = FRAME_CURRENT_GLYPHS (frame); |
739 desired_frame = FRAME_DESIRED_GLYPHS (frame); | |
314 | 740 |
741 for (vpos = XFASTINT (w->top); vpos < bot; vpos++) | |
742 { | |
764 | 743 if (current_frame->enable[vpos] && desired_frame->enable[vpos]) |
314 | 744 { |
745 if (start > 0) | |
746 { | |
747 int len; | |
748 | |
764 | 749 bcopy (current_frame->glyphs[vpos], |
2930
839f3d132ee0
* dispnew.c (preserve_other_columns): Remember to multiply the
Jim Blandy <jimb@redhat.com>
parents:
2794
diff
changeset
|
750 desired_frame->glyphs[vpos], |
839f3d132ee0
* dispnew.c (preserve_other_columns): Remember to multiply the
Jim Blandy <jimb@redhat.com>
parents:
2794
diff
changeset
|
751 start * sizeof (current_frame->glyphs[vpos])); |
764 | 752 len = min (start, current_frame->used[vpos]); |
753 if (desired_frame->used[vpos] < len) | |
754 desired_frame->used[vpos] = len; | |
314 | 755 } |
764 | 756 if (current_frame->used[vpos] > end |
757 && desired_frame->used[vpos] < current_frame->used[vpos]) | |
314 | 758 { |
764 | 759 while (desired_frame->used[vpos] < end) |
760 desired_frame->glyphs[vpos][desired_frame->used[vpos]++] | |
314 | 761 = SPACEGLYPH; |
764 | 762 bcopy (current_frame->glyphs[vpos] + end, |
763 desired_frame->glyphs[vpos] + end, | |
2930
839f3d132ee0
* dispnew.c (preserve_other_columns): Remember to multiply the
Jim Blandy <jimb@redhat.com>
parents:
2794
diff
changeset
|
764 ((current_frame->used[vpos] - end) |
839f3d132ee0
* dispnew.c (preserve_other_columns): Remember to multiply the
Jim Blandy <jimb@redhat.com>
parents:
2794
diff
changeset
|
765 * sizeof (current_frame->glyphs[vpos]))); |
764 | 766 desired_frame->used[vpos] = current_frame->used[vpos]; |
314 | 767 } |
768 } | |
769 } | |
770 } | |
771 | |
772 #if 0 | |
773 | |
764 | 774 /* If window w does not need to be updated and isn't the full frame wide, |
314 | 775 copy all the columns that w does occupy |
764 | 776 into the FRAME_DESIRED_LINES (frame) from the FRAME_PHYS_LINES (frame) |
777 so that update_frame will not change those columns. | |
314 | 778 |
779 Have not been able to figure out how to use this correctly. */ | |
780 | |
781 preserve_my_columns (w) | |
782 struct window *w; | |
783 { | |
784 register int vpos, fin; | |
764 | 785 register struct frame_glyphs *l1, *l2; |
786 register FRAME_PTR frame = XFRAME (w->frame); | |
314 | 787 int start = XFASTINT (w->left); |
788 int end = XFASTINT (w->left) + XFASTINT (w->width); | |
789 int bot = XFASTINT (w->top) + XFASTINT (w->height); | |
790 | |
791 for (vpos = XFASTINT (w->top); vpos < bot; vpos++) | |
792 { | |
764 | 793 if ((l1 = FRAME_DESIRED_GLYPHS (frame)->glyphs[vpos + 1]) |
794 && (l2 = FRAME_PHYS_GLYPHS (frame)->glyphs[vpos + 1])) | |
314 | 795 { |
796 if (l2->length > start && l1->length < l2->length) | |
797 { | |
798 fin = l2->length; | |
799 if (fin > end) fin = end; | |
800 while (l1->length < start) | |
801 l1->body[l1->length++] = ' '; | |
802 bcopy (l2->body + start, l1->body + start, fin - start); | |
803 l1->length = fin; | |
804 } | |
805 } | |
806 } | |
807 } | |
808 | |
809 #endif | |
810 | |
811 /* On discovering that the redisplay for a window was no good, | |
812 cancel the columns of that window, so that when the window is | |
813 displayed over again get_display_line will not complain. */ | |
814 | |
815 cancel_my_columns (w) | |
816 struct window *w; | |
817 { | |
818 register int vpos; | |
764 | 819 register struct frame_glyphs *desired_glyphs = |
820 FRAME_DESIRED_GLYPHS (XFRAME (w->frame)); | |
314 | 821 register int start = XFASTINT (w->left); |
822 register int bot = XFASTINT (w->top) + XFASTINT (w->height); | |
823 | |
824 for (vpos = XFASTINT (w->top); vpos < bot; vpos++) | |
825 if (desired_glyphs->enable[vpos] | |
826 && desired_glyphs->used[vpos] >= start) | |
827 desired_glyphs->used[vpos] = start; | |
828 } | |
829 | |
764 | 830 /* These functions try to perform directly and immediately on the frame |
314 | 831 the necessary output for one change in the buffer. |
832 They may return 0 meaning nothing was done if anything is difficult, | |
833 or 1 meaning the output was performed properly. | |
764 | 834 They assume that the frame was up to date before the buffer |
1495
f17665e7347e
(count_blanks): Leave argument r constant, and increment p.
Richard M. Stallman <rms@gnu.org>
parents:
1407
diff
changeset
|
835 change being displayed. They make various other assumptions too; |
314 | 836 see command_loop_1 where these are called. */ |
837 | |
838 int | |
839 direct_output_for_insert (g) | |
840 int g; | |
841 { | |
764 | 842 register FRAME_PTR frame = selected_frame; |
843 register struct frame_glyphs *current_frame | |
844 = FRAME_CURRENT_GLYPHS (frame); | |
314 | 845 |
846 #ifndef COMPILER_REGISTER_BUG | |
847 register | |
848 #endif /* COMPILER_REGISTER_BUG */ | |
849 struct window *w = XWINDOW (selected_window); | |
850 #ifndef COMPILER_REGISTER_BUG | |
851 register | |
852 #endif /* COMPILER_REGISTER_BUG */ | |
764 | 853 int hpos = FRAME_CURSOR_X (frame); |
314 | 854 #ifndef COMPILER_REGISTER_BUG |
855 register | |
856 #endif /* COMPILER_REGISTER_BUG */ | |
764 | 857 int vpos = FRAME_CURSOR_Y (frame); |
314 | 858 |
1777
4edfaa19c7a7
* window.c (window_internal_width): New function.
Jim Blandy <jimb@redhat.com>
parents:
1766
diff
changeset
|
859 /* Give up if about to continue line. */ |
4edfaa19c7a7
* window.c (window_internal_width): New function.
Jim Blandy <jimb@redhat.com>
parents:
1766
diff
changeset
|
860 if (hpos >= XFASTINT (w->left) + window_internal_width (w) - 1 |
4edfaa19c7a7
* window.c (window_internal_width): New function.
Jim Blandy <jimb@redhat.com>
parents:
1766
diff
changeset
|
861 |
314 | 862 /* Avoid losing if cursor is in invisible text off left margin */ |
863 || (XINT (w->hscroll) && hpos == XFASTINT (w->left)) | |
864 | |
865 /* Give up if cursor outside window (in minibuf, probably) */ | |
1042
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
866 || cursor_in_echo_area |
764 | 867 || FRAME_CURSOR_Y (frame) < XFASTINT (w->top) |
868 || FRAME_CURSOR_Y (frame) >= XFASTINT (w->top) + XFASTINT (w->height) | |
314 | 869 |
764 | 870 /* Give up if cursor not really at FRAME_CURSOR_X, FRAME_CURSOR_Y */ |
314 | 871 || !display_completed |
872 | |
873 /* Give up if buffer appears in two places. */ | |
874 || buffer_shared > 1 | |
875 | |
4384
98605d0ea3cf
(direct_output_for_insert): Fail if character
Richard M. Stallman <rms@gnu.org>
parents:
4290
diff
changeset
|
876 #ifdef USE_TEXT_PROPERTIES |
98605d0ea3cf
(direct_output_for_insert): Fail if character
Richard M. Stallman <rms@gnu.org>
parents:
4290
diff
changeset
|
877 /* Intervals have already been adjusted, point is after the |
98605d0ea3cf
(direct_output_for_insert): Fail if character
Richard M. Stallman <rms@gnu.org>
parents:
4290
diff
changeset
|
878 character that was just inserted. */ |
98605d0ea3cf
(direct_output_for_insert): Fail if character
Richard M. Stallman <rms@gnu.org>
parents:
4290
diff
changeset
|
879 /* Give up if character has is invisible. */ |
98605d0ea3cf
(direct_output_for_insert): Fail if character
Richard M. Stallman <rms@gnu.org>
parents:
4290
diff
changeset
|
880 /* Give up if character has a face property. |
98605d0ea3cf
(direct_output_for_insert): Fail if character
Richard M. Stallman <rms@gnu.org>
parents:
4290
diff
changeset
|
881 At the moment we only lose at end of line or end of buffer |
98605d0ea3cf
(direct_output_for_insert): Fail if character
Richard M. Stallman <rms@gnu.org>
parents:
4290
diff
changeset
|
882 and only with faces that have some background */ |
98605d0ea3cf
(direct_output_for_insert): Fail if character
Richard M. Stallman <rms@gnu.org>
parents:
4290
diff
changeset
|
883 /* Instead of wasting time, give up if character has any text properties */ |
98605d0ea3cf
(direct_output_for_insert): Fail if character
Richard M. Stallman <rms@gnu.org>
parents:
4290
diff
changeset
|
884 || ! NILP (Ftext_properties_at (XFASTINT (point - 1), Qnil)) |
98605d0ea3cf
(direct_output_for_insert): Fail if character
Richard M. Stallman <rms@gnu.org>
parents:
4290
diff
changeset
|
885 #endif |
98605d0ea3cf
(direct_output_for_insert): Fail if character
Richard M. Stallman <rms@gnu.org>
parents:
4290
diff
changeset
|
886 |
314 | 887 /* Give up if w is minibuffer and a message is being displayed there */ |
888 || (MINI_WINDOW_P (w) && echo_area_glyphs)) | |
889 return 0; | |
890 | |
2778
071fa2f469d7
* dispnew.c (direct_output_for_insert): Compute the face of the
Jim Blandy <jimb@redhat.com>
parents:
2648
diff
changeset
|
891 { |
071fa2f469d7
* dispnew.c (direct_output_for_insert): Compute the face of the
Jim Blandy <jimb@redhat.com>
parents:
2648
diff
changeset
|
892 #ifdef HAVE_X_WINDOWS |
071fa2f469d7
* dispnew.c (direct_output_for_insert): Compute the face of the
Jim Blandy <jimb@redhat.com>
parents:
2648
diff
changeset
|
893 int dummy; |
4134
6bd55acfe9b5
* dispnew.c (direct_output_for_insert): By the time this function
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
894 int face = compute_char_face (frame, w, point - 1, -1, -1, &dummy); |
2778
071fa2f469d7
* dispnew.c (direct_output_for_insert): Compute the face of the
Jim Blandy <jimb@redhat.com>
parents:
2648
diff
changeset
|
895 #else |
071fa2f469d7
* dispnew.c (direct_output_for_insert): Compute the face of the
Jim Blandy <jimb@redhat.com>
parents:
2648
diff
changeset
|
896 int face = 0; |
071fa2f469d7
* dispnew.c (direct_output_for_insert): Compute the face of the
Jim Blandy <jimb@redhat.com>
parents:
2648
diff
changeset
|
897 #endif |
071fa2f469d7
* dispnew.c (direct_output_for_insert): Compute the face of the
Jim Blandy <jimb@redhat.com>
parents:
2648
diff
changeset
|
898 |
071fa2f469d7
* dispnew.c (direct_output_for_insert): Compute the face of the
Jim Blandy <jimb@redhat.com>
parents:
2648
diff
changeset
|
899 current_frame->glyphs[vpos][hpos] = MAKE_GLYPH (g, face); |
071fa2f469d7
* dispnew.c (direct_output_for_insert): Compute the face of the
Jim Blandy <jimb@redhat.com>
parents:
2648
diff
changeset
|
900 } |
314 | 901 unchanged_modified = MODIFF; |
902 beg_unchanged = GPT - BEG; | |
903 XFASTINT (w->last_point) = point; | |
904 XFASTINT (w->last_point_x) = hpos; | |
905 XFASTINT (w->last_modified) = MODIFF; | |
906 | |
907 reassert_line_highlight (0, vpos); | |
764 | 908 write_glyphs (¤t_frame->glyphs[vpos][hpos], 1); |
314 | 909 fflush (stdout); |
764 | 910 ++FRAME_CURSOR_X (frame); |
911 if (hpos == current_frame->used[vpos]) | |
314 | 912 { |
764 | 913 current_frame->used[vpos] = hpos + 1; |
914 current_frame->glyphs[vpos][hpos + 1] = 0; | |
314 | 915 } |
916 | |
917 return 1; | |
918 } | |
919 | |
920 int | |
921 direct_output_forward_char (n) | |
922 int n; | |
923 { | |
764 | 924 register FRAME_PTR frame = selected_frame; |
314 | 925 register struct window *w = XWINDOW (selected_window); |
4384
98605d0ea3cf
(direct_output_for_insert): Fail if character
Richard M. Stallman <rms@gnu.org>
parents:
4290
diff
changeset
|
926 int position; |
98605d0ea3cf
(direct_output_for_insert): Fail if character
Richard M. Stallman <rms@gnu.org>
parents:
4290
diff
changeset
|
927 |
543 | 928 /* Avoid losing if cursor is in invisible text off left margin |
929 or about to go off either side of window. */ | |
764 | 930 if ((FRAME_CURSOR_X (frame) == XFASTINT (w->left) |
543 | 931 && (XINT (w->hscroll) || n < 0)) |
932 || (n > 0 | |
1777
4edfaa19c7a7
* window.c (window_internal_width): New function.
Jim Blandy <jimb@redhat.com>
parents:
1766
diff
changeset
|
933 && (FRAME_CURSOR_X (frame) + 1 >= window_internal_width (w) - 1)) |
1042
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
934 || cursor_in_echo_area) |
314 | 935 return 0; |
4384
98605d0ea3cf
(direct_output_for_insert): Fail if character
Richard M. Stallman <rms@gnu.org>
parents:
4290
diff
changeset
|
936 |
2794
9163e4e4752c
(direct_output_forward_char): Just give up
Richard M. Stallman <rms@gnu.org>
parents:
2778
diff
changeset
|
937 /* Can't use direct output if highlighting a region. */ |
9163e4e4752c
(direct_output_forward_char): Just give up
Richard M. Stallman <rms@gnu.org>
parents:
2778
diff
changeset
|
938 if (!NILP (Vtransient_mark_mode) && !NILP (current_buffer->mark_active)) |
9163e4e4752c
(direct_output_forward_char): Just give up
Richard M. Stallman <rms@gnu.org>
parents:
2778
diff
changeset
|
939 return 0; |
9163e4e4752c
(direct_output_forward_char): Just give up
Richard M. Stallman <rms@gnu.org>
parents:
2778
diff
changeset
|
940 |
4384
98605d0ea3cf
(direct_output_for_insert): Fail if character
Richard M. Stallman <rms@gnu.org>
parents:
4290
diff
changeset
|
941 #ifdef USE_TEXT_PROPERTIES |
98605d0ea3cf
(direct_output_for_insert): Fail if character
Richard M. Stallman <rms@gnu.org>
parents:
4290
diff
changeset
|
942 /* Don't use direct output next to an invisible character |
98605d0ea3cf
(direct_output_for_insert): Fail if character
Richard M. Stallman <rms@gnu.org>
parents:
4290
diff
changeset
|
943 since we might need to do something special. */ |
98605d0ea3cf
(direct_output_for_insert): Fail if character
Richard M. Stallman <rms@gnu.org>
parents:
4290
diff
changeset
|
944 |
98605d0ea3cf
(direct_output_for_insert): Fail if character
Richard M. Stallman <rms@gnu.org>
parents:
4290
diff
changeset
|
945 XFASTINT (position) = point + n; |
98605d0ea3cf
(direct_output_for_insert): Fail if character
Richard M. Stallman <rms@gnu.org>
parents:
4290
diff
changeset
|
946 if (! NILP (Fget_text_property (position, |
98605d0ea3cf
(direct_output_for_insert): Fail if character
Richard M. Stallman <rms@gnu.org>
parents:
4290
diff
changeset
|
947 Qinvisible, |
98605d0ea3cf
(direct_output_for_insert): Fail if character
Richard M. Stallman <rms@gnu.org>
parents:
4290
diff
changeset
|
948 Fcurrent_buffer ()))) |
98605d0ea3cf
(direct_output_for_insert): Fail if character
Richard M. Stallman <rms@gnu.org>
parents:
4290
diff
changeset
|
949 return; |
98605d0ea3cf
(direct_output_for_insert): Fail if character
Richard M. Stallman <rms@gnu.org>
parents:
4290
diff
changeset
|
950 |
98605d0ea3cf
(direct_output_for_insert): Fail if character
Richard M. Stallman <rms@gnu.org>
parents:
4290
diff
changeset
|
951 XFASTINT (position) = point + n - 1; |
98605d0ea3cf
(direct_output_for_insert): Fail if character
Richard M. Stallman <rms@gnu.org>
parents:
4290
diff
changeset
|
952 if (! NILP (Fget_text_property (position, |
98605d0ea3cf
(direct_output_for_insert): Fail if character
Richard M. Stallman <rms@gnu.org>
parents:
4290
diff
changeset
|
953 Qinvisible, |
98605d0ea3cf
(direct_output_for_insert): Fail if character
Richard M. Stallman <rms@gnu.org>
parents:
4290
diff
changeset
|
954 Fcurrent_buffer ()))) |
98605d0ea3cf
(direct_output_for_insert): Fail if character
Richard M. Stallman <rms@gnu.org>
parents:
4290
diff
changeset
|
955 return; |
98605d0ea3cf
(direct_output_for_insert): Fail if character
Richard M. Stallman <rms@gnu.org>
parents:
4290
diff
changeset
|
956 #endif |
98605d0ea3cf
(direct_output_for_insert): Fail if character
Richard M. Stallman <rms@gnu.org>
parents:
4290
diff
changeset
|
957 |
764 | 958 FRAME_CURSOR_X (frame) += n; |
959 XFASTINT (w->last_point_x) = FRAME_CURSOR_X (frame); | |
314 | 960 XFASTINT (w->last_point) = point; |
764 | 961 cursor_to (FRAME_CURSOR_Y (frame), FRAME_CURSOR_X (frame)); |
314 | 962 fflush (stdout); |
4384
98605d0ea3cf
(direct_output_for_insert): Fail if character
Richard M. Stallman <rms@gnu.org>
parents:
4290
diff
changeset
|
963 |
314 | 964 return 1; |
965 } | |
966 | |
967 static void update_line (); | |
968 | |
764 | 969 /* Update frame F based on the data in FRAME_DESIRED_GLYPHS. |
314 | 970 Value is nonzero if redisplay stopped due to pending input. |
971 FORCE nonzero means do not stop for pending input. */ | |
972 | |
973 int | |
764 | 974 update_frame (f, force, inhibit_hairy_id) |
975 FRAME_PTR f; | |
314 | 976 int force; |
977 int inhibit_hairy_id; | |
978 { | |
764 | 979 register struct frame_glyphs *current_frame = FRAME_CURRENT_GLYPHS (f); |
980 register struct frame_glyphs *desired_frame = FRAME_DESIRED_GLYPHS (f); | |
314 | 981 register int i; |
982 int pause; | |
983 int preempt_count = baud_rate / 2400 + 1; | |
984 extern input_pending; | |
985 #ifdef HAVE_X_WINDOWS | |
986 register int downto, leftmost; | |
987 #endif | |
988 | |
3357
d9523a958b3c
(update_frame): Make preempt_count positive.
Richard M. Stallman <rms@gnu.org>
parents:
3317
diff
changeset
|
989 if (preempt_count <= 0) |
d9523a958b3c
(update_frame): Make preempt_count positive.
Richard M. Stallman <rms@gnu.org>
parents:
3317
diff
changeset
|
990 preempt_count = 1; |
d9523a958b3c
(update_frame): Make preempt_count positive.
Richard M. Stallman <rms@gnu.org>
parents:
3317
diff
changeset
|
991 |
764 | 992 if (FRAME_HEIGHT (f) == 0) abort (); /* Some bug zeros some core */ |
314 | 993 |
994 detect_input_pending (); | |
995 if (input_pending && !force) | |
996 { | |
997 pause = 1; | |
998 goto do_pause; | |
999 } | |
1000 | |
764 | 1001 update_begin (f); |
314 | 1002 |
1003 if (!line_ins_del_ok) | |
1004 inhibit_hairy_id = 1; | |
1005 | |
493 | 1006 /* See if any of the desired lines are enabled; don't compute for |
1007 i/d line if just want cursor motion. */ | |
764 | 1008 for (i = 0; i < FRAME_HEIGHT (f); i++) |
1009 if (desired_frame->enable[i]) | |
314 | 1010 break; |
1011 | |
1012 /* Try doing i/d line, if not yet inhibited. */ | |
764 | 1013 if (!inhibit_hairy_id && i < FRAME_HEIGHT (f)) |
1014 force |= scrolling (f); | |
314 | 1015 |
1016 /* Update the individual lines as needed. Do bottom line first. */ | |
1017 | |
764 | 1018 if (desired_frame->enable[FRAME_HEIGHT (f) - 1]) |
1019 update_line (f, FRAME_HEIGHT (f) - 1); | |
314 | 1020 |
1021 #ifdef HAVE_X_WINDOWS | |
960
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1022 if (FRAME_X_P (f)) |
314 | 1023 { |
764 | 1024 leftmost = downto = f->display.x->internal_border_width; |
1025 if (desired_frame->enable[0]) | |
314 | 1026 { |
764 | 1027 current_frame->top_left_x[FRAME_HEIGHT (f) - 1] = leftmost; |
1028 current_frame->top_left_y[FRAME_HEIGHT (f) - 1] | |
1029 = PIXEL_HEIGHT (f) - f->display.x->internal_border_width | |
1407
0f214040f708
* dispnew.c (scroll_frame_lines): All references to frame elements
Joseph Arceneaux <jla@gnu.org>
parents:
1192
diff
changeset
|
1030 - current_frame->pix_height[FRAME_HEIGHT (f) - 1]; |
764 | 1031 current_frame->top_left_x[0] = leftmost; |
1032 current_frame->top_left_y[0] = downto; | |
314 | 1033 } |
1034 } | |
1035 #endif /* HAVE_X_WINDOWS */ | |
1036 | |
1037 /* Now update the rest of the lines. */ | |
764 | 1038 for (i = 0; i < FRAME_HEIGHT (f) - 1 && (force || !input_pending); i++) |
314 | 1039 { |
764 | 1040 if (desired_frame->enable[i]) |
314 | 1041 { |
960
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1042 if (FRAME_TERMCAP_P (f)) |
314 | 1043 { |
1044 /* Flush out every so many lines. | |
1045 Also flush out if likely to have more than 1k buffered | |
1046 otherwise. I'm told that some telnet connections get | |
1047 really screwed by more than 1k output at once. */ | |
1048 int outq = PENDING_OUTPUT_COUNT (stdout); | |
1049 if (outq > 900 | |
1050 || (outq > 20 && ((i - 1) % preempt_count == 0))) | |
1051 { | |
1052 fflush (stdout); | |
1053 if (preempt_count == 1) | |
1054 { | |
554 | 1055 #ifdef EMACS_OUTQSIZE |
1056 if (EMACS_OUTQSIZE (0, &outq) < 0) | |
314 | 1057 /* Probably not a tty. Ignore the error and reset |
1058 * the outq count. */ | |
1059 outq = PENDING_OUTPUT_COUNT (stdout); | |
1060 #endif | |
1061 outq *= 10; | |
3357
d9523a958b3c
(update_frame): Make preempt_count positive.
Richard M. Stallman <rms@gnu.org>
parents:
3317
diff
changeset
|
1062 if (baud_rate > 0) |
d9523a958b3c
(update_frame): Make preempt_count positive.
Richard M. Stallman <rms@gnu.org>
parents:
3317
diff
changeset
|
1063 sleep (outq / baud_rate); |
314 | 1064 } |
1065 } | |
1066 if ((i - 1) % preempt_count == 0) | |
1067 detect_input_pending (); | |
1068 } | |
1069 | |
764 | 1070 update_line (f, i); |
314 | 1071 #ifdef HAVE_X_WINDOWS |
960
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1072 if (FRAME_X_P (f)) |
314 | 1073 { |
764 | 1074 current_frame->top_left_y[i] = downto; |
1075 current_frame->top_left_x[i] = leftmost; | |
314 | 1076 } |
1077 #endif /* HAVE_X_WINDOWS */ | |
1078 } | |
1079 | |
732 | 1080 #ifdef HAVE_X_WINDOWS |
960
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1081 if (FRAME_X_P (f)) |
1407
0f214040f708
* dispnew.c (scroll_frame_lines): All references to frame elements
Joseph Arceneaux <jla@gnu.org>
parents:
1192
diff
changeset
|
1082 downto += current_frame->pix_height[i]; |
732 | 1083 #endif |
314 | 1084 } |
764 | 1085 pause = (i < FRAME_HEIGHT (f) - 1) ? i : 0; |
314 | 1086 |
1087 /* Now just clean up termcap drivers and set cursor, etc. */ | |
1088 if (!pause) | |
1089 { | |
1042
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
1090 if (cursor_in_echo_area |
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
1091 && FRAME_HAS_MINIBUF_P (f)) |
708 | 1092 { |
1042
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
1093 int top = XINT (XWINDOW (FRAME_MINIBUF_WINDOW (f))->top); |
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
1094 int row, col; |
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
1095 |
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
1096 if (cursor_in_echo_area < 0) |
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
1097 { |
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
1098 row = top; |
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
1099 col = 0; |
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
1100 } |
708 | 1101 else |
1042
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
1102 { |
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
1103 /* If the minibuffer is several lines high, find the last |
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
1104 line that has any text on it. */ |
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
1105 row = FRAME_HEIGHT (f); |
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
1106 do |
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
1107 { |
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
1108 row--; |
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
1109 if (current_frame->enable[row]) |
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
1110 col = current_frame->used[row]; |
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
1111 else |
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
1112 col = 0; |
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
1113 } |
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
1114 while (row > top && col == 0); |
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
1115 |
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
1116 if (col >= FRAME_WIDTH (f)) |
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
1117 { |
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
1118 col = 0; |
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
1119 if (row < FRAME_HEIGHT (f) - 1) |
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
1120 row++; |
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
1121 } |
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
1122 } |
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
1123 |
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
1124 cursor_to (row, col); |
708 | 1125 } |
314 | 1126 else |
764 | 1127 cursor_to (FRAME_CURSOR_Y (f), max (min (FRAME_CURSOR_X (f), |
1128 FRAME_WIDTH (f) - 1), 0)); | |
314 | 1129 } |
1130 | |
764 | 1131 update_end (f); |
314 | 1132 |
1133 if (termscript) | |
1134 fflush (termscript); | |
1135 fflush (stdout); | |
1136 | |
1137 /* Here if output is preempted because input is detected. */ | |
1138 do_pause: | |
1139 | |
764 | 1140 if (FRAME_HEIGHT (f) == 0) abort (); /* Some bug zeros some core */ |
314 | 1141 display_completed = !pause; |
1142 | |
764 | 1143 bzero (desired_frame->enable, FRAME_HEIGHT (f)); |
314 | 1144 return pause; |
1145 } | |
1146 | |
1147 /* Called when about to quit, to check for doing so | |
1148 at an improper time. */ | |
1149 | |
1150 void | |
1151 quit_error_check () | |
1152 { | |
764 | 1153 if (FRAME_DESIRED_GLYPHS (selected_frame) == 0) |
314 | 1154 return; |
764 | 1155 if (FRAME_DESIRED_GLYPHS (selected_frame)->enable[0]) |
314 | 1156 abort (); |
764 | 1157 if (FRAME_DESIRED_GLYPHS (selected_frame)->enable[FRAME_HEIGHT (selected_frame) - 1]) |
314 | 1158 abort (); |
1159 } | |
1160 | |
1161 /* Decide what insert/delete line to do, and do it */ | |
1162 | |
1163 extern void scrolling_1 (); | |
1164 | |
764 | 1165 scrolling (frame) |
1166 FRAME_PTR frame; | |
314 | 1167 { |
1168 int unchanged_at_top, unchanged_at_bottom; | |
1169 int window_size; | |
1170 int changed_lines; | |
764 | 1171 int *old_hash = (int *) alloca (FRAME_HEIGHT (frame) * sizeof (int)); |
1172 int *new_hash = (int *) alloca (FRAME_HEIGHT (frame) * sizeof (int)); | |
1173 int *draw_cost = (int *) alloca (FRAME_HEIGHT (frame) * sizeof (int)); | |
314 | 1174 register int i; |
764 | 1175 int free_at_end_vpos = FRAME_HEIGHT (frame); |
1176 register struct frame_glyphs *current_frame = FRAME_CURRENT_GLYPHS (frame); | |
1177 register struct frame_glyphs *desired_frame = FRAME_DESIRED_GLYPHS (frame); | |
314 | 1178 |
1179 /* Compute hash codes of all the lines. | |
1180 Also calculate number of changed lines, | |
1181 number of unchanged lines at the beginning, | |
1182 and number of unchanged lines at the end. */ | |
1183 | |
1184 changed_lines = 0; | |
1185 unchanged_at_top = 0; | |
764 | 1186 unchanged_at_bottom = FRAME_HEIGHT (frame); |
1187 for (i = 0; i < FRAME_HEIGHT (frame); i++) | |
314 | 1188 { |
1189 /* Give up on this scrolling if some old lines are not enabled. */ | |
764 | 1190 if (!current_frame->enable[i]) |
314 | 1191 return 0; |
764 | 1192 old_hash[i] = line_hash_code (current_frame, i); |
1193 if (! desired_frame->enable[i]) | |
314 | 1194 new_hash[i] = old_hash[i]; |
1195 else | |
764 | 1196 new_hash[i] = line_hash_code (desired_frame, i); |
314 | 1197 |
1198 if (old_hash[i] != new_hash[i]) | |
1199 { | |
1200 changed_lines++; | |
764 | 1201 unchanged_at_bottom = FRAME_HEIGHT (frame) - i - 1; |
314 | 1202 } |
1203 else if (i == unchanged_at_top) | |
1204 unchanged_at_top++; | |
764 | 1205 draw_cost[i] = line_draw_cost (desired_frame, i); |
314 | 1206 } |
1207 | |
1208 /* If changed lines are few, don't allow preemption, don't scroll. */ | |
1209 if (changed_lines < baud_rate / 2400 | |
764 | 1210 || unchanged_at_bottom == FRAME_HEIGHT (frame)) |
314 | 1211 return 1; |
1212 | |
764 | 1213 window_size = (FRAME_HEIGHT (frame) - unchanged_at_top |
314 | 1214 - unchanged_at_bottom); |
1215 | |
1216 if (scroll_region_ok) | |
1217 free_at_end_vpos -= unchanged_at_bottom; | |
764 | 1218 else if (memory_below_frame) |
314 | 1219 free_at_end_vpos = -1; |
1220 | |
1221 /* If large window, fast terminal and few lines in common between | |
764 | 1222 current frame and desired frame, don't bother with i/d calc. */ |
314 | 1223 if (window_size >= 18 && baud_rate > 2400 |
1224 && (window_size >= | |
1225 10 * scrolling_max_lines_saved (unchanged_at_top, | |
764 | 1226 FRAME_HEIGHT (frame) - unchanged_at_bottom, |
314 | 1227 old_hash, new_hash, draw_cost))) |
1228 return 0; | |
1229 | |
764 | 1230 scrolling_1 (frame, window_size, unchanged_at_top, unchanged_at_bottom, |
314 | 1231 draw_cost + unchanged_at_top - 1, |
1232 old_hash + unchanged_at_top - 1, | |
1233 new_hash + unchanged_at_top - 1, | |
1234 free_at_end_vpos - unchanged_at_top); | |
1235 | |
1236 return 0; | |
1237 } | |
1238 | |
1239 /* Return the offset in its buffer of the character at location col, line | |
1240 in the given window. */ | |
1241 int | |
1242 buffer_posn_from_coords (window, col, line) | |
1243 struct window *window; | |
1244 int col, line; | |
1245 { | |
1246 int window_left = XFASTINT (window->left); | |
1247 | |
1248 /* The actual width of the window is window->width less one for the | |
493 | 1249 DISP_CONTINUE_GLYPH, and less one if it's not the rightmost |
1250 window. */ | |
1777
4edfaa19c7a7
* window.c (window_internal_width): New function.
Jim Blandy <jimb@redhat.com>
parents:
1766
diff
changeset
|
1251 int window_width = window_internal_width (window) - 1; |
314 | 1252 |
493 | 1253 int startp = marker_position (window->start); |
314 | 1254 |
1255 /* Since compute_motion will only operate on the current buffer, | |
1256 we need to save the old one and restore it when we're done. */ | |
1257 struct buffer *old_current_buffer = current_buffer; | |
493 | 1258 struct position *posn; |
314 | 1259 |
1260 current_buffer = XBUFFER (window->buffer); | |
1261 | |
764 | 1262 /* It would be nice if we could use FRAME_CURRENT_GLYPHS (XFRAME |
1263 (window->frame))->bufp to avoid scanning from the very top of | |
493 | 1264 the window, but it isn't maintained correctly, and I'm not even |
1265 sure I will keep it. */ | |
1266 posn = compute_motion (startp, 0, | |
1267 (window == XWINDOW (minibuf_window) && startp == 1 | |
1268 ? minibuf_prompt_width : 0), | |
3317
55066d2375b6
(buffer_posn_from_coords): Since COL is already
Richard M. Stallman <rms@gnu.org>
parents:
3192
diff
changeset
|
1269 ZV, line, col, |
493 | 1270 window_width, XINT (window->hscroll), 0); |
314 | 1271 |
1272 current_buffer = old_current_buffer; | |
1273 | |
764 | 1274 /* compute_motion considers frame points past the end of a line |
493 | 1275 to be *after* the newline, i.e. at the start of the next line. |
1276 This is reasonable, but not really what we want. So if the | |
1277 result is on a line below LINE, back it up one character. */ | |
1278 if (posn->vpos > line) | |
1279 return posn->bufpos - 1; | |
1280 else | |
1281 return posn->bufpos; | |
314 | 1282 } |
1283 | |
1284 static int | |
1285 count_blanks (r) | |
1286 register GLYPH *r; | |
1287 { | |
1288 register GLYPH *p = r; | |
1495
f17665e7347e
(count_blanks): Leave argument r constant, and increment p.
Richard M. Stallman <rms@gnu.org>
parents:
1407
diff
changeset
|
1289 while (*p++ == SPACEGLYPH); |
f17665e7347e
(count_blanks): Leave argument r constant, and increment p.
Richard M. Stallman <rms@gnu.org>
parents:
1407
diff
changeset
|
1290 return p - r - 1; |
314 | 1291 } |
1292 | |
1293 static int | |
1294 count_match (str1, str2) | |
1295 GLYPH *str1, *str2; | |
1296 { | |
1297 register GLYPH *p1 = str1; | |
1298 register GLYPH *p2 = str2; | |
1299 while (*p1++ == *p2++); | |
1300 return p1 - str1 - 1; | |
1301 } | |
1302 | |
1303 /* Char insertion/deletion cost vector, from term.c */ | |
1304 extern int *char_ins_del_vector; | |
1305 | |
1849
23ab36427257
(char_ins_del_cost): Use FRAME_WIDTH, not FRAME_HEIGHT.
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
1306 #define char_ins_del_cost(f) (&char_ins_del_vector[FRAME_WIDTH((f))]) |
314 | 1307 |
1308 static void | |
764 | 1309 update_line (frame, vpos) |
1310 register FRAME_PTR frame; | |
314 | 1311 int vpos; |
1312 { | |
1313 register GLYPH *obody, *nbody, *op1, *op2, *np1, *temp; | |
1314 int tem; | |
1315 int osp, nsp, begmatch, endmatch, olen, nlen; | |
1316 int save; | |
764 | 1317 register struct frame_glyphs *current_frame |
1318 = FRAME_CURRENT_GLYPHS (frame); | |
1319 register struct frame_glyphs *desired_frame | |
1320 = FRAME_DESIRED_GLYPHS (frame); | |
314 | 1321 |
764 | 1322 if (desired_frame->highlight[vpos] |
1323 != (current_frame->enable[vpos] && current_frame->highlight[vpos])) | |
314 | 1324 { |
764 | 1325 change_line_highlight (desired_frame->highlight[vpos], vpos, |
1326 (current_frame->enable[vpos] ? | |
1327 current_frame->used[vpos] : 0)); | |
1328 current_frame->enable[vpos] = 0; | |
314 | 1329 } |
1330 else | |
764 | 1331 reassert_line_highlight (desired_frame->highlight[vpos], vpos); |
314 | 1332 |
764 | 1333 if (! current_frame->enable[vpos]) |
314 | 1334 { |
1335 olen = 0; | |
1336 } | |
1337 else | |
1338 { | |
764 | 1339 obody = current_frame->glyphs[vpos]; |
1340 olen = current_frame->used[vpos]; | |
1341 if (! current_frame->highlight[vpos]) | |
314 | 1342 { |
1343 if (!must_write_spaces) | |
1344 while (obody[olen - 1] == SPACEGLYPH && olen > 0) | |
1345 olen--; | |
1346 } | |
1347 else | |
1348 { | |
1349 /* For an inverse-video line, remember we gave it | |
764 | 1350 spaces all the way to the frame edge |
314 | 1351 so that the reverse video extends all the way across. */ |
1352 | |
764 | 1353 while (olen < FRAME_WIDTH (frame) - 1) |
314 | 1354 obody[olen++] = SPACEGLYPH; |
1355 } | |
1356 } | |
1357 | |
1358 /* One way or another, this will enable the line being updated. */ | |
764 | 1359 current_frame->enable[vpos] = 1; |
1360 current_frame->used[vpos] = desired_frame->used[vpos]; | |
1361 current_frame->highlight[vpos] = desired_frame->highlight[vpos]; | |
1362 current_frame->bufp[vpos] = desired_frame->bufp[vpos]; | |
314 | 1363 |
1364 #ifdef HAVE_X_WINDOWS | |
960
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1365 if (FRAME_X_P (frame)) |
314 | 1366 { |
764 | 1367 current_frame->pix_width[vpos] |
1368 = current_frame->used[vpos] | |
1369 * FONT_WIDTH (frame->display.x->font); | |
1370 current_frame->pix_height[vpos] | |
1371 = FONT_HEIGHT (frame->display.x->font); | |
314 | 1372 } |
1373 #endif /* HAVE_X_WINDOWS */ | |
1374 | |
764 | 1375 if (!desired_frame->enable[vpos]) |
314 | 1376 { |
1377 nlen = 0; | |
1378 goto just_erase; | |
1379 } | |
1380 | |
764 | 1381 nbody = desired_frame->glyphs[vpos]; |
1382 nlen = desired_frame->used[vpos]; | |
314 | 1383 |
1384 /* Pretend trailing spaces are not there at all, | |
1385 unless for one reason or another we must write all spaces. */ | |
764 | 1386 if (! desired_frame->highlight[vpos]) |
314 | 1387 { |
1388 if (!must_write_spaces) | |
1389 /* We know that the previous character byte contains 0. */ | |
1390 while (nbody[nlen - 1] == SPACEGLYPH) | |
1391 nlen--; | |
1392 } | |
1393 else | |
1394 { | |
1395 /* For an inverse-video line, give it extra trailing spaces | |
764 | 1396 all the way to the frame edge |
314 | 1397 so that the reverse video extends all the way across. */ |
1398 | |
764 | 1399 while (nlen < FRAME_WIDTH (frame) - 1) |
314 | 1400 nbody[nlen++] = SPACEGLYPH; |
1401 } | |
1402 | |
1403 /* If there's no i/d char, quickly do the best we can without it. */ | |
1404 if (!char_ins_del_ok) | |
1405 { | |
1406 int i,j; | |
1407 | |
4276
2298d2aff61c
Commented-out code added.
Richard M. Stallman <rms@gnu.org>
parents:
4134
diff
changeset
|
1408 #if 0 |
2298d2aff61c
Commented-out code added.
Richard M. Stallman <rms@gnu.org>
parents:
4134
diff
changeset
|
1409 if (FRAME_X_P (frame)) |
2298d2aff61c
Commented-out code added.
Richard M. Stallman <rms@gnu.org>
parents:
4134
diff
changeset
|
1410 { |
2298d2aff61c
Commented-out code added.
Richard M. Stallman <rms@gnu.org>
parents:
4134
diff
changeset
|
1411 /* Under X, erase everything we are going to rewrite, |
2298d2aff61c
Commented-out code added.
Richard M. Stallman <rms@gnu.org>
parents:
4134
diff
changeset
|
1412 and rewrite everything from the first char that's changed. |
2298d2aff61c
Commented-out code added.
Richard M. Stallman <rms@gnu.org>
parents:
4134
diff
changeset
|
1413 This is part of supporting fonts like Courier |
2298d2aff61c
Commented-out code added.
Richard M. Stallman <rms@gnu.org>
parents:
4134
diff
changeset
|
1414 whose chars can overlap outside the char width. */ |
2298d2aff61c
Commented-out code added.
Richard M. Stallman <rms@gnu.org>
parents:
4134
diff
changeset
|
1415 for (i = 0; i < nlen; i++) |
2298d2aff61c
Commented-out code added.
Richard M. Stallman <rms@gnu.org>
parents:
4134
diff
changeset
|
1416 if (i >= olen || nbody[i] != obody[i]) |
2298d2aff61c
Commented-out code added.
Richard M. Stallman <rms@gnu.org>
parents:
4134
diff
changeset
|
1417 break; |
2298d2aff61c
Commented-out code added.
Richard M. Stallman <rms@gnu.org>
parents:
4134
diff
changeset
|
1418 |
2298d2aff61c
Commented-out code added.
Richard M. Stallman <rms@gnu.org>
parents:
4134
diff
changeset
|
1419 cursor_to (vpos, i); |
2298d2aff61c
Commented-out code added.
Richard M. Stallman <rms@gnu.org>
parents:
4134
diff
changeset
|
1420 if (i != olen) |
2298d2aff61c
Commented-out code added.
Richard M. Stallman <rms@gnu.org>
parents:
4134
diff
changeset
|
1421 clear_end_of_line (olen); |
2298d2aff61c
Commented-out code added.
Richard M. Stallman <rms@gnu.org>
parents:
4134
diff
changeset
|
1422 write_glyphs (nbody + i, nlen - i); |
2298d2aff61c
Commented-out code added.
Richard M. Stallman <rms@gnu.org>
parents:
4134
diff
changeset
|
1423 } |
2298d2aff61c
Commented-out code added.
Richard M. Stallman <rms@gnu.org>
parents:
4134
diff
changeset
|
1424 else |
2298d2aff61c
Commented-out code added.
Richard M. Stallman <rms@gnu.org>
parents:
4134
diff
changeset
|
1425 {} |
2298d2aff61c
Commented-out code added.
Richard M. Stallman <rms@gnu.org>
parents:
4134
diff
changeset
|
1426 #endif /* 0 */ |
314 | 1427 for (i = 0; i < nlen; i++) |
1428 { | |
1429 if (i >= olen || nbody[i] != obody[i]) /* A non-matching char. */ | |
1430 { | |
1431 cursor_to (vpos, i); | |
1432 for (j = 1; (i + j < nlen && | |
1433 (i + j >= olen || nbody[i+j] != obody[i+j])); | |
1434 j++); | |
1435 | |
1436 /* Output this run of non-matching chars. */ | |
1437 write_glyphs (nbody + i, j); | |
1438 i += j - 1; | |
1439 | |
1440 /* Now find the next non-match. */ | |
1441 } | |
1442 } | |
1443 | |
1444 /* Clear the rest of the line, or the non-clear part of it. */ | |
1445 if (olen > nlen) | |
1446 { | |
1447 cursor_to (vpos, nlen); | |
1448 clear_end_of_line (olen); | |
1449 } | |
1450 | |
764 | 1451 /* Exchange contents between current_frame and new_frame. */ |
1452 temp = desired_frame->glyphs[vpos]; | |
1453 desired_frame->glyphs[vpos] = current_frame->glyphs[vpos]; | |
1454 current_frame->glyphs[vpos] = temp; | |
314 | 1455 |
1456 return; | |
1457 } | |
1458 | |
1459 if (!olen) | |
1460 { | |
764 | 1461 nsp = (must_write_spaces || desired_frame->highlight[vpos]) |
314 | 1462 ? 0 : count_blanks (nbody); |
1463 if (nlen > nsp) | |
1464 { | |
1465 cursor_to (vpos, nsp); | |
1466 write_glyphs (nbody + nsp, nlen - nsp); | |
1467 } | |
1468 | |
764 | 1469 /* Exchange contents between current_frame and new_frame. */ |
1470 temp = desired_frame->glyphs[vpos]; | |
1471 desired_frame->glyphs[vpos] = current_frame->glyphs[vpos]; | |
1472 current_frame->glyphs[vpos] = temp; | |
314 | 1473 |
1474 return; | |
1475 } | |
1476 | |
1477 obody[olen] = 1; | |
1478 save = nbody[nlen]; | |
1479 nbody[nlen] = 0; | |
1480 | |
1481 /* Compute number of leading blanks in old and new contents. */ | |
1482 osp = count_blanks (obody); | |
764 | 1483 if (!desired_frame->highlight[vpos]) |
314 | 1484 nsp = count_blanks (nbody); |
1485 else | |
1486 nsp = 0; | |
1487 | |
1488 /* Compute number of matching chars starting with first nonblank. */ | |
1489 begmatch = count_match (obody + osp, nbody + nsp); | |
1490 | |
1491 /* Spaces in new match implicit space past the end of old. */ | |
1492 /* A bug causing this to be a no-op was fixed in 18.29. */ | |
1493 if (!must_write_spaces && osp + begmatch == olen) | |
1494 { | |
1495 np1 = nbody + nsp; | |
1496 while (np1[begmatch] == SPACEGLYPH) | |
1497 begmatch++; | |
1498 } | |
1499 | |
1500 /* Avoid doing insert/delete char | |
1501 just cause number of leading spaces differs | |
1502 when the following text does not match. */ | |
1503 if (begmatch == 0 && osp != nsp) | |
1504 osp = nsp = min (osp, nsp); | |
1505 | |
1506 /* Find matching characters at end of line */ | |
1507 op1 = obody + olen; | |
1508 np1 = nbody + nlen; | |
1509 op2 = op1 + begmatch - min (olen - osp, nlen - nsp); | |
1510 while (op1 > op2 && op1[-1] == np1[-1]) | |
1511 { | |
1512 op1--; | |
1513 np1--; | |
1514 } | |
1515 endmatch = obody + olen - op1; | |
1516 | |
1517 /* Put correct value back in nbody[nlen]. | |
1518 This is important because direct_output_for_insert | |
1519 can write into the line at a later point. | |
1520 If this screws up the zero at the end of the line, re-establish it. */ | |
1521 nbody[nlen] = save; | |
1522 obody[olen] = 0; | |
1523 | |
1524 /* tem gets the distance to insert or delete. | |
1525 endmatch is how many characters we save by doing so. | |
1526 Is it worth it? */ | |
1527 | |
1528 tem = (nlen - nsp) - (olen - osp); | |
1529 if (endmatch && tem | |
764 | 1530 && (!char_ins_del_ok || endmatch <= char_ins_del_cost (frame)[tem])) |
314 | 1531 endmatch = 0; |
1532 | |
1533 /* nsp - osp is the distance to insert or delete. | |
1534 If that is nonzero, begmatch is known to be nonzero also. | |
1535 begmatch + endmatch is how much we save by doing the ins/del. | |
1536 Is it worth it? */ | |
1537 | |
1538 if (nsp != osp | |
1539 && (!char_ins_del_ok | |
764 | 1540 || begmatch + endmatch <= char_ins_del_cost (frame)[nsp - osp])) |
314 | 1541 { |
1542 begmatch = 0; | |
1543 endmatch = 0; | |
1544 osp = nsp = min (osp, nsp); | |
1545 } | |
1546 | |
1547 /* Now go through the line, inserting, writing and | |
1548 deleting as appropriate. */ | |
1549 | |
1550 if (osp > nsp) | |
1551 { | |
1552 cursor_to (vpos, nsp); | |
1553 delete_glyphs (osp - nsp); | |
1554 } | |
1555 else if (nsp > osp) | |
1556 { | |
1557 /* If going to delete chars later in line | |
1558 and insert earlier in the line, | |
1559 must delete first to avoid losing data in the insert */ | |
1560 if (endmatch && nlen < olen + nsp - osp) | |
1561 { | |
1562 cursor_to (vpos, nlen - endmatch + osp - nsp); | |
1563 delete_glyphs (olen + nsp - osp - nlen); | |
1564 olen = nlen - (nsp - osp); | |
1565 } | |
1566 cursor_to (vpos, osp); | |
1567 insert_glyphs ((char *)0, nsp - osp); | |
1568 } | |
1569 olen += nsp - osp; | |
1570 | |
1571 tem = nsp + begmatch + endmatch; | |
1572 if (nlen != tem || olen != tem) | |
1573 { | |
1574 cursor_to (vpos, nsp + begmatch); | |
1575 if (!endmatch || nlen == olen) | |
1576 { | |
1577 /* If new text being written reaches right margin, | |
1578 there is no need to do clear-to-eol at the end. | |
1579 (and it would not be safe, since cursor is not | |
1580 going to be "at the margin" after the text is done) */ | |
764 | 1581 if (nlen == FRAME_WIDTH (frame)) |
314 | 1582 olen = 0; |
1583 write_glyphs (nbody + nsp + begmatch, nlen - tem); | |
1584 | |
1585 #ifdef obsolete | |
1586 | |
1587 /* the following code loses disastrously if tem == nlen. | |
1588 Rather than trying to fix that case, I am trying the simpler | |
1589 solution found above. */ | |
1590 | |
1591 /* If the text reaches to the right margin, | |
1592 it will lose one way or another (depending on AutoWrap) | |
1593 to clear to end of line after outputting all the text. | |
1594 So pause with one character to go and clear the line then. */ | |
764 | 1595 if (nlen == FRAME_WIDTH (frame) && fast_clear_end_of_line && olen > nlen) |
314 | 1596 { |
1597 /* endmatch must be zero, and tem must equal nsp + begmatch */ | |
1598 write_glyphs (nbody + tem, nlen - tem - 1); | |
1599 clear_end_of_line (olen); | |
1600 olen = 0; /* Don't let it be cleared again later */ | |
1601 write_glyphs (nbody + nlen - 1, 1); | |
1602 } | |
1603 else | |
1604 write_glyphs (nbody + nsp + begmatch, nlen - tem); | |
1605 #endif /* OBSOLETE */ | |
1606 | |
1607 } | |
1608 else if (nlen > olen) | |
1609 { | |
1610 write_glyphs (nbody + nsp + begmatch, olen - tem); | |
1611 insert_glyphs (nbody + nsp + begmatch + olen - tem, nlen - olen); | |
1612 olen = nlen; | |
1613 } | |
1614 else if (olen > nlen) | |
1615 { | |
1616 write_glyphs (nbody + nsp + begmatch, nlen - tem); | |
1617 delete_glyphs (olen - nlen); | |
1618 olen = nlen; | |
1619 } | |
1620 } | |
1621 | |
1622 just_erase: | |
1623 /* If any unerased characters remain after the new line, erase them. */ | |
1624 if (olen > nlen) | |
1625 { | |
1626 cursor_to (vpos, nlen); | |
1627 clear_end_of_line (olen); | |
1628 } | |
1629 | |
764 | 1630 /* Exchange contents between current_frame and new_frame. */ |
1631 temp = desired_frame->glyphs[vpos]; | |
1632 desired_frame->glyphs[vpos] = current_frame->glyphs[vpos]; | |
1633 current_frame->glyphs[vpos] = temp; | |
314 | 1634 } |
1635 | |
1636 DEFUN ("open-termscript", Fopen_termscript, Sopen_termscript, | |
1637 1, 1, "FOpen termscript file: ", | |
1638 "Start writing all terminal output to FILE as well as the terminal.\n\ | |
1639 FILE = nil means just close any termscript file currently open.") | |
1640 (file) | |
1641 Lisp_Object file; | |
1642 { | |
1643 if (termscript != 0) fclose (termscript); | |
1644 termscript = 0; | |
1645 | |
493 | 1646 if (! NILP (file)) |
314 | 1647 { |
1648 file = Fexpand_file_name (file, Qnil); | |
1649 termscript = fopen (XSTRING (file)->data, "w"); | |
1650 if (termscript == 0) | |
1651 report_file_error ("Opening termscript", Fcons (file, Qnil)); | |
1652 } | |
1653 return Qnil; | |
1654 } | |
1655 | |
1656 | |
1657 #ifdef SIGWINCH | |
493 | 1658 SIGTYPE |
314 | 1659 window_change_signal () |
1660 { | |
1661 int width, height; | |
1662 extern int errno; | |
1663 int old_errno = errno; | |
1664 | |
764 | 1665 get_frame_size (&width, &height); |
314 | 1666 |
764 | 1667 /* The frame size change obviously applies to a termcap-controlled |
1668 frame. Find such a frame in the list, and assume it's the only | |
314 | 1669 one (since the redisplay code always writes to stdout, not a |
764 | 1670 FILE * specified in the frame structure). Record the new size, |
314 | 1671 but don't reallocate the data structures now. Let that be done |
1672 later outside of the signal handler. */ | |
1673 | |
1674 { | |
2252
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2198
diff
changeset
|
1675 Lisp_Object tail, frame; |
314 | 1676 |
2252
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2198
diff
changeset
|
1677 FOR_EACH_FRAME (tail, frame) |
314 | 1678 { |
2252
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2198
diff
changeset
|
1679 if (FRAME_TERMCAP_P (XFRAME (frame))) |
314 | 1680 { |
2252
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2198
diff
changeset
|
1681 change_frame_size (XFRAME (frame), height, width, 0, 1); |
314 | 1682 break; |
1683 } | |
1684 } | |
1685 } | |
1686 | |
1687 signal (SIGWINCH, window_change_signal); | |
1688 errno = old_errno; | |
1689 } | |
1690 #endif /* SIGWINCH */ | |
1691 | |
1692 | |
764 | 1693 /* Do any change in frame size that was requested by a signal. */ |
314 | 1694 |
1695 do_pending_window_change () | |
1696 { | |
1697 /* If window_change_signal should have run before, run it now. */ | |
1698 while (delayed_size_change) | |
1699 { | |
2252
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2198
diff
changeset
|
1700 Lisp_Object tail, frame; |
314 | 1701 |
1702 delayed_size_change = 0; | |
1703 | |
2252
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2198
diff
changeset
|
1704 FOR_EACH_FRAME (tail, frame) |
314 | 1705 { |
2252
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2198
diff
changeset
|
1706 FRAME_PTR f = XFRAME (frame); |
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2198
diff
changeset
|
1707 |
764 | 1708 int height = FRAME_NEW_HEIGHT (f); |
1709 int width = FRAME_NEW_WIDTH (f); | |
314 | 1710 |
3449
ad455da9b789
(do_pending_window_change): No need to clear
Richard M. Stallman <rms@gnu.org>
parents:
3357
diff
changeset
|
1711 if (height != 0 || width != 0) |
960
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1712 change_frame_size (f, height, width, 0, 0); |
314 | 1713 } |
1714 } | |
1715 } | |
1716 | |
1717 | |
764 | 1718 /* Change the frame height and/or width. Values may be given as zero to |
960
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1719 indicate no change is to take place. |
314 | 1720 |
960
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1721 If DELAY is non-zero, then assume we're being called from a signal |
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1722 handler, and queue the change for later - perhaps the next |
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1723 redisplay. Since this tries to resize windows, we can't call it |
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1724 from a signal handler. */ |
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1725 |
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1726 change_frame_size (frame, newheight, newwidth, pretend, delay) |
764 | 1727 register FRAME_PTR frame; |
960
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1728 int newheight, newwidth, pretend; |
314 | 1729 { |
1730 /* If we can't deal with the change now, queue it for later. */ | |
960
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1731 if (delay) |
314 | 1732 { |
960
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1733 FRAME_NEW_HEIGHT (frame) = newheight; |
764 | 1734 FRAME_NEW_WIDTH (frame) = newwidth; |
314 | 1735 delayed_size_change = 1; |
1736 return; | |
1737 } | |
1738 | |
764 | 1739 /* This size-change overrides any pending one for this frame. */ |
1740 FRAME_NEW_HEIGHT (frame) = 0; | |
960
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1741 FRAME_NEW_WIDTH (frame) = 0; |
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1742 |
3449
ad455da9b789
(do_pending_window_change): No need to clear
Richard M. Stallman <rms@gnu.org>
parents:
3357
diff
changeset
|
1743 /* If an argument is zero, set it to the current value. */ |
960
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1744 newheight || (newheight = FRAME_HEIGHT (frame)); |
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1745 newwidth || (newwidth = FRAME_WIDTH (frame)); |
314 | 1746 |
960
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1747 /* Round up to the smallest acceptable size. */ |
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1748 check_frame_size (frame, &newheight, &newwidth); |
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1749 |
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1750 /* If we're not changing the frame size, quit now. */ |
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1751 if (newheight == FRAME_HEIGHT (frame) |
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1752 && newwidth == FRAME_WIDTH (frame)) |
314 | 1753 return; |
1754 | |
960
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1755 if (newheight != FRAME_HEIGHT (frame)) |
314 | 1756 { |
960
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1757 if (FRAME_HAS_MINIBUF_P (frame) |
764 | 1758 && ! FRAME_MINIBUF_ONLY_P (frame)) |
314 | 1759 { |
764 | 1760 /* Frame has both root and minibuffer. */ |
1761 set_window_height (FRAME_ROOT_WINDOW (frame), | |
2132
0f4b18efebf5
(change_frame_size): Handle FRAME_MENU_BAR_LINES.
Richard M. Stallman <rms@gnu.org>
parents:
1915
diff
changeset
|
1762 newheight - 1 - FRAME_MENU_BAR_LINES (frame), 0); |
764 | 1763 XFASTINT (XWINDOW (FRAME_MINIBUF_WINDOW (frame))->top) |
960
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1764 = newheight - 1; |
764 | 1765 set_window_height (FRAME_MINIBUF_WINDOW (frame), 1, 0); |
314 | 1766 } |
1767 else | |
764 | 1768 /* Frame has just one top-level window. */ |
2132
0f4b18efebf5
(change_frame_size): Handle FRAME_MENU_BAR_LINES.
Richard M. Stallman <rms@gnu.org>
parents:
1915
diff
changeset
|
1769 set_window_height (FRAME_ROOT_WINDOW (frame), |
0f4b18efebf5
(change_frame_size): Handle FRAME_MENU_BAR_LINES.
Richard M. Stallman <rms@gnu.org>
parents:
1915
diff
changeset
|
1770 newheight - FRAME_MENU_BAR_LINES (frame), 0); |
960
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1771 |
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1772 if (FRAME_TERMCAP_P (frame) && !pretend) |
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1773 FrameRows = newheight; |
314 | 1774 |
1775 #if 0 | |
764 | 1776 if (frame->output_method == output_termcap) |
314 | 1777 { |
960
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1778 frame_height = newheight; |
314 | 1779 if (!pretend) |
960
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1780 FrameRows = newheight; |
314 | 1781 } |
1782 #endif | |
1783 } | |
1784 | |
960
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1785 if (newwidth != FRAME_WIDTH (frame)) |
314 | 1786 { |
764 | 1787 set_window_width (FRAME_ROOT_WINDOW (frame), newwidth, 0); |
960
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1788 if (FRAME_HAS_MINIBUF_P (frame)) |
764 | 1789 set_window_width (FRAME_MINIBUF_WINDOW (frame), newwidth, 0); |
314 | 1790 |
960
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1791 if (FRAME_TERMCAP_P (frame) && !pretend) |
764 | 1792 FrameCols = newwidth; |
314 | 1793 #if 0 |
764 | 1794 if (frame->output_method == output_termcap) |
314 | 1795 { |
764 | 1796 frame_width = newwidth; |
314 | 1797 if (!pretend) |
764 | 1798 FrameCols = newwidth; |
314 | 1799 } |
1800 #endif | |
1801 } | |
1802 | |
960
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1803 FRAME_HEIGHT (frame) = newheight; |
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1804 FRAME_WIDTH (frame) = newwidth; |
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1805 |
764 | 1806 remake_frame_glyphs (frame); |
1807 calculate_costs (frame); | |
314 | 1808 } |
1809 | |
1810 DEFUN ("send-string-to-terminal", Fsend_string_to_terminal, | |
1811 Ssend_string_to_terminal, 1, 1, 0, | |
1812 "Send STRING to the terminal without alteration.\n\ | |
1813 Control characters in STRING will have terminal-dependent effects.") | |
1814 (str) | |
1815 Lisp_Object str; | |
1816 { | |
1817 CHECK_STRING (str, 0); | |
1818 fwrite (XSTRING (str)->data, 1, XSTRING (str)->size, stdout); | |
1819 fflush (stdout); | |
1820 if (termscript) | |
1821 { | |
1822 fwrite (XSTRING (str)->data, 1, XSTRING (str)->size, termscript); | |
1823 fflush (termscript); | |
1824 } | |
1825 return Qnil; | |
1826 } | |
1827 | |
1828 DEFUN ("ding", Fding, Sding, 0, 1, 0, | |
1829 "Beep, or flash the screen.\n\ | |
1830 Also, unless an argument is given,\n\ | |
1831 terminate any keyboard macro currently executing.") | |
1832 (arg) | |
1833 Lisp_Object arg; | |
1834 { | |
493 | 1835 if (!NILP (arg)) |
314 | 1836 { |
649
61deba7b73b6
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
587
diff
changeset
|
1837 if (noninteractive) |
61deba7b73b6
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
587
diff
changeset
|
1838 putchar (07); |
61deba7b73b6
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
587
diff
changeset
|
1839 else |
61deba7b73b6
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
587
diff
changeset
|
1840 ring_bell (); |
314 | 1841 fflush (stdout); |
1842 } | |
1843 else | |
1844 bitch_at_user (); | |
1845 | |
1846 return Qnil; | |
1847 } | |
1848 | |
1849 bitch_at_user () | |
1850 { | |
1851 if (noninteractive) | |
1852 putchar (07); | |
1853 else if (!INTERACTIVE) /* Stop executing a keyboard macro. */ | |
1854 error ("Keyboard macro terminated by a command ringing the bell"); | |
1855 else | |
1856 ring_bell (); | |
1857 fflush (stdout); | |
1858 } | |
1859 | |
1860 DEFUN ("sleep-for", Fsleep_for, Ssleep_for, 1, 2, 0, | |
2291
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
1861 "Pause, without updating display, for SECONDS seconds.\n\ |
2648 | 1862 SECONDS may be a floating-point value, meaning that you can wait for a\n\ |
1863 fraction of a second. Optional second arg MILLISECONDS specifies an\n\ | |
1864 additional wait period, in milliseconds; this may be useful if your\n\ | |
1865 Emacs was built without floating point support.\n\ | |
1866 \(Not all operating systems support waiting for a fraction of a second.)") | |
2291
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
1867 (seconds, milliseconds) |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
1868 Lisp_Object seconds, milliseconds; |
314 | 1869 { |
2291
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
1870 int sec, usec; |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
1871 |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
1872 if (NILP (milliseconds)) |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
1873 XSET (milliseconds, Lisp_Int, 0); |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
1874 else |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
1875 CHECK_NUMBER (milliseconds, 1); |
2648 | 1876 usec = XINT (milliseconds) * 1000; |
1877 | |
1878 #ifdef LISP_FLOAT_TYPE | |
1879 { | |
1880 double duration = extract_float (seconds); | |
1881 sec = (int) duration; | |
1882 usec += (duration - sec) * 1000000; | |
1883 } | |
1884 #else | |
1885 CHECK_NUMBER (seconds, 0); | |
1886 sec = XINT (seconds); | |
1887 #endif | |
314 | 1888 |
2291
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
1889 #ifndef EMACS_HAS_USECS |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
1890 if (sec == 0 && usec != 0) |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
1891 error ("millisecond `sleep-for' not supported on %s", SYSTEM_TYPE); |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
1892 #endif |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
1893 |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
1894 /* Assure that 0 <= usec < 1000000. */ |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
1895 if (usec < 0) |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
1896 { |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
1897 /* We can't rely on the rounding being correct if user is negative. */ |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
1898 if (-1000000 < usec) |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
1899 sec--, usec += 1000000; |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
1900 else |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
1901 sec -= -usec / 1000000, usec = 1000000 - (-usec % 1000000); |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
1902 } |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
1903 else |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
1904 sec += usec / 1000000, usec %= 1000000; |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
1905 |
4290
885452da2a8f
(Fsleep_for): If arg is 0, return right away.
Richard M. Stallman <rms@gnu.org>
parents:
4276
diff
changeset
|
1906 if (sec <= 0) |
314 | 1907 return Qnil; |
1908 | |
650 | 1909 { |
1910 Lisp_Object zero; | |
1911 | |
1912 XFASTINT (zero) = 0; | |
1913 wait_reading_process_input (sec, usec, zero, 0); | |
1914 } | |
587 | 1915 |
2291
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
1916 /* We should always have wait_reading_process_input; we have a dummy |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
1917 implementation for systems which don't support subprocesses. */ |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
1918 #if 0 |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
1919 /* No wait_reading_process_input */ |
314 | 1920 immediate_quit = 1; |
1921 QUIT; | |
1922 | |
1923 #ifdef VMS | |
1924 sys_sleep (sec); | |
1925 #else /* not VMS */ | |
1926 /* The reason this is done this way | |
1927 (rather than defined (H_S) && defined (H_T)) | |
1928 is because the VMS preprocessor doesn't grok `defined' */ | |
1929 #ifdef HAVE_SELECT | |
554 | 1930 EMACS_GET_TIME (end_time); |
1931 EMACS_SET_SECS_USECS (timeout, sec, usec); | |
587 | 1932 EMACS_ADD_TIME (end_time, end_time, timeout); |
554 | 1933 |
314 | 1934 while (1) |
1935 { | |
554 | 1936 EMACS_GET_TIME (timeout); |
1937 EMACS_SUB_TIME (timeout, end_time, timeout); | |
1938 if (EMACS_TIME_NEG_P (timeout) | |
1939 || !select (1, 0, 0, 0, &timeout)) | |
314 | 1940 break; |
1941 } | |
1942 #else /* not HAVE_SELECT */ | |
1943 sleep (sec); | |
1944 #endif /* HAVE_SELECT */ | |
1945 #endif /* not VMS */ | |
1946 | |
1947 immediate_quit = 0; | |
1948 #endif /* no subprocesses */ | |
1949 | |
1950 return Qnil; | |
1951 } | |
1952 | |
650 | 1953 /* This is just like wait_reading_process_input, except that |
1954 it does the redisplay. | |
1955 | |
1956 It's also just like Fsit_for, except that it can be used for | |
1957 waiting for input as well. */ | |
1958 | |
1959 Lisp_Object | |
1960 sit_for (sec, usec, reading, display) | |
1961 int sec, usec, reading, display; | |
314 | 1962 { |
650 | 1963 Lisp_Object read_kbd; |
314 | 1964 |
1965 if (detect_input_pending ()) | |
1966 return Qnil; | |
650 | 1967 |
1968 if (display) | |
314 | 1969 redisplay_preserve_echo_area (); |
1970 | |
673 | 1971 if (sec == 0 && usec == 0) |
1972 return Qt; | |
1973 | |
314 | 1974 #ifdef SIGIO |
1915
98ecf99d7b1a
* dispnew.c (sit_for): Pass the correct number of arguments to
Jim Blandy <jimb@redhat.com>
parents:
1872
diff
changeset
|
1975 gobble_input (0); |
650 | 1976 #endif |
1977 | |
1978 XSET (read_kbd, Lisp_Int, reading ? -1 : 1); | |
1979 wait_reading_process_input (sec, usec, read_kbd, display); | |
1980 | |
587 | 1981 |
2288
c6f3343edee1
Do * dispnew.c (sit_for): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
2252
diff
changeset
|
1982 /* wait_reading_process_input should always be available now; it is |
c6f3343edee1
Do * dispnew.c (sit_for): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
2252
diff
changeset
|
1983 simulated in a simple way on systems that don't support |
c6f3343edee1
Do * dispnew.c (sit_for): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
2252
diff
changeset
|
1984 subprocesses. */ |
c6f3343edee1
Do * dispnew.c (sit_for): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
2252
diff
changeset
|
1985 #if 0 |
c6f3343edee1
Do * dispnew.c (sit_for): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
2252
diff
changeset
|
1986 /* No wait_reading_process_input available. */ |
314 | 1987 immediate_quit = 1; |
1988 QUIT; | |
1989 | |
1990 waitchannels = 1; | |
1991 #ifdef VMS | |
650 | 1992 input_wait_timeout (XINT (arg)); |
314 | 1993 #else /* not VMS */ |
587 | 1994 #ifndef HAVE_TIMEVAL |
1995 timeout_sec = sec; | |
1996 select (1, &waitchannels, 0, 0, &timeout_sec); | |
1997 #else /* HAVE_TIMEVAL */ | |
1998 timeout.tv_sec = sec; | |
1999 timeout.tv_usec = usec; | |
314 | 2000 select (1, &waitchannels, 0, 0, &timeout); |
587 | 2001 #endif /* HAVE_TIMEVAL */ |
314 | 2002 #endif /* not VMS */ |
2003 | |
2004 immediate_quit = 0; | |
587 | 2005 #endif |
314 | 2006 |
2007 return detect_input_pending () ? Qnil : Qt; | |
2008 } | |
2009 | |
650 | 2010 DEFUN ("sit-for", Fsit_for, Ssit_for, 1, 3, 0, |
2291
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
2011 "Perform redisplay, then wait for SECONDS seconds or until input is available.\n\ |
2648 | 2012 SECONDS may be a floating-point value, meaning that you can wait for a\n\ |
2013 fraction of a second. Optional second arg MILLISECONDS specifies an\n\ | |
2014 additional wait period, in milliseconds; this may be useful if your\n\ | |
2015 Emacs was built without floating point support.\n\ | |
2016 \(Not all operating systems support waiting for a fraction of a second.)\n\ | |
650 | 2017 Optional third arg non-nil means don't redisplay, just wait for input.\n\ |
2018 Redisplay is preempted as always if input arrives, and does not happen\n\ | |
2019 if input is available before it starts.\n\ | |
2020 Value is t if waited the full time with no input arriving.") | |
2291
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
2021 (seconds, milliseconds, nodisp) |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
2022 Lisp_Object seconds, milliseconds, nodisp; |
650 | 2023 { |
2291
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
2024 int sec, usec; |
650 | 2025 |
2291
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
2026 if (NILP (milliseconds)) |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
2027 XSET (milliseconds, Lisp_Int, 0); |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
2028 else |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
2029 CHECK_NUMBER (milliseconds, 1); |
2648 | 2030 usec = XINT (milliseconds) * 1000; |
2031 | |
2032 #ifdef LISP_FLOAT_TYPE | |
2033 { | |
2034 double duration = extract_float (seconds); | |
2035 sec = (int) duration; | |
2036 usec += (duration - sec) * 1000000; | |
2037 } | |
2038 #else | |
2039 CHECK_NUMBER (seconds, 0); | |
2040 sec = XINT (seconds); | |
2041 #endif | |
2291
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
2042 |
650 | 2043 #ifndef EMACS_HAS_USECS |
2291
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
2044 if (usec != 0 && sec == 0) |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
2045 error ("millisecond `sit-for' not supported on %s", SYSTEM_TYPE); |
650 | 2046 #endif |
2047 | |
2048 return sit_for (sec, usec, 0, NILP (nodisp)); | |
2049 } | |
314 | 2050 |
2051 char *terminal_type; | |
2052 | |
2053 /* Initialization done when Emacs fork is started, before doing stty. */ | |
2054 /* Determine terminal type and set terminal_driver */ | |
2055 /* Then invoke its decoding routine to set up variables | |
2056 in the terminal package */ | |
2057 | |
2058 init_display () | |
2059 { | |
2060 #ifdef HAVE_X_WINDOWS | |
2061 extern int display_arg; | |
2062 #endif | |
2063 | |
2064 meta_key = 0; | |
2065 inverse_video = 0; | |
2066 cursor_in_echo_area = 0; | |
2067 terminal_type = (char *) 0; | |
2068 | |
2339
a302de11debf
* dispnew.c (init_display): Initialize Vwindow_system.
Jim Blandy <jimb@redhat.com>
parents:
2292
diff
changeset
|
2069 /* Now is the time to initialize this; it's used by init_sys_modes |
a302de11debf
* dispnew.c (init_display): Initialize Vwindow_system.
Jim Blandy <jimb@redhat.com>
parents:
2292
diff
changeset
|
2070 during startup. */ |
a302de11debf
* dispnew.c (init_display): Initialize Vwindow_system.
Jim Blandy <jimb@redhat.com>
parents:
2292
diff
changeset
|
2071 Vwindow_system = Qnil; |
314 | 2072 |
2339
a302de11debf
* dispnew.c (init_display): Initialize Vwindow_system.
Jim Blandy <jimb@redhat.com>
parents:
2292
diff
changeset
|
2073 /* If the user wants to use a window system, we shouldn't bother |
a302de11debf
* dispnew.c (init_display): Initialize Vwindow_system.
Jim Blandy <jimb@redhat.com>
parents:
2292
diff
changeset
|
2074 initializing the terminal. This is especially important when the |
a302de11debf
* dispnew.c (init_display): Initialize Vwindow_system.
Jim Blandy <jimb@redhat.com>
parents:
2292
diff
changeset
|
2075 terminal is so dumb that emacs gives up before and doesn't bother |
a302de11debf
* dispnew.c (init_display): Initialize Vwindow_system.
Jim Blandy <jimb@redhat.com>
parents:
2292
diff
changeset
|
2076 using the window system. |
a302de11debf
* dispnew.c (init_display): Initialize Vwindow_system.
Jim Blandy <jimb@redhat.com>
parents:
2292
diff
changeset
|
2077 |
a302de11debf
* dispnew.c (init_display): Initialize Vwindow_system.
Jim Blandy <jimb@redhat.com>
parents:
2292
diff
changeset
|
2078 If the DISPLAY environment variable is set, try to use X, and die |
a302de11debf
* dispnew.c (init_display): Initialize Vwindow_system.
Jim Blandy <jimb@redhat.com>
parents:
2292
diff
changeset
|
2079 with an error message if that doesn't work. */ |
314 | 2080 |
2081 #ifdef HAVE_X_WINDOWS | |
2359
90a5f91329f3
* dispnew.c (init_display): Get display name from environment
Jim Blandy <jimb@redhat.com>
parents:
2339
diff
changeset
|
2082 if (! display_arg) |
90a5f91329f3
* dispnew.c (init_display): Get display name from environment
Jim Blandy <jimb@redhat.com>
parents:
2339
diff
changeset
|
2083 { |
90a5f91329f3
* dispnew.c (init_display): Get display name from environment
Jim Blandy <jimb@redhat.com>
parents:
2339
diff
changeset
|
2084 #ifdef VMS |
2511
4fc5338ebb8f
* dispnew.c (getenv): Extern declaration deleted; this is done in
Jim Blandy <jimb@redhat.com>
parents:
2439
diff
changeset
|
2085 display_arg = (getenv ("DECW$DISPLAY") != 0); |
2359
90a5f91329f3
* dispnew.c (init_display): Get display name from environment
Jim Blandy <jimb@redhat.com>
parents:
2339
diff
changeset
|
2086 #else |
2511
4fc5338ebb8f
* dispnew.c (getenv): Extern declaration deleted; this is done in
Jim Blandy <jimb@redhat.com>
parents:
2439
diff
changeset
|
2087 display_arg = (getenv ("DISPLAY") != 0); |
2359
90a5f91329f3
* dispnew.c (init_display): Get display name from environment
Jim Blandy <jimb@redhat.com>
parents:
2339
diff
changeset
|
2088 #endif |
2364 | 2089 } |
2359
90a5f91329f3
* dispnew.c (init_display): Get display name from environment
Jim Blandy <jimb@redhat.com>
parents:
2339
diff
changeset
|
2090 |
90a5f91329f3
* dispnew.c (init_display): Get display name from environment
Jim Blandy <jimb@redhat.com>
parents:
2339
diff
changeset
|
2091 if (!inhibit_window_system && display_arg) |
314 | 2092 { |
2093 Vwindow_system = intern ("x"); | |
2094 #ifdef HAVE_X11 | |
2095 Vwindow_system_version = make_number (11); | |
2096 #else | |
2097 Vwindow_system_version = make_number (10); | |
2098 #endif | |
2099 return; | |
2100 } | |
2101 #endif /* HAVE_X_WINDOWS */ | |
2102 | |
2103 /* If no window system has been specified, try to use the terminal. */ | |
2104 if (! isatty (0)) | |
2105 { | |
2106 fprintf (stderr, "emacs: standard input is not a tty\n"); | |
2107 exit (1); | |
2108 } | |
2109 | |
2110 /* Look at the TERM variable */ | |
2111 terminal_type = (char *) getenv ("TERM"); | |
2112 if (!terminal_type) | |
2113 { | |
2114 #ifdef VMS | |
2115 fprintf (stderr, "Please specify your terminal type.\n\ | |
2116 For types defined in VMS, use set term /device=TYPE.\n\ | |
2117 For types not defined in VMS, use define emacs_term \"TYPE\".\n\ | |
2118 \(The quotation marks are necessary since terminal types are lower case.)\n"); | |
2119 #else | |
2120 fprintf (stderr, "Please set the environment variable TERM; see tset(1).\n"); | |
2121 #endif | |
2122 exit (1); | |
2123 } | |
2124 | |
2125 #ifdef VMS | |
2126 /* VMS DCL tends to upcase things, so downcase term type. | |
2127 Hardly any uppercase letters in terminal types; should be none. */ | |
2128 { | |
2129 char *new = (char *) xmalloc (strlen (terminal_type) + 1); | |
2130 char *p; | |
2131 | |
2132 strcpy (new, terminal_type); | |
2133 | |
2134 for (p = new; *p; p++) | |
2135 if (isupper (*p)) | |
2136 *p = tolower (*p); | |
2137 | |
2138 terminal_type = new; | |
2139 } | |
2140 #endif | |
2141 | |
2142 term_init (terminal_type); | |
2143 | |
764 | 2144 remake_frame_glyphs (selected_frame); |
2145 calculate_costs (selected_frame); | |
314 | 2146 |
2147 /* X and Y coordinates of the cursor between updates. */ | |
764 | 2148 FRAME_CURSOR_X (selected_frame) = 0; |
2149 FRAME_CURSOR_Y (selected_frame) = 0; | |
314 | 2150 |
2151 #ifdef SIGWINCH | |
2152 #ifndef CANNOT_DUMP | |
2153 if (initialized) | |
2154 #endif /* CANNOT_DUMP */ | |
2155 signal (SIGWINCH, window_change_signal); | |
2156 #endif /* SIGWINCH */ | |
2157 } | |
2158 | |
2159 syms_of_display () | |
2160 { | |
764 | 2161 #ifdef MULTI_FRAME |
2162 defsubr (&Sredraw_frame); | |
314 | 2163 #endif |
2164 defsubr (&Sredraw_display); | |
2165 defsubr (&Sopen_termscript); | |
2166 defsubr (&Sding); | |
2167 defsubr (&Ssit_for); | |
2168 defsubr (&Ssleep_for); | |
2169 defsubr (&Ssend_string_to_terminal); | |
2170 | |
2171 DEFVAR_INT ("baud-rate", &baud_rate, | |
2172 "The output baud rate of the terminal.\n\ | |
2173 On most systems, changing this value will affect the amount of padding\n\ | |
2174 and the other strategic decisions made during redisplay."); | |
2175 DEFVAR_BOOL ("inverse-video", &inverse_video, | |
764 | 2176 "*Non-nil means invert the entire frame display.\n\ |
314 | 2177 This means everything is in inverse video which otherwise would not be."); |
2178 DEFVAR_BOOL ("visible-bell", &visible_bell, | |
764 | 2179 "*Non-nil means try to flash the frame to represent a bell."); |
314 | 2180 DEFVAR_BOOL ("no-redraw-on-reenter", &no_redraw_on_reenter, |
764 | 2181 "*Non-nil means no need to redraw entire frame after suspending.\n\ |
314 | 2182 A non-nil value is useful if the terminal can automatically preserve\n\ |
764 | 2183 Emacs's frame display when you reenter Emacs.\n\ |
314 | 2184 It is up to you to set this variable if your terminal can do that."); |
2185 DEFVAR_LISP ("window-system", &Vwindow_system, | |
2186 "A symbol naming the window-system under which Emacs is running\n\ | |
2187 \(such as `x'), or nil if emacs is running on an ordinary terminal."); | |
2188 DEFVAR_LISP ("window-system-version", &Vwindow_system_version, | |
2189 "The version number of the window system in use.\n\ | |
2190 For X windows, this is 10 or 11."); | |
2191 DEFVAR_BOOL ("cursor-in-echo-area", &cursor_in_echo_area, | |
2192 "Non-nil means put cursor in minibuffer, at end of any message there."); | |
2193 DEFVAR_LISP ("glyph-table", &Vglyph_table, | |
764 | 2194 "Table defining how to output a glyph code to the frame.\n\ |
314 | 2195 If not nil, this is a vector indexed by glyph code to define the glyph.\n\ |
2196 Each element can be:\n\ | |
2197 integer: a glyph code which this glyph is an alias for.\n\ | |
2198 string: output this glyph using that string (not impl. in X windows).\n\ | |
2199 nil: this glyph mod 256 is char code to output,\n\ | |
2200 and this glyph / 256 is face code for X windows (see `x-set-face')."); | |
2201 Vglyph_table = Qnil; | |
2202 | |
2203 DEFVAR_LISP ("standard-display-table", &Vstandard_display_table, | |
2204 "Display table to use for buffers that specify none.\n\ | |
2205 See `buffer-display-table' for more information."); | |
2206 Vstandard_display_table = Qnil; | |
2207 | |
2208 /* Initialize `window-system', unless init_display already decided it. */ | |
2209 #ifdef CANNOT_DUMP | |
2210 if (noninteractive) | |
2211 #endif | |
2212 { | |
2213 Vwindow_system = Qnil; | |
2214 Vwindow_system_version = Qnil; | |
2215 } | |
2216 } | |
2217 |