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