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