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