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