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