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