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