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