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