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