Mercurial > emacs
annotate src/xdisp.c @ 1724:2dccfada2107
(visit-tags-table-buffer): When picking a table and using tags-table-list,
skip over nonexistent files in the list.
author | Roland McGrath <roland@gnu.org> |
---|---|
date | Thu, 24 Dec 1992 22:42:05 +0000 |
parents | f80c1f73f5b9 |
children | 19755499df90 |
rev | line source |
---|---|
277 | 1 /* Display generation from window structure and buffer text. |
574 | 2 Copyright (C) 1985, 1986, 1987, 1988, 1992 Free Software Foundation, Inc. |
277 | 3 |
4 This file is part of GNU Emacs. | |
5 | |
6 GNU Emacs is free software; you can redistribute it and/or modify | |
7 it under the terms of the GNU General Public License as published by | |
8 the Free Software Foundation; either version 1, or (at your option) | |
9 any later version. | |
10 | |
11 GNU Emacs is distributed in the hope that it will be useful, | |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 GNU General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
17 along with GNU Emacs; see the file COPYING. If not, write to | |
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
19 | |
20 | |
21 #include "config.h" | |
22 #include <stdio.h> | |
23 /*#include <ctype.h>*/ | |
24 #undef NULL | |
25 #include "lisp.h" | |
769 | 26 #include "frame.h" |
277 | 27 #include "window.h" |
28 #include "termchar.h" | |
29 #include "dispextern.h" | |
30 #include "buffer.h" | |
31 #include "indent.h" | |
32 #include "commands.h" | |
33 #include "macros.h" | |
34 #include "disptab.h" | |
1718
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
35 #include "termhooks.h" |
277 | 36 |
37 extern int interrupt_input; | |
38 extern int command_loop_level; | |
39 | |
40 /* Nonzero means print newline before next minibuffer message. */ | |
41 | |
42 int noninteractive_need_newline; | |
43 | |
44 #define min(a, b) ((a) < (b) ? (a) : (b)) | |
45 #define max(a, b) ((a) > (b) ? (a) : (b)) | |
46 | |
47 /* The buffer position of the first character appearing | |
769 | 48 entirely or partially on the current frame line. |
49 Or zero, which disables the optimization for the current frame line. */ | |
277 | 50 static int this_line_bufpos; |
51 | |
52 /* Number of characters past the end of this line, | |
53 including the terminating newline */ | |
54 static int this_line_endpos; | |
55 | |
769 | 56 /* The vertical position of this frame line. */ |
277 | 57 static int this_line_vpos; |
58 | |
769 | 59 /* Hpos value for start of display on this frame line. |
277 | 60 Usually zero, but negative if first character really began |
61 on previous line */ | |
62 static int this_line_start_hpos; | |
63 | |
64 /* Buffer that this_line variables are describing. */ | |
65 static struct buffer *this_line_buffer; | |
66 | |
67 /* Set by try_window_id to the vpos of first of any lines | |
769 | 68 scrolled on to the bottom of the frame. These lines should |
277 | 69 not be included in any general scroll computation. */ |
70 static int scroll_bottom_vpos; | |
71 | |
72 /* Value of echo_area_glyphs when it was last acted on. | |
769 | 73 If this is nonzero, there is a message on the frame |
277 | 74 in the minibuffer and it should be erased as soon |
75 as it is no longer requested to appear. */ | |
76 char *previous_echo_glyphs; | |
77 | |
769 | 78 /* Nonzero means truncate lines in all windows less wide than the frame */ |
277 | 79 int truncate_partial_width_windows; |
80 | |
81 Lisp_Object Vglobal_mode_string; | |
82 | |
83 /* Marker for where to display an arrow on top of the buffer text. */ | |
84 Lisp_Object Voverlay_arrow_position; | |
85 | |
86 /* String to display for the arrow. */ | |
87 Lisp_Object Voverlay_arrow_string; | |
88 | |
89 /* Values of those variables at last redisplay. */ | |
1527
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
90 static Lisp_Object last_arrow_position, last_arrow_string; |
277 | 91 |
92 /* Nonzero if overlay arrow has been displayed once in this window. */ | |
93 static int overlay_arrow_seen; | |
94 | |
769 | 95 /* If cursor motion alone moves point off frame, |
277 | 96 Try scrolling this many lines up or down if that will bring it back. */ |
97 int scroll_step; | |
98 | |
99 /* Nonzero if try_window_id has made blank lines at window bottom | |
100 since the last redisplay that paused */ | |
101 static int blank_end_of_window; | |
102 | |
103 /* Number of windows showing the buffer of the selected window. | |
104 keyboard.c refers to this. */ | |
105 int buffer_shared; | |
106 | |
769 | 107 /* display_text_line sets these to the frame position (origin 0) of point, |
277 | 108 whether the window is selected or not. |
109 Set one to -1 first to determine whether point was found afterwards. */ | |
110 | |
111 static int cursor_vpos; | |
112 static int cursor_hpos; | |
113 | |
114 int debug_end_pos; | |
115 | |
116 /* Nonzero means display mode line highlighted */ | |
117 int mode_line_inverse_video; | |
118 | |
119 static void echo_area_display (); | |
120 void mark_window_display_accurate (); | |
121 static void redisplay_windows (); | |
122 static void redisplay_window (); | |
123 static void try_window (); | |
124 static int try_window_id (); | |
125 static struct position *display_text_line (); | |
126 static void display_mode_line (); | |
127 static int display_mode_element (); | |
128 static char *fmodetrunc (); | |
129 static char *decode_mode_spec (); | |
130 static int display_string (); | |
131 | |
132 /* Prompt to display in front of the minibuffer contents */ | |
133 char *minibuf_prompt; | |
134 | |
135 /* Width in columns of current minibuffer prompt. */ | |
136 int minibuf_prompt_width; | |
137 | |
138 /* Message to display instead of minibuffer contents | |
139 This is what the functions error and message make, | |
140 and command echoing uses it as well. | |
141 It overrides the minibuf_prompt as well as the buffer. */ | |
142 char *echo_area_glyphs; | |
143 | |
144 /* true iff we should redraw the mode lines on the next redisplay */ | |
145 int update_mode_lines; | |
146 | |
147 /* Smallest number of characters before the gap | |
148 at any time since last redisplay that finished. | |
149 Valid for current buffer when try_window_id can be called. */ | |
150 int beg_unchanged; | |
151 | |
152 /* Smallest number of characters after the gap | |
153 at any time since last redisplay that finished. | |
154 Valid for current buffer when try_window_id can be called. */ | |
155 int end_unchanged; | |
156 | |
157 /* MODIFF as of last redisplay that finished; | |
158 if it matches MODIFF, beg_unchanged and end_unchanged | |
159 contain no useful information */ | |
160 int unchanged_modified; | |
161 | |
162 /* Nonzero if head_clip or tail_clip of current buffer has changed | |
163 since last redisplay that finished */ | |
164 int clip_changed; | |
165 | |
166 /* Nonzero if window sizes or contents have changed | |
167 since last redisplay that finished */ | |
168 int windows_or_buffers_changed; | |
169 | |
170 | |
1527
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
171 /* Specify m, a string, as a message in the minibuf. If m is 0, clear out |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
172 any existing message, and let the minibuffer text show through. */ |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
173 void |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
174 message1 (m) |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
175 char *m; |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
176 { |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
177 if (noninteractive) |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
178 { |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
179 if (noninteractive_need_newline) |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
180 putc ('\n', stderr); |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
181 noninteractive_need_newline = 0; |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
182 fprintf (stderr, "%s\n", m); |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
183 fflush (stderr); |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
184 } |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
185 /* A null message buffer means that the frame hasn't really been |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
186 initialized yet. Error messages get reported properly by |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
187 cmd_error, so this must be just an informative message; toss it. */ |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
188 else if (INTERACTIVE && FRAME_MESSAGE_BUF (selected_frame)) |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
189 { |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
190 #ifdef MULTI_FRAME |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
191 Lisp_Object minibuf_frame; |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
192 |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
193 choose_minibuf_frame (); |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
194 minibuf_frame = WINDOW_FRAME (XWINDOW (minibuf_window)); |
1656
a532c5a23984
* xdisp.c (redisplay): Call FRAME_SAMPLE_VISIBILITY to set the
Jim Blandy <jimb@redhat.com>
parents:
1600
diff
changeset
|
195 FRAME_SAMPLE_VISIBILITY (XFRAME (minibuf_frame)); |
1527
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
196 if (FRAME_VISIBLE_P (selected_frame) |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
197 && ! FRAME_VISIBLE_P (XFRAME (minibuf_frame))) |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
198 Fmake_frame_visible (WINDOW_FRAME (XWINDOW (minibuf_window))); |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
199 #endif |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
200 |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
201 if (m) |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
202 echo_area_glyphs = m; |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
203 else |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
204 echo_area_glyphs = previous_echo_glyphs = 0; |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
205 |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
206 do_pending_window_change (); |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
207 echo_area_display (); |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
208 update_frame (XFRAME (XWINDOW (minibuf_window)->frame), 1, 1); |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
209 do_pending_window_change (); |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
210 } |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
211 } |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
212 |
769 | 213 /* Nonzero if FRAME_MESSAGE_BUF (selected_frame) is being used by print; |
331 | 214 zero if being used by message. */ |
215 int message_buf_print; | |
216 | |
1446
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
217 /* Dump an informative message to the minibuf. If m is 0, clear out |
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
218 any existing message, and let the minibuffer text show through. */ |
277 | 219 /* VARARGS 1 */ |
220 void | |
221 message (m, a1, a2, a3) | |
222 char *m; | |
223 { | |
224 if (noninteractive) | |
225 { | |
1446
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
226 if (m) |
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
227 { |
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
228 if (noninteractive_need_newline) |
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
229 putc ('\n', stderr); |
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
230 noninteractive_need_newline = 0; |
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
231 fprintf (stderr, m, a1, a2, a3); |
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
232 fprintf (stderr, "\n"); |
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
233 fflush (stderr); |
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
234 } |
277 | 235 } |
769 | 236 /* A null message buffer means that the frame hasn't really been |
433 | 237 initialized yet. Error messages get reported properly by |
238 cmd_error, so this must be just an informative message; toss it. */ | |
769 | 239 else if (INTERACTIVE && FRAME_MESSAGE_BUF (selected_frame)) |
277 | 240 { |
1446
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
241 if (m) |
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
242 { |
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
243 { |
277 | 244 #ifdef NO_ARG_ARRAY |
1446
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
245 int a[3]; |
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
246 a[0] = a1; |
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
247 a[1] = a2; |
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
248 a[2] = a3; |
277 | 249 |
1446
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
250 doprnt (FRAME_MESSAGE_BUF (selected_frame), |
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
251 FRAME_WIDTH (selected_frame), m, 0, 3, a); |
277 | 252 #else |
1446
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
253 doprnt (FRAME_MESSAGE_BUF (selected_frame), |
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
254 FRAME_WIDTH (selected_frame), m, 0, 3, &a1); |
368 | 255 #endif /* NO_ARG_ARRAY */ |
1446
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
256 } |
277 | 257 |
1527
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
258 message1 (FRAME_MESSAGE_BUF (selected_frame)); |
1446
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
259 } |
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
260 else |
1527
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
261 message1 (0); |
331 | 262 |
263 /* Print should start at the beginning of the message | |
264 buffer next time. */ | |
265 message_buf_print = 0; | |
277 | 266 } |
267 } | |
268 | |
269 static void | |
270 echo_area_display () | |
271 { | |
272 register int vpos; | |
769 | 273 FRAME_PTR f; |
277 | 274 |
769 | 275 #ifdef MULTI_FRAME |
276 choose_minibuf_frame (); | |
277 f = XFRAME (WINDOW_FRAME (XWINDOW (minibuf_window))); | |
277 | 278 |
769 | 279 if (! FRAME_VISIBLE_P (f)) |
277 | 280 return; |
281 #endif | |
282 | |
769 | 283 if (frame_garbaged) |
277 | 284 { |
285 Fredraw_display (); | |
769 | 286 frame_garbaged = 0; |
277 | 287 } |
288 | |
289 if (echo_area_glyphs || minibuf_level == 0) | |
290 { | |
291 vpos = XFASTINT (XWINDOW (minibuf_window)->top); | |
769 | 292 get_display_line (f, vpos, 0); |
277 | 293 display_string (XWINDOW (minibuf_window), vpos, |
294 echo_area_glyphs ? echo_area_glyphs : "", | |
769 | 295 0, 0, 0, FRAME_WIDTH (f)); |
277 | 296 |
297 /* If desired cursor location is on this line, put it at end of text */ | |
769 | 298 if (FRAME_CURSOR_Y (f) == vpos) |
299 FRAME_CURSOR_X (f) = FRAME_DESIRED_GLYPHS (f)->used[vpos]; | |
727 | 300 |
301 /* Fill the rest of the minibuffer window with blank lines. */ | |
302 { | |
303 int i; | |
304 | |
305 for (i = vpos + 1; i < vpos + XWINDOW (minibuf_window)->height; i++) | |
306 { | |
769 | 307 get_display_line (f, i, 0); |
727 | 308 display_string (XWINDOW (minibuf_window), vpos, |
769 | 309 "", 0, 0, 0, FRAME_WIDTH (f)); |
727 | 310 } |
311 } | |
277 | 312 } |
313 else if (!EQ (minibuf_window, selected_window)) | |
314 windows_or_buffers_changed++; | |
315 | |
316 if (EQ (minibuf_window, selected_window)) | |
317 this_line_bufpos = 0; | |
318 | |
319 previous_echo_glyphs = echo_area_glyphs; | |
320 } | |
321 | |
769 | 322 /* Do a frame update, taking possible shortcuts into account. |
277 | 323 This is the main external entry point for redisplay. |
324 | |
325 If the last redisplay displayed an echo area message and that | |
326 message is no longer requested, we clear the echo area | |
327 or bring back the minibuffer if that is in use. | |
328 | |
329 Everyone would like to have a hook here to call eval, | |
330 but that cannot be done safely without a lot of changes elsewhere. | |
331 This can be called from signal handlers; with alarms set up; | |
332 or with synchronous processes running. | |
333 See the function `echo' in keyboard.c. | |
334 See Fcall_process; if you called it from here, it could be | |
335 entered recursively. */ | |
336 | |
337 void | |
338 redisplay () | |
339 { | |
340 register struct window *w = XWINDOW (selected_window); | |
341 register int pause; | |
342 int must_finish = 0; | |
343 int all_windows; | |
344 register int tlbufpos, tlendpos; | |
345 struct position pos; | |
346 extern int input_pending; | |
347 | |
348 if (noninteractive) | |
349 return; | |
350 | |
1656
a532c5a23984
* xdisp.c (redisplay): Call FRAME_SAMPLE_VISIBILITY to set the
Jim Blandy <jimb@redhat.com>
parents:
1600
diff
changeset
|
351 /* Set the visible flags for all frames. |
a532c5a23984
* xdisp.c (redisplay): Call FRAME_SAMPLE_VISIBILITY to set the
Jim Blandy <jimb@redhat.com>
parents:
1600
diff
changeset
|
352 Do this before checking for resized or garbaged frames; they want |
a532c5a23984
* xdisp.c (redisplay): Call FRAME_SAMPLE_VISIBILITY to set the
Jim Blandy <jimb@redhat.com>
parents:
1600
diff
changeset
|
353 to know if their frames are visible. |
a532c5a23984
* xdisp.c (redisplay): Call FRAME_SAMPLE_VISIBILITY to set the
Jim Blandy <jimb@redhat.com>
parents:
1600
diff
changeset
|
354 See the comment in frame.h for FRAME_SAMPLE_VISIBILITY. */ |
a532c5a23984
* xdisp.c (redisplay): Call FRAME_SAMPLE_VISIBILITY to set the
Jim Blandy <jimb@redhat.com>
parents:
1600
diff
changeset
|
355 { |
a532c5a23984
* xdisp.c (redisplay): Call FRAME_SAMPLE_VISIBILITY to set the
Jim Blandy <jimb@redhat.com>
parents:
1600
diff
changeset
|
356 Lisp_Object tail; |
a532c5a23984
* xdisp.c (redisplay): Call FRAME_SAMPLE_VISIBILITY to set the
Jim Blandy <jimb@redhat.com>
parents:
1600
diff
changeset
|
357 FRAME_PTR f; |
a532c5a23984
* xdisp.c (redisplay): Call FRAME_SAMPLE_VISIBILITY to set the
Jim Blandy <jimb@redhat.com>
parents:
1600
diff
changeset
|
358 |
a532c5a23984
* xdisp.c (redisplay): Call FRAME_SAMPLE_VISIBILITY to set the
Jim Blandy <jimb@redhat.com>
parents:
1600
diff
changeset
|
359 FOR_EACH_FRAME (tail, f) |
a532c5a23984
* xdisp.c (redisplay): Call FRAME_SAMPLE_VISIBILITY to set the
Jim Blandy <jimb@redhat.com>
parents:
1600
diff
changeset
|
360 FRAME_SAMPLE_VISIBILITY (f); |
a532c5a23984
* xdisp.c (redisplay): Call FRAME_SAMPLE_VISIBILITY to set the
Jim Blandy <jimb@redhat.com>
parents:
1600
diff
changeset
|
361 } |
a532c5a23984
* xdisp.c (redisplay): Call FRAME_SAMPLE_VISIBILITY to set the
Jim Blandy <jimb@redhat.com>
parents:
1600
diff
changeset
|
362 |
769 | 363 /* Notice any pending interrupt request to change frame size. */ |
277 | 364 do_pending_window_change (); |
365 | |
769 | 366 if (frame_garbaged) |
277 | 367 { |
368 Fredraw_display (); | |
769 | 369 frame_garbaged = 0; |
277 | 370 } |
371 | |
368 | 372 /* Normally the message* functions will have already displayed and |
769 | 373 updated the echo area, but the frame may have been trashed, or |
368 | 374 the update may have been preempted, so display the echo area |
375 again here. */ | |
277 | 376 if (echo_area_glyphs || previous_echo_glyphs) |
377 { | |
378 echo_area_display (); | |
379 must_finish = 1; | |
380 } | |
381 | |
382 if (clip_changed || windows_or_buffers_changed) | |
383 update_mode_lines++; | |
384 | |
385 /* Detect case that we need to write a star in the mode line. */ | |
386 if (XFASTINT (w->last_modified) < MODIFF | |
387 && XFASTINT (w->last_modified) <= current_buffer->save_modified) | |
388 { | |
389 w->update_mode_line = Qt; | |
390 if (buffer_shared > 1) | |
391 update_mode_lines++; | |
392 } | |
393 | |
769 | 394 FRAME_SCROLL_BOTTOM_VPOS (XFRAME (w->frame)) = -1; |
277 | 395 |
396 all_windows = update_mode_lines || buffer_shared > 1; | |
397 | |
398 /* If specs for an arrow have changed, do thorough redisplay | |
399 to ensure we remove any arrow that should no longer exist. */ | |
1527
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
400 if (! EQ (Voverlay_arrow_position, last_arrow_position) |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
401 || ! EQ (Voverlay_arrow_string, last_arrow_string)) |
277 | 402 all_windows = 1, clip_changed = 1; |
403 | |
404 tlbufpos = this_line_bufpos; | |
405 tlendpos = this_line_endpos; | |
485 | 406 if (!all_windows && tlbufpos > 0 && NILP (w->update_mode_line) |
769 | 407 && FRAME_VISIBLE_P (XFRAME (w->frame)) |
277 | 408 /* Make sure recorded data applies to current buffer, etc */ |
409 && this_line_buffer == current_buffer | |
410 && current_buffer == XBUFFER (w->buffer) | |
485 | 411 && NILP (w->force_start) |
277 | 412 /* Point must be on the line that we have info recorded about */ |
413 && point >= tlbufpos | |
414 && point <= Z - tlendpos | |
415 /* All text outside that line, including its final newline, | |
416 must be unchanged */ | |
417 && (XFASTINT (w->last_modified) >= MODIFF | |
418 || (beg_unchanged >= tlbufpos - 1 | |
419 && GPT >= tlbufpos | |
528 | 420 /* If selective display, can't optimize |
421 if the changes start at the beginning of the line. */ | |
422 && ((XTYPE (current_buffer->selective_display) == Lisp_Int | |
423 && XINT (current_buffer->selective_display) > 0 | |
424 ? (beg_unchanged >= tlbufpos | |
425 && GPT > tlbufpos) | |
426 : 1)) | |
277 | 427 && end_unchanged >= tlendpos |
428 && Z - GPT >= tlendpos))) | |
429 { | |
430 if (tlbufpos > BEGV && FETCH_CHAR (tlbufpos - 1) != '\n' | |
431 && (tlbufpos == ZV | |
432 || FETCH_CHAR (tlbufpos) == '\n')) | |
433 /* Former continuation line has disappeared by becoming empty */ | |
434 goto cancel; | |
435 else if (XFASTINT (w->last_modified) < MODIFF | |
436 || MINI_WINDOW_P (w)) | |
437 { | |
438 cursor_vpos = -1; | |
439 overlay_arrow_seen = 0; | |
440 display_text_line (w, tlbufpos, this_line_vpos, this_line_start_hpos, | |
441 pos_tab_offset (w, tlbufpos)); | |
442 /* If line contains point, is not continued, | |
443 and ends at same distance from eob as before, we win */ | |
444 if (cursor_vpos >= 0 && this_line_bufpos | |
445 && this_line_endpos == tlendpos) | |
446 { | |
769 | 447 if (XFASTINT (w->width) != FRAME_WIDTH (XFRAME (WINDOW_FRAME (w)))) |
277 | 448 preserve_other_columns (w); |
449 goto update; | |
450 } | |
451 else | |
452 goto cancel; | |
453 } | |
454 else if (point == XFASTINT (w->last_point)) | |
455 { | |
456 if (!must_finish) | |
457 { | |
458 do_pending_window_change (); | |
459 return; | |
460 } | |
461 goto update; | |
462 } | |
463 else | |
464 { | |
465 pos = *compute_motion (tlbufpos, 0, | |
466 XINT (w->hscroll) ? 1 - XINT (w->hscroll) : 0, | |
467 point, 2, - (1 << (SHORTBITS - 1)), | |
468 XFASTINT (w->width) - 1 | |
469 - (XFASTINT (w->width) + XFASTINT (w->left) | |
769 | 470 != FRAME_WIDTH (selected_frame)), |
574 | 471 XINT (w->hscroll), |
472 pos_tab_offset (w, tlbufpos)); | |
277 | 473 if (pos.vpos < 1) |
474 { | |
769 | 475 FRAME_CURSOR_X (selected_frame) |
277 | 476 = XFASTINT (w->left) + max (pos.hpos, 0); |
769 | 477 FRAME_CURSOR_Y (selected_frame) = this_line_vpos; |
277 | 478 goto update; |
479 } | |
480 else | |
481 goto cancel; | |
482 } | |
483 cancel: | |
484 /* Text changed drastically or point moved off of line */ | |
769 | 485 cancel_line (this_line_vpos, selected_frame); |
277 | 486 } |
487 | |
488 this_line_bufpos = 0; | |
489 all_windows |= buffer_shared > 1; | |
490 | |
491 if (all_windows) | |
492 { | |
493 Lisp_Object tail; | |
1656
a532c5a23984
* xdisp.c (redisplay): Call FRAME_SAMPLE_VISIBILITY to set the
Jim Blandy <jimb@redhat.com>
parents:
1600
diff
changeset
|
494 FRAME_PTR f; |
277 | 495 |
496 /* Recompute # windows showing selected buffer. | |
433 | 497 This will be incremented each time such a window is displayed. */ |
277 | 498 buffer_shared = 0; |
499 | |
1656
a532c5a23984
* xdisp.c (redisplay): Call FRAME_SAMPLE_VISIBILITY to set the
Jim Blandy <jimb@redhat.com>
parents:
1600
diff
changeset
|
500 FOR_EACH_FRAME (tail, f) |
1718
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
501 { |
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
502 /* Mark all the scrollbars to be removed; we'll redeem the ones |
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
503 we want when we redisplay their windows. */ |
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
504 if (FRAME_HAS_VERTICAL_SCROLLBARS (f)) |
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
505 (*condemn_scrollbars_hook) (f); |
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
506 |
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
507 if (FRAME_VISIBLE_P (f)) |
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
508 redisplay_windows (FRAME_ROOT_WINDOW (f)); |
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
509 |
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
510 /* Any scrollbars which redisplay_windows should have nuked |
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
511 should now go away. */ |
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
512 if (FRAME_HAS_VERTICAL_SCROLLBARS (f)) |
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
513 (*judge_scrollbars_hook) (f); |
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
514 } |
277 | 515 } |
769 | 516 else if (FRAME_VISIBLE_P (selected_frame)) |
277 | 517 { |
518 redisplay_window (selected_window, 1); | |
769 | 519 if (XFASTINT (w->width) != FRAME_WIDTH (selected_frame)) |
277 | 520 preserve_other_columns (w); |
521 } | |
522 | |
523 update: | |
524 /* Prevent various kinds of signals during display update. | |
525 stdio is not robust about handling signals, | |
526 which can cause an apparent I/O error. */ | |
527 if (interrupt_input) | |
528 unrequest_sigio (); | |
529 stop_polling (); | |
530 | |
769 | 531 #ifdef MULTI_FRAME |
277 | 532 if (all_windows) |
533 { | |
534 Lisp_Object tail; | |
535 | |
536 pause = 0; | |
537 | |
769 | 538 for (tail = Vframe_list; CONSP (tail); tail = XCONS (tail)->cdr) |
277 | 539 { |
769 | 540 FRAME_PTR f; |
277 | 541 |
769 | 542 if (XTYPE (XCONS (tail)->car) != Lisp_Frame) |
277 | 543 continue; |
544 | |
769 | 545 f = XFRAME (XCONS (tail)->car); |
1718
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
546 if (FRAME_VISIBLE_P (f)) |
277 | 547 { |
769 | 548 pause |= update_frame (f, 0, 0); |
277 | 549 if (!pause) |
769 | 550 mark_window_display_accurate (f->root_window, 1); |
277 | 551 } |
552 } | |
553 } | |
554 else | |
769 | 555 #endif /* MULTI_FRAME */ |
368 | 556 { |
769 | 557 if (FRAME_VISIBLE_P (selected_frame)) |
558 pause = update_frame (selected_frame, 0, 0); | |
1656
a532c5a23984
* xdisp.c (redisplay): Call FRAME_SAMPLE_VISIBILITY to set the
Jim Blandy <jimb@redhat.com>
parents:
1600
diff
changeset
|
559 |
433 | 560 /* We may have called echo_area_display at the top of this |
769 | 561 function. If the echo area is on another frame, that may |
562 have put text on a frame other than the selected one, so the | |
563 above call to update_frame would not have caught it. Catch | |
433 | 564 it here. */ |
565 { | |
769 | 566 FRAME_PTR mini_frame = |
567 XFRAME (WINDOW_FRAME (XWINDOW (minibuf_window))); | |
433 | 568 |
769 | 569 if (mini_frame != selected_frame) |
570 pause |= update_frame (mini_frame, 0, 0); | |
433 | 571 } |
368 | 572 } |
277 | 573 |
769 | 574 /* If frame does not match, prevent doing single-line-update next time. |
277 | 575 Also, don't forget to check every line to update the arrow. */ |
576 if (pause) | |
577 { | |
578 this_line_bufpos = 0; | |
485 | 579 if (!NILP (last_arrow_position)) |
277 | 580 { |
581 last_arrow_position = Qt; | |
582 last_arrow_string = Qt; | |
583 } | |
769 | 584 /* If we pause after scrolling, some lines in current_frame |
277 | 585 may be null, so preserve_other_columns won't be able to |
586 preserve all the vertical-bar separators. So, avoid using it | |
587 in that case. */ | |
769 | 588 if (XFASTINT (w->width) != FRAME_WIDTH (selected_frame)) |
277 | 589 update_mode_lines = 1; |
590 } | |
591 | |
769 | 592 /* Now text on frame agrees with windows, so |
277 | 593 put info into the windows for partial redisplay to follow */ |
594 | |
595 if (!pause) | |
596 { | |
597 register struct buffer *b = XBUFFER (w->buffer); | |
598 | |
599 blank_end_of_window = 0; | |
600 clip_changed = 0; | |
601 unchanged_modified = BUF_MODIFF (b); | |
602 beg_unchanged = BUF_GPT (b) - BUF_BEG (b); | |
603 end_unchanged = BUF_Z (b) - BUF_GPT (b); | |
604 | |
605 XFASTINT (w->last_point) = BUF_PT (b); | |
769 | 606 XFASTINT (w->last_point_x) = FRAME_CURSOR_X (selected_frame); |
607 XFASTINT (w->last_point_y) = FRAME_CURSOR_Y (selected_frame); | |
277 | 608 |
609 if (all_windows) | |
1017
d42877206c0a
* xdisp.c (display_mode_line): Use x_implicitly_set_name here.
Jim Blandy <jimb@redhat.com>
parents:
973
diff
changeset
|
610 mark_window_display_accurate (FRAME_ROOT_WINDOW (selected_frame), 1); |
277 | 611 else |
612 { | |
613 w->update_mode_line = Qnil; | |
614 XFASTINT (w->last_modified) = BUF_MODIFF (b); | |
615 w->window_end_valid = Qt; | |
616 last_arrow_position = Voverlay_arrow_position; | |
617 last_arrow_string = Voverlay_arrow_string; | |
618 } | |
619 update_mode_lines = 0; | |
620 windows_or_buffers_changed = 0; | |
621 } | |
622 | |
623 /* Start SIGIO interrupts coming again. | |
624 Having them off during the code above | |
625 makes it less likely one will discard output, | |
626 but not impossible, since there might be stuff | |
627 in the system buffer here. | |
628 But it is much hairier to try to do anything about that. */ | |
629 | |
630 if (interrupt_input) | |
631 request_sigio (); | |
632 start_polling (); | |
633 | |
769 | 634 /* Change frame size now if a change is pending. */ |
277 | 635 do_pending_window_change (); |
636 } | |
637 | |
638 /* Redisplay, but leave alone any recent echo area message | |
639 unless another message has been requested in its place. | |
640 | |
641 This is useful in situations where you need to redisplay but no | |
642 user action has occurred, making it inappropriate for the message | |
643 area to be cleared. See tracking_off and | |
644 wait_reading_process_input for examples of these situations. */ | |
645 | |
646 redisplay_preserve_echo_area () | |
647 { | |
648 if (echo_area_glyphs == 0 && previous_echo_glyphs != 0) | |
649 { | |
650 echo_area_glyphs = previous_echo_glyphs; | |
651 redisplay (); | |
652 echo_area_glyphs = 0; | |
653 } | |
654 else | |
655 redisplay (); | |
656 } | |
657 | |
658 void | |
659 mark_window_display_accurate (window, flag) | |
660 Lisp_Object window; | |
661 int flag; | |
662 { | |
663 register struct window *w; | |
664 | |
485 | 665 for (;!NILP (window); window = w->next) |
277 | 666 { |
1527
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
667 if (XTYPE (window) != Lisp_Window) abort (); |
277 | 668 w = XWINDOW (window); |
669 | |
485 | 670 if (!NILP (w->buffer)) |
277 | 671 XFASTINT (w->last_modified) |
672 = !flag ? 0 | |
673 : XBUFFER (w->buffer) == current_buffer | |
674 ? MODIFF : BUF_MODIFF (XBUFFER (w->buffer)); | |
675 w->window_end_valid = Qt; | |
676 w->update_mode_line = Qnil; | |
677 | |
485 | 678 if (!NILP (w->vchild)) |
277 | 679 mark_window_display_accurate (w->vchild, flag); |
485 | 680 if (!NILP (w->hchild)) |
277 | 681 mark_window_display_accurate (w->hchild, flag); |
682 } | |
683 | |
684 if (flag) | |
685 { | |
686 last_arrow_position = Voverlay_arrow_position; | |
687 last_arrow_string = Voverlay_arrow_string; | |
688 } | |
689 else | |
690 { | |
691 /* t is unequal to any useful value of Voverlay_arrow_... */ | |
692 last_arrow_position = Qt; | |
693 last_arrow_string = Qt; | |
694 } | |
695 } | |
696 | |
697 int do_id = 1; | |
698 | |
699 static void | |
700 redisplay_windows (window) | |
701 Lisp_Object window; | |
702 { | |
485 | 703 for (; !NILP (window); window = XWINDOW (window)->next) |
277 | 704 redisplay_window (window, 0); |
705 } | |
706 | |
707 static void | |
708 redisplay_window (window, just_this_one) | |
709 Lisp_Object window; | |
710 int just_this_one; | |
711 { | |
712 register struct window *w = XWINDOW (window); | |
1718
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
713 FRAME_PTR f = XFRAME (WINDOW_FRAME (w)); |
277 | 714 int height; |
715 register int lpoint = point; | |
716 struct buffer *old = current_buffer; | |
717 register int width = XFASTINT (w->width) - 1 | |
1718
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
718 - (XFASTINT (w->width) + XFASTINT (w->left) != FRAME_WIDTH (f)); |
277 | 719 register int startp; |
720 register int hscroll = XINT (w->hscroll); | |
721 struct position pos; | |
722 int opoint; | |
723 int tem; | |
724 int window_needs_modeline; | |
725 | |
769 | 726 if (FRAME_HEIGHT (f) == 0) abort (); /* Some bug zeros some core */ |
277 | 727 |
728 /* If this is a combination window, do its children; that's all. */ | |
729 | |
485 | 730 if (!NILP (w->vchild)) |
277 | 731 { |
732 redisplay_windows (w->vchild); | |
733 return; | |
734 } | |
485 | 735 if (!NILP (w->hchild)) |
277 | 736 { |
737 redisplay_windows (w->hchild); | |
738 return; | |
739 } | |
485 | 740 if (NILP (w->buffer)) |
277 | 741 abort (); |
433 | 742 |
743 height = window_internal_height (w); | |
744 | |
745 if (MINI_WINDOW_P (w)) | |
746 { | |
747 if (w == XWINDOW (minibuf_window)) | |
748 { | |
749 if (echo_area_glyphs) | |
750 /* We've already displayed the echo area glyphs, if any. */ | |
751 return; | |
752 } | |
753 else | |
754 { | |
755 /* This is a minibuffer, but it's not the currently active one, so | |
756 clear it. */ | |
769 | 757 int vpos = XFASTINT (XWINDOW (FRAME_MINIBUF_WINDOW (f))->top); |
433 | 758 int i; |
759 | |
760 for (i = 0; i < height; i++) | |
761 { | |
769 | 762 get_display_line (f, vpos + i, 0); |
433 | 763 display_string (w, vpos + i, "", 0, 0, 0, width); |
764 } | |
765 | |
766 return; | |
767 } | |
768 } | |
277 | 769 |
770 if (update_mode_lines) | |
771 w->update_mode_line = Qt; | |
772 | |
773 /* Otherwise set up data on this window; select its buffer and point value */ | |
774 | |
775 current_buffer = XBUFFER (w->buffer); | |
776 opoint = point; | |
777 | |
778 /* Count number of windows showing the selected buffer. */ | |
779 | |
780 if (!just_this_one | |
781 && current_buffer == XBUFFER (XWINDOW (selected_window)->buffer)) | |
782 buffer_shared++; | |
783 | |
784 /* POINT refers normally to the selected window. | |
785 For any other window, set up appropriate value. */ | |
786 | |
787 if (!EQ (window, selected_window)) | |
788 { | |
789 SET_PT (marker_position (w->pointm)); | |
790 if (point < BEGV) | |
791 { | |
485 | 792 SET_PT (BEGV); |
277 | 793 Fset_marker (w->pointm, make_number (point), Qnil); |
794 } | |
795 else if (point > (ZV - 1)) | |
796 { | |
485 | 797 SET_PT (ZV); |
277 | 798 Fset_marker (w->pointm, make_number (point), Qnil); |
799 } | |
800 } | |
801 | |
802 /* If window-start is screwed up, choose a new one. */ | |
803 if (XMARKER (w->start)->buffer != current_buffer) | |
804 goto recenter; | |
805 | |
806 startp = marker_position (w->start); | |
807 | |
433 | 808 /* Handle case where place to start displaying has been specified, |
809 unless the specified location is outside the visible range. */ | |
485 | 810 if (!NILP (w->force_start)) |
277 | 811 { |
812 w->update_mode_line = Qt; | |
813 w->force_start = Qnil; | |
814 XFASTINT (w->last_modified) = 0; | |
433 | 815 if (startp < BEGV) startp = BEGV; |
816 if (startp > ZV) startp = ZV; | |
277 | 817 try_window (window, startp); |
818 if (cursor_vpos < 0) | |
819 { | |
820 /* If point does not appear, move point so it does appear */ | |
821 pos = *compute_motion (startp, 0, | |
822 ((EQ (window, minibuf_window) && startp == 1) | |
823 ? minibuf_prompt_width : 0) | |
824 + | |
825 (hscroll ? 1 - hscroll : 0), | |
826 ZV, height / 2, | |
827 - (1 << (SHORTBITS - 1)), | |
828 width, hscroll, pos_tab_offset (w, startp)); | |
829 SET_PT (pos.bufpos); | |
769 | 830 if (w != XWINDOW (FRAME_SELECTED_WINDOW (f))) |
277 | 831 Fset_marker (w->pointm, make_number (point), Qnil); |
832 else | |
833 { | |
834 lpoint = point; | |
769 | 835 FRAME_CURSOR_X (f) = max (0, pos.hpos) + XFASTINT (w->left); |
836 FRAME_CURSOR_Y (f) = pos.vpos + XFASTINT (w->top); | |
277 | 837 } |
838 } | |
839 goto done; | |
840 } | |
841 | |
842 /* Handle case where text has not changed, only point, | |
769 | 843 and it has not moved off the frame */ |
277 | 844 |
845 /* This code is not used for minibuffer for the sake of | |
846 the case of redisplaying to replace an echo area message; | |
847 since in that case the minibuffer contents per se are usually unchanged. | |
848 This code is of no real use in the minibuffer since | |
849 the handling of this_line_bufpos, etc., | |
850 in redisplay handles the same cases. */ | |
851 | |
852 if (XFASTINT (w->last_modified) >= MODIFF | |
853 && point >= startp && !clip_changed | |
769 | 854 && (just_this_one || XFASTINT (w->width) == FRAME_WIDTH (f)) |
277 | 855 && !EQ (window, minibuf_window)) |
856 { | |
857 pos = *compute_motion (startp, 0, (hscroll ? 1 - hscroll : 0), | |
858 point, height + 1, 10000, width, hscroll, | |
859 pos_tab_offset (w, startp)); | |
860 | |
861 if (pos.vpos < height) | |
862 { | |
769 | 863 /* Ok, point is still on frame */ |
864 if (w == XWINDOW (FRAME_SELECTED_WINDOW (f))) | |
277 | 865 { |
866 /* These variables are supposed to be origin 1 */ | |
769 | 867 FRAME_CURSOR_X (f) = max (0, pos.hpos) + XFASTINT (w->left); |
868 FRAME_CURSOR_Y (f) = pos.vpos + XFASTINT (w->top); | |
277 | 869 } |
870 /* This doesn't do the trick, because if a window to the right of | |
871 this one must be redisplayed, this does nothing because there | |
769 | 872 is nothing in DesiredFrame yet, and then the other window is |
277 | 873 redisplayed, making likes that are empty in this window's columns. |
769 | 874 if (XFASTINT (w->width) != FRAME_WIDTH (f)) |
277 | 875 preserve_my_columns (w); |
876 */ | |
877 goto done; | |
878 } | |
879 /* Don't bother trying redisplay with same start; | |
880 we already know it will lose */ | |
881 } | |
882 /* If current starting point was originally the beginning of a line | |
883 but no longer is, find a new starting point. */ | |
485 | 884 else if (!NILP (w->start_at_line_beg) |
277 | 885 && !(startp == BEGV |
886 || FETCH_CHAR (startp - 1) == '\n')) | |
887 { | |
888 goto recenter; | |
889 } | |
890 else if (just_this_one && !MINI_WINDOW_P (w) | |
891 && point >= startp | |
892 && XFASTINT (w->last_modified) | |
893 && ! EQ (w->window_end_valid, Qnil) | |
894 && do_id && !clip_changed | |
895 && !blank_end_of_window | |
769 | 896 && XFASTINT (w->width) == FRAME_WIDTH (f) |
277 | 897 && EQ (last_arrow_position, Voverlay_arrow_position) |
898 && EQ (last_arrow_string, Voverlay_arrow_string) | |
769 | 899 && (tem = try_window_id (FRAME_SELECTED_WINDOW (f))) |
277 | 900 && tem != -2) |
901 { | |
902 /* tem > 0 means success. tem == -1 means choose new start. | |
903 tem == -2 means try again with same start, | |
904 and nothing but whitespace follows the changed stuff. | |
905 tem == 0 means try again with same start. */ | |
906 if (tem > 0) | |
907 goto done; | |
908 } | |
909 else if (startp >= BEGV && startp <= ZV | |
910 /* Avoid starting display at end of buffer! */ | |
433 | 911 && (startp < ZV || startp == BEGV |
277 | 912 || (XFASTINT (w->last_modified) >= MODIFF))) |
913 { | |
914 /* Try to redisplay starting at same place as before */ | |
769 | 915 /* If point has not moved off frame, accept the results */ |
277 | 916 try_window (window, startp); |
917 if (cursor_vpos >= 0) | |
918 goto done; | |
919 else | |
920 cancel_my_columns (w); | |
921 } | |
922 | |
923 XFASTINT (w->last_modified) = 0; | |
924 w->update_mode_line = Qt; | |
925 | |
926 /* Try to scroll by specified few lines */ | |
927 | |
928 if (scroll_step && !clip_changed) | |
929 { | |
930 if (point > startp) | |
931 { | |
932 pos = *vmotion (Z - XFASTINT (w->window_end_pos), | |
933 scroll_step, width, hscroll, window); | |
934 if (pos.vpos >= height) | |
935 goto scroll_fail; | |
936 } | |
937 | |
938 pos = *vmotion (startp, point < startp ? - scroll_step : scroll_step, | |
939 width, hscroll, window); | |
940 | |
941 if (point >= pos.bufpos) | |
942 { | |
943 try_window (window, pos.bufpos); | |
944 if (cursor_vpos >= 0) | |
945 goto done; | |
946 else | |
947 cancel_my_columns (w); | |
948 } | |
949 scroll_fail: ; | |
950 } | |
951 | |
952 /* Finally, just choose place to start which centers point */ | |
953 | |
954 recenter: | |
955 pos = *vmotion (point, - height / 2, width, hscroll, window); | |
956 try_window (window, pos.bufpos); | |
957 | |
958 startp = marker_position (w->start); | |
959 w->start_at_line_beg = | |
960 (startp == BEGV || FETCH_CHAR (startp - 1) == '\n') ? Qt : Qnil; | |
961 | |
962 done: | |
963 /* If window not full width, must redo its mode line | |
964 if the window to its side is being redone */ | |
485 | 965 if ((!NILP (w->update_mode_line) |
769 | 966 || (!just_this_one && width < FRAME_WIDTH (f) - 1)) |
277 | 967 && height != XFASTINT (w->height)) |
968 display_mode_line (w); | |
969 | |
970 SET_PT (opoint); | |
971 current_buffer = old; | |
972 SET_PT (lpoint); | |
1718
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
973 |
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
974 if (FRAME_HAS_VERTICAL_SCROLLBARS (f)) |
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
975 { |
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
976 struct scrollbar *bar = WINDOW_VERTICAL_SCROLLBAR (w); |
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
977 |
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
978 /* This isn't guaranteed to be right. For the moment, we'll pretend |
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
979 it is. */ |
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
980 int endp = Z - XINT (w->window_end_pos); |
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
981 |
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
982 /* Indicate what this scrollbar ought to be displaying now. */ |
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
983 bar = ((*set_vertical_scrollbar_hook) |
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
984 (bar, w, endp - startp, Z - BEG, startp)); |
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
985 |
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
986 /* Note that we actually used the scrollbar attached to this window, |
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
987 so it shouldn't be deleted at the end of redisplay. */ |
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
988 (*redeem_scrollbar_hook) (bar); |
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
989 |
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
990 XSET (w->vertical_scrollbar, Lisp_Int, bar); |
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
991 } |
277 | 992 } |
993 | |
994 /* Do full redisplay on one window, starting at position `pos'. */ | |
995 | |
996 static void | |
997 try_window (window, pos) | |
998 Lisp_Object window; | |
999 register int pos; | |
1000 { | |
1001 register struct window *w = XWINDOW (window); | |
1002 register int height = window_internal_height (w); | |
1003 register int vpos = XFASTINT (w->top); | |
1004 register int last_text_vpos = vpos; | |
1005 int tab_offset = pos_tab_offset (w, pos); | |
769 | 1006 FRAME_PTR f = XFRAME (w->frame); |
277 | 1007 int width = XFASTINT (w->width) - 1 |
769 | 1008 - (XFASTINT (w->width) + XFASTINT (w->left) != FRAME_WIDTH (f)); |
277 | 1009 struct position val; |
1010 | |
1011 Fset_marker (w->start, make_number (pos), Qnil); | |
1012 cursor_vpos = -1; | |
1013 overlay_arrow_seen = 0; | |
1014 val.hpos = XINT (w->hscroll) ? 1 - XINT (w->hscroll) : 0; | |
1015 | |
1016 while (--height >= 0) | |
1017 { | |
1018 val = *display_text_line (w, pos, vpos, val.hpos, tab_offset); | |
1019 tab_offset += width; | |
1020 if (val.vpos) tab_offset = 0; | |
1021 vpos++; | |
1022 if (pos != val.bufpos) | |
1023 last_text_vpos | |
1024 /* Next line, unless prev line ended in end of buffer with no cr */ | |
1025 = vpos - (val.vpos && FETCH_CHAR (val.bufpos - 1) != '\n'); | |
1026 pos = val.bufpos; | |
1027 } | |
1028 | |
1029 /* If last line is continued in middle of character, | |
769 | 1030 include the split character in the text considered on the frame */ |
277 | 1031 if (val.hpos < (XINT (w->hscroll) ? 1 - XINT (w->hscroll) : 0)) |
1032 pos++; | |
1033 | |
769 | 1034 /* If bottom just moved off end of frame, change mode line percentage. */ |
277 | 1035 if (XFASTINT (w->window_end_pos) == 0 |
1036 && Z != pos) | |
1037 w->update_mode_line = Qt; | |
1038 | |
769 | 1039 /* Say where last char on frame will be, once redisplay is finished. */ |
277 | 1040 XFASTINT (w->window_end_pos) = Z - pos; |
1041 XFASTINT (w->window_end_vpos) = last_text_vpos - XFASTINT (w->top); | |
1042 /* But that is not valid info until redisplay finishes. */ | |
1043 w->window_end_valid = Qnil; | |
1044 } | |
1045 | |
1046 /* Try to redisplay when buffer is modified locally, | |
1047 computing insert/delete line to preserve text outside | |
1048 the bounds of the changes. | |
1049 Return 1 if successful, 0 if if cannot tell what to do, | |
1050 or -1 to tell caller to find a new window start, | |
1051 or -2 to tell caller to do normal redisplay with same window start. */ | |
1052 | |
1053 static int | |
1054 try_window_id (window) | |
1055 Lisp_Object window; | |
1056 { | |
1057 int pos; | |
1058 register struct window *w = XWINDOW (window); | |
1059 register int height = window_internal_height (w); | |
769 | 1060 FRAME_PTR f = XFRAME (w->frame); |
277 | 1061 int top = XFASTINT (w->top); |
1062 int start = marker_position (w->start); | |
1063 int width = XFASTINT (w->width) - 1 | |
769 | 1064 - (XFASTINT (w->width) + XFASTINT (w->left) != FRAME_WIDTH (f)); |
277 | 1065 int hscroll = XINT (w->hscroll); |
1066 int lmargin = hscroll > 0 ? 1 - hscroll : 0; | |
1067 register int vpos; | |
1068 register int i, tem; | |
1069 int last_text_vpos = 0; | |
1070 int stop_vpos; | |
1071 | |
1072 struct position val, bp, ep, xp, pp; | |
1073 int scroll_amount = 0; | |
1074 int delta; | |
1075 int tab_offset, epto; | |
1076 | |
1077 if (GPT - BEG < beg_unchanged) | |
1078 beg_unchanged = GPT - BEG; | |
1079 if (Z - GPT < end_unchanged) | |
1080 end_unchanged = Z - GPT; | |
1081 | |
1082 if (beg_unchanged + 1 < start) | |
1083 return 0; /* Give up if changes go above top of window */ | |
1084 | |
1085 /* Find position before which nothing is changed. */ | |
1086 bp = *compute_motion (start, 0, lmargin, | |
371 | 1087 beg_unchanged + 1, height + 1, 0, width, hscroll, |
277 | 1088 pos_tab_offset (w, start)); |
1089 if (bp.vpos >= height) | |
368 | 1090 { |
1091 if (point < bp.bufpos && !bp.contin) | |
1092 { | |
769 | 1093 /* All changes are below the frame, and point is on the frame. |
1094 We don't need to change the frame at all. | |
368 | 1095 But we need to update window_end_pos to account for |
1096 any change in buffer size. */ | |
371 | 1097 bp = *compute_motion (start, 0, lmargin, |
1098 Z, height, 0, | |
1099 width, hscroll, pos_tab_offset (w, start)); | |
368 | 1100 XFASTINT (w->window_end_vpos) = height; |
1101 XFASTINT (w->window_end_pos) = Z - bp.bufpos; | |
1102 return 1; | |
1103 } | |
1104 return 0; | |
1105 } | |
277 | 1106 |
1107 vpos = bp.vpos; | |
1108 | |
769 | 1109 /* Find beginning of that frame line. Must display from there. */ |
277 | 1110 bp = *vmotion (bp.bufpos, 0, width, hscroll, window); |
1111 | |
1112 pos = bp.bufpos; | |
1113 val.hpos = lmargin; | |
1114 if (pos < start) | |
1115 return -1; | |
1116 | |
1117 /* If about to start displaying at the beginning of a continuation line, | |
769 | 1118 really start with previous frame line, in case it was not |
277 | 1119 continued when last redisplayed */ |
528 | 1120 if ((bp.contin && bp.bufpos - 1 == beg_unchanged && vpos > 0) |
1121 || | |
1122 /* Likewise if we have to worry about selective display. */ | |
1123 (XTYPE (current_buffer->selective_display) == Lisp_Int | |
1124 && XINT (current_buffer->selective_display) > 0 | |
1125 && bp.bufpos - 1 == beg_unchanged && vpos > 0)) | |
277 | 1126 { |
1127 bp = *vmotion (bp.bufpos, -1, width, hscroll, window); | |
1128 --vpos; | |
1129 pos = bp.bufpos; | |
1130 } | |
1131 | |
1132 if (bp.contin && bp.hpos != lmargin) | |
1133 { | |
1134 val.hpos = bp.prevhpos - width + lmargin; | |
1135 pos--; | |
1136 } | |
1137 | |
1138 bp.vpos = vpos; | |
1139 | |
1140 /* Find first visible newline after which no more is changed. */ | |
1141 tem = find_next_newline (Z - max (end_unchanged, Z - ZV), 1); | |
1142 if (XTYPE (current_buffer->selective_display) == Lisp_Int | |
1143 && XINT (current_buffer->selective_display) > 0) | |
1144 while (tem < ZV - 1 | |
1145 && (position_indentation (tem) | |
1146 >= XINT (current_buffer->selective_display))) | |
1147 tem = find_next_newline (tem, 1); | |
1148 | |
1149 /* Compute the cursor position after that newline. */ | |
1150 ep = *compute_motion (pos, vpos, val.hpos, tem, | |
1151 height, - (1 << (SHORTBITS - 1)), | |
1152 width, hscroll, pos_tab_offset (w, bp.bufpos)); | |
1153 | |
769 | 1154 /* If changes reach past the text available on the frame, |
1155 just display rest of frame. */ | |
277 | 1156 if (ep.bufpos > Z - XFASTINT (w->window_end_pos)) |
1157 stop_vpos = height; | |
1158 else | |
1159 stop_vpos = ep.vpos; | |
1160 | |
1161 /* If no newline before ep, the line ep is on includes some changes | |
1162 that must be displayed. Make sure we don't stop before it. */ | |
1163 /* Also, if changes reach all the way until ep.bufpos, | |
1164 it is possible that something was deleted after the | |
1165 newline before it, so the following line must be redrawn. */ | |
1166 if (stop_vpos == ep.vpos | |
1167 && (ep.bufpos == BEGV | |
1168 || FETCH_CHAR (ep.bufpos - 1) != '\n' | |
1169 || ep.bufpos == Z - end_unchanged)) | |
1170 stop_vpos = ep.vpos + 1; | |
1171 | |
1172 cursor_vpos = -1; | |
1173 overlay_arrow_seen = 0; | |
1174 | |
1175 /* If changes do not reach to bottom of window, | |
1176 figure out how much to scroll the rest of the window */ | |
1177 if (stop_vpos < height) | |
1178 { | |
1179 /* Now determine how far up or down the rest of the window has moved */ | |
1180 epto = pos_tab_offset (w, ep.bufpos); | |
1181 xp = *compute_motion (ep.bufpos, ep.vpos, ep.hpos, | |
1182 Z - XFASTINT (w->window_end_pos), | |
1183 10000, 0, width, hscroll, epto); | |
1184 scroll_amount = xp.vpos - XFASTINT (w->window_end_vpos); | |
1185 | |
769 | 1186 /* Is everything on frame below the changes whitespace? |
277 | 1187 If so, no scrolling is really necessary. */ |
1188 for (i = ep.bufpos; i < xp.bufpos; i++) | |
1189 { | |
1190 tem = FETCH_CHAR (i); | |
1191 if (tem != ' ' && tem != '\n' && tem != '\t') | |
1192 break; | |
1193 } | |
1194 if (i == xp.bufpos) | |
1195 return -2; | |
1196 | |
1197 XFASTINT (w->window_end_vpos) += scroll_amount; | |
1198 | |
769 | 1199 /* Before doing any scrolling, verify that point will be on frame. */ |
277 | 1200 if (point > ep.bufpos && !(point <= xp.bufpos && xp.bufpos < height)) |
1201 { | |
1202 if (point <= xp.bufpos) | |
1203 { | |
1204 pp = *compute_motion (ep.bufpos, ep.vpos, ep.hpos, | |
1205 point, height, - (1 << (SHORTBITS - 1)), | |
1206 width, hscroll, epto); | |
1207 } | |
1208 else | |
1209 { | |
1210 pp = *compute_motion (xp.bufpos, xp.vpos, xp.hpos, | |
1211 point, height, - (1 << (SHORTBITS - 1)), | |
1212 width, hscroll, pos_tab_offset (w, xp.bufpos)); | |
1213 } | |
1214 if (pp.bufpos < point || pp.vpos == height) | |
1215 return 0; | |
1216 cursor_vpos = pp.vpos + top; | |
1217 cursor_hpos = pp.hpos + XFASTINT (w->left); | |
1218 } | |
1219 | |
1220 if (stop_vpos - scroll_amount >= height | |
1221 || ep.bufpos == xp.bufpos) | |
1222 { | |
1223 if (scroll_amount < 0) | |
1224 stop_vpos -= scroll_amount; | |
1225 scroll_amount = 0; | |
1226 /* In this path, we have altered window_end_vpos | |
1227 and not left it negative. | |
1228 We must make sure that, in case display is preempted | |
769 | 1229 before the frame changes to reflect what we do here, |
277 | 1230 further updates will not come to try_window_id |
769 | 1231 and assume the frame and window_end_vpos match. */ |
277 | 1232 blank_end_of_window = 1; |
1233 } | |
1234 else if (!scroll_amount) | |
1235 {} | |
1236 else if (bp.bufpos == Z - end_unchanged) | |
1237 { | |
1238 /* If reprinting everything is nearly as fast as scrolling, | |
1239 don't bother scrolling. Can happen if lines are short. */ | |
769 | 1240 if (scroll_cost (f, bp.vpos + top - scroll_amount, |
277 | 1241 top + height - max (0, scroll_amount), |
1242 scroll_amount) | |
1243 > xp.bufpos - bp.bufpos - 20) | |
1244 /* Return "try normal display with same window-start." | |
1245 Too bad we can't prevent further scroll-thinking. */ | |
1246 return -2; | |
1247 /* If pure deletion, scroll up as many lines as possible. | |
1248 In common case of killing a line, this can save the | |
1249 following line from being overwritten by scrolling | |
1250 and therefore having to be redrawn. */ | |
769 | 1251 tem = scroll_frame_lines (f, bp.vpos + top - scroll_amount, |
277 | 1252 top + height - max (0, scroll_amount), |
1253 scroll_amount); | |
1254 if (!tem) stop_vpos = height; | |
1255 } | |
1256 else if (scroll_amount) | |
1257 { | |
1258 /* If reprinting everything is nearly as fast as scrolling, | |
1259 don't bother scrolling. Can happen if lines are short. */ | |
1260 /* Note that if scroll_amount > 0, xp.bufpos - bp.bufpos is an | |
1261 overestimate of cost of reprinting, since xp.bufpos | |
1262 would end up below the bottom of the window. */ | |
769 | 1263 if (scroll_cost (f, ep.vpos + top - scroll_amount, |
277 | 1264 top + height - max (0, scroll_amount), |
1265 scroll_amount) | |
1266 > xp.bufpos - ep.bufpos - 20) | |
1267 /* Return "try normal display with same window-start." | |
1268 Too bad we can't prevent further scroll-thinking. */ | |
1269 return -2; | |
769 | 1270 tem = scroll_frame_lines (f, ep.vpos + top - scroll_amount, |
277 | 1271 top + height - max (0, scroll_amount), |
1272 scroll_amount); | |
1273 if (!tem) stop_vpos = height; | |
1274 } | |
1275 } | |
1276 | |
1277 /* In any case, do not display past bottom of window */ | |
1278 if (stop_vpos >= height) | |
1279 { | |
1280 stop_vpos = height; | |
1281 scroll_amount = 0; | |
1282 } | |
1283 | |
1284 /* Handle case where pos is before w->start -- | |
1285 can happen if part of line had been clipped and is not clipped now */ | |
1286 if (vpos == 0 && pos < marker_position (w->start)) | |
1287 Fset_marker (w->start, make_number (pos), Qnil); | |
1288 | |
1289 /* Redisplay the lines where the text was changed */ | |
1290 last_text_vpos = vpos; | |
1291 tab_offset = pos_tab_offset (w, pos); | |
1292 /* If we are starting display in mid-character, correct tab_offset | |
1293 to account for passing the line that that character really starts in. */ | |
1294 if (val.hpos < lmargin) | |
1295 tab_offset += width; | |
1296 while (vpos < stop_vpos) | |
1297 { | |
1298 val = *display_text_line (w, pos, top + vpos++, val.hpos, tab_offset); | |
1299 tab_offset += width; | |
1300 if (val.vpos) tab_offset = 0; | |
1301 if (pos != val.bufpos) | |
1302 last_text_vpos | |
1303 /* Next line, unless prev line ended in end of buffer with no cr */ | |
1304 = vpos - (val.vpos && FETCH_CHAR (val.bufpos - 1) != '\n'); | |
1305 pos = val.bufpos; | |
1306 } | |
1307 | |
1308 /* There are two cases: | |
1309 1) we have displayed down to the bottom of the window | |
1310 2) we have scrolled lines below stop_vpos by scroll_amount */ | |
1311 | |
1312 if (vpos == height) | |
1313 { | |
1314 /* If last line is continued in middle of character, | |
769 | 1315 include the split character in the text considered on the frame */ |
277 | 1316 if (val.hpos < lmargin) |
1317 val.bufpos++; | |
1318 XFASTINT (w->window_end_vpos) = last_text_vpos; | |
1319 XFASTINT (w->window_end_pos) = Z - val.bufpos; | |
1320 } | |
1321 | |
1322 /* If scrolling made blank lines at window bottom, | |
1323 redisplay to fill those lines */ | |
1324 if (scroll_amount < 0) | |
1325 { | |
1326 /* Don't consider these lines for general-purpose scrolling. | |
1327 That will save time in the scrolling computation. */ | |
769 | 1328 FRAME_SCROLL_BOTTOM_VPOS (f) = xp.vpos; |
277 | 1329 vpos = xp.vpos; |
1330 pos = xp.bufpos; | |
1331 val.hpos = lmargin; | |
1332 if (pos == ZV) | |
1333 vpos = height + scroll_amount; | |
1334 else if (xp.contin && xp.hpos != lmargin) | |
1335 { | |
1336 val.hpos = xp.prevhpos - width + lmargin; | |
1337 pos--; | |
1338 } | |
1339 | |
1340 blank_end_of_window = 1; | |
1341 tab_offset = pos_tab_offset (w, pos); | |
1342 /* If we are starting display in mid-character, correct tab_offset | |
1343 to account for passing the line that that character starts in. */ | |
1344 if (val.hpos < lmargin) | |
1345 tab_offset += width; | |
1346 | |
1347 while (vpos < height) | |
1348 { | |
1349 val = *display_text_line (w, pos, top + vpos++, val.hpos, tab_offset); | |
1350 tab_offset += width; | |
1351 if (val.vpos) tab_offset = 0; | |
1352 pos = val.bufpos; | |
1353 } | |
1354 | |
1355 /* Here is a case where display_text_line sets cursor_vpos wrong. | |
1356 Make it be fixed up, below. */ | |
1357 if (xp.bufpos == ZV | |
1358 && xp.bufpos == point) | |
1359 cursor_vpos = -1; | |
1360 } | |
1361 | |
769 | 1362 /* If bottom just moved off end of frame, change mode line percentage. */ |
277 | 1363 if (XFASTINT (w->window_end_pos) == 0 |
1364 && Z != val.bufpos) | |
1365 w->update_mode_line = Qt; | |
1366 | |
1367 /* Attempt to adjust end-of-text positions to new bottom line */ | |
1368 if (scroll_amount) | |
1369 { | |
1370 delta = height - xp.vpos; | |
1371 if (delta < 0 | |
1372 || (delta > 0 && xp.bufpos <= ZV) | |
1373 || (delta == 0 && xp.hpos)) | |
1374 { | |
1375 val = *vmotion (Z - XFASTINT (w->window_end_pos), | |
1376 delta, width, hscroll, window); | |
1377 XFASTINT (w->window_end_pos) = Z - val.bufpos; | |
1378 XFASTINT (w->window_end_vpos) += val.vpos; | |
1379 } | |
1380 } | |
1381 | |
1382 w->window_end_valid = Qnil; | |
1383 | |
1384 /* If point was not in a line that was displayed, find it */ | |
1385 if (cursor_vpos < 0) | |
1386 { | |
1387 val = *compute_motion (start, 0, lmargin, point, 10000, 10000, | |
1388 width, hscroll, pos_tab_offset (w, start)); | |
769 | 1389 /* Admit failure if point is off frame now */ |
277 | 1390 if (val.vpos >= height) |
1391 { | |
1392 for (vpos = 0; vpos < height; vpos++) | |
769 | 1393 cancel_line (vpos + top, f); |
277 | 1394 return 0; |
1395 } | |
1396 cursor_vpos = val.vpos + top; | |
1397 cursor_hpos = val.hpos + XFASTINT (w->left); | |
1398 } | |
1399 | |
769 | 1400 FRAME_CURSOR_X (f) = max (0, cursor_hpos); |
1401 FRAME_CURSOR_Y (f) = cursor_vpos; | |
277 | 1402 |
1403 if (debug_end_pos) | |
1404 { | |
1405 val = *compute_motion (start, 0, lmargin, ZV, | |
1406 height, - (1 << (SHORTBITS - 1)), | |
1407 width, hscroll, pos_tab_offset (w, start)); | |
1408 if (val.vpos != XFASTINT (w->window_end_vpos)) | |
1409 abort (); | |
1410 if (XFASTINT (w->window_end_pos) | |
1411 != Z - val.bufpos) | |
1412 abort (); | |
1413 } | |
1414 | |
1415 return 1; | |
1416 } | |
1417 | |
301 | 1418 /* Copy glyphs from the rope FROM to T. |
1419 But don't actually copy the parts that would come in before S. | |
277 | 1420 Value is T, advanced past the copied data. |
1421 | |
1422 Characters in FROM are grouped into units of `sizeof GLYPH' chars; | |
1423 any extra chars at the end of FROM are ignored. */ | |
1424 | |
1425 GLYPH * | |
1426 copy_rope (t, s, from) | |
1427 register GLYPH *t; /* Copy to here. */ | |
1428 register GLYPH *s; /* Starting point. */ | |
1429 Lisp_Object from; /* Data to copy; known to be a string. */ | |
1430 { | |
1431 register int n = XSTRING (from)->size / sizeof (GLYPH); | |
1432 register GLYPH *f = (GLYPH *) XSTRING (from)->data; | |
1433 | |
1434 while (n--) | |
1435 { | |
1436 if (t >= s) *t = *f; | |
1437 ++t; | |
1438 ++f; | |
1439 } | |
1440 return t; | |
1441 } | |
1442 | |
1443 /* Display one line of window w, starting at position START in W's buffer. | |
1444 Display starting at horizontal position HPOS, which is normally zero | |
1445 or negative. A negative value causes output up to hpos = 0 to be discarded. | |
1446 This is done for negative hscroll, or when this is a continuation line | |
1447 and the continuation occurred in the middle of a multi-column character. | |
1448 | |
1449 TABOFFSET is an offset for ostensible hpos, used in tab stop calculations. | |
1450 | |
769 | 1451 Display on position VPOS on the frame. (origin 0). |
277 | 1452 |
1453 Returns a STRUCT POSITION giving character to start next line with | |
1454 and where to display it, including a zero or negative hpos. | |
1455 The vpos field is not really a vpos; it is 1 unless the line is continued */ | |
1456 | |
1457 struct position val_display_text_line; | |
1458 | |
1459 static struct position * | |
1460 display_text_line (w, start, vpos, hpos, taboffset) | |
1461 struct window *w; | |
1462 int start; | |
1463 int vpos; | |
1464 int hpos; | |
1465 int taboffset; | |
1466 { | |
1467 register int pos = start; | |
1468 register int c; | |
1469 register GLYPH *p1; | |
1470 int end; | |
1471 register int pause; | |
1472 register unsigned char *p; | |
1473 GLYPH *endp; | |
1474 register GLYPH *startp; | |
1475 register GLYPH *p1prev; | |
769 | 1476 FRAME_PTR f = XFRAME (w->frame); |
277 | 1477 int tab_width = XINT (current_buffer->tab_width); |
485 | 1478 int ctl_arrow = !NILP (current_buffer->ctl_arrow); |
277 | 1479 int width = XFASTINT (w->width) - 1 |
769 | 1480 - (XFASTINT (w->width) + XFASTINT (w->left) != FRAME_WIDTH (f)); |
277 | 1481 struct position val; |
1482 int lastpos; | |
1483 int invis; | |
1484 int hscroll = XINT (w->hscroll); | |
1485 int truncate = hscroll | |
1486 || (truncate_partial_width_windows | |
769 | 1487 && XFASTINT (w->width) < FRAME_WIDTH (f)) |
485 | 1488 || !NILP (current_buffer->truncate_lines); |
277 | 1489 int selective |
1490 = XTYPE (current_buffer->selective_display) == Lisp_Int | |
1491 ? XINT (current_buffer->selective_display) | |
485 | 1492 : !NILP (current_buffer->selective_display) ? -1 : 0; |
277 | 1493 #ifndef old |
485 | 1494 int selective_e = selective && !NILP (current_buffer->selective_display_ellipses); |
277 | 1495 #endif |
769 | 1496 register struct frame_glyphs *desired_glyphs = FRAME_DESIRED_GLYPHS (f); |
277 | 1497 register struct Lisp_Vector *dp = window_display_table (w); |
1498 int selective_rlen | |
1499 = (selective && dp && XTYPE (DISP_INVIS_ROPE (dp)) == Lisp_String | |
1500 ? XSTRING (DISP_INVIS_ROPE (dp))->size / sizeof (GLYPH) : 0); | |
1501 GLYPH truncator = (dp == 0 || XTYPE (DISP_TRUNC_GLYPH (dp)) != Lisp_Int | |
1502 ? '$' : XINT (DISP_TRUNC_GLYPH (dp))); | |
1503 GLYPH continuer = (dp == 0 || XTYPE (DISP_CONTINUE_GLYPH (dp)) != Lisp_Int | |
1504 ? '\\' : XINT (DISP_CONTINUE_GLYPH (dp))); | |
1505 | |
1506 hpos += XFASTINT (w->left); | |
769 | 1507 get_display_line (f, vpos, XFASTINT (w->left)); |
277 | 1508 if (tab_width <= 0 || tab_width > 20) tab_width = 8; |
1509 | |
1510 if (MINI_WINDOW_P (w) && start == 1 | |
1511 && vpos == XFASTINT (w->top)) | |
1512 { | |
1513 if (minibuf_prompt) | |
1514 hpos = display_string (w, vpos, minibuf_prompt, hpos, | |
1515 (!truncate ? continuer : truncator), | |
1516 -1, -1); | |
1517 minibuf_prompt_width = hpos; | |
1518 } | |
1519 | |
1520 desired_glyphs->bufp[vpos] = pos; | |
1521 p1 = desired_glyphs->glyphs[vpos] + hpos; | |
1522 end = ZV; | |
1523 startp = desired_glyphs->glyphs[vpos] + XFASTINT (w->left); | |
1524 endp = startp + width; | |
1525 | |
1526 /* Loop generating characters. | |
1527 Stop at end of buffer, before newline, | |
1528 or if reach or pass continuation column. */ | |
1529 | |
1530 pause = pos; | |
1531 while (p1 < endp) | |
1532 { | |
1533 p1prev = p1; | |
1534 if (pos == pause) | |
1535 { | |
1536 if (pos == end) | |
1537 break; | |
1538 if (pos == point && cursor_vpos < 0) | |
1539 { | |
1540 cursor_vpos = vpos; | |
1541 cursor_hpos = p1 - startp; | |
1542 } | |
1543 | |
1544 pause = end; | |
1545 if (pos < point && point < pause) | |
1546 pause = point; | |
1547 if (pos < GPT && GPT < pause) | |
1548 pause = GPT; | |
1549 | |
1550 p = &FETCH_CHAR (pos); | |
1551 } | |
1552 c = *p++; | |
1553 if (c >= 040 && c < 0177 | |
1554 && (dp == 0 || XTYPE (DISP_CHAR_ROPE (dp, c)) != Lisp_String)) | |
1555 { | |
1556 if (p1 >= startp) | |
1557 *p1 = c; | |
1558 p1++; | |
1559 } | |
1560 else if (c == '\n') | |
1561 { | |
1562 invis = 0; | |
1563 while (pos < end | |
1564 && selective > 0 | |
1565 && position_indentation (pos + 1) >= selective) | |
1566 { | |
1567 invis = 1; | |
1568 pos = find_next_newline (pos + 1, 1); | |
1569 if (FETCH_CHAR (pos - 1) == '\n') | |
1570 pos--; | |
1571 } | |
1572 if (invis && selective_rlen > 0 && p1 >= startp) | |
1573 { | |
1574 p1 += selective_rlen; | |
1575 if (p1 - startp > width) | |
1576 p1 = endp; | |
1577 bcopy (XSTRING (DISP_INVIS_ROPE (dp))->data, p1prev, | |
1578 (p1 - p1prev) * sizeof (GLYPH)); | |
1579 } | |
1580 break; | |
1581 } | |
1582 else if (c == '\t') | |
1583 { | |
1584 do | |
1585 { | |
1586 if (p1 >= startp && p1 < endp) | |
1587 *p1 = SPACEGLYPH; | |
1588 p1++; | |
1589 } | |
1590 while ((p1 - startp + taboffset + hscroll - (hscroll > 0)) | |
1591 % tab_width); | |
1592 } | |
368 | 1593 else if (c == Ctl ('M') && selective == -1) |
277 | 1594 { |
1595 pos = find_next_newline (pos, 1); | |
1596 if (FETCH_CHAR (pos - 1) == '\n') | |
1597 pos--; | |
1598 if (selective_rlen > 0) | |
1599 { | |
1600 p1 += selective_rlen; | |
1601 if (p1 - startp > width) | |
1602 p1 = endp; | |
1603 bcopy (XSTRING (DISP_INVIS_ROPE (dp))->data, p1prev, | |
1604 (p1 - p1prev) * sizeof (GLYPH)); | |
1605 } | |
1606 break; | |
1607 } | |
1608 else if (dp != 0 && XTYPE (DISP_CHAR_ROPE (dp, c)) == Lisp_String) | |
1609 { | |
1610 p1 = copy_rope (p1, startp, DISP_CHAR_ROPE (dp, c)); | |
1611 } | |
1612 else if (c < 0200 && ctl_arrow) | |
1613 { | |
1614 if (p1 >= startp) | |
1615 *p1 = (dp && XTYPE (DISP_CTRL_GLYPH (dp)) == Lisp_Int | |
1616 ? XINT (DISP_CTRL_GLYPH (dp)) : '^'); | |
1617 p1++; | |
368 | 1618 if (p1 >= startp && p1 < endp) |
277 | 1619 *p1 = c ^ 0100; |
1620 p1++; | |
1621 } | |
1622 else | |
1623 { | |
1624 if (p1 >= startp) | |
1625 *p1 = (dp && XTYPE (DISP_ESCAPE_GLYPH (dp)) == Lisp_Int | |
1626 ? XINT (DISP_ESCAPE_GLYPH (dp)) : '\\'); | |
1627 p1++; | |
368 | 1628 if (p1 >= startp && p1 < endp) |
277 | 1629 *p1 = (c >> 6) + '0'; |
1630 p1++; | |
368 | 1631 if (p1 >= startp && p1 < endp) |
277 | 1632 *p1 = (7 & (c >> 3)) + '0'; |
1633 p1++; | |
368 | 1634 if (p1 >= startp && p1 < endp) |
277 | 1635 *p1 = (7 & c) + '0'; |
1636 p1++; | |
1637 } | |
1638 pos++; | |
1639 } | |
1640 | |
1641 val.hpos = - XINT (w->hscroll); | |
1642 if (val.hpos) | |
1643 val.hpos++; | |
1644 | |
1645 val.vpos = 1; | |
1646 | |
1647 lastpos = pos; | |
1648 | |
1649 /* Handle continuation in middle of a character */ | |
1650 /* by backing up over it */ | |
1651 if (p1 > endp) | |
1652 { | |
1653 /* Start the next line with that same character */ | |
1654 pos--; | |
1655 /* but at a negative hpos, to skip the columns output on this line. */ | |
1656 val.hpos += p1prev - endp; | |
1657 /* Keep in this line everything up to the continuation column. */ | |
1658 p1 = endp; | |
1659 } | |
1660 | |
1661 /* Finish deciding which character to start the next line on, | |
1662 and what hpos to start it at. | |
1663 Also set `lastpos' to the last position which counts as "on this line" | |
1664 for cursor-positioning. */ | |
1665 | |
1666 if (pos < ZV) | |
1667 { | |
1668 if (FETCH_CHAR (pos) == '\n') | |
1669 /* If stopped due to a newline, start next line after it */ | |
1670 pos++; | |
1671 else | |
1672 /* Stopped due to right margin of window */ | |
1673 { | |
1674 if (truncate) | |
1675 { | |
1676 *p1++ = truncator; | |
1677 /* Truncating => start next line after next newline, | |
1678 and point is on this line if it is before the newline, | |
1679 and skip none of first char of next line */ | |
1680 pos = find_next_newline (pos, 1); | |
1681 val.hpos = XINT (w->hscroll) ? 1 - XINT (w->hscroll) : 0; | |
1682 | |
1683 lastpos = pos - (FETCH_CHAR (pos - 1) == '\n'); | |
1684 } | |
1685 else | |
1686 { | |
1687 *p1++ = continuer; | |
1688 val.vpos = 0; | |
1689 lastpos--; | |
1690 } | |
1691 } | |
1692 } | |
1693 | |
1694 /* If point is at eol or in invisible text at eol, | |
769 | 1695 record its frame location now. */ |
277 | 1696 |
1697 if (start <= point && point <= lastpos && cursor_vpos < 0) | |
1698 { | |
1699 cursor_vpos = vpos; | |
1700 cursor_hpos = p1 - startp; | |
1701 } | |
1702 | |
1703 if (cursor_vpos == vpos) | |
1704 { | |
1705 if (cursor_hpos < 0) cursor_hpos = 0; | |
1706 if (cursor_hpos > width) cursor_hpos = width; | |
1707 cursor_hpos += XFASTINT (w->left); | |
769 | 1708 if (w == XWINDOW (FRAME_SELECTED_WINDOW (f))) |
277 | 1709 { |
769 | 1710 FRAME_CURSOR_Y (f) = cursor_vpos; |
1711 FRAME_CURSOR_X (f) = cursor_hpos; | |
277 | 1712 |
1713 if (w == XWINDOW (selected_window)) | |
1714 { | |
1715 /* Line is not continued and did not start | |
1716 in middle of character */ | |
1717 if ((hpos - XFASTINT (w->left) | |
1718 == (XINT (w->hscroll) ? 1 - XINT (w->hscroll) : 0)) | |
1719 && val.vpos) | |
1720 { | |
1721 this_line_bufpos = start; | |
1722 this_line_buffer = current_buffer; | |
1723 this_line_vpos = cursor_vpos; | |
1724 this_line_start_hpos = hpos; | |
1725 this_line_endpos = Z - lastpos; | |
1726 } | |
1727 else | |
1728 this_line_bufpos = 0; | |
1729 } | |
1730 } | |
1731 } | |
1732 | |
1733 /* If hscroll and line not empty, insert truncation-at-left marker */ | |
1734 if (hscroll && lastpos != start) | |
1735 { | |
1736 *startp = truncator; | |
1737 if (p1 <= startp) | |
1738 p1 = startp + 1; | |
1739 } | |
1740 | |
769 | 1741 if (XFASTINT (w->width) + XFASTINT (w->left) != FRAME_WIDTH (f)) |
277 | 1742 { |
1743 endp++; | |
1744 if (p1 < startp) p1 = startp; | |
1745 while (p1 < endp) *p1++ = SPACEGLYPH; | |
1746 *p1++ = '|'; | |
1747 } | |
1748 desired_glyphs->used[vpos] = max (desired_glyphs->used[vpos], | |
1749 p1 - desired_glyphs->glyphs[vpos]); | |
1750 desired_glyphs->glyphs[vpos][desired_glyphs->used[vpos]] = 0; | |
1751 | |
1752 /* If the start of this line is the overlay arrow-position, | |
1753 then put the arrow string into the display-line. */ | |
1754 | |
1755 if (XTYPE (Voverlay_arrow_position) == Lisp_Marker | |
1756 && current_buffer == XMARKER (Voverlay_arrow_position)->buffer | |
1757 && start == marker_position (Voverlay_arrow_position) | |
1758 && XTYPE (Voverlay_arrow_string) == Lisp_String | |
1759 && ! overlay_arrow_seen) | |
1760 { | |
1761 unsigned char *p = XSTRING (Voverlay_arrow_string)->data; | |
1762 int i; | |
1763 int len = XSTRING (Voverlay_arrow_string)->size; | |
1764 | |
1765 if (len > XFASTINT (w->width) - 1) | |
1766 len = XFASTINT (w->width) - 1; | |
1767 for (i = 0; i < len; i++) | |
1768 startp[i] = p[i]; | |
1769 if (desired_glyphs->used[vpos] < | |
1770 (len + startp - desired_glyphs->glyphs[vpos])) | |
1771 desired_glyphs->used[vpos] = len + startp - desired_glyphs->glyphs[vpos]; | |
1772 | |
1773 overlay_arrow_seen = 1; | |
1774 } | |
1775 | |
1776 val.bufpos = pos; | |
1777 val_display_text_line = val; | |
1778 return &val_display_text_line; | |
1779 } | |
1780 | |
1781 /* Display the mode line for window w */ | |
1782 | |
1783 static void | |
1784 display_mode_line (w) | |
1785 struct window *w; | |
1786 { | |
1787 register int vpos = XFASTINT (w->height) + XFASTINT (w->top) - 1; | |
1788 register int left = XFASTINT (w->left); | |
1789 register int right = XFASTINT (w->width) + left; | |
769 | 1790 register FRAME_PTR f = XFRAME (WINDOW_FRAME (w)); |
277 | 1791 |
769 | 1792 get_display_line (f, vpos, left); |
277 | 1793 display_mode_element (w, vpos, left, 0, right, right, |
1794 current_buffer->mode_line_format); | |
769 | 1795 FRAME_DESIRED_GLYPHS (f)->bufp[vpos] = 0; |
277 | 1796 |
1797 /* Make the mode line inverse video if the entire line | |
1798 is made of mode lines. | |
1799 I.e. if this window is full width, | |
1800 or if it is the child of a full width window | |
1801 (which implies that that window is split side-by-side | |
1802 and the rest of this line is mode lines of the sibling windows). */ | |
769 | 1803 if (XFASTINT (w->width) == FRAME_WIDTH (f) |
1804 || XFASTINT (XWINDOW (w->parent)->width) == FRAME_WIDTH (f)) | |
1805 FRAME_DESIRED_GLYPHS (f)->highlight[vpos] = mode_line_inverse_video; | |
277 | 1806 |
1807 #ifdef HAVE_X_WINDOWS | |
1808 /* I'm trying this out because I saw Unimpress use it, but it's | |
1124
453c24f2bdaa
* xdisp.c (display_mode_line): If the only other frames are
Jim Blandy <jimb@redhat.com>
parents:
1017
diff
changeset
|
1809 possible that this may mess adversely with some window managers. -jla |
277 | 1810 |
1124
453c24f2bdaa
* xdisp.c (display_mode_line): If the only other frames are
Jim Blandy <jimb@redhat.com>
parents:
1017
diff
changeset
|
1811 Wouldn't it be nice to use something like mode-line-format to |
453c24f2bdaa
* xdisp.c (display_mode_line): If the only other frames are
Jim Blandy <jimb@redhat.com>
parents:
1017
diff
changeset
|
1812 describe frame titles? -JimB */ |
453c24f2bdaa
* xdisp.c (display_mode_line): If the only other frames are
Jim Blandy <jimb@redhat.com>
parents:
1017
diff
changeset
|
1813 |
453c24f2bdaa
* xdisp.c (display_mode_line): If the only other frames are
Jim Blandy <jimb@redhat.com>
parents:
1017
diff
changeset
|
1814 /* Change the title of the frame to the name of the buffer displayed |
453c24f2bdaa
* xdisp.c (display_mode_line): If the only other frames are
Jim Blandy <jimb@redhat.com>
parents:
1017
diff
changeset
|
1815 in the currently selected window. Don't do this for minibuffer frames, |
453c24f2bdaa
* xdisp.c (display_mode_line): If the only other frames are
Jim Blandy <jimb@redhat.com>
parents:
1017
diff
changeset
|
1816 and don't do it when there's only one non-minibuffer frame. */ |
973
52267046b144
* xdisp.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
831
diff
changeset
|
1817 if (FRAME_X_P (f) |
769 | 1818 && ! FRAME_MINIBUF_ONLY_P (f) |
831 | 1819 && w == XWINDOW (f->selected_window)) |
1124
453c24f2bdaa
* xdisp.c (display_mode_line): If the only other frames are
Jim Blandy <jimb@redhat.com>
parents:
1017
diff
changeset
|
1820 x_implicitly_set_name (f, (EQ (Fnext_frame (WINDOW_FRAME (w), Qnil), |
453c24f2bdaa
* xdisp.c (display_mode_line): If the only other frames are
Jim Blandy <jimb@redhat.com>
parents:
1017
diff
changeset
|
1821 WINDOW_FRAME (w)) |
453c24f2bdaa
* xdisp.c (display_mode_line): If the only other frames are
Jim Blandy <jimb@redhat.com>
parents:
1017
diff
changeset
|
1822 ? Qnil |
453c24f2bdaa
* xdisp.c (display_mode_line): If the only other frames are
Jim Blandy <jimb@redhat.com>
parents:
1017
diff
changeset
|
1823 : XBUFFER (w->buffer)->name), |
1017
d42877206c0a
* xdisp.c (display_mode_line): Use x_implicitly_set_name here.
Jim Blandy <jimb@redhat.com>
parents:
973
diff
changeset
|
1824 Qnil); |
277 | 1825 #endif |
1826 } | |
1827 | |
1828 /* Contribute ELT to the mode line for window W. | |
1829 How it translates into text depends on its data type. | |
1830 | |
1831 VPOS is the position of the mode line being displayed. | |
1832 | |
769 | 1833 HPOS is the position (absolute on frame) where this element's text |
277 | 1834 should start. The output is truncated automatically at the right |
1835 edge of window W. | |
1836 | |
1837 DEPTH is the depth in recursion. It is used to prevent | |
1838 infinite recursion here. | |
1839 | |
1840 MINENDCOL is the hpos before which the element may not end. | |
1841 The element is padded at the right with spaces if nec | |
1842 to reach this column. | |
1843 | |
1844 MAXENDCOL is the hpos past which this element may not extend. | |
1845 If MINENDCOL is > MAXENDCOL, MINENDCOL takes priority. | |
1846 (This is necessary to make nested padding and truncation work.) | |
1847 | |
1848 Returns the hpos of the end of the text generated by ELT. | |
1849 The next element will receive that value as its HPOS arg, | |
1850 so as to concatenate the elements. */ | |
1851 | |
1852 static int | |
1853 display_mode_element (w, vpos, hpos, depth, minendcol, maxendcol, elt) | |
1854 struct window *w; | |
1855 register int vpos, hpos; | |
1856 int depth; | |
1857 int minendcol; | |
1858 register int maxendcol; | |
1859 register Lisp_Object elt; | |
1860 { | |
1861 tail_recurse: | |
1862 if (depth > 10) | |
1863 goto invalid; | |
1864 | |
1865 depth++; | |
1866 | |
1867 #ifdef SWITCH_ENUM_BUG | |
1868 switch ((int) XTYPE (elt)) | |
1869 #else | |
1870 switch (XTYPE (elt)) | |
1871 #endif | |
1872 { | |
1873 case Lisp_String: | |
1874 { | |
1875 /* A string: output it and check for %-constructs within it. */ | |
1876 register unsigned char c; | |
1877 register unsigned char *this = XSTRING (elt)->data; | |
1878 | |
1879 while (hpos < maxendcol && *this) | |
1880 { | |
1881 unsigned char *last = this; | |
1882 while ((c = *this++) != '\0' && c != '%') | |
1883 ; | |
1884 if (this - 1 != last) | |
1885 { | |
1886 register int lim = --this - last + hpos; | |
1887 hpos = display_string (w, vpos, last, hpos, 0, hpos, | |
1888 min (lim, maxendcol)); | |
1889 } | |
1890 else /* c == '%' */ | |
1891 { | |
1892 register int spec_width = 0; | |
1893 | |
1894 /* We can't allow -ve args due to the "%-" construct */ | |
1895 /* Argument specifies minwidth but not maxwidth | |
1896 (maxwidth can be specified by | |
1897 (<negative-number> . <stuff>) mode-line elements) */ | |
1898 | |
1899 while ((c = *this++) >= '0' && c <= '9') | |
1900 { | |
1901 spec_width = spec_width * 10 + (c - '0'); | |
1902 } | |
1903 | |
1904 spec_width += hpos; | |
1905 if (spec_width > maxendcol) | |
1906 spec_width = maxendcol; | |
1907 | |
1908 if (c == 'M') | |
1909 hpos = display_mode_element (w, vpos, hpos, depth, | |
1910 spec_width, maxendcol, | |
1911 Vglobal_mode_string); | |
1912 else if (c != 0) | |
1913 hpos = display_string (w, vpos, | |
1914 decode_mode_spec (w, c, | |
1915 maxendcol - hpos), | |
1916 hpos, 0, spec_width, maxendcol); | |
1917 } | |
1918 } | |
1919 } | |
1920 break; | |
1921 | |
1922 case Lisp_Symbol: | |
1923 /* A symbol: process the value of the symbol recursively | |
1924 as if it appeared here directly. Avoid error if symbol void. | |
1925 Special case: if value of symbol is a string, output the string | |
1926 literally. */ | |
1927 { | |
1928 register Lisp_Object tem; | |
1929 tem = Fboundp (elt); | |
485 | 1930 if (!NILP (tem)) |
277 | 1931 { |
1932 tem = Fsymbol_value (elt); | |
1933 /* If value is a string, output that string literally: | |
1934 don't check for % within it. */ | |
1935 if (XTYPE (tem) == Lisp_String) | |
1936 hpos = display_string (w, vpos, XSTRING (tem)->data, | |
1937 hpos, 0, minendcol, maxendcol); | |
1938 /* Give up right away for nil or t. */ | |
1939 else if (!EQ (tem, elt)) | |
1940 { elt = tem; goto tail_recurse; } | |
1941 } | |
1942 } | |
1943 break; | |
1944 | |
1945 case Lisp_Cons: | |
1946 { | |
1947 register Lisp_Object car, tem; | |
1948 | |
1949 /* A cons cell: three distinct cases. | |
1950 If first element is a string or a cons, process all the elements | |
1951 and effectively concatenate them. | |
1952 If first element is a negative number, truncate displaying cdr to | |
1953 at most that many characters. If positive, pad (with spaces) | |
1954 to at least that many characters. | |
1955 If first element is a symbol, process the cadr or caddr recursively | |
1956 according to whether the symbol's value is non-nil or nil. */ | |
1957 car = XCONS (elt)->car; | |
1958 if (XTYPE (car) == Lisp_Symbol) | |
1959 { | |
1960 tem = Fboundp (car); | |
1961 elt = XCONS (elt)->cdr; | |
1962 if (XTYPE (elt) != Lisp_Cons) | |
1963 goto invalid; | |
1964 /* elt is now the cdr, and we know it is a cons cell. | |
1965 Use its car if CAR has a non-nil value. */ | |
485 | 1966 if (!NILP (tem)) |
277 | 1967 { |
1968 tem = Fsymbol_value (car); | |
485 | 1969 if (!NILP (tem)) |
277 | 1970 { elt = XCONS (elt)->car; goto tail_recurse; } |
1971 } | |
1972 /* Symbol's value is nil (or symbol is unbound) | |
1973 Get the cddr of the original list | |
1974 and if possible find the caddr and use that. */ | |
1975 elt = XCONS (elt)->cdr; | |
485 | 1976 if (NILP (elt)) |
277 | 1977 break; |
1978 else if (XTYPE (elt) != Lisp_Cons) | |
1979 goto invalid; | |
1980 elt = XCONS (elt)->car; | |
1981 goto tail_recurse; | |
1982 } | |
1983 else if (XTYPE (car) == Lisp_Int) | |
1984 { | |
1985 register int lim = XINT (car); | |
1986 elt = XCONS (elt)->cdr; | |
1987 if (lim < 0) | |
1988 /* Negative int means reduce maximum width. | |
1989 DO NOT change MINENDCOL here! | |
1990 (20 -10 . foo) should truncate foo to 10 col | |
1991 and then pad to 20. */ | |
1992 maxendcol = min (maxendcol, hpos - lim); | |
1993 else if (lim > 0) | |
1994 { | |
1995 /* Padding specified. Don't let it be more than | |
1996 current maximum. */ | |
1997 lim += hpos; | |
1998 if (lim > maxendcol) | |
1999 lim = maxendcol; | |
2000 /* If that's more padding than already wanted, queue it. | |
2001 But don't reduce padding already specified even if | |
2002 that is beyond the current truncation point. */ | |
2003 if (lim > minendcol) | |
2004 minendcol = lim; | |
2005 } | |
2006 goto tail_recurse; | |
2007 } | |
2008 else if (XTYPE (car) == Lisp_String || XTYPE (car) == Lisp_Cons) | |
2009 { | |
2010 register int limit = 50; | |
2011 /* LIMIT is to protect against circular lists. */ | |
2012 while (XTYPE (elt) == Lisp_Cons && --limit > 0 | |
2013 && hpos < maxendcol) | |
2014 { | |
2015 hpos = display_mode_element (w, vpos, hpos, depth, | |
2016 hpos, maxendcol, | |
2017 XCONS (elt)->car); | |
2018 elt = XCONS (elt)->cdr; | |
2019 } | |
2020 } | |
2021 } | |
2022 break; | |
2023 | |
2024 default: | |
2025 invalid: | |
2026 return (display_string (w, vpos, "*invalid*", hpos, 0, | |
2027 minendcol, maxendcol)); | |
2028 } | |
2029 | |
2030 end: | |
2031 if (minendcol > hpos) | |
2032 hpos = display_string (w, vpos, "", hpos, 0, minendcol, -1); | |
2033 return hpos; | |
2034 } | |
2035 | |
2036 /* Return a string for the output of a mode line %-spec for window W, | |
2037 generated by character C and width MAXWIDTH. */ | |
2038 | |
1017
d42877206c0a
* xdisp.c (display_mode_line): Use x_implicitly_set_name here.
Jim Blandy <jimb@redhat.com>
parents:
973
diff
changeset
|
2039 static char lots_of_dashes[] = "--------------------------------------------------------------------------------------------------------------------------------------------"; |
d42877206c0a
* xdisp.c (display_mode_line): Use x_implicitly_set_name here.
Jim Blandy <jimb@redhat.com>
parents:
973
diff
changeset
|
2040 |
277 | 2041 static char * |
2042 decode_mode_spec (w, c, maxwidth) | |
2043 struct window *w; | |
2044 register char c; | |
2045 register int maxwidth; | |
2046 { | |
2047 Lisp_Object obj = Qnil; | |
769 | 2048 FRAME_PTR f = XFRAME (WINDOW_FRAME (w)); |
2049 char *decode_mode_spec_buf = (char *) FRAME_TEMP_GLYPHS (f)->total_contents; | |
277 | 2050 |
769 | 2051 if (maxwidth > FRAME_WIDTH (f)) |
2052 maxwidth = FRAME_WIDTH (f); | |
277 | 2053 |
2054 switch (c) | |
2055 { | |
2056 case 'b': | |
2057 obj = current_buffer->name; | |
2058 #if 0 | |
2059 if (maxwidth >= 3 && XSTRING (obj)->size > maxwidth) | |
2060 { | |
2061 bcopy (XSTRING (obj)->data, decode_mode_spec_buf, maxwidth - 1); | |
2062 decode_mode_spec_buf[maxwidth - 1] = '\\'; | |
2063 decode_mode_spec_buf[maxwidth] = '\0'; | |
2064 return decode_mode_spec_buf; | |
2065 } | |
2066 #endif | |
2067 break; | |
2068 | |
2069 case 'f': | |
2070 obj = current_buffer->filename; | |
2071 #if 0 | |
485 | 2072 if (NILP (obj)) |
277 | 2073 return "[none]"; |
2074 else if (XTYPE (obj) == Lisp_String && XSTRING (obj)->size > maxwidth) | |
2075 { | |
2076 bcopy ("...", decode_mode_spec_buf, 3); | |
2077 bcopy (XSTRING (obj)->data + XSTRING (obj)->size - maxwidth + 3, | |
2078 decode_mode_spec_buf + 3, maxwidth - 3); | |
2079 return decode_mode_spec_buf; | |
2080 } | |
2081 #endif | |
2082 break; | |
2083 | |
2084 case 'm': | |
2085 obj = current_buffer->mode_name; | |
2086 break; | |
2087 | |
2088 case 'n': | |
2089 if (BEGV > BEG || ZV < Z) | |
2090 return " Narrow"; | |
2091 break; | |
2092 | |
2093 case '*': | |
485 | 2094 if (!NILP (current_buffer->read_only)) |
277 | 2095 return "%"; |
2096 if (MODIFF > current_buffer->save_modified) | |
2097 return "*"; | |
2098 return "-"; | |
2099 | |
2100 case 's': | |
2101 /* status of process */ | |
2102 obj = Fget_buffer_process (Fcurrent_buffer ()); | |
485 | 2103 if (NILP (obj)) |
277 | 2104 return "no process"; |
2105 obj = Fsymbol_name (Fprocess_status (obj)); | |
2106 break; | |
2107 | |
2108 case 'p': | |
2109 { | |
2110 int pos = marker_position (w->start); | |
2111 int total = ZV - BEGV; | |
2112 | |
2113 if (XFASTINT (w->window_end_pos) <= Z - ZV) | |
2114 { | |
2115 if (pos <= BEGV) | |
2116 return "All"; | |
2117 else | |
2118 return "Bottom"; | |
2119 } | |
2120 else if (pos <= BEGV) | |
2121 return "Top"; | |
2122 else | |
2123 { | |
2124 total = ((pos - BEGV) * 100 + total - 1) / total; | |
2125 /* We can't normally display a 3-digit number, | |
2126 so get us a 2-digit number that is close. */ | |
2127 if (total == 100) | |
2128 total = 99; | |
2129 sprintf (decode_mode_spec_buf, "%2d%%", total); | |
2130 return decode_mode_spec_buf; | |
2131 } | |
2132 } | |
2133 | |
2134 case '%': | |
2135 return "%"; | |
2136 | |
2137 case '[': | |
2138 { | |
2139 int i; | |
2140 char *p; | |
2141 | |
2142 if (command_loop_level > 5) | |
2143 return "[[[... "; | |
2144 p = decode_mode_spec_buf; | |
2145 for (i = 0; i < command_loop_level; i++) | |
2146 *p++ = '['; | |
2147 *p = 0; | |
2148 return decode_mode_spec_buf; | |
2149 } | |
2150 | |
2151 case ']': | |
2152 { | |
2153 int i; | |
2154 char *p; | |
2155 | |
2156 if (command_loop_level > 5) | |
2157 return " ...]]]"; | |
2158 p = decode_mode_spec_buf; | |
2159 for (i = 0; i < command_loop_level; i++) | |
2160 *p++ = ']'; | |
2161 *p = 0; | |
2162 return decode_mode_spec_buf; | |
2163 } | |
2164 | |
2165 case '-': | |
2166 { | |
2167 register char *p; | |
2168 register int i; | |
2169 | |
2170 if (maxwidth < sizeof (lots_of_dashes)) | |
2171 return lots_of_dashes; | |
2172 else | |
2173 { | |
2174 for (p = decode_mode_spec_buf, i = maxwidth; i > 0; i--) | |
2175 *p++ = '-'; | |
2176 *p = '\0'; | |
2177 } | |
2178 return decode_mode_spec_buf; | |
2179 } | |
2180 } | |
2181 | |
2182 if (XTYPE (obj) == Lisp_String) | |
2183 return (char *) XSTRING (obj)->data; | |
2184 else | |
2185 return ""; | |
2186 } | |
2187 | |
2188 /* Display STRING on one line of window W, starting at HPOS. | |
2189 Display at position VPOS. Caller should have done get_display_line. | |
1017
d42877206c0a
* xdisp.c (display_mode_line): Use x_implicitly_set_name here.
Jim Blandy <jimb@redhat.com>
parents:
973
diff
changeset
|
2190 If VPOS == -1, display it as the current frame's title. |
277 | 2191 |
2192 TRUNCATE is GLYPH to display at end if truncated. Zero for none. | |
2193 | |
2194 MINCOL is the first column ok to end at. (Pad with spaces to this col.) | |
2195 MAXCOL is the last column ok to end at. Truncate here. | |
2196 -1 for MINCOL or MAXCOL means no explicit minimum or maximum. | |
769 | 2197 Both count from the left edge of the frame, as does HPOS. |
277 | 2198 The right edge of W is an implicit maximum. |
2199 If TRUNCATE is nonzero, the implicit maximum is one column before the edge. | |
2200 | |
2201 Returns ending hpos */ | |
2202 | |
2203 static int | |
2204 display_string (w, vpos, string, hpos, truncate, mincol, maxcol) | |
2205 struct window *w; | |
2206 unsigned char *string; | |
2207 int vpos, hpos; | |
2208 GLYPH truncate; | |
2209 int mincol, maxcol; | |
2210 { | |
2211 register int c; | |
2212 register GLYPH *p1; | |
2213 int hscroll = XINT (w->hscroll); | |
1600
775c2ab9800f
* xdisp.c (display_string): Use w's buffer's value of
Jim Blandy <jimb@redhat.com>
parents:
1527
diff
changeset
|
2214 int tab_width = XINT (XBUFFER (w->buffer)->tab_width); |
277 | 2215 register GLYPH *start; |
2216 register GLYPH *end; | |
769 | 2217 struct frame_glyphs *desired_glyphs = FRAME_DESIRED_GLYPHS (XFRAME (w->frame)); |
277 | 2218 GLYPH *p1start = desired_glyphs->glyphs[vpos] + hpos; |
2219 int window_width = XFASTINT (w->width); | |
2220 | |
2221 /* Use the standard display table, not the window's display table. | |
2222 We don't want the mode line in rot13. */ | |
2223 register struct Lisp_Vector *dp = 0; | |
2224 | |
2225 if (XTYPE (Vstandard_display_table) == Lisp_Vector | |
2226 && XVECTOR (Vstandard_display_table)->size == DISP_TABLE_SIZE) | |
2227 dp = XVECTOR (Vstandard_display_table); | |
2228 | |
2229 if (tab_width <= 0 || tab_width > 20) tab_width = 8; | |
2230 | |
2231 p1 = p1start; | |
2232 start = desired_glyphs->glyphs[vpos] + XFASTINT (w->left); | |
2233 end = start + window_width - (truncate != 0); | |
2234 | |
2235 if ((window_width + XFASTINT (w->left)) | |
769 | 2236 != FRAME_WIDTH (XFRAME (WINDOW_FRAME (w)))) |
277 | 2237 *end-- = '|'; |
2238 | |
2239 if (maxcol >= 0 && end - desired_glyphs->glyphs[vpos] > maxcol) | |
2240 end = desired_glyphs->glyphs[vpos] + maxcol; | |
2241 if (maxcol >= 0 && mincol > maxcol) | |
2242 mincol = maxcol; | |
2243 | |
2244 while (p1 < end) | |
2245 { | |
2246 c = *string++; | |
2247 if (!c) break; | |
2248 if (c >= 040 && c < 0177 | |
2249 && (dp == 0 || XTYPE (DISP_CHAR_ROPE (dp, c)) != Lisp_String)) | |
2250 { | |
2251 if (p1 >= start) | |
2252 *p1 = c; | |
2253 p1++; | |
2254 } | |
2255 else if (c == '\t') | |
2256 { | |
2257 do | |
2258 { | |
2259 if (p1 >= start && p1 < end) | |
2260 *p1 = SPACEGLYPH; | |
2261 p1++; | |
2262 } | |
2263 while ((p1 - start + hscroll - (hscroll > 0)) % tab_width); | |
2264 } | |
2265 else if (dp != 0 && XTYPE (DISP_CHAR_ROPE (dp, c)) == Lisp_String) | |
2266 p1 = copy_rope (p1, start, DISP_CHAR_ROPE (dp, c)); | |
1527
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
2267 else if (c < 0200 && ! NILP (buffer_defaults.ctl_arrow)) |
277 | 2268 { |
2269 if (p1 >= start) | |
2270 *p1 = (dp && XTYPE (DISP_CTRL_GLYPH (dp)) == Lisp_Int | |
2271 ? XINT (DISP_CTRL_GLYPH (dp)) : '^'); | |
2272 p1++; | |
368 | 2273 if (p1 >= start && p1 < end) |
277 | 2274 *p1 = c ^ 0100; |
2275 p1++; | |
2276 } | |
2277 else | |
2278 { | |
2279 if (p1 >= start) | |
2280 *p1 = (dp && XTYPE (DISP_ESCAPE_GLYPH (dp)) == Lisp_Int | |
2281 ? XINT (DISP_ESCAPE_GLYPH (dp)) : '\\'); | |
2282 p1++; | |
368 | 2283 if (p1 >= start && p1 < end) |
277 | 2284 *p1 = (c >> 6) + '0'; |
2285 p1++; | |
368 | 2286 if (p1 >= start && p1 < end) |
277 | 2287 *p1 = (7 & (c >> 3)) + '0'; |
2288 p1++; | |
368 | 2289 if (p1 >= start && p1 < end) |
277 | 2290 *p1 = (7 & c) + '0'; |
2291 p1++; | |
2292 } | |
2293 } | |
2294 | |
2295 if (c) | |
2296 { | |
2297 p1 = end; | |
2298 if (truncate) *p1++ = truncate; | |
2299 } | |
2300 else if (mincol >= 0) | |
2301 { | |
2302 end = desired_glyphs->glyphs[vpos] + mincol; | |
2303 while (p1 < end) | |
2304 *p1++ = SPACEGLYPH; | |
2305 } | |
2306 | |
2307 { | |
2308 register int len = p1 - desired_glyphs->glyphs[vpos]; | |
2309 | |
2310 if (len > desired_glyphs->used[vpos]) | |
2311 desired_glyphs->used[vpos] = len; | |
2312 desired_glyphs->glyphs[vpos][desired_glyphs->used[vpos]] = 0; | |
2313 | |
2314 return len; | |
2315 } | |
2316 } | |
2317 | |
2318 void | |
2319 syms_of_xdisp () | |
2320 { | |
2321 staticpro (&last_arrow_position); | |
2322 staticpro (&last_arrow_string); | |
2323 last_arrow_position = Qnil; | |
2324 last_arrow_string = Qnil; | |
2325 | |
2326 DEFVAR_LISP ("global-mode-string", &Vglobal_mode_string, | |
782
a6d00bdb2b60
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
781
diff
changeset
|
2327 "String (or mode line construct) included (normally) in `mode-line-format'."); |
277 | 2328 Vglobal_mode_string = Qnil; |
2329 | |
2330 DEFVAR_LISP ("overlay-arrow-position", &Voverlay_arrow_position, | |
2331 "Marker for where to display an arrow on top of the buffer text.\n\ | |
2332 This must be the beginning of a line in order to work.\n\ | |
2333 See also `overlay-arrow-string'."); | |
2334 Voverlay_arrow_position = Qnil; | |
2335 | |
2336 DEFVAR_LISP ("overlay-arrow-string", &Voverlay_arrow_string, | |
2337 "String to display as an arrow. See also `overlay-arrow-position'."); | |
2338 Voverlay_arrow_string = Qnil; | |
2339 | |
2340 DEFVAR_INT ("scroll-step", &scroll_step, | |
2341 "*The number of lines to try scrolling a window by when point moves out.\n\ | |
769 | 2342 If that fails to bring point back on frame, point is centered instead.\n\ |
2343 If this is zero, point is always centered after it moves off frame."); | |
277 | 2344 |
2345 DEFVAR_INT ("debug-end-pos", &debug_end_pos, "Don't ask"); | |
2346 | |
2347 DEFVAR_BOOL ("truncate-partial-width-windows", | |
2348 &truncate_partial_width_windows, | |
769 | 2349 "*Non-nil means truncate lines in all windows less than full frame wide."); |
277 | 2350 truncate_partial_width_windows = 1; |
2351 | |
2352 DEFVAR_BOOL ("mode-line-inverse-video", &mode_line_inverse_video, | |
2353 "*Non-nil means use inverse video for the mode line."); | |
2354 mode_line_inverse_video = 1; | |
2355 } | |
2356 | |
2357 /* initialize the window system */ | |
2358 init_xdisp () | |
2359 { | |
2360 Lisp_Object root_window; | |
2361 #ifndef COMPILER_REGISTER_BUG | |
2362 register | |
2363 #endif /* COMPILER_REGISTER_BUG */ | |
2364 struct window *mini_w; | |
2365 | |
2366 this_line_bufpos = 0; | |
2367 | |
2368 mini_w = XWINDOW (minibuf_window); | |
1017
d42877206c0a
* xdisp.c (display_mode_line): Use x_implicitly_set_name here.
Jim Blandy <jimb@redhat.com>
parents:
973
diff
changeset
|
2369 root_window = FRAME_ROOT_WINDOW (XFRAME (WINDOW_FRAME (mini_w))); |
277 | 2370 |
2371 echo_area_glyphs = 0; | |
2372 previous_echo_glyphs = 0; | |
2373 | |
2374 if (!noninteractive) | |
2375 { | |
769 | 2376 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (root_window))); |
277 | 2377 XFASTINT (XWINDOW (root_window)->top) = 0; |
769 | 2378 set_window_height (root_window, FRAME_HEIGHT (f) - 1, 0); |
2379 XFASTINT (mini_w->top) = FRAME_HEIGHT (f) - 1; | |
277 | 2380 set_window_height (minibuf_window, 1, 0); |
2381 | |
769 | 2382 XFASTINT (XWINDOW (root_window)->width) = FRAME_WIDTH (f); |
2383 XFASTINT (mini_w->width) = FRAME_WIDTH (f); | |
277 | 2384 } |
2385 } |