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