Mercurial > emacs
annotate src/xdisp.c @ 5285:6c3cfa1f8188
(shell-mode): Pass t to comint-read-input-ring.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 23 Dec 1993 03:41:22 +0000 |
parents | 8c30e49ddc04 |
children | fcd6e0da3380 |
rev | line source |
---|---|
277 | 1 /* Display generation from window structure and buffer text. |
2065
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
2 Copyright (C) 1985, 1986, 1987, 1988, 1993 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 | |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
8 the Free Software Foundation; either version 2, or (at your option) |
277 | 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 | |
4696
1fc792473491
Include <config.h> instead of "config.h".
Roland McGrath <roland@gnu.org>
parents:
4423
diff
changeset
|
21 #include <config.h> |
277 | 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" |
4386
abd79e187610
(try_window): Handle invisible newline at end of buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3937
diff
changeset
|
36 #include "intervals.h" |
277 | 37 |
38 extern int interrupt_input; | |
39 extern int command_loop_level; | |
40 | |
41 /* Nonzero means print newline before next minibuffer message. */ | |
42 | |
43 int noninteractive_need_newline; | |
44 | |
45 #define min(a, b) ((a) < (b) ? (a) : (b)) | |
46 #define max(a, b) ((a) > (b) ? (a) : (b)) | |
47 | |
48 /* The buffer position of the first character appearing | |
769 | 49 entirely or partially on the current frame line. |
50 Or zero, which disables the optimization for the current frame line. */ | |
277 | 51 static int this_line_bufpos; |
52 | |
53 /* Number of characters past the end of this line, | |
54 including the terminating newline */ | |
55 static int this_line_endpos; | |
56 | |
769 | 57 /* The vertical position of this frame line. */ |
277 | 58 static int this_line_vpos; |
59 | |
769 | 60 /* Hpos value for start of display on this frame line. |
277 | 61 Usually zero, but negative if first character really began |
62 on previous line */ | |
63 static int this_line_start_hpos; | |
64 | |
65 /* Buffer that this_line variables are describing. */ | |
66 static struct buffer *this_line_buffer; | |
67 | |
68 /* Set by try_window_id to the vpos of first of any lines | |
769 | 69 scrolled on to the bottom of the frame. These lines should |
277 | 70 not be included in any general scroll computation. */ |
71 static int scroll_bottom_vpos; | |
72 | |
73 /* Value of echo_area_glyphs when it was last acted on. | |
769 | 74 If this is nonzero, there is a message on the frame |
277 | 75 in the minibuffer and it should be erased as soon |
76 as it is no longer requested to appear. */ | |
77 char *previous_echo_glyphs; | |
78 | |
769 | 79 /* Nonzero means truncate lines in all windows less wide than the frame */ |
277 | 80 int truncate_partial_width_windows; |
81 | |
82 Lisp_Object Vglobal_mode_string; | |
83 | |
84 /* Marker for where to display an arrow on top of the buffer text. */ | |
85 Lisp_Object Voverlay_arrow_position; | |
86 | |
87 /* String to display for the arrow. */ | |
88 Lisp_Object Voverlay_arrow_string; | |
89 | |
90 /* 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
|
91 static Lisp_Object last_arrow_position, last_arrow_string; |
277 | 92 |
93 /* Nonzero if overlay arrow has been displayed once in this window. */ | |
94 static int overlay_arrow_seen; | |
95 | |
3265
80f57ae8d44e
(syms_of_xdisp): Make highlight-nonselected-windows Lisp var.
Richard M. Stallman <rms@gnu.org>
parents:
3165
diff
changeset
|
96 /* Nonzero means highlight the region even in nonselected windows. */ |
80f57ae8d44e
(syms_of_xdisp): Make highlight-nonselected-windows Lisp var.
Richard M. Stallman <rms@gnu.org>
parents:
3165
diff
changeset
|
97 static int highlight_nonselected_windows; |
80f57ae8d44e
(syms_of_xdisp): Make highlight-nonselected-windows Lisp var.
Richard M. Stallman <rms@gnu.org>
parents:
3165
diff
changeset
|
98 |
769 | 99 /* If cursor motion alone moves point off frame, |
277 | 100 Try scrolling this many lines up or down if that will bring it back. */ |
101 int scroll_step; | |
102 | |
103 /* Nonzero if try_window_id has made blank lines at window bottom | |
104 since the last redisplay that paused */ | |
105 static int blank_end_of_window; | |
106 | |
107 /* Number of windows showing the buffer of the selected window. | |
108 keyboard.c refers to this. */ | |
109 int buffer_shared; | |
110 | |
769 | 111 /* display_text_line sets these to the frame position (origin 0) of point, |
277 | 112 whether the window is selected or not. |
113 Set one to -1 first to determine whether point was found afterwards. */ | |
114 | |
115 static int cursor_vpos; | |
116 static int cursor_hpos; | |
117 | |
118 int debug_end_pos; | |
119 | |
120 /* Nonzero means display mode line highlighted */ | |
121 int mode_line_inverse_video; | |
122 | |
123 static void echo_area_display (); | |
124 void mark_window_display_accurate (); | |
125 static void redisplay_windows (); | |
126 static void redisplay_window (); | |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
127 static void update_menu_bars (); |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
128 static void update_menu_bar (); |
277 | 129 static void try_window (); |
130 static int try_window_id (); | |
131 static struct position *display_text_line (); | |
132 static void display_mode_line (); | |
133 static int display_mode_element (); | |
134 static char *fmodetrunc (); | |
135 static char *decode_mode_spec (); | |
136 static int display_string (); | |
2150
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
137 static void display_menu_bar (); |
2303
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
138 static int display_count_lines (); |
277 | 139 |
140 /* Prompt to display in front of the minibuffer contents */ | |
141 char *minibuf_prompt; | |
142 | |
143 /* Width in columns of current minibuffer prompt. */ | |
144 int minibuf_prompt_width; | |
145 | |
146 /* Message to display instead of minibuffer contents | |
147 This is what the functions error and message make, | |
148 and command echoing uses it as well. | |
149 It overrides the minibuf_prompt as well as the buffer. */ | |
150 char *echo_area_glyphs; | |
151 | |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
152 /* This is the length of the message in echo_area_glyphs. */ |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
153 int echo_area_glyphs_length; |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
154 |
277 | 155 /* true iff we should redraw the mode lines on the next redisplay */ |
156 int update_mode_lines; | |
157 | |
158 /* Smallest number of characters before the gap | |
159 at any time since last redisplay that finished. | |
160 Valid for current buffer when try_window_id can be called. */ | |
161 int beg_unchanged; | |
162 | |
163 /* Smallest number of characters after the gap | |
164 at any time since last redisplay that finished. | |
165 Valid for current buffer when try_window_id can be called. */ | |
166 int end_unchanged; | |
167 | |
168 /* MODIFF as of last redisplay that finished; | |
169 if it matches MODIFF, beg_unchanged and end_unchanged | |
170 contain no useful information */ | |
171 int unchanged_modified; | |
172 | |
173 /* Nonzero if head_clip or tail_clip of current buffer has changed | |
174 since last redisplay that finished */ | |
175 int clip_changed; | |
176 | |
177 /* Nonzero if window sizes or contents have changed | |
178 since last redisplay that finished */ | |
179 int windows_or_buffers_changed; | |
180 | |
2303
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
181 /* Nonzero after display_mode_line if %l was used |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
182 and it displayed a line number. */ |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
183 int line_number_displayed; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
184 |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
185 /* Maximum buffer size for which to display line numbers. */ |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
186 int line_number_display_limit; |
277 | 187 |
1527
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
188 /* 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
|
189 any existing message, and let the minibuffer text show through. */ |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
190 |
1527
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
191 void |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
192 message1 (m) |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
193 char *m; |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
194 { |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
195 if (noninteractive) |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
196 { |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
197 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
|
198 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
|
199 noninteractive_need_newline = 0; |
2526
bcba821c17bc
(message, message1): If noninteractive and
Richard M. Stallman <rms@gnu.org>
parents:
2324
diff
changeset
|
200 if (cursor_in_echo_area != 0) |
bcba821c17bc
(message, message1): If noninteractive and
Richard M. Stallman <rms@gnu.org>
parents:
2324
diff
changeset
|
201 fprintf (stderr, "%s", m); |
bcba821c17bc
(message, message1): If noninteractive and
Richard M. Stallman <rms@gnu.org>
parents:
2324
diff
changeset
|
202 else |
bcba821c17bc
(message, message1): If noninteractive and
Richard M. Stallman <rms@gnu.org>
parents:
2324
diff
changeset
|
203 fprintf (stderr, "%s\n", m); |
1527
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
204 fflush (stderr); |
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 /* 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
|
207 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
|
208 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
|
209 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
|
210 { |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
211 #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
|
212 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
|
213 |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
214 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
|
215 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
|
216 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
|
217 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
|
218 && ! 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
|
219 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
|
220 #endif |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
221 |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
222 if (m) |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
223 { |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
224 echo_area_glyphs = m; |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
225 echo_area_glyphs_length = strlen (m); |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
226 } |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
227 else |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
228 echo_area_glyphs = previous_echo_glyphs = 0; |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
229 |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
230 do_pending_window_change (); |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
231 echo_area_display (); |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
232 update_frame (XFRAME (XWINDOW (minibuf_window)->frame), 1, 1); |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
233 do_pending_window_change (); |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
234 } |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
235 } |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
236 |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
237 /* Display an echo area message M with a specified length of LEN chars. |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
238 This way, null characters can be included. */ |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
239 |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
240 void |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
241 message2 (m, len) |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
242 char *m; |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
243 int len; |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
244 { |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
245 if (noninteractive) |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
246 { |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
247 if (noninteractive_need_newline) |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
248 putc ('\n', stderr); |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
249 noninteractive_need_newline = 0; |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
250 fwrite (m, len, 1, stderr); |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
251 if (cursor_in_echo_area == 0) |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
252 fprintf (stderr, "\n"); |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
253 fflush (stderr); |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
254 } |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
255 /* A null message buffer means that the frame hasn't really been |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
256 initialized yet. Error messages get reported properly by |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
257 cmd_error, so this must be just an informative message; toss it. */ |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
258 else if (INTERACTIVE && FRAME_MESSAGE_BUF (selected_frame)) |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
259 { |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
260 #ifdef MULTI_FRAME |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
261 Lisp_Object minibuf_frame; |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
262 |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
263 choose_minibuf_frame (); |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
264 minibuf_frame = WINDOW_FRAME (XWINDOW (minibuf_window)); |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
265 FRAME_SAMPLE_VISIBILITY (XFRAME (minibuf_frame)); |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
266 if (FRAME_VISIBLE_P (selected_frame) |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
267 && ! FRAME_VISIBLE_P (XFRAME (minibuf_frame))) |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
268 Fmake_frame_visible (WINDOW_FRAME (XWINDOW (minibuf_window))); |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
269 #endif |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
270 |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
271 if (m) |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
272 { |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
273 echo_area_glyphs = m; |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
274 echo_area_glyphs_length = len; |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
275 } |
1527
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
276 else |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
277 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
|
278 |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
279 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
|
280 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
|
281 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
|
282 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
|
283 } |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
284 } |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
285 |
769 | 286 /* Nonzero if FRAME_MESSAGE_BUF (selected_frame) is being used by print; |
331 | 287 zero if being used by message. */ |
288 int message_buf_print; | |
289 | |
1446
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
290 /* 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
|
291 any existing message, and let the minibuffer text show through. */ |
277 | 292 /* VARARGS 1 */ |
293 void | |
294 message (m, a1, a2, a3) | |
295 char *m; | |
296 { | |
297 if (noninteractive) | |
298 { | |
1446
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
299 if (m) |
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
300 { |
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
301 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
|
302 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
|
303 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
|
304 fprintf (stderr, m, a1, a2, a3); |
2526
bcba821c17bc
(message, message1): If noninteractive and
Richard M. Stallman <rms@gnu.org>
parents:
2324
diff
changeset
|
305 if (cursor_in_echo_area == 0) |
bcba821c17bc
(message, message1): If noninteractive and
Richard M. Stallman <rms@gnu.org>
parents:
2324
diff
changeset
|
306 fprintf (stderr, "\n"); |
1446
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
307 fflush (stderr); |
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
308 } |
277 | 309 } |
1873
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
310 else if (INTERACTIVE) |
277 | 311 { |
1873
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
312 /* The frame whose minibuffer we're going to display the message on. |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
313 It may be larger than the selected frame, so we need |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
314 to use its buffer, not the selected frame's buffer. */ |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
315 FRAME_PTR echo_frame; |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
316 #ifdef MULTI_FRAME |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
317 choose_minibuf_frame (); |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
318 echo_frame = XFRAME (WINDOW_FRAME (XWINDOW (minibuf_window))); |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
319 #else |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
320 echo_frame = selected_frame; |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
321 #endif |
277 | 322 |
1873
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
323 /* A null message buffer means that the frame hasn't really been |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
324 initialized yet. Error messages get reported properly by |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
325 cmd_error, so this must be just an informative message; toss it. */ |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
326 if (FRAME_MESSAGE_BUF (echo_frame)) |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
327 { |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
328 if (m) |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
329 { |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
330 int len; |
1873
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
331 #ifdef NO_ARG_ARRAY |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
332 int a[3]; |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
333 a[0] = a1; |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
334 a[1] = a2; |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
335 a[2] = a3; |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
336 |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
337 len = doprnt (FRAME_MESSAGE_BUF (echo_frame), |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
338 FRAME_WIDTH (echo_frame), m, 0, 3, a); |
1873
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
339 #else |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
340 len = doprnt (FRAME_MESSAGE_BUF (echo_frame), |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
341 FRAME_WIDTH (echo_frame), m, 0, 3, &a1); |
1873
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
342 #endif /* NO_ARG_ARRAY */ |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
343 |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
344 message2 (FRAME_MESSAGE_BUF (echo_frame), len); |
1873
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
345 } |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
346 else |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
347 message1 (0); |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
348 |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
349 /* Print should start at the beginning of the message |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
350 buffer next time. */ |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
351 message_buf_print = 0; |
1446
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
352 } |
277 | 353 } |
354 } | |
355 | |
356 static void | |
357 echo_area_display () | |
358 { | |
359 register int vpos; | |
769 | 360 FRAME_PTR f; |
277 | 361 |
769 | 362 #ifdef MULTI_FRAME |
363 choose_minibuf_frame (); | |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
364 #endif |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
365 |
769 | 366 f = XFRAME (WINDOW_FRAME (XWINDOW (minibuf_window))); |
277 | 367 |
769 | 368 if (! FRAME_VISIBLE_P (f)) |
277 | 369 return; |
370 | |
769 | 371 if (frame_garbaged) |
277 | 372 { |
3516
f1ca34ddfd84
(redisplay, echo_area_display): Use redraw_garbaged_frames.
Richard M. Stallman <rms@gnu.org>
parents:
3266
diff
changeset
|
373 redraw_garbaged_frames (); |
769 | 374 frame_garbaged = 0; |
277 | 375 } |
376 | |
377 if (echo_area_glyphs || minibuf_level == 0) | |
378 { | |
379 vpos = XFASTINT (XWINDOW (minibuf_window)->top); | |
769 | 380 get_display_line (f, vpos, 0); |
277 | 381 display_string (XWINDOW (minibuf_window), vpos, |
382 echo_area_glyphs ? echo_area_glyphs : "", | |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
383 echo_area_glyphs ? echo_area_glyphs_length : -1, |
769 | 384 0, 0, 0, FRAME_WIDTH (f)); |
277 | 385 |
386 /* If desired cursor location is on this line, put it at end of text */ | |
769 | 387 if (FRAME_CURSOR_Y (f) == vpos) |
388 FRAME_CURSOR_X (f) = FRAME_DESIRED_GLYPHS (f)->used[vpos]; | |
727 | 389 |
390 /* Fill the rest of the minibuffer window with blank lines. */ | |
391 { | |
392 int i; | |
393 | |
3689
82856e3ea14d
(echo_area_display): Use XFASTINT on ->height.
Richard M. Stallman <rms@gnu.org>
parents:
3648
diff
changeset
|
394 for (i = vpos + 1; |
82856e3ea14d
(echo_area_display): Use XFASTINT on ->height.
Richard M. Stallman <rms@gnu.org>
parents:
3648
diff
changeset
|
395 i < vpos + XFASTINT (XWINDOW (minibuf_window)->height); i++) |
727 | 396 { |
769 | 397 get_display_line (f, i, 0); |
727 | 398 display_string (XWINDOW (minibuf_window), vpos, |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
399 "", 0, 0, 0, 0, FRAME_WIDTH (f)); |
727 | 400 } |
401 } | |
277 | 402 } |
403 else if (!EQ (minibuf_window, selected_window)) | |
404 windows_or_buffers_changed++; | |
405 | |
406 if (EQ (minibuf_window, selected_window)) | |
407 this_line_bufpos = 0; | |
408 | |
409 previous_echo_glyphs = echo_area_glyphs; | |
410 } | |
411 | |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
412 /* Prepare for redisplay by updating menu-bar item lists when appropriate. |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
413 This can't be done in `redisplay' itself because it can call eval. */ |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
414 |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
415 void |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
416 prepare_menu_bars () |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
417 { |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
418 register struct window *w = XWINDOW (selected_window); |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
419 int all_windows; |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
420 |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
421 if (noninteractive) |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
422 return; |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
423 |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
424 /* Set the visible flags for all frames. |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
425 Do this before checking for resized or garbaged frames; they want |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
426 to know if their frames are visible. |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
427 See the comment in frame.h for FRAME_SAMPLE_VISIBILITY. */ |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
428 { |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
429 Lisp_Object tail, frame; |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
430 |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
431 FOR_EACH_FRAME (tail, frame) |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
432 FRAME_SAMPLE_VISIBILITY (XFRAME (frame)); |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
433 } |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
434 |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
435 /* Notice any pending interrupt request to change frame size. */ |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
436 do_pending_window_change (); |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
437 |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
438 if (frame_garbaged) |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
439 { |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
440 redraw_garbaged_frames (); |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
441 frame_garbaged = 0; |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
442 } |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
443 |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
444 if (clip_changed || windows_or_buffers_changed) |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
445 update_mode_lines++; |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
446 |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
447 /* Detect case that we need to write a star in the mode line. */ |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
448 if (XFASTINT (w->last_modified) < MODIFF |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
449 && XFASTINT (w->last_modified) <= current_buffer->save_modified) |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
450 { |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
451 w->update_mode_line = Qt; |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
452 if (buffer_shared > 1) |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
453 update_mode_lines++; |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
454 } |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
455 |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
456 all_windows = update_mode_lines || buffer_shared > 1; |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
457 |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
458 /* If specs for an arrow have changed, do thorough redisplay |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
459 to ensure we remove any arrow that should no longer exist. */ |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
460 if (! EQ (Voverlay_arrow_position, last_arrow_position) |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
461 || ! EQ (Voverlay_arrow_string, last_arrow_string)) |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
462 all_windows = 1, clip_changed = 1; |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
463 |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
464 /* Update the menu bar item lists, if appropriate. |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
465 This has to be done before any actual redisplay |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
466 or generation of display lines. */ |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
467 if (all_windows) |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
468 { |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
469 Lisp_Object tail, frame; |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
470 |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
471 FOR_EACH_FRAME (tail, frame) |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
472 { |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
473 FRAME_PTR f = XFRAME (frame); |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
474 |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
475 if (FRAME_VISIBLE_P (f)) |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
476 update_menu_bars (FRAME_ROOT_WINDOW (f)); |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
477 } |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
478 } |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
479 else if (FRAME_VISIBLE_P (selected_frame)) |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
480 update_menu_bar (selected_window); |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
481 } |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
482 |
769 | 483 /* Do a frame update, taking possible shortcuts into account. |
277 | 484 This is the main external entry point for redisplay. |
485 | |
486 If the last redisplay displayed an echo area message and that | |
487 message is no longer requested, we clear the echo area | |
488 or bring back the minibuffer if that is in use. | |
489 | |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
490 Do not call eval from within this function. |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
491 Calls to eval after the call to echo_area_display would confuse |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
492 the display_line mechanism and would cause a crash. |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
493 Calls to eval before that point will work most of the time, |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
494 but can still lose, because this function |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
495 can be called from signal handlers; with alarms set up; |
277 | 496 or with synchronous processes running. |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
497 |
277 | 498 See Fcall_process; if you called it from here, it could be |
499 entered recursively. */ | |
500 | |
501 void | |
502 redisplay () | |
503 { | |
504 register struct window *w = XWINDOW (selected_window); | |
505 register int pause; | |
506 int must_finish = 0; | |
507 int all_windows; | |
508 register int tlbufpos, tlendpos; | |
509 struct position pos; | |
510 extern int input_pending; | |
511 | |
512 if (noninteractive) | |
513 return; | |
514 | |
1656
a532c5a23984
* xdisp.c (redisplay): Call FRAME_SAMPLE_VISIBILITY to set the
Jim Blandy <jimb@redhat.com>
parents:
1600
diff
changeset
|
515 /* 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
|
516 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
|
517 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
|
518 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
|
519 { |
2252
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2189
diff
changeset
|
520 Lisp_Object tail, frame; |
1656
a532c5a23984
* xdisp.c (redisplay): Call FRAME_SAMPLE_VISIBILITY to set the
Jim Blandy <jimb@redhat.com>
parents:
1600
diff
changeset
|
521 |
2252
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2189
diff
changeset
|
522 FOR_EACH_FRAME (tail, frame) |
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2189
diff
changeset
|
523 FRAME_SAMPLE_VISIBILITY (XFRAME (frame)); |
1656
a532c5a23984
* xdisp.c (redisplay): Call FRAME_SAMPLE_VISIBILITY to set the
Jim Blandy <jimb@redhat.com>
parents:
1600
diff
changeset
|
524 } |
a532c5a23984
* xdisp.c (redisplay): Call FRAME_SAMPLE_VISIBILITY to set the
Jim Blandy <jimb@redhat.com>
parents:
1600
diff
changeset
|
525 |
769 | 526 /* Notice any pending interrupt request to change frame size. */ |
277 | 527 do_pending_window_change (); |
528 | |
769 | 529 if (frame_garbaged) |
277 | 530 { |
3516
f1ca34ddfd84
(redisplay, echo_area_display): Use redraw_garbaged_frames.
Richard M. Stallman <rms@gnu.org>
parents:
3266
diff
changeset
|
531 redraw_garbaged_frames (); |
769 | 532 frame_garbaged = 0; |
277 | 533 } |
534 | |
535 if (clip_changed || windows_or_buffers_changed) | |
536 update_mode_lines++; | |
537 | |
538 /* Detect case that we need to write a star in the mode line. */ | |
539 if (XFASTINT (w->last_modified) < MODIFF | |
540 && XFASTINT (w->last_modified) <= current_buffer->save_modified) | |
541 { | |
542 w->update_mode_line = Qt; | |
543 if (buffer_shared > 1) | |
544 update_mode_lines++; | |
545 } | |
546 | |
769 | 547 FRAME_SCROLL_BOTTOM_VPOS (XFRAME (w->frame)) = -1; |
277 | 548 |
549 all_windows = update_mode_lines || buffer_shared > 1; | |
550 | |
551 /* If specs for an arrow have changed, do thorough redisplay | |
552 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
|
553 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
|
554 || ! EQ (Voverlay_arrow_string, last_arrow_string)) |
277 | 555 all_windows = 1, clip_changed = 1; |
556 | |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
557 /* Normally the message* functions will have already displayed and |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
558 updated the echo area, but the frame may have been trashed, or |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
559 the update may have been preempted, so display the echo area |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
560 again here. */ |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
561 if (echo_area_glyphs || previous_echo_glyphs) |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
562 { |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
563 echo_area_display (); |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
564 must_finish = 1; |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
565 } |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
566 |
2848
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
567 /* If showing region, and mark has changed, must redisplay whole window. */ |
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
568 if (((!NILP (Vtransient_mark_mode) |
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
569 && !NILP (XBUFFER (w->buffer)->mark_active)) |
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
570 != !NILP (w->region_showing)) |
3937
adcbf7680a35
* xdisp.c (redisplay): If we're not already showing the region,
Jim Blandy <jimb@redhat.com>
parents:
3880
diff
changeset
|
571 || (!NILP (w->region_showing) |
adcbf7680a35
* xdisp.c (redisplay): If we're not already showing the region,
Jim Blandy <jimb@redhat.com>
parents:
3880
diff
changeset
|
572 && !EQ (w->region_showing, |
adcbf7680a35
* xdisp.c (redisplay): If we're not already showing the region,
Jim Blandy <jimb@redhat.com>
parents:
3880
diff
changeset
|
573 Fmarker_position (XBUFFER (w->buffer)->mark)))) |
2848
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
574 this_line_bufpos = -1; |
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
575 |
277 | 576 tlbufpos = this_line_bufpos; |
577 tlendpos = this_line_endpos; | |
485 | 578 if (!all_windows && tlbufpos > 0 && NILP (w->update_mode_line) |
769 | 579 && FRAME_VISIBLE_P (XFRAME (w->frame)) |
277 | 580 /* Make sure recorded data applies to current buffer, etc */ |
581 && this_line_buffer == current_buffer | |
582 && current_buffer == XBUFFER (w->buffer) | |
485 | 583 && NILP (w->force_start) |
277 | 584 /* Point must be on the line that we have info recorded about */ |
585 && point >= tlbufpos | |
586 && point <= Z - tlendpos | |
587 /* All text outside that line, including its final newline, | |
588 must be unchanged */ | |
589 && (XFASTINT (w->last_modified) >= MODIFF | |
590 || (beg_unchanged >= tlbufpos - 1 | |
591 && GPT >= tlbufpos | |
528 | 592 /* If selective display, can't optimize |
593 if the changes start at the beginning of the line. */ | |
594 && ((XTYPE (current_buffer->selective_display) == Lisp_Int | |
595 && XINT (current_buffer->selective_display) > 0 | |
596 ? (beg_unchanged >= tlbufpos | |
597 && GPT > tlbufpos) | |
598 : 1)) | |
277 | 599 && end_unchanged >= tlendpos |
600 && Z - GPT >= tlendpos))) | |
601 { | |
602 if (tlbufpos > BEGV && FETCH_CHAR (tlbufpos - 1) != '\n' | |
603 && (tlbufpos == ZV | |
604 || FETCH_CHAR (tlbufpos) == '\n')) | |
605 /* Former continuation line has disappeared by becoming empty */ | |
606 goto cancel; | |
607 else if (XFASTINT (w->last_modified) < MODIFF | |
608 || MINI_WINDOW_P (w)) | |
609 { | |
610 cursor_vpos = -1; | |
611 overlay_arrow_seen = 0; | |
612 display_text_line (w, tlbufpos, this_line_vpos, this_line_start_hpos, | |
613 pos_tab_offset (w, tlbufpos)); | |
614 /* If line contains point, is not continued, | |
615 and ends at same distance from eob as before, we win */ | |
616 if (cursor_vpos >= 0 && this_line_bufpos | |
617 && this_line_endpos == tlendpos) | |
618 { | |
769 | 619 if (XFASTINT (w->width) != FRAME_WIDTH (XFRAME (WINDOW_FRAME (w)))) |
277 | 620 preserve_other_columns (w); |
621 goto update; | |
622 } | |
623 else | |
624 goto cancel; | |
625 } | |
626 else if (point == XFASTINT (w->last_point)) | |
627 { | |
628 if (!must_finish) | |
629 { | |
630 do_pending_window_change (); | |
631 return; | |
632 } | |
633 goto update; | |
634 } | |
2848
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
635 /* If highlighting the region, we can't just move the cursor. */ |
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
636 else if (! (!NILP (Vtransient_mark_mode) |
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
637 && !NILP (current_buffer->mark_active)) |
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
638 && NILP (w->region_showing)) |
277 | 639 { |
640 pos = *compute_motion (tlbufpos, 0, | |
641 XINT (w->hscroll) ? 1 - XINT (w->hscroll) : 0, | |
642 point, 2, - (1 << (SHORTBITS - 1)), | |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
643 window_internal_width (w) - 1, |
574 | 644 XINT (w->hscroll), |
645 pos_tab_offset (w, tlbufpos)); | |
277 | 646 if (pos.vpos < 1) |
647 { | |
769 | 648 FRAME_CURSOR_X (selected_frame) |
277 | 649 = XFASTINT (w->left) + max (pos.hpos, 0); |
769 | 650 FRAME_CURSOR_Y (selected_frame) = this_line_vpos; |
277 | 651 goto update; |
652 } | |
653 else | |
654 goto cancel; | |
655 } | |
656 cancel: | |
657 /* Text changed drastically or point moved off of line */ | |
769 | 658 cancel_line (this_line_vpos, selected_frame); |
277 | 659 } |
660 | |
661 this_line_bufpos = 0; | |
662 all_windows |= buffer_shared > 1; | |
663 | |
664 if (all_windows) | |
665 { | |
2252
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2189
diff
changeset
|
666 Lisp_Object tail, frame; |
277 | 667 |
2729
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
668 #ifdef HAVE_X_WINDOWS |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
669 /* Since we're doing a thorough redisplay, we might as well |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
670 recompute all our display faces. */ |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
671 clear_face_vector (); |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
672 #endif |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
673 |
277 | 674 /* Recompute # windows showing selected buffer. |
433 | 675 This will be incremented each time such a window is displayed. */ |
277 | 676 buffer_shared = 0; |
677 | |
2252
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2189
diff
changeset
|
678 FOR_EACH_FRAME (tail, frame) |
1718
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
679 { |
2252
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2189
diff
changeset
|
680 FRAME_PTR f = XFRAME (frame); |
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2189
diff
changeset
|
681 |
1992
37c45885540a
* xdisp.c (redisplay): Protect calls to request_sigio and
Jim Blandy <jimb@redhat.com>
parents:
1873
diff
changeset
|
682 /* Mark all the scroll bars to be removed; we'll redeem the ones |
1718
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
683 we want when we redisplay their windows. */ |
1992
37c45885540a
* xdisp.c (redisplay): Protect calls to request_sigio and
Jim Blandy <jimb@redhat.com>
parents:
1873
diff
changeset
|
684 if (condemn_scroll_bars_hook) |
37c45885540a
* xdisp.c (redisplay): Protect calls to request_sigio and
Jim Blandy <jimb@redhat.com>
parents:
1873
diff
changeset
|
685 (*condemn_scroll_bars_hook) (f); |
1718
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
686 |
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
687 if (FRAME_VISIBLE_P (f)) |
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
688 redisplay_windows (FRAME_ROOT_WINDOW (f)); |
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
689 |
1992
37c45885540a
* xdisp.c (redisplay): Protect calls to request_sigio and
Jim Blandy <jimb@redhat.com>
parents:
1873
diff
changeset
|
690 /* Any scroll bars which redisplay_windows should have nuked |
1718
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
691 should now go away. */ |
1992
37c45885540a
* xdisp.c (redisplay): Protect calls to request_sigio and
Jim Blandy <jimb@redhat.com>
parents:
1873
diff
changeset
|
692 if (judge_scroll_bars_hook) |
37c45885540a
* xdisp.c (redisplay): Protect calls to request_sigio and
Jim Blandy <jimb@redhat.com>
parents:
1873
diff
changeset
|
693 (*judge_scroll_bars_hook) (f); |
1718
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
694 } |
277 | 695 } |
769 | 696 else if (FRAME_VISIBLE_P (selected_frame)) |
277 | 697 { |
698 redisplay_window (selected_window, 1); | |
769 | 699 if (XFASTINT (w->width) != FRAME_WIDTH (selected_frame)) |
277 | 700 preserve_other_columns (w); |
701 } | |
702 | |
703 update: | |
704 /* Prevent various kinds of signals during display update. | |
705 stdio is not robust about handling signals, | |
706 which can cause an apparent I/O error. */ | |
707 if (interrupt_input) | |
708 unrequest_sigio (); | |
709 stop_polling (); | |
710 | |
769 | 711 #ifdef MULTI_FRAME |
277 | 712 if (all_windows) |
713 { | |
714 Lisp_Object tail; | |
715 | |
716 pause = 0; | |
717 | |
769 | 718 for (tail = Vframe_list; CONSP (tail); tail = XCONS (tail)->cdr) |
277 | 719 { |
769 | 720 FRAME_PTR f; |
277 | 721 |
769 | 722 if (XTYPE (XCONS (tail)->car) != Lisp_Frame) |
277 | 723 continue; |
724 | |
769 | 725 f = XFRAME (XCONS (tail)->car); |
1718
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
726 if (FRAME_VISIBLE_P (f)) |
277 | 727 { |
769 | 728 pause |= update_frame (f, 0, 0); |
277 | 729 if (!pause) |
769 | 730 mark_window_display_accurate (f->root_window, 1); |
277 | 731 } |
732 } | |
733 } | |
734 else | |
769 | 735 #endif /* MULTI_FRAME */ |
368 | 736 { |
769 | 737 if (FRAME_VISIBLE_P (selected_frame)) |
738 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
|
739 |
433 | 740 /* We may have called echo_area_display at the top of this |
769 | 741 function. If the echo area is on another frame, that may |
742 have put text on a frame other than the selected one, so the | |
743 above call to update_frame would not have caught it. Catch | |
433 | 744 it here. */ |
745 { | |
769 | 746 FRAME_PTR mini_frame = |
747 XFRAME (WINDOW_FRAME (XWINDOW (minibuf_window))); | |
433 | 748 |
769 | 749 if (mini_frame != selected_frame) |
750 pause |= update_frame (mini_frame, 0, 0); | |
433 | 751 } |
368 | 752 } |
277 | 753 |
769 | 754 /* If frame does not match, prevent doing single-line-update next time. |
277 | 755 Also, don't forget to check every line to update the arrow. */ |
756 if (pause) | |
757 { | |
758 this_line_bufpos = 0; | |
485 | 759 if (!NILP (last_arrow_position)) |
277 | 760 { |
761 last_arrow_position = Qt; | |
762 last_arrow_string = Qt; | |
763 } | |
769 | 764 /* If we pause after scrolling, some lines in current_frame |
277 | 765 may be null, so preserve_other_columns won't be able to |
766 preserve all the vertical-bar separators. So, avoid using it | |
767 in that case. */ | |
769 | 768 if (XFASTINT (w->width) != FRAME_WIDTH (selected_frame)) |
277 | 769 update_mode_lines = 1; |
770 } | |
771 | |
769 | 772 /* Now text on frame agrees with windows, so |
277 | 773 put info into the windows for partial redisplay to follow */ |
774 | |
775 if (!pause) | |
776 { | |
777 register struct buffer *b = XBUFFER (w->buffer); | |
778 | |
779 blank_end_of_window = 0; | |
780 clip_changed = 0; | |
781 unchanged_modified = BUF_MODIFF (b); | |
782 beg_unchanged = BUF_GPT (b) - BUF_BEG (b); | |
783 end_unchanged = BUF_Z (b) - BUF_GPT (b); | |
784 | |
785 XFASTINT (w->last_point) = BUF_PT (b); | |
769 | 786 XFASTINT (w->last_point_x) = FRAME_CURSOR_X (selected_frame); |
787 XFASTINT (w->last_point_y) = FRAME_CURSOR_Y (selected_frame); | |
277 | 788 |
789 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
|
790 mark_window_display_accurate (FRAME_ROOT_WINDOW (selected_frame), 1); |
277 | 791 else |
792 { | |
793 w->update_mode_line = Qnil; | |
794 XFASTINT (w->last_modified) = BUF_MODIFF (b); | |
795 w->window_end_valid = Qt; | |
796 last_arrow_position = Voverlay_arrow_position; | |
797 last_arrow_string = Voverlay_arrow_string; | |
798 } | |
799 update_mode_lines = 0; | |
800 windows_or_buffers_changed = 0; | |
801 } | |
802 | |
803 /* Start SIGIO interrupts coming again. | |
804 Having them off during the code above | |
805 makes it less likely one will discard output, | |
806 but not impossible, since there might be stuff | |
807 in the system buffer here. | |
808 But it is much hairier to try to do anything about that. */ | |
809 | |
810 if (interrupt_input) | |
811 request_sigio (); | |
812 start_polling (); | |
813 | |
769 | 814 /* Change frame size now if a change is pending. */ |
277 | 815 do_pending_window_change (); |
816 } | |
817 | |
818 /* Redisplay, but leave alone any recent echo area message | |
819 unless another message has been requested in its place. | |
820 | |
821 This is useful in situations where you need to redisplay but no | |
822 user action has occurred, making it inappropriate for the message | |
823 area to be cleared. See tracking_off and | |
824 wait_reading_process_input for examples of these situations. */ | |
825 | |
826 redisplay_preserve_echo_area () | |
827 { | |
828 if (echo_area_glyphs == 0 && previous_echo_glyphs != 0) | |
829 { | |
830 echo_area_glyphs = previous_echo_glyphs; | |
831 redisplay (); | |
832 echo_area_glyphs = 0; | |
833 } | |
834 else | |
835 redisplay (); | |
836 } | |
837 | |
838 void | |
839 mark_window_display_accurate (window, flag) | |
840 Lisp_Object window; | |
841 int flag; | |
842 { | |
843 register struct window *w; | |
844 | |
485 | 845 for (;!NILP (window); window = w->next) |
277 | 846 { |
1527
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
847 if (XTYPE (window) != Lisp_Window) abort (); |
277 | 848 w = XWINDOW (window); |
849 | |
485 | 850 if (!NILP (w->buffer)) |
2848
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
851 { |
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
852 XFASTINT (w->last_modified) |
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
853 = !flag ? 0 |
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
854 : XBUFFER (w->buffer) == current_buffer |
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
855 ? MODIFF : BUF_MODIFF (XBUFFER (w->buffer)); |
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
856 |
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
857 /* Record if we are showing a region, so can make sure to |
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
858 update it fully at next redisplay. */ |
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
859 w->region_showing = (!NILP (Vtransient_mark_mode) |
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
860 && !NILP (XBUFFER (w->buffer)->mark_active) |
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
861 ? Fmarker_position (XBUFFER (w->buffer)->mark) |
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
862 : Qnil); |
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
863 } |
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
864 |
277 | 865 w->window_end_valid = Qt; |
866 w->update_mode_line = Qnil; | |
867 | |
485 | 868 if (!NILP (w->vchild)) |
277 | 869 mark_window_display_accurate (w->vchild, flag); |
485 | 870 if (!NILP (w->hchild)) |
277 | 871 mark_window_display_accurate (w->hchild, flag); |
872 } | |
873 | |
874 if (flag) | |
875 { | |
876 last_arrow_position = Voverlay_arrow_position; | |
877 last_arrow_string = Voverlay_arrow_string; | |
878 } | |
879 else | |
880 { | |
881 /* t is unequal to any useful value of Voverlay_arrow_... */ | |
882 last_arrow_position = Qt; | |
883 last_arrow_string = Qt; | |
884 } | |
885 } | |
886 | |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
887 /* Update the menu bar item lists for WINDOW |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
888 and its subwindows and siblings. |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
889 This has to be done before we start to fill in any display lines, |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
890 because it can call eval. */ |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
891 |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
892 static void |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
893 update_menu_bars (window) |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
894 Lisp_Object window; |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
895 { |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
896 for (; !NILP (window); window = XWINDOW (window)->next) |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
897 update_menu_bar (window, 0); |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
898 } |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
899 |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
900 /* Update the menu bar item list for window WINDOW and its subwindows. */ |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
901 |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
902 static void |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
903 update_menu_bar (window, just_this_one) |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
904 Lisp_Object window; |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
905 int just_this_one; |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
906 { |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
907 register struct window *w = XWINDOW (window); |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
908 struct buffer *old = current_buffer; |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
909 FRAME_PTR f = XFRAME (WINDOW_FRAME (w)); |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
910 |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
911 /* If this is a combination window, do its children; that's all. */ |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
912 |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
913 if (!NILP (w->vchild)) |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
914 { |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
915 update_menu_bars (w->vchild); |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
916 return; |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
917 } |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
918 if (!NILP (w->hchild)) |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
919 { |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
920 update_menu_bars (w->hchild); |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
921 return; |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
922 } |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
923 if (NILP (w->buffer)) |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
924 abort (); |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
925 |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
926 if (update_mode_lines) |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
927 w->update_mode_line = Qt; |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
928 |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
929 /* When we reach a frame's selected window, redo the frame's menu bar. */ |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
930 if (!NILP (w->update_mode_line) |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
931 && FRAME_MENU_BAR_LINES (f) > 0 |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
932 && EQ (FRAME_SELECTED_WINDOW (f), window)) |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
933 { |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
934 /* If the user has switched buffers or windows, we need to |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
935 recompute to reflect the new bindings. But we'll |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
936 recompute when update_mode_lines is set too; that means |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
937 that people can use force-mode-line-update to request |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
938 that the menu bar be recomputed. The adverse effect on |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
939 the rest of the redisplay algorithm is about the same as |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
940 windows_or_buffers_changed anyway. */ |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
941 if (windows_or_buffers_changed |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
942 || update_mode_lines |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
943 || (XFASTINT (w->last_modified) < MODIFF |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
944 && (XFASTINT (w->last_modified) |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
945 <= XBUFFER (w->buffer)->save_modified))) |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
946 { |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
947 struct buffer *prev = current_buffer; |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
948 current_buffer = XBUFFER (w->buffer); |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
949 FRAME_MENU_BAR_ITEMS (f) = menu_bar_items (); |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
950 current_buffer = prev; |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
951 } |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
952 } |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
953 } |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
954 |
277 | 955 int do_id = 1; |
956 | |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
957 /* Redisplay WINDOW and its subwindows and siblings. */ |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
958 |
277 | 959 static void |
960 redisplay_windows (window) | |
961 Lisp_Object window; | |
962 { | |
485 | 963 for (; !NILP (window); window = XWINDOW (window)->next) |
277 | 964 redisplay_window (window, 0); |
965 } | |
966 | |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
967 /* Redisplay window WINDOW and its subwindows. */ |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
968 |
277 | 969 static void |
970 redisplay_window (window, just_this_one) | |
971 Lisp_Object window; | |
972 int just_this_one; | |
973 { | |
974 register struct window *w = XWINDOW (window); | |
1718
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
975 FRAME_PTR f = XFRAME (WINDOW_FRAME (w)); |
277 | 976 int height; |
977 register int lpoint = point; | |
978 struct buffer *old = current_buffer; | |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
979 register int width = window_internal_width (w) - 1; |
277 | 980 register int startp; |
981 register int hscroll = XINT (w->hscroll); | |
982 struct position pos; | |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
983 int opoint = point; |
277 | 984 int tem; |
985 int window_needs_modeline; | |
986 | |
769 | 987 if (FRAME_HEIGHT (f) == 0) abort (); /* Some bug zeros some core */ |
277 | 988 |
989 /* If this is a combination window, do its children; that's all. */ | |
990 | |
485 | 991 if (!NILP (w->vchild)) |
277 | 992 { |
993 redisplay_windows (w->vchild); | |
994 return; | |
995 } | |
485 | 996 if (!NILP (w->hchild)) |
277 | 997 { |
998 redisplay_windows (w->hchild); | |
999 return; | |
1000 } | |
485 | 1001 if (NILP (w->buffer)) |
277 | 1002 abort (); |
433 | 1003 |
1004 height = window_internal_height (w); | |
1005 | |
1006 if (MINI_WINDOW_P (w)) | |
1007 { | |
1008 if (w == XWINDOW (minibuf_window)) | |
1009 { | |
1010 if (echo_area_glyphs) | |
1011 /* We've already displayed the echo area glyphs, if any. */ | |
1992
37c45885540a
* xdisp.c (redisplay): Protect calls to request_sigio and
Jim Blandy <jimb@redhat.com>
parents:
1873
diff
changeset
|
1012 goto finish_scroll_bars; |
433 | 1013 } |
1014 else | |
1015 { | |
1016 /* This is a minibuffer, but it's not the currently active one, so | |
1017 clear it. */ | |
769 | 1018 int vpos = XFASTINT (XWINDOW (FRAME_MINIBUF_WINDOW (f))->top); |
433 | 1019 int i; |
1020 | |
1021 for (i = 0; i < height; i++) | |
1022 { | |
769 | 1023 get_display_line (f, vpos + i, 0); |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
1024 display_string (w, vpos + i, "", 0, 0, 0, 0, width); |
433 | 1025 } |
1026 | |
1992
37c45885540a
* xdisp.c (redisplay): Protect calls to request_sigio and
Jim Blandy <jimb@redhat.com>
parents:
1873
diff
changeset
|
1027 goto finish_scroll_bars; |
433 | 1028 } |
1029 } | |
277 | 1030 |
1031 if (update_mode_lines) | |
1032 w->update_mode_line = Qt; | |
1033 | |
1034 /* Otherwise set up data on this window; select its buffer and point value */ | |
1035 | |
1036 current_buffer = XBUFFER (w->buffer); | |
1037 opoint = point; | |
1038 | |
1039 /* Count number of windows showing the selected buffer. */ | |
1040 | |
1041 if (!just_this_one | |
1042 && current_buffer == XBUFFER (XWINDOW (selected_window)->buffer)) | |
1043 buffer_shared++; | |
1044 | |
1045 /* POINT refers normally to the selected window. | |
1046 For any other window, set up appropriate value. */ | |
1047 | |
1048 if (!EQ (window, selected_window)) | |
1049 { | |
1050 SET_PT (marker_position (w->pointm)); | |
1051 if (point < BEGV) | |
1052 { | |
485 | 1053 SET_PT (BEGV); |
277 | 1054 Fset_marker (w->pointm, make_number (point), Qnil); |
1055 } | |
1056 else if (point > (ZV - 1)) | |
1057 { | |
485 | 1058 SET_PT (ZV); |
277 | 1059 Fset_marker (w->pointm, make_number (point), Qnil); |
1060 } | |
1061 } | |
1062 | |
1063 /* If window-start is screwed up, choose a new one. */ | |
1064 if (XMARKER (w->start)->buffer != current_buffer) | |
1065 goto recenter; | |
1066 | |
1067 startp = marker_position (w->start); | |
1068 | |
433 | 1069 /* Handle case where place to start displaying has been specified, |
2303
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
1070 unless the specified location is outside the accessible range. */ |
485 | 1071 if (!NILP (w->force_start)) |
277 | 1072 { |
2303
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
1073 /* Forget any recorded base line for line number display. */ |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
1074 w->base_line_number = Qnil; |
277 | 1075 w->update_mode_line = Qt; |
1076 w->force_start = Qnil; | |
1077 XFASTINT (w->last_modified) = 0; | |
433 | 1078 if (startp < BEGV) startp = BEGV; |
1079 if (startp > ZV) startp = ZV; | |
277 | 1080 try_window (window, startp); |
1081 if (cursor_vpos < 0) | |
1082 { | |
2848
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
1083 /* ??? What should happen here if highlighting a region? */ |
277 | 1084 /* If point does not appear, move point so it does appear */ |
1085 pos = *compute_motion (startp, 0, | |
1086 ((EQ (window, minibuf_window) && startp == 1) | |
1087 ? minibuf_prompt_width : 0) | |
1088 + | |
1089 (hscroll ? 1 - hscroll : 0), | |
1090 ZV, height / 2, | |
1091 - (1 << (SHORTBITS - 1)), | |
1092 width, hscroll, pos_tab_offset (w, startp)); | |
1093 SET_PT (pos.bufpos); | |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
1094 if (w != XWINDOW (selected_window)) |
277 | 1095 Fset_marker (w->pointm, make_number (point), Qnil); |
1096 else | |
1097 { | |
1098 lpoint = point; | |
769 | 1099 FRAME_CURSOR_X (f) = max (0, pos.hpos) + XFASTINT (w->left); |
1100 FRAME_CURSOR_Y (f) = pos.vpos + XFASTINT (w->top); | |
277 | 1101 } |
1102 } | |
1103 goto done; | |
1104 } | |
1105 | |
1106 /* Handle case where text has not changed, only point, | |
769 | 1107 and it has not moved off the frame */ |
277 | 1108 |
1109 /* This code is not used for minibuffer for the sake of | |
1110 the case of redisplaying to replace an echo area message; | |
1111 since in that case the minibuffer contents per se are usually unchanged. | |
1112 This code is of no real use in the minibuffer since | |
1113 the handling of this_line_bufpos, etc., | |
1114 in redisplay handles the same cases. */ | |
1115 | |
1116 if (XFASTINT (w->last_modified) >= MODIFF | |
1117 && point >= startp && !clip_changed | |
769 | 1118 && (just_this_one || XFASTINT (w->width) == FRAME_WIDTH (f)) |
2848
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
1119 /* Can't use this case if highlighting a region. */ |
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
1120 && !(!NILP (Vtransient_mark_mode) && !NILP (current_buffer->mark_active)) |
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
1121 && NILP (w->region_showing) |
277 | 1122 && !EQ (window, minibuf_window)) |
1123 { | |
1124 pos = *compute_motion (startp, 0, (hscroll ? 1 - hscroll : 0), | |
1125 point, height + 1, 10000, width, hscroll, | |
1126 pos_tab_offset (w, startp)); | |
1127 | |
1128 if (pos.vpos < height) | |
1129 { | |
769 | 1130 /* Ok, point is still on frame */ |
1131 if (w == XWINDOW (FRAME_SELECTED_WINDOW (f))) | |
277 | 1132 { |
1133 /* These variables are supposed to be origin 1 */ | |
769 | 1134 FRAME_CURSOR_X (f) = max (0, pos.hpos) + XFASTINT (w->left); |
1135 FRAME_CURSOR_Y (f) = pos.vpos + XFASTINT (w->top); | |
277 | 1136 } |
1137 /* This doesn't do the trick, because if a window to the right of | |
1138 this one must be redisplayed, this does nothing because there | |
769 | 1139 is nothing in DesiredFrame yet, and then the other window is |
277 | 1140 redisplayed, making likes that are empty in this window's columns. |
769 | 1141 if (XFASTINT (w->width) != FRAME_WIDTH (f)) |
277 | 1142 preserve_my_columns (w); |
1143 */ | |
1144 goto done; | |
1145 } | |
1146 /* Don't bother trying redisplay with same start; | |
1147 we already know it will lose */ | |
1148 } | |
1149 /* If current starting point was originally the beginning of a line | |
1150 but no longer is, find a new starting point. */ | |
485 | 1151 else if (!NILP (w->start_at_line_beg) |
277 | 1152 && !(startp == BEGV |
1153 || FETCH_CHAR (startp - 1) == '\n')) | |
1154 { | |
1155 goto recenter; | |
1156 } | |
1157 else if (just_this_one && !MINI_WINDOW_P (w) | |
1158 && point >= startp | |
1159 && XFASTINT (w->last_modified) | |
3648
9838d64cc5ae
* xdisp.c (redisplay_window): Don't call try_window_id if the
Jim Blandy <jimb@redhat.com>
parents:
3586
diff
changeset
|
1160 /* or else vmotion on first line won't work. */ |
9838d64cc5ae
* xdisp.c (redisplay_window): Don't call try_window_id if the
Jim Blandy <jimb@redhat.com>
parents:
3586
diff
changeset
|
1161 && ! NILP (w->start_at_line_beg) |
277 | 1162 && ! EQ (w->window_end_valid, Qnil) |
1163 && do_id && !clip_changed | |
1164 && !blank_end_of_window | |
769 | 1165 && XFASTINT (w->width) == FRAME_WIDTH (f) |
2848
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
1166 /* Can't use this case if highlighting a region. */ |
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
1167 && !(!NILP (Vtransient_mark_mode) |
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
1168 && !NILP (current_buffer->mark_active)) |
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
1169 && NILP (w->region_showing) |
277 | 1170 && EQ (last_arrow_position, Voverlay_arrow_position) |
1171 && EQ (last_arrow_string, Voverlay_arrow_string) | |
769 | 1172 && (tem = try_window_id (FRAME_SELECTED_WINDOW (f))) |
277 | 1173 && tem != -2) |
1174 { | |
1175 /* tem > 0 means success. tem == -1 means choose new start. | |
1176 tem == -2 means try again with same start, | |
1177 and nothing but whitespace follows the changed stuff. | |
1178 tem == 0 means try again with same start. */ | |
1179 if (tem > 0) | |
1180 goto done; | |
1181 } | |
1182 else if (startp >= BEGV && startp <= ZV | |
1183 /* Avoid starting display at end of buffer! */ | |
433 | 1184 && (startp < ZV || startp == BEGV |
277 | 1185 || (XFASTINT (w->last_modified) >= MODIFF))) |
1186 { | |
1187 /* Try to redisplay starting at same place as before */ | |
769 | 1188 /* If point has not moved off frame, accept the results */ |
277 | 1189 try_window (window, startp); |
1190 if (cursor_vpos >= 0) | |
2303
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
1191 { |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
1192 if (!just_this_one || clip_changed || beg_unchanged < startp) |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
1193 /* Forget any recorded base line for line number display. */ |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
1194 w->base_line_number = Qnil; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
1195 goto done; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
1196 } |
277 | 1197 else |
1198 cancel_my_columns (w); | |
1199 } | |
1200 | |
1201 XFASTINT (w->last_modified) = 0; | |
1202 w->update_mode_line = Qt; | |
1203 | |
1204 /* Try to scroll by specified few lines */ | |
1205 | |
1206 if (scroll_step && !clip_changed) | |
1207 { | |
1208 if (point > startp) | |
1209 { | |
1210 pos = *vmotion (Z - XFASTINT (w->window_end_pos), | |
1211 scroll_step, width, hscroll, window); | |
1212 if (pos.vpos >= height) | |
1213 goto scroll_fail; | |
1214 } | |
1215 | |
1216 pos = *vmotion (startp, point < startp ? - scroll_step : scroll_step, | |
1217 width, hscroll, window); | |
1218 | |
1219 if (point >= pos.bufpos) | |
1220 { | |
1221 try_window (window, pos.bufpos); | |
1222 if (cursor_vpos >= 0) | |
2303
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
1223 { |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
1224 if (!just_this_one || clip_changed || beg_unchanged < startp) |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
1225 /* Forget any recorded base line for line number display. */ |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
1226 w->base_line_number = Qnil; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
1227 goto done; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
1228 } |
277 | 1229 else |
1230 cancel_my_columns (w); | |
1231 } | |
1232 scroll_fail: ; | |
1233 } | |
1234 | |
1235 /* Finally, just choose place to start which centers point */ | |
1236 | |
1237 recenter: | |
2303
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
1238 /* Forget any previously recorded base line for line number display. */ |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
1239 w->base_line_number = Qnil; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
1240 |
277 | 1241 pos = *vmotion (point, - height / 2, width, hscroll, window); |
1242 try_window (window, pos.bufpos); | |
1243 | |
1244 startp = marker_position (w->start); | |
1245 w->start_at_line_beg = | |
1246 (startp == BEGV || FETCH_CHAR (startp - 1) == '\n') ? Qt : Qnil; | |
1247 | |
1248 done: | |
485 | 1249 if ((!NILP (w->update_mode_line) |
2303
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
1250 /* If window not full width, must redo its mode line |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
1251 if the window to its side is being redone */ |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
1252 || (!just_this_one && width < FRAME_WIDTH (f) - 1) |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
1253 || INTEGERP (w->base_line_pos)) |
277 | 1254 && height != XFASTINT (w->height)) |
1255 display_mode_line (w); | |
2303
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
1256 if (! line_number_displayed |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
1257 && ! BUFFERP (w->base_line_pos)) |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
1258 { |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
1259 w->base_line_pos = Qnil; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
1260 w->base_line_number = Qnil; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
1261 } |
277 | 1262 |
2150
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
1263 /* When we reach a frame's selected window, redo the frame's menu bar. */ |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
1264 if (!NILP (w->update_mode_line) |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
1265 && FRAME_MENU_BAR_LINES (f) > 0 |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
1266 && EQ (FRAME_SELECTED_WINDOW (f), window)) |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
1267 display_menu_bar (w); |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
1268 |
1992
37c45885540a
* xdisp.c (redisplay): Protect calls to request_sigio and
Jim Blandy <jimb@redhat.com>
parents:
1873
diff
changeset
|
1269 finish_scroll_bars: |
37c45885540a
* xdisp.c (redisplay): Protect calls to request_sigio and
Jim Blandy <jimb@redhat.com>
parents:
1873
diff
changeset
|
1270 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f)) |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
1271 { |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
1272 int start, end, whole; |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
1273 |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
1274 /* Calculate the start and end positions for the current window. |
2874
80805283464a
* xdisp.c (redisplay_window): Make the scrollbar reflect the
Jim Blandy <jimb@redhat.com>
parents:
2848
diff
changeset
|
1275 At some point, it would be nice to choose between scrollbars |
80805283464a
* xdisp.c (redisplay_window): Make the scrollbar reflect the
Jim Blandy <jimb@redhat.com>
parents:
2848
diff
changeset
|
1276 which reflect the whole buffer size, with special markers |
80805283464a
* xdisp.c (redisplay_window): Make the scrollbar reflect the
Jim Blandy <jimb@redhat.com>
parents:
2848
diff
changeset
|
1277 indicating narrowing, and scrollbars which reflect only the |
80805283464a
* xdisp.c (redisplay_window): Make the scrollbar reflect the
Jim Blandy <jimb@redhat.com>
parents:
2848
diff
changeset
|
1278 visible region. |
80805283464a
* xdisp.c (redisplay_window): Make the scrollbar reflect the
Jim Blandy <jimb@redhat.com>
parents:
2848
diff
changeset
|
1279 |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
1280 Note that minibuffers sometimes aren't displaying any text. */ |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
1281 if (! MINI_WINDOW_P (w) |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
1282 || (w == XWINDOW (minibuf_window) && ! echo_area_glyphs)) |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
1283 { |
2929
f3c44426bed2
Fix the fix to scrollbar computaaFix the fix to the fix for scrollbar computation.
Jim Blandy <jimb@redhat.com>
parents:
2904
diff
changeset
|
1284 whole = ZV - BEGV; |
2904
d9f7768b0d89
* xdisp.c (redisplay_window): Compute the scrollbar start and end
Jim Blandy <jimb@redhat.com>
parents:
2884
diff
changeset
|
1285 start = startp - BEGV; |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
1286 /* I don't think this is guaranteed to be right. For the |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
1287 moment, we'll pretend it is. */ |
3880
ef6a4d39634b
* xdisp.c (redisplay_window): Remember to compute end relative to
Jim Blandy <jimb@redhat.com>
parents:
3788
diff
changeset
|
1288 end = (Z - XINT (w->window_end_pos)) - BEGV; |
2874
80805283464a
* xdisp.c (redisplay_window): Make the scrollbar reflect the
Jim Blandy <jimb@redhat.com>
parents:
2848
diff
changeset
|
1289 |
80805283464a
* xdisp.c (redisplay_window): Make the scrollbar reflect the
Jim Blandy <jimb@redhat.com>
parents:
2848
diff
changeset
|
1290 if (end < start) end = start; |
2929
f3c44426bed2
Fix the fix to scrollbar computaaFix the fix to the fix for scrollbar computation.
Jim Blandy <jimb@redhat.com>
parents:
2904
diff
changeset
|
1291 if (whole < (end - start)) whole = end - start; |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
1292 } |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
1293 else |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
1294 start = end = whole = 0; |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
1295 |
1992
37c45885540a
* xdisp.c (redisplay): Protect calls to request_sigio and
Jim Blandy <jimb@redhat.com>
parents:
1873
diff
changeset
|
1296 /* Indicate what this scroll bar ought to be displaying now. */ |
3788
41a297faf4ac
* xdisp.c (redisplay_window): No need to subtract one from start
Jim Blandy <jimb@redhat.com>
parents:
3750
diff
changeset
|
1297 (*set_vertical_scroll_bar_hook) (w, end - start, whole, start); |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
1298 |
1992
37c45885540a
* xdisp.c (redisplay): Protect calls to request_sigio and
Jim Blandy <jimb@redhat.com>
parents:
1873
diff
changeset
|
1299 /* Note that we actually used the scroll bar attached to this window, |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
1300 so it shouldn't be deleted at the end of redisplay. */ |
1992
37c45885540a
* xdisp.c (redisplay): Protect calls to request_sigio and
Jim Blandy <jimb@redhat.com>
parents:
1873
diff
changeset
|
1301 (*redeem_scroll_bar_hook) (w); |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
1302 } |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
1303 |
277 | 1304 SET_PT (opoint); |
1305 current_buffer = old; | |
1306 SET_PT (lpoint); | |
1307 } | |
1308 | |
1309 /* Do full redisplay on one window, starting at position `pos'. */ | |
1310 | |
1311 static void | |
1312 try_window (window, pos) | |
1313 Lisp_Object window; | |
1314 register int pos; | |
1315 { | |
1316 register struct window *w = XWINDOW (window); | |
1317 register int height = window_internal_height (w); | |
1318 register int vpos = XFASTINT (w->top); | |
1319 register int last_text_vpos = vpos; | |
1320 int tab_offset = pos_tab_offset (w, pos); | |
769 | 1321 FRAME_PTR f = XFRAME (w->frame); |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
1322 int width = window_internal_width (w) - 1; |
277 | 1323 struct position val; |
1324 | |
1325 Fset_marker (w->start, make_number (pos), Qnil); | |
1326 cursor_vpos = -1; | |
1327 overlay_arrow_seen = 0; | |
1328 val.hpos = XINT (w->hscroll) ? 1 - XINT (w->hscroll) : 0; | |
1329 | |
1330 while (--height >= 0) | |
1331 { | |
1332 val = *display_text_line (w, pos, vpos, val.hpos, tab_offset); | |
1333 tab_offset += width; | |
1334 if (val.vpos) tab_offset = 0; | |
1335 vpos++; | |
1336 if (pos != val.bufpos) | |
1337 last_text_vpos | |
1338 /* Next line, unless prev line ended in end of buffer with no cr */ | |
4386
abd79e187610
(try_window): Handle invisible newline at end of buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3937
diff
changeset
|
1339 = vpos - (val.vpos && (FETCH_CHAR (val.bufpos - 1) != '\n' |
abd79e187610
(try_window): Handle invisible newline at end of buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3937
diff
changeset
|
1340 || ! NILP (Fget_text_property (val.bufpos-1, |
abd79e187610
(try_window): Handle invisible newline at end of buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3937
diff
changeset
|
1341 Qinvisible, |
abd79e187610
(try_window): Handle invisible newline at end of buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3937
diff
changeset
|
1342 Fcurrent_buffer ())))); |
277 | 1343 pos = val.bufpos; |
1344 } | |
1345 | |
1346 /* If last line is continued in middle of character, | |
769 | 1347 include the split character in the text considered on the frame */ |
277 | 1348 if (val.hpos < (XINT (w->hscroll) ? 1 - XINT (w->hscroll) : 0)) |
1349 pos++; | |
1350 | |
769 | 1351 /* If bottom just moved off end of frame, change mode line percentage. */ |
277 | 1352 if (XFASTINT (w->window_end_pos) == 0 |
1353 && Z != pos) | |
1354 w->update_mode_line = Qt; | |
1355 | |
769 | 1356 /* Say where last char on frame will be, once redisplay is finished. */ |
277 | 1357 XFASTINT (w->window_end_pos) = Z - pos; |
1358 XFASTINT (w->window_end_vpos) = last_text_vpos - XFASTINT (w->top); | |
1359 /* But that is not valid info until redisplay finishes. */ | |
1360 w->window_end_valid = Qnil; | |
1361 } | |
1362 | |
1363 /* Try to redisplay when buffer is modified locally, | |
1364 computing insert/delete line to preserve text outside | |
1365 the bounds of the changes. | |
1366 Return 1 if successful, 0 if if cannot tell what to do, | |
1367 or -1 to tell caller to find a new window start, | |
1368 or -2 to tell caller to do normal redisplay with same window start. */ | |
1369 | |
1370 static int | |
1371 try_window_id (window) | |
1372 Lisp_Object window; | |
1373 { | |
1374 int pos; | |
1375 register struct window *w = XWINDOW (window); | |
1376 register int height = window_internal_height (w); | |
769 | 1377 FRAME_PTR f = XFRAME (w->frame); |
277 | 1378 int top = XFASTINT (w->top); |
1379 int start = marker_position (w->start); | |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
1380 int width = window_internal_width (w) - 1; |
277 | 1381 int hscroll = XINT (w->hscroll); |
1382 int lmargin = hscroll > 0 ? 1 - hscroll : 0; | |
1383 register int vpos; | |
1384 register int i, tem; | |
1385 int last_text_vpos = 0; | |
1386 int stop_vpos; | |
1387 | |
1388 struct position val, bp, ep, xp, pp; | |
1389 int scroll_amount = 0; | |
1390 int delta; | |
1391 int tab_offset, epto; | |
1392 | |
1393 if (GPT - BEG < beg_unchanged) | |
1394 beg_unchanged = GPT - BEG; | |
1395 if (Z - GPT < end_unchanged) | |
1396 end_unchanged = Z - GPT; | |
1397 | |
1398 if (beg_unchanged + 1 < start) | |
1399 return 0; /* Give up if changes go above top of window */ | |
1400 | |
1401 /* Find position before which nothing is changed. */ | |
1402 bp = *compute_motion (start, 0, lmargin, | |
371 | 1403 beg_unchanged + 1, height + 1, 0, width, hscroll, |
277 | 1404 pos_tab_offset (w, start)); |
1405 if (bp.vpos >= height) | |
368 | 1406 { |
1407 if (point < bp.bufpos && !bp.contin) | |
1408 { | |
769 | 1409 /* All changes are below the frame, and point is on the frame. |
1410 We don't need to change the frame at all. | |
368 | 1411 But we need to update window_end_pos to account for |
1412 any change in buffer size. */ | |
371 | 1413 bp = *compute_motion (start, 0, lmargin, |
1414 Z, height, 0, | |
1415 width, hscroll, pos_tab_offset (w, start)); | |
368 | 1416 XFASTINT (w->window_end_vpos) = height; |
1417 XFASTINT (w->window_end_pos) = Z - bp.bufpos; | |
1418 return 1; | |
1419 } | |
1420 return 0; | |
1421 } | |
277 | 1422 |
1423 vpos = bp.vpos; | |
1424 | |
769 | 1425 /* Find beginning of that frame line. Must display from there. */ |
277 | 1426 bp = *vmotion (bp.bufpos, 0, width, hscroll, window); |
1427 | |
1428 pos = bp.bufpos; | |
1429 val.hpos = lmargin; | |
1430 if (pos < start) | |
1431 return -1; | |
1432 | |
1433 /* If about to start displaying at the beginning of a continuation line, | |
769 | 1434 really start with previous frame line, in case it was not |
277 | 1435 continued when last redisplayed */ |
528 | 1436 if ((bp.contin && bp.bufpos - 1 == beg_unchanged && vpos > 0) |
1437 || | |
1438 /* Likewise if we have to worry about selective display. */ | |
1439 (XTYPE (current_buffer->selective_display) == Lisp_Int | |
1440 && XINT (current_buffer->selective_display) > 0 | |
1441 && bp.bufpos - 1 == beg_unchanged && vpos > 0)) | |
277 | 1442 { |
1443 bp = *vmotion (bp.bufpos, -1, width, hscroll, window); | |
1444 --vpos; | |
1445 pos = bp.bufpos; | |
1446 } | |
1447 | |
1448 if (bp.contin && bp.hpos != lmargin) | |
1449 { | |
1450 val.hpos = bp.prevhpos - width + lmargin; | |
1451 pos--; | |
1452 } | |
1453 | |
1454 bp.vpos = vpos; | |
1455 | |
1456 /* Find first visible newline after which no more is changed. */ | |
1457 tem = find_next_newline (Z - max (end_unchanged, Z - ZV), 1); | |
1458 if (XTYPE (current_buffer->selective_display) == Lisp_Int | |
1459 && XINT (current_buffer->selective_display) > 0) | |
1460 while (tem < ZV - 1 | |
1461 && (position_indentation (tem) | |
1462 >= XINT (current_buffer->selective_display))) | |
1463 tem = find_next_newline (tem, 1); | |
1464 | |
1465 /* Compute the cursor position after that newline. */ | |
1466 ep = *compute_motion (pos, vpos, val.hpos, tem, | |
1467 height, - (1 << (SHORTBITS - 1)), | |
1468 width, hscroll, pos_tab_offset (w, bp.bufpos)); | |
1469 | |
769 | 1470 /* If changes reach past the text available on the frame, |
1471 just display rest of frame. */ | |
277 | 1472 if (ep.bufpos > Z - XFASTINT (w->window_end_pos)) |
1473 stop_vpos = height; | |
1474 else | |
1475 stop_vpos = ep.vpos; | |
1476 | |
1477 /* If no newline before ep, the line ep is on includes some changes | |
1478 that must be displayed. Make sure we don't stop before it. */ | |
1479 /* Also, if changes reach all the way until ep.bufpos, | |
1480 it is possible that something was deleted after the | |
1481 newline before it, so the following line must be redrawn. */ | |
1482 if (stop_vpos == ep.vpos | |
1483 && (ep.bufpos == BEGV | |
1484 || FETCH_CHAR (ep.bufpos - 1) != '\n' | |
1485 || ep.bufpos == Z - end_unchanged)) | |
1486 stop_vpos = ep.vpos + 1; | |
1487 | |
1488 cursor_vpos = -1; | |
1489 overlay_arrow_seen = 0; | |
1490 | |
1491 /* If changes do not reach to bottom of window, | |
1492 figure out how much to scroll the rest of the window */ | |
1493 if (stop_vpos < height) | |
1494 { | |
1495 /* Now determine how far up or down the rest of the window has moved */ | |
1496 epto = pos_tab_offset (w, ep.bufpos); | |
1497 xp = *compute_motion (ep.bufpos, ep.vpos, ep.hpos, | |
1498 Z - XFASTINT (w->window_end_pos), | |
1499 10000, 0, width, hscroll, epto); | |
1500 scroll_amount = xp.vpos - XFASTINT (w->window_end_vpos); | |
1501 | |
769 | 1502 /* Is everything on frame below the changes whitespace? |
277 | 1503 If so, no scrolling is really necessary. */ |
1504 for (i = ep.bufpos; i < xp.bufpos; i++) | |
1505 { | |
1506 tem = FETCH_CHAR (i); | |
1507 if (tem != ' ' && tem != '\n' && tem != '\t') | |
1508 break; | |
1509 } | |
1510 if (i == xp.bufpos) | |
1511 return -2; | |
1512 | |
1513 XFASTINT (w->window_end_vpos) += scroll_amount; | |
1514 | |
769 | 1515 /* Before doing any scrolling, verify that point will be on frame. */ |
277 | 1516 if (point > ep.bufpos && !(point <= xp.bufpos && xp.bufpos < height)) |
1517 { | |
1518 if (point <= xp.bufpos) | |
1519 { | |
1520 pp = *compute_motion (ep.bufpos, ep.vpos, ep.hpos, | |
1521 point, height, - (1 << (SHORTBITS - 1)), | |
1522 width, hscroll, epto); | |
1523 } | |
1524 else | |
1525 { | |
1526 pp = *compute_motion (xp.bufpos, xp.vpos, xp.hpos, | |
1527 point, height, - (1 << (SHORTBITS - 1)), | |
1528 width, hscroll, pos_tab_offset (w, xp.bufpos)); | |
1529 } | |
1530 if (pp.bufpos < point || pp.vpos == height) | |
1531 return 0; | |
1532 cursor_vpos = pp.vpos + top; | |
1533 cursor_hpos = pp.hpos + XFASTINT (w->left); | |
1534 } | |
1535 | |
1536 if (stop_vpos - scroll_amount >= height | |
1537 || ep.bufpos == xp.bufpos) | |
1538 { | |
1539 if (scroll_amount < 0) | |
1540 stop_vpos -= scroll_amount; | |
1541 scroll_amount = 0; | |
1542 /* In this path, we have altered window_end_vpos | |
1543 and not left it negative. | |
1544 We must make sure that, in case display is preempted | |
769 | 1545 before the frame changes to reflect what we do here, |
277 | 1546 further updates will not come to try_window_id |
769 | 1547 and assume the frame and window_end_vpos match. */ |
277 | 1548 blank_end_of_window = 1; |
1549 } | |
1550 else if (!scroll_amount) | |
1551 {} | |
1552 else if (bp.bufpos == Z - end_unchanged) | |
1553 { | |
1554 /* If reprinting everything is nearly as fast as scrolling, | |
1555 don't bother scrolling. Can happen if lines are short. */ | |
769 | 1556 if (scroll_cost (f, bp.vpos + top - scroll_amount, |
277 | 1557 top + height - max (0, scroll_amount), |
1558 scroll_amount) | |
1559 > xp.bufpos - bp.bufpos - 20) | |
1560 /* Return "try normal display with same window-start." | |
1561 Too bad we can't prevent further scroll-thinking. */ | |
1562 return -2; | |
1563 /* If pure deletion, scroll up as many lines as possible. | |
1564 In common case of killing a line, this can save the | |
1565 following line from being overwritten by scrolling | |
1566 and therefore having to be redrawn. */ | |
769 | 1567 tem = scroll_frame_lines (f, bp.vpos + top - scroll_amount, |
277 | 1568 top + height - max (0, scroll_amount), |
1569 scroll_amount); | |
1570 if (!tem) stop_vpos = height; | |
1571 } | |
1572 else if (scroll_amount) | |
1573 { | |
1574 /* If reprinting everything is nearly as fast as scrolling, | |
1575 don't bother scrolling. Can happen if lines are short. */ | |
1576 /* Note that if scroll_amount > 0, xp.bufpos - bp.bufpos is an | |
1577 overestimate of cost of reprinting, since xp.bufpos | |
1578 would end up below the bottom of the window. */ | |
769 | 1579 if (scroll_cost (f, ep.vpos + top - scroll_amount, |
277 | 1580 top + height - max (0, scroll_amount), |
1581 scroll_amount) | |
1582 > xp.bufpos - ep.bufpos - 20) | |
1583 /* Return "try normal display with same window-start." | |
1584 Too bad we can't prevent further scroll-thinking. */ | |
1585 return -2; | |
769 | 1586 tem = scroll_frame_lines (f, ep.vpos + top - scroll_amount, |
277 | 1587 top + height - max (0, scroll_amount), |
1588 scroll_amount); | |
1589 if (!tem) stop_vpos = height; | |
1590 } | |
1591 } | |
1592 | |
1593 /* In any case, do not display past bottom of window */ | |
1594 if (stop_vpos >= height) | |
1595 { | |
1596 stop_vpos = height; | |
1597 scroll_amount = 0; | |
1598 } | |
1599 | |
1600 /* Handle case where pos is before w->start -- | |
1601 can happen if part of line had been clipped and is not clipped now */ | |
1602 if (vpos == 0 && pos < marker_position (w->start)) | |
1603 Fset_marker (w->start, make_number (pos), Qnil); | |
1604 | |
1605 /* Redisplay the lines where the text was changed */ | |
1606 last_text_vpos = vpos; | |
1607 tab_offset = pos_tab_offset (w, pos); | |
1608 /* If we are starting display in mid-character, correct tab_offset | |
1609 to account for passing the line that that character really starts in. */ | |
1610 if (val.hpos < lmargin) | |
1611 tab_offset += width; | |
1612 while (vpos < stop_vpos) | |
1613 { | |
1614 val = *display_text_line (w, pos, top + vpos++, val.hpos, tab_offset); | |
1615 tab_offset += width; | |
1616 if (val.vpos) tab_offset = 0; | |
1617 if (pos != val.bufpos) | |
1618 last_text_vpos | |
1619 /* Next line, unless prev line ended in end of buffer with no cr */ | |
1620 = vpos - (val.vpos && FETCH_CHAR (val.bufpos - 1) != '\n'); | |
1621 pos = val.bufpos; | |
1622 } | |
1623 | |
1624 /* There are two cases: | |
1625 1) we have displayed down to the bottom of the window | |
1626 2) we have scrolled lines below stop_vpos by scroll_amount */ | |
1627 | |
1628 if (vpos == height) | |
1629 { | |
1630 /* If last line is continued in middle of character, | |
769 | 1631 include the split character in the text considered on the frame */ |
277 | 1632 if (val.hpos < lmargin) |
1633 val.bufpos++; | |
1634 XFASTINT (w->window_end_vpos) = last_text_vpos; | |
1635 XFASTINT (w->window_end_pos) = Z - val.bufpos; | |
1636 } | |
1637 | |
1638 /* If scrolling made blank lines at window bottom, | |
1639 redisplay to fill those lines */ | |
1640 if (scroll_amount < 0) | |
1641 { | |
1642 /* Don't consider these lines for general-purpose scrolling. | |
1643 That will save time in the scrolling computation. */ | |
769 | 1644 FRAME_SCROLL_BOTTOM_VPOS (f) = xp.vpos; |
277 | 1645 vpos = xp.vpos; |
1646 pos = xp.bufpos; | |
1647 val.hpos = lmargin; | |
1648 if (pos == ZV) | |
1649 vpos = height + scroll_amount; | |
1650 else if (xp.contin && xp.hpos != lmargin) | |
1651 { | |
1652 val.hpos = xp.prevhpos - width + lmargin; | |
1653 pos--; | |
1654 } | |
1655 | |
1656 blank_end_of_window = 1; | |
1657 tab_offset = pos_tab_offset (w, pos); | |
1658 /* If we are starting display in mid-character, correct tab_offset | |
1659 to account for passing the line that that character starts in. */ | |
1660 if (val.hpos < lmargin) | |
1661 tab_offset += width; | |
1662 | |
1663 while (vpos < height) | |
1664 { | |
1665 val = *display_text_line (w, pos, top + vpos++, val.hpos, tab_offset); | |
1666 tab_offset += width; | |
1667 if (val.vpos) tab_offset = 0; | |
1668 pos = val.bufpos; | |
1669 } | |
1670 | |
1671 /* Here is a case where display_text_line sets cursor_vpos wrong. | |
1672 Make it be fixed up, below. */ | |
1673 if (xp.bufpos == ZV | |
1674 && xp.bufpos == point) | |
1675 cursor_vpos = -1; | |
1676 } | |
1677 | |
769 | 1678 /* If bottom just moved off end of frame, change mode line percentage. */ |
277 | 1679 if (XFASTINT (w->window_end_pos) == 0 |
1680 && Z != val.bufpos) | |
1681 w->update_mode_line = Qt; | |
1682 | |
1683 /* Attempt to adjust end-of-text positions to new bottom line */ | |
1684 if (scroll_amount) | |
1685 { | |
1686 delta = height - xp.vpos; | |
1687 if (delta < 0 | |
1688 || (delta > 0 && xp.bufpos <= ZV) | |
1689 || (delta == 0 && xp.hpos)) | |
1690 { | |
1691 val = *vmotion (Z - XFASTINT (w->window_end_pos), | |
1692 delta, width, hscroll, window); | |
1693 XFASTINT (w->window_end_pos) = Z - val.bufpos; | |
1694 XFASTINT (w->window_end_vpos) += val.vpos; | |
1695 } | |
1696 } | |
1697 | |
1698 w->window_end_valid = Qnil; | |
1699 | |
1700 /* If point was not in a line that was displayed, find it */ | |
1701 if (cursor_vpos < 0) | |
1702 { | |
1703 val = *compute_motion (start, 0, lmargin, point, 10000, 10000, | |
1704 width, hscroll, pos_tab_offset (w, start)); | |
769 | 1705 /* Admit failure if point is off frame now */ |
277 | 1706 if (val.vpos >= height) |
1707 { | |
1708 for (vpos = 0; vpos < height; vpos++) | |
769 | 1709 cancel_line (vpos + top, f); |
277 | 1710 return 0; |
1711 } | |
1712 cursor_vpos = val.vpos + top; | |
1713 cursor_hpos = val.hpos + XFASTINT (w->left); | |
1714 } | |
1715 | |
769 | 1716 FRAME_CURSOR_X (f) = max (0, cursor_hpos); |
1717 FRAME_CURSOR_Y (f) = cursor_vpos; | |
277 | 1718 |
1719 if (debug_end_pos) | |
1720 { | |
1721 val = *compute_motion (start, 0, lmargin, ZV, | |
1722 height, - (1 << (SHORTBITS - 1)), | |
1723 width, hscroll, pos_tab_offset (w, start)); | |
1724 if (val.vpos != XFASTINT (w->window_end_vpos)) | |
1725 abort (); | |
1726 if (XFASTINT (w->window_end_pos) | |
1727 != Z - val.bufpos) | |
1728 abort (); | |
1729 } | |
1730 | |
1731 return 1; | |
1732 } | |
1733 | |
2729
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1734 /* Mark a section of BUF as modified, but only for the sake of redisplay. |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1735 This is useful for recording changes to overlays. |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1736 |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1737 We increment the buffer's modification timestamp and set the |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1738 redisplay caches (windows_or_buffers_changed, beg_unchanged, etc) |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1739 as if the region of text between START and END had been modified; |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1740 the redisplay code will check this against the windows' timestamps, |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1741 and redraw the appropriate area of the buffer. |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1742 |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1743 However, if the buffer is unmodified, we bump the last-save |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1744 timestamp as well, so that incrementing the timestamp doesn't fool |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1745 Emacs into thinking that the buffer's text has been modified. |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1746 |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1747 Tweaking the timestamps shouldn't hurt the first-modification |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1748 timestamps recorded in the undo records; those values aren't |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1749 written until just before a real text modification is made, so they |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1750 will never catch the timestamp value just before this function gets |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1751 called. */ |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1752 |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1753 void |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1754 redisplay_region (buf, start, end) |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1755 struct buffer *buf; |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1756 int start, end; |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1757 { |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1758 if (start == end) |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1759 return; |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1760 |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1761 if (start > end) |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1762 { |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1763 int temp = start; |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1764 start = end; end = temp; |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1765 } |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1766 |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1767 if (buf != current_buffer) |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1768 windows_or_buffers_changed = 1; |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1769 else |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1770 { |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1771 if (unchanged_modified == MODIFF) |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1772 { |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1773 beg_unchanged = start - BEG; |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1774 end_unchanged = Z - end; |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1775 } |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1776 else |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1777 { |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1778 if (Z - end < end_unchanged) |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1779 end_unchanged = Z - end; |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1780 if (start - BEG < beg_unchanged) |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1781 beg_unchanged = start - BEG; |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1782 } |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1783 } |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1784 |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1785 /* Increment the buffer's time stamp, but also increment the save |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1786 and autosave timestamps, so as not to screw up that timekeeping. */ |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1787 if (BUF_MODIFF (buf) == buf->save_modified) |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1788 buf->save_modified++; |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1789 if (BUF_MODIFF (buf) == buf->auto_save_modified) |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1790 buf->auto_save_modified++; |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1791 |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1792 BUF_MODIFF (buf) ++; |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1793 } |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1794 |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1795 |
2065
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1796 /* Copy glyphs from the vector FROM to the rope T. |
301 | 1797 But don't actually copy the parts that would come in before S. |
2065
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1798 Value is T, advanced past the copied data. */ |
277 | 1799 |
1800 GLYPH * | |
2766
aa7b6f6aa20a
* xdisp.c (copy_rope, copy_part_of_rope): Add face argument.
Jim Blandy <jimb@redhat.com>
parents:
2754
diff
changeset
|
1801 copy_rope (t, s, from, face) |
277 | 1802 register GLYPH *t; /* Copy to here. */ |
1803 register GLYPH *s; /* Starting point. */ | |
2766
aa7b6f6aa20a
* xdisp.c (copy_rope, copy_part_of_rope): Add face argument.
Jim Blandy <jimb@redhat.com>
parents:
2754
diff
changeset
|
1804 Lisp_Object from; /* Data to copy; known to be a vector. */ |
aa7b6f6aa20a
* xdisp.c (copy_rope, copy_part_of_rope): Add face argument.
Jim Blandy <jimb@redhat.com>
parents:
2754
diff
changeset
|
1805 int face; /* Face to apply to glyphs which don't specify one. */ |
277 | 1806 { |
2065
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1807 register int n = XVECTOR (from)->size; |
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1808 register Lisp_Object *f = XVECTOR (from)->contents; |
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1809 |
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1810 while (n--) |
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1811 { |
3689
82856e3ea14d
(echo_area_display): Use XFASTINT on ->height.
Richard M. Stallman <rms@gnu.org>
parents:
3648
diff
changeset
|
1812 int glyph = XFASTINT (*f); |
82856e3ea14d
(echo_area_display): Use XFASTINT on ->height.
Richard M. Stallman <rms@gnu.org>
parents:
3648
diff
changeset
|
1813 |
82856e3ea14d
(echo_area_display): Use XFASTINT on ->height.
Richard M. Stallman <rms@gnu.org>
parents:
3648
diff
changeset
|
1814 if (t >= s) *t = MAKE_GLYPH (GLYPH_CHAR (glyph), |
82856e3ea14d
(echo_area_display): Use XFASTINT on ->height.
Richard M. Stallman <rms@gnu.org>
parents:
3648
diff
changeset
|
1815 (GLYPH_FACE (glyph) |
82856e3ea14d
(echo_area_display): Use XFASTINT on ->height.
Richard M. Stallman <rms@gnu.org>
parents:
3648
diff
changeset
|
1816 ? GLYPH_FACE (glyph) |
2766
aa7b6f6aa20a
* xdisp.c (copy_rope, copy_part_of_rope): Add face argument.
Jim Blandy <jimb@redhat.com>
parents:
2754
diff
changeset
|
1817 : face)); |
2065
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1818 ++t; |
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1819 ++f; |
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1820 } |
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1821 return t; |
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1822 } |
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1823 |
2754
af06c054b48f
(display_text_line): Use break; to exit loop at eol.
Richard M. Stallman <rms@gnu.org>
parents:
2742
diff
changeset
|
1824 /* Copy exactly LEN glyphs from FROM into data at T. |
af06c054b48f
(display_text_line): Use break; to exit loop at eol.
Richard M. Stallman <rms@gnu.org>
parents:
2742
diff
changeset
|
1825 But don't alter words before S. */ |
2065
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1826 |
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1827 GLYPH * |
2766
aa7b6f6aa20a
* xdisp.c (copy_rope, copy_part_of_rope): Add face argument.
Jim Blandy <jimb@redhat.com>
parents:
2754
diff
changeset
|
1828 copy_part_of_rope (t, s, from, len, face) |
2065
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1829 register GLYPH *t; /* Copy to here. */ |
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1830 register GLYPH *s; /* Starting point. */ |
2766
aa7b6f6aa20a
* xdisp.c (copy_rope, copy_part_of_rope): Add face argument.
Jim Blandy <jimb@redhat.com>
parents:
2754
diff
changeset
|
1831 Lisp_Object *from; /* Data to copy. */ |
2065
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1832 int len; |
2766
aa7b6f6aa20a
* xdisp.c (copy_rope, copy_part_of_rope): Add face argument.
Jim Blandy <jimb@redhat.com>
parents:
2754
diff
changeset
|
1833 int face; /* Face to apply to glyphs which don't specify one. */ |
2065
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1834 { |
2754
af06c054b48f
(display_text_line): Use break; to exit loop at eol.
Richard M. Stallman <rms@gnu.org>
parents:
2742
diff
changeset
|
1835 int n = len; |
af06c054b48f
(display_text_line): Use break; to exit loop at eol.
Richard M. Stallman <rms@gnu.org>
parents:
2742
diff
changeset
|
1836 register Lisp_Object *f = from; |
277 | 1837 |
1838 while (n--) | |
1839 { | |
3689
82856e3ea14d
(echo_area_display): Use XFASTINT on ->height.
Richard M. Stallman <rms@gnu.org>
parents:
3648
diff
changeset
|
1840 int glyph = XFASTINT (*f); |
82856e3ea14d
(echo_area_display): Use XFASTINT on ->height.
Richard M. Stallman <rms@gnu.org>
parents:
3648
diff
changeset
|
1841 |
82856e3ea14d
(echo_area_display): Use XFASTINT on ->height.
Richard M. Stallman <rms@gnu.org>
parents:
3648
diff
changeset
|
1842 if (t >= s) *t = MAKE_GLYPH (GLYPH_CHAR (glyph), |
82856e3ea14d
(echo_area_display): Use XFASTINT on ->height.
Richard M. Stallman <rms@gnu.org>
parents:
3648
diff
changeset
|
1843 (GLYPH_FACE (glyph) |
82856e3ea14d
(echo_area_display): Use XFASTINT on ->height.
Richard M. Stallman <rms@gnu.org>
parents:
3648
diff
changeset
|
1844 ? GLYPH_FACE (glyph) |
2766
aa7b6f6aa20a
* xdisp.c (copy_rope, copy_part_of_rope): Add face argument.
Jim Blandy <jimb@redhat.com>
parents:
2754
diff
changeset
|
1845 : face)); |
277 | 1846 ++t; |
1847 ++f; | |
1848 } | |
1849 return t; | |
1850 } | |
1851 | |
1852 /* Display one line of window w, starting at position START in W's buffer. | |
1853 Display starting at horizontal position HPOS, which is normally zero | |
1854 or negative. A negative value causes output up to hpos = 0 to be discarded. | |
1855 This is done for negative hscroll, or when this is a continuation line | |
1856 and the continuation occurred in the middle of a multi-column character. | |
1857 | |
1858 TABOFFSET is an offset for ostensible hpos, used in tab stop calculations. | |
1859 | |
769 | 1860 Display on position VPOS on the frame. (origin 0). |
277 | 1861 |
1862 Returns a STRUCT POSITION giving character to start next line with | |
1863 and where to display it, including a zero or negative hpos. | |
1864 The vpos field is not really a vpos; it is 1 unless the line is continued */ | |
1865 | |
1866 struct position val_display_text_line; | |
1867 | |
1868 static struct position * | |
1869 display_text_line (w, start, vpos, hpos, taboffset) | |
1870 struct window *w; | |
1871 int start; | |
1872 int vpos; | |
1873 int hpos; | |
1874 int taboffset; | |
1875 { | |
1876 register int pos = start; | |
1877 register int c; | |
1878 register GLYPH *p1; | |
1879 int end; | |
1880 register int pause; | |
1881 register unsigned char *p; | |
1882 GLYPH *endp; | |
1883 register GLYPH *startp; | |
3586
7d077274d4bb
* xdisp.c (display_text_line): Handle case where line ends in a
Jim Blandy <jimb@redhat.com>
parents:
3516
diff
changeset
|
1884 register GLYPH *p1prev = 0; |
769 | 1885 FRAME_PTR f = XFRAME (w->frame); |
277 | 1886 int tab_width = XINT (current_buffer->tab_width); |
485 | 1887 int ctl_arrow = !NILP (current_buffer->ctl_arrow); |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
1888 int width = window_internal_width (w) - 1; |
277 | 1889 struct position val; |
1890 int lastpos; | |
1891 int invis; | |
1892 int hscroll = XINT (w->hscroll); | |
1893 int truncate = hscroll | |
1894 || (truncate_partial_width_windows | |
769 | 1895 && XFASTINT (w->width) < FRAME_WIDTH (f)) |
485 | 1896 || !NILP (current_buffer->truncate_lines); |
2848
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
1897 |
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
1898 /* 1 if we should highlight the region. */ |
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
1899 int highlight_region |
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
1900 = !NILP (Vtransient_mark_mode) && !NILP (current_buffer->mark_active); |
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
1901 int region_beg, region_end; |
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
1902 |
277 | 1903 int selective |
1904 = XTYPE (current_buffer->selective_display) == Lisp_Int | |
1905 ? XINT (current_buffer->selective_display) | |
485 | 1906 : !NILP (current_buffer->selective_display) ? -1 : 0; |
769 | 1907 register struct frame_glyphs *desired_glyphs = FRAME_DESIRED_GLYPHS (f); |
277 | 1908 register struct Lisp_Vector *dp = window_display_table (w); |
2754
af06c054b48f
(display_text_line): Use break; to exit loop at eol.
Richard M. Stallman <rms@gnu.org>
parents:
2742
diff
changeset
|
1909 |
af06c054b48f
(display_text_line): Use break; to exit loop at eol.
Richard M. Stallman <rms@gnu.org>
parents:
2742
diff
changeset
|
1910 Lisp_Object default_invis_vector[3]; |
af06c054b48f
(display_text_line): Use break; to exit loop at eol.
Richard M. Stallman <rms@gnu.org>
parents:
2742
diff
changeset
|
1911 /* Nonzero means display something where there are invisible lines. |
af06c054b48f
(display_text_line): Use break; to exit loop at eol.
Richard M. Stallman <rms@gnu.org>
parents:
2742
diff
changeset
|
1912 The precise value is the number of glyphs to display. */ |
277 | 1913 int selective_rlen |
2065
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1914 = (selective && dp && XTYPE (DISP_INVIS_VECTOR (dp)) == Lisp_Vector |
2754
af06c054b48f
(display_text_line): Use break; to exit loop at eol.
Richard M. Stallman <rms@gnu.org>
parents:
2742
diff
changeset
|
1915 ? XVECTOR (DISP_INVIS_VECTOR (dp))->size |
af06c054b48f
(display_text_line): Use break; to exit loop at eol.
Richard M. Stallman <rms@gnu.org>
parents:
2742
diff
changeset
|
1916 : selective && !NILP (current_buffer->selective_display_ellipses) |
af06c054b48f
(display_text_line): Use break; to exit loop at eol.
Richard M. Stallman <rms@gnu.org>
parents:
2742
diff
changeset
|
1917 ? 3 : 0); |
af06c054b48f
(display_text_line): Use break; to exit loop at eol.
Richard M. Stallman <rms@gnu.org>
parents:
2742
diff
changeset
|
1918 /* This is the sequence of Lisp objects to display |
af06c054b48f
(display_text_line): Use break; to exit loop at eol.
Richard M. Stallman <rms@gnu.org>
parents:
2742
diff
changeset
|
1919 when there are invisible lines. */ |
af06c054b48f
(display_text_line): Use break; to exit loop at eol.
Richard M. Stallman <rms@gnu.org>
parents:
2742
diff
changeset
|
1920 Lisp_Object *invis_vector_contents |
af06c054b48f
(display_text_line): Use break; to exit loop at eol.
Richard M. Stallman <rms@gnu.org>
parents:
2742
diff
changeset
|
1921 = (dp && XTYPE (DISP_INVIS_VECTOR (dp)) == Lisp_Vector |
af06c054b48f
(display_text_line): Use break; to exit loop at eol.
Richard M. Stallman <rms@gnu.org>
parents:
2742
diff
changeset
|
1922 ? XVECTOR (DISP_INVIS_VECTOR (dp))->contents |
af06c054b48f
(display_text_line): Use break; to exit loop at eol.
Richard M. Stallman <rms@gnu.org>
parents:
2742
diff
changeset
|
1923 : default_invis_vector); |
af06c054b48f
(display_text_line): Use break; to exit loop at eol.
Richard M. Stallman <rms@gnu.org>
parents:
2742
diff
changeset
|
1924 |
277 | 1925 GLYPH truncator = (dp == 0 || XTYPE (DISP_TRUNC_GLYPH (dp)) != Lisp_Int |
1926 ? '$' : XINT (DISP_TRUNC_GLYPH (dp))); | |
1927 GLYPH continuer = (dp == 0 || XTYPE (DISP_CONTINUE_GLYPH (dp)) != Lisp_Int | |
1928 ? '\\' : XINT (DISP_CONTINUE_GLYPH (dp))); | |
1929 | |
2729
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1930 /* The next buffer location at which the face should change, due |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1931 to overlays or text property changes. */ |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1932 int next_face_change; |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1933 |
4386
abd79e187610
(try_window): Handle invisible newline at end of buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3937
diff
changeset
|
1934 #ifdef USE_TEXT_PROPERTIES |
abd79e187610
(try_window): Handle invisible newline at end of buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3937
diff
changeset
|
1935 /* The next location where the `invisible' property changes */ |
abd79e187610
(try_window): Handle invisible newline at end of buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3937
diff
changeset
|
1936 int next_invisible; |
abd79e187610
(try_window): Handle invisible newline at end of buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3937
diff
changeset
|
1937 #endif |
abd79e187610
(try_window): Handle invisible newline at end of buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3937
diff
changeset
|
1938 |
2729
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1939 /* The face we're currently using. */ |
2766
aa7b6f6aa20a
* xdisp.c (copy_rope, copy_part_of_rope): Add face argument.
Jim Blandy <jimb@redhat.com>
parents:
2754
diff
changeset
|
1940 int current_face = 0; |
2729
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1941 |
2754
af06c054b48f
(display_text_line): Use break; to exit loop at eol.
Richard M. Stallman <rms@gnu.org>
parents:
2742
diff
changeset
|
1942 XFASTINT (default_invis_vector[2]) = '.'; |
af06c054b48f
(display_text_line): Use break; to exit loop at eol.
Richard M. Stallman <rms@gnu.org>
parents:
2742
diff
changeset
|
1943 default_invis_vector[0] = default_invis_vector[1] = default_invis_vector[2]; |
af06c054b48f
(display_text_line): Use break; to exit loop at eol.
Richard M. Stallman <rms@gnu.org>
parents:
2742
diff
changeset
|
1944 |
277 | 1945 hpos += XFASTINT (w->left); |
769 | 1946 get_display_line (f, vpos, XFASTINT (w->left)); |
2324
24cd3df6f184
(display_string, display_text_line): Allow tab_width up to 1000.
Richard M. Stallman <rms@gnu.org>
parents:
2303
diff
changeset
|
1947 if (tab_width <= 0 || tab_width > 1000) tab_width = 8; |
277 | 1948 |
2848
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
1949 /* Show where to highlight the region. */ |
2965
5314fdcd87bc
(display_text_line): Highlight in any frame's sel window.
Richard M. Stallman <rms@gnu.org>
parents:
2929
diff
changeset
|
1950 if (highlight_region && XMARKER (current_buffer->mark)->buffer != 0 |
3265
80f57ae8d44e
(syms_of_xdisp): Make highlight-nonselected-windows Lisp var.
Richard M. Stallman <rms@gnu.org>
parents:
3165
diff
changeset
|
1951 /* Maybe highlight only in selected window. */ |
80f57ae8d44e
(syms_of_xdisp): Make highlight-nonselected-windows Lisp var.
Richard M. Stallman <rms@gnu.org>
parents:
3165
diff
changeset
|
1952 && (highlight_nonselected_windows |
3266
1173bc4814da
(display_text_line): Really check for just the selected window.
Richard M. Stallman <rms@gnu.org>
parents:
3265
diff
changeset
|
1953 || w == XWINDOW (selected_window))) |
2848
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
1954 { |
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
1955 region_beg = marker_position (current_buffer->mark); |
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
1956 if (PT < region_beg) |
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
1957 { |
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
1958 region_end = region_beg; |
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
1959 region_beg = PT; |
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
1960 } |
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
1961 else |
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
1962 region_end = PT; |
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
1963 w->region_showing = Qt; |
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
1964 } |
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
1965 else |
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
1966 region_beg = region_end = -1; |
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
1967 |
277 | 1968 if (MINI_WINDOW_P (w) && start == 1 |
1969 && vpos == XFASTINT (w->top)) | |
1970 { | |
1971 if (minibuf_prompt) | |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
1972 hpos = display_string (w, vpos, minibuf_prompt, -1, hpos, |
277 | 1973 (!truncate ? continuer : truncator), |
1974 -1, -1); | |
1975 minibuf_prompt_width = hpos; | |
1976 } | |
1977 | |
1978 desired_glyphs->bufp[vpos] = pos; | |
1979 p1 = desired_glyphs->glyphs[vpos] + hpos; | |
1980 end = ZV; | |
1981 startp = desired_glyphs->glyphs[vpos] + XFASTINT (w->left); | |
1982 endp = startp + width; | |
1983 | |
2766
aa7b6f6aa20a
* xdisp.c (copy_rope, copy_part_of_rope): Add face argument.
Jim Blandy <jimb@redhat.com>
parents:
2754
diff
changeset
|
1984 /* Arrange the overlays nicely for our purposes. Usually, we call |
aa7b6f6aa20a
* xdisp.c (copy_rope, copy_part_of_rope): Add face argument.
Jim Blandy <jimb@redhat.com>
parents:
2754
diff
changeset
|
1985 display_text_line on only one line at a time, in which case this |
aa7b6f6aa20a
* xdisp.c (copy_rope, copy_part_of_rope): Add face argument.
Jim Blandy <jimb@redhat.com>
parents:
2754
diff
changeset
|
1986 can't really hurt too much, or we call it on lines which appear |
aa7b6f6aa20a
* xdisp.c (copy_rope, copy_part_of_rope): Add face argument.
Jim Blandy <jimb@redhat.com>
parents:
2754
diff
changeset
|
1987 one after another in the buffer, in which case all calls to |
aa7b6f6aa20a
* xdisp.c (copy_rope, copy_part_of_rope): Add face argument.
Jim Blandy <jimb@redhat.com>
parents:
2754
diff
changeset
|
1988 recenter_overlay_lists but the first will be pretty cheap. */ |
aa7b6f6aa20a
* xdisp.c (copy_rope, copy_part_of_rope): Add face argument.
Jim Blandy <jimb@redhat.com>
parents:
2754
diff
changeset
|
1989 recenter_overlay_lists (current_buffer, pos); |
aa7b6f6aa20a
* xdisp.c (copy_rope, copy_part_of_rope): Add face argument.
Jim Blandy <jimb@redhat.com>
parents:
2754
diff
changeset
|
1990 |
277 | 1991 /* Loop generating characters. |
1992 Stop at end of buffer, before newline, | |
2729
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1993 if reach or pass continuation column, |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1994 or at face change. */ |
277 | 1995 pause = pos; |
2729
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
1996 next_face_change = pos; |
4386
abd79e187610
(try_window): Handle invisible newline at end of buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3937
diff
changeset
|
1997 #ifdef USE_TEXT_PROPERTIES |
abd79e187610
(try_window): Handle invisible newline at end of buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3937
diff
changeset
|
1998 next_invisible = pos; |
abd79e187610
(try_window): Handle invisible newline at end of buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3937
diff
changeset
|
1999 #endif |
277 | 2000 while (p1 < endp) |
2001 { | |
2002 p1prev = p1; | |
2729
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
2003 if (pos >= pause) |
277 | 2004 { |
2729
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
2005 /* Did we hit the end of the visible region of the buffer? |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
2006 Stop here. */ |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
2007 if (pos >= end) |
277 | 2008 break; |
2729
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
2009 |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
2010 /* Did we reach point? Record the cursor location. */ |
277 | 2011 if (pos == point && cursor_vpos < 0) |
2012 { | |
2013 cursor_vpos = vpos; | |
2014 cursor_hpos = p1 - startp; | |
2015 } | |
2016 | |
4386
abd79e187610
(try_window): Handle invisible newline at end of buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3937
diff
changeset
|
2017 #ifdef USE_TEXT_PROPERTIES |
abd79e187610
(try_window): Handle invisible newline at end of buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3937
diff
changeset
|
2018 /* if the `invisible' property is set to t, we can skip to |
abd79e187610
(try_window): Handle invisible newline at end of buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3937
diff
changeset
|
2019 the next property change */ |
abd79e187610
(try_window): Handle invisible newline at end of buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3937
diff
changeset
|
2020 while (pos == next_invisible && pos < end) |
abd79e187610
(try_window): Handle invisible newline at end of buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3937
diff
changeset
|
2021 { |
5082
47a76678bf4d
(display_text_line): Pass new arg to compute_char_face
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2022 Lisp_Object position, limit, endpos, prop; |
47a76678bf4d
(display_text_line): Pass new arg to compute_char_face
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2023 XFASTINT (position) = pos; |
47a76678bf4d
(display_text_line): Pass new arg to compute_char_face
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2024 prop = Fget_text_property (position, Qinvisible, |
47a76678bf4d
(display_text_line): Pass new arg to compute_char_face
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2025 Fcurrent_buffer ()); |
47a76678bf4d
(display_text_line): Pass new arg to compute_char_face
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2026 /* This is just an estimate to give reasonable |
47a76678bf4d
(display_text_line): Pass new arg to compute_char_face
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2027 performance; nothing should go wrong if it is too small. */ |
47a76678bf4d
(display_text_line): Pass new arg to compute_char_face
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2028 XFASTINT (limit) = pos + 50; |
47a76678bf4d
(display_text_line): Pass new arg to compute_char_face
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2029 endpos |
47a76678bf4d
(display_text_line): Pass new arg to compute_char_face
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2030 = Fnext_single_property_change (position, Qinvisible, |
47a76678bf4d
(display_text_line): Pass new arg to compute_char_face
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2031 Fcurrent_buffer (), limit); |
47a76678bf4d
(display_text_line): Pass new arg to compute_char_face
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2032 if (INTEGERP (endpos)) |
47a76678bf4d
(display_text_line): Pass new arg to compute_char_face
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2033 next_invisible = XINT (endpos); |
47a76678bf4d
(display_text_line): Pass new arg to compute_char_face
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2034 else |
47a76678bf4d
(display_text_line): Pass new arg to compute_char_face
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2035 next_invisible = end; |
47a76678bf4d
(display_text_line): Pass new arg to compute_char_face
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2036 if (! NILP (prop)) |
47a76678bf4d
(display_text_line): Pass new arg to compute_char_face
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2037 { |
47a76678bf4d
(display_text_line): Pass new arg to compute_char_face
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2038 if (pos < point && next_invisible >= point) |
47a76678bf4d
(display_text_line): Pass new arg to compute_char_face
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2039 { |
47a76678bf4d
(display_text_line): Pass new arg to compute_char_face
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2040 cursor_vpos = vpos; |
47a76678bf4d
(display_text_line): Pass new arg to compute_char_face
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2041 cursor_hpos = p1 - startp; |
47a76678bf4d
(display_text_line): Pass new arg to compute_char_face
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2042 } |
47a76678bf4d
(display_text_line): Pass new arg to compute_char_face
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2043 pos = next_invisible; |
47a76678bf4d
(display_text_line): Pass new arg to compute_char_face
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2044 } |
4386
abd79e187610
(try_window): Handle invisible newline at end of buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3937
diff
changeset
|
2045 } |
abd79e187610
(try_window): Handle invisible newline at end of buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3937
diff
changeset
|
2046 if (pos >= end) |
abd79e187610
(try_window): Handle invisible newline at end of buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3937
diff
changeset
|
2047 break; |
abd79e187610
(try_window): Handle invisible newline at end of buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3937
diff
changeset
|
2048 #endif |
abd79e187610
(try_window): Handle invisible newline at end of buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3937
diff
changeset
|
2049 |
2742
7800e6a86421
* xdisp.c (display_text_line): Make face-handling code conditional
Jim Blandy <jimb@redhat.com>
parents:
2729
diff
changeset
|
2050 #ifdef HAVE_X_WINDOWS |
2729
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
2051 /* Did we hit a face change? Figure out what face we should |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
2052 use now. We also hit this the first time through the |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
2053 loop, to see what face we should start with. */ |
4386
abd79e187610
(try_window): Handle invisible newline at end of buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3937
diff
changeset
|
2054 if (pos >= next_face_change && FRAME_X_P (f)) |
2848
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
2055 current_face = compute_char_face (f, w, pos, |
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
2056 region_beg, region_end, |
5082
47a76678bf4d
(display_text_line): Pass new arg to compute_char_face
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2057 &next_face_change, pos + 50); |
2742
7800e6a86421
* xdisp.c (display_text_line): Make face-handling code conditional
Jim Blandy <jimb@redhat.com>
parents:
2729
diff
changeset
|
2058 #endif |
2729
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
2059 |
2766
aa7b6f6aa20a
* xdisp.c (copy_rope, copy_part_of_rope): Add face argument.
Jim Blandy <jimb@redhat.com>
parents:
2754
diff
changeset
|
2060 pause = end; |
aa7b6f6aa20a
* xdisp.c (copy_rope, copy_part_of_rope): Add face argument.
Jim Blandy <jimb@redhat.com>
parents:
2754
diff
changeset
|
2061 |
4386
abd79e187610
(try_window): Handle invisible newline at end of buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3937
diff
changeset
|
2062 #ifdef USE_TEXT_PROPERTIES |
abd79e187610
(try_window): Handle invisible newline at end of buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3937
diff
changeset
|
2063 if (pos < next_invisible && next_invisible < pause) |
abd79e187610
(try_window): Handle invisible newline at end of buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3937
diff
changeset
|
2064 pause = next_invisible; |
abd79e187610
(try_window): Handle invisible newline at end of buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3937
diff
changeset
|
2065 #endif |
2766
aa7b6f6aa20a
* xdisp.c (copy_rope, copy_part_of_rope): Add face argument.
Jim Blandy <jimb@redhat.com>
parents:
2754
diff
changeset
|
2066 if (pos < next_face_change && next_face_change < pause) |
aa7b6f6aa20a
* xdisp.c (copy_rope, copy_part_of_rope): Add face argument.
Jim Blandy <jimb@redhat.com>
parents:
2754
diff
changeset
|
2067 pause = next_face_change; |
aa7b6f6aa20a
* xdisp.c (copy_rope, copy_part_of_rope): Add face argument.
Jim Blandy <jimb@redhat.com>
parents:
2754
diff
changeset
|
2068 |
2729
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
2069 /* Wouldn't you hate to read the next line to someone over |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
2070 the phone? */ |
277 | 2071 if (pos < point && point < pause) |
2072 pause = point; | |
2073 if (pos < GPT && GPT < pause) | |
2074 pause = GPT; | |
2075 | |
2076 p = &FETCH_CHAR (pos); | |
2077 } | |
2078 c = *p++; | |
2079 if (c >= 040 && c < 0177 | |
2065
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
2080 && (dp == 0 || XTYPE (DISP_CHAR_VECTOR (dp, c)) != Lisp_Vector)) |
277 | 2081 { |
2082 if (p1 >= startp) | |
2766
aa7b6f6aa20a
* xdisp.c (copy_rope, copy_part_of_rope): Add face argument.
Jim Blandy <jimb@redhat.com>
parents:
2754
diff
changeset
|
2083 *p1 = MAKE_GLYPH (c, current_face); |
277 | 2084 p1++; |
2085 } | |
2086 else if (c == '\n') | |
2087 { | |
2088 invis = 0; | |
2089 while (pos < end | |
2090 && selective > 0 | |
2091 && position_indentation (pos + 1) >= selective) | |
2092 { | |
2093 invis = 1; | |
2094 pos = find_next_newline (pos + 1, 1); | |
2095 if (FETCH_CHAR (pos - 1) == '\n') | |
2096 pos--; | |
2097 } | |
2098 if (invis && selective_rlen > 0 && p1 >= startp) | |
2099 { | |
2100 p1 += selective_rlen; | |
2101 if (p1 - startp > width) | |
2102 p1 = endp; | |
2754
af06c054b48f
(display_text_line): Use break; to exit loop at eol.
Richard M. Stallman <rms@gnu.org>
parents:
2742
diff
changeset
|
2103 copy_part_of_rope (p1prev, p1prev, invis_vector_contents, |
2766
aa7b6f6aa20a
* xdisp.c (copy_rope, copy_part_of_rope): Add face argument.
Jim Blandy <jimb@redhat.com>
parents:
2754
diff
changeset
|
2104 (p1 - p1prev), current_face); |
277 | 2105 } |
2884
e52ea063421a
* xdisp.c (display_text_line): If the newline (or C-m, in
Jim Blandy <jimb@redhat.com>
parents:
2874
diff
changeset
|
2106 #if 1 |
e52ea063421a
* xdisp.c (display_text_line): If the newline (or C-m, in
Jim Blandy <jimb@redhat.com>
parents:
2874
diff
changeset
|
2107 /* Draw the face of the newline character as extending all the |
e52ea063421a
* xdisp.c (display_text_line): If the newline (or C-m, in
Jim Blandy <jimb@redhat.com>
parents:
2874
diff
changeset
|
2108 way to the end of the frame line. */ |
e52ea063421a
* xdisp.c (display_text_line): If the newline (or C-m, in
Jim Blandy <jimb@redhat.com>
parents:
2874
diff
changeset
|
2109 if (current_face) |
e52ea063421a
* xdisp.c (display_text_line): If the newline (or C-m, in
Jim Blandy <jimb@redhat.com>
parents:
2874
diff
changeset
|
2110 while (p1 < endp) |
e52ea063421a
* xdisp.c (display_text_line): If the newline (or C-m, in
Jim Blandy <jimb@redhat.com>
parents:
2874
diff
changeset
|
2111 *p1++ = MAKE_GLYPH (' ', current_face); |
e52ea063421a
* xdisp.c (display_text_line): If the newline (or C-m, in
Jim Blandy <jimb@redhat.com>
parents:
2874
diff
changeset
|
2112 #endif |
2754
af06c054b48f
(display_text_line): Use break; to exit loop at eol.
Richard M. Stallman <rms@gnu.org>
parents:
2742
diff
changeset
|
2113 break; |
277 | 2114 } |
2115 else if (c == '\t') | |
2116 { | |
2117 do | |
2118 { | |
2119 if (p1 >= startp && p1 < endp) | |
2766
aa7b6f6aa20a
* xdisp.c (copy_rope, copy_part_of_rope): Add face argument.
Jim Blandy <jimb@redhat.com>
parents:
2754
diff
changeset
|
2120 *p1 = MAKE_GLYPH (' ', current_face); |
277 | 2121 p1++; |
2122 } | |
2123 while ((p1 - startp + taboffset + hscroll - (hscroll > 0)) | |
2124 % tab_width); | |
2125 } | |
368 | 2126 else if (c == Ctl ('M') && selective == -1) |
277 | 2127 { |
2128 pos = find_next_newline (pos, 1); | |
2129 if (FETCH_CHAR (pos - 1) == '\n') | |
2130 pos--; | |
2131 if (selective_rlen > 0) | |
2132 { | |
2133 p1 += selective_rlen; | |
2134 if (p1 - startp > width) | |
2135 p1 = endp; | |
2754
af06c054b48f
(display_text_line): Use break; to exit loop at eol.
Richard M. Stallman <rms@gnu.org>
parents:
2742
diff
changeset
|
2136 copy_part_of_rope (p1prev, p1prev, invis_vector_contents, |
2766
aa7b6f6aa20a
* xdisp.c (copy_rope, copy_part_of_rope): Add face argument.
Jim Blandy <jimb@redhat.com>
parents:
2754
diff
changeset
|
2137 (p1 - p1prev), current_face); |
277 | 2138 } |
2884
e52ea063421a
* xdisp.c (display_text_line): If the newline (or C-m, in
Jim Blandy <jimb@redhat.com>
parents:
2874
diff
changeset
|
2139 #if 1 |
e52ea063421a
* xdisp.c (display_text_line): If the newline (or C-m, in
Jim Blandy <jimb@redhat.com>
parents:
2874
diff
changeset
|
2140 /* Draw the face of the newline character as extending all the |
e52ea063421a
* xdisp.c (display_text_line): If the newline (or C-m, in
Jim Blandy <jimb@redhat.com>
parents:
2874
diff
changeset
|
2141 way to the end of the frame line. */ |
e52ea063421a
* xdisp.c (display_text_line): If the newline (or C-m, in
Jim Blandy <jimb@redhat.com>
parents:
2874
diff
changeset
|
2142 if (current_face) |
e52ea063421a
* xdisp.c (display_text_line): If the newline (or C-m, in
Jim Blandy <jimb@redhat.com>
parents:
2874
diff
changeset
|
2143 while (p1 < endp) |
e52ea063421a
* xdisp.c (display_text_line): If the newline (or C-m, in
Jim Blandy <jimb@redhat.com>
parents:
2874
diff
changeset
|
2144 *p1++ = MAKE_GLYPH (' ', current_face); |
e52ea063421a
* xdisp.c (display_text_line): If the newline (or C-m, in
Jim Blandy <jimb@redhat.com>
parents:
2874
diff
changeset
|
2145 #endif |
2754
af06c054b48f
(display_text_line): Use break; to exit loop at eol.
Richard M. Stallman <rms@gnu.org>
parents:
2742
diff
changeset
|
2146 break; |
277 | 2147 } |
2065
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
2148 else if (dp != 0 && XTYPE (DISP_CHAR_VECTOR (dp, c)) == Lisp_Vector) |
277 | 2149 { |
2766
aa7b6f6aa20a
* xdisp.c (copy_rope, copy_part_of_rope): Add face argument.
Jim Blandy <jimb@redhat.com>
parents:
2754
diff
changeset
|
2150 p1 = copy_rope (p1, startp, DISP_CHAR_VECTOR (dp, c), current_face); |
277 | 2151 } |
2152 else if (c < 0200 && ctl_arrow) | |
2153 { | |
2154 if (p1 >= startp) | |
2729
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
2155 *p1 = MAKE_GLYPH ((dp && XTYPE (DISP_CTRL_GLYPH (dp)) == Lisp_Int |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
2156 ? XINT (DISP_CTRL_GLYPH (dp)) : '^'), |
2766
aa7b6f6aa20a
* xdisp.c (copy_rope, copy_part_of_rope): Add face argument.
Jim Blandy <jimb@redhat.com>
parents:
2754
diff
changeset
|
2157 current_face); |
277 | 2158 p1++; |
368 | 2159 if (p1 >= startp && p1 < endp) |
2766
aa7b6f6aa20a
* xdisp.c (copy_rope, copy_part_of_rope): Add face argument.
Jim Blandy <jimb@redhat.com>
parents:
2754
diff
changeset
|
2160 *p1 = MAKE_GLYPH (c ^ 0100, current_face); |
277 | 2161 p1++; |
2162 } | |
2163 else | |
2164 { | |
2165 if (p1 >= startp) | |
2729
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
2166 *p1 = MAKE_GLYPH ((dp && XTYPE (DISP_ESCAPE_GLYPH (dp)) == Lisp_Int |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
2167 ? XINT (DISP_ESCAPE_GLYPH (dp)) : '\\'), |
2766
aa7b6f6aa20a
* xdisp.c (copy_rope, copy_part_of_rope): Add face argument.
Jim Blandy <jimb@redhat.com>
parents:
2754
diff
changeset
|
2168 current_face); |
277 | 2169 p1++; |
368 | 2170 if (p1 >= startp && p1 < endp) |
2766
aa7b6f6aa20a
* xdisp.c (copy_rope, copy_part_of_rope): Add face argument.
Jim Blandy <jimb@redhat.com>
parents:
2754
diff
changeset
|
2171 *p1 = MAKE_GLYPH ((c >> 6) + '0', current_face); |
2729
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
2172 p1++; |
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
2173 if (p1 >= startp && p1 < endp) |
2766
aa7b6f6aa20a
* xdisp.c (copy_rope, copy_part_of_rope): Add face argument.
Jim Blandy <jimb@redhat.com>
parents:
2754
diff
changeset
|
2174 *p1 = MAKE_GLYPH ((7 & (c >> 3)) + '0', current_face); |
277 | 2175 p1++; |
368 | 2176 if (p1 >= startp && p1 < endp) |
2766
aa7b6f6aa20a
* xdisp.c (copy_rope, copy_part_of_rope): Add face argument.
Jim Blandy <jimb@redhat.com>
parents:
2754
diff
changeset
|
2177 *p1 = MAKE_GLYPH ((7 & c) + '0', current_face); |
277 | 2178 p1++; |
2179 } | |
2729
76afd3322533
Arrange to tell redisplay about changes in overlays.
Jim Blandy <jimb@redhat.com>
parents:
2526
diff
changeset
|
2180 |
277 | 2181 pos++; |
2182 } | |
2183 | |
2184 val.hpos = - XINT (w->hscroll); | |
2185 if (val.hpos) | |
2186 val.hpos++; | |
2187 | |
2188 val.vpos = 1; | |
2189 | |
2190 lastpos = pos; | |
2191 | |
2192 /* Handle continuation in middle of a character */ | |
2193 /* by backing up over it */ | |
2194 if (p1 > endp) | |
2195 { | |
3586
7d077274d4bb
* xdisp.c (display_text_line): Handle case where line ends in a
Jim Blandy <jimb@redhat.com>
parents:
3516
diff
changeset
|
2196 /* Don't back up if we never actually displayed any text. |
7d077274d4bb
* xdisp.c (display_text_line): Handle case where line ends in a
Jim Blandy <jimb@redhat.com>
parents:
3516
diff
changeset
|
2197 This occurs when the minibuffer prompt takes up the whole line. */ |
7d077274d4bb
* xdisp.c (display_text_line): Handle case where line ends in a
Jim Blandy <jimb@redhat.com>
parents:
3516
diff
changeset
|
2198 if (p1prev) |
7d077274d4bb
* xdisp.c (display_text_line): Handle case where line ends in a
Jim Blandy <jimb@redhat.com>
parents:
3516
diff
changeset
|
2199 { |
7d077274d4bb
* xdisp.c (display_text_line): Handle case where line ends in a
Jim Blandy <jimb@redhat.com>
parents:
3516
diff
changeset
|
2200 /* Start the next line with that same character */ |
7d077274d4bb
* xdisp.c (display_text_line): Handle case where line ends in a
Jim Blandy <jimb@redhat.com>
parents:
3516
diff
changeset
|
2201 pos--; |
7d077274d4bb
* xdisp.c (display_text_line): Handle case where line ends in a
Jim Blandy <jimb@redhat.com>
parents:
3516
diff
changeset
|
2202 /* but at negative hpos, to skip the columns output on this line. */ |
7d077274d4bb
* xdisp.c (display_text_line): Handle case where line ends in a
Jim Blandy <jimb@redhat.com>
parents:
3516
diff
changeset
|
2203 val.hpos += p1prev - endp; |
7d077274d4bb
* xdisp.c (display_text_line): Handle case where line ends in a
Jim Blandy <jimb@redhat.com>
parents:
3516
diff
changeset
|
2204 } |
7d077274d4bb
* xdisp.c (display_text_line): Handle case where line ends in a
Jim Blandy <jimb@redhat.com>
parents:
3516
diff
changeset
|
2205 |
277 | 2206 /* Keep in this line everything up to the continuation column. */ |
2207 p1 = endp; | |
2208 } | |
2209 | |
2210 /* Finish deciding which character to start the next line on, | |
2211 and what hpos to start it at. | |
2212 Also set `lastpos' to the last position which counts as "on this line" | |
2213 for cursor-positioning. */ | |
2214 | |
2215 if (pos < ZV) | |
2216 { | |
2217 if (FETCH_CHAR (pos) == '\n') | |
2218 /* If stopped due to a newline, start next line after it */ | |
2219 pos++; | |
2220 else | |
2221 /* Stopped due to right margin of window */ | |
2222 { | |
2223 if (truncate) | |
2224 { | |
2225 *p1++ = truncator; | |
2226 /* Truncating => start next line after next newline, | |
2227 and point is on this line if it is before the newline, | |
2228 and skip none of first char of next line */ | |
2229 pos = find_next_newline (pos, 1); | |
2230 val.hpos = XINT (w->hscroll) ? 1 - XINT (w->hscroll) : 0; | |
2231 | |
2232 lastpos = pos - (FETCH_CHAR (pos - 1) == '\n'); | |
2233 } | |
2234 else | |
2235 { | |
2236 *p1++ = continuer; | |
2237 val.vpos = 0; | |
2238 lastpos--; | |
2239 } | |
2240 } | |
2241 } | |
2242 | |
2243 /* If point is at eol or in invisible text at eol, | |
769 | 2244 record its frame location now. */ |
277 | 2245 |
2246 if (start <= point && point <= lastpos && cursor_vpos < 0) | |
2247 { | |
2248 cursor_vpos = vpos; | |
2249 cursor_hpos = p1 - startp; | |
2250 } | |
2251 | |
2252 if (cursor_vpos == vpos) | |
2253 { | |
2254 if (cursor_hpos < 0) cursor_hpos = 0; | |
2255 if (cursor_hpos > width) cursor_hpos = width; | |
2256 cursor_hpos += XFASTINT (w->left); | |
769 | 2257 if (w == XWINDOW (FRAME_SELECTED_WINDOW (f))) |
277 | 2258 { |
769 | 2259 FRAME_CURSOR_Y (f) = cursor_vpos; |
2260 FRAME_CURSOR_X (f) = cursor_hpos; | |
277 | 2261 |
2262 if (w == XWINDOW (selected_window)) | |
2263 { | |
2264 /* Line is not continued and did not start | |
2265 in middle of character */ | |
2266 if ((hpos - XFASTINT (w->left) | |
2267 == (XINT (w->hscroll) ? 1 - XINT (w->hscroll) : 0)) | |
2268 && val.vpos) | |
2269 { | |
2270 this_line_bufpos = start; | |
2271 this_line_buffer = current_buffer; | |
2272 this_line_vpos = cursor_vpos; | |
2273 this_line_start_hpos = hpos; | |
2274 this_line_endpos = Z - lastpos; | |
2275 } | |
2276 else | |
2277 this_line_bufpos = 0; | |
2278 } | |
2279 } | |
2280 } | |
2281 | |
2282 /* If hscroll and line not empty, insert truncation-at-left marker */ | |
2283 if (hscroll && lastpos != start) | |
2284 { | |
2285 *startp = truncator; | |
2286 if (p1 <= startp) | |
2287 p1 = startp + 1; | |
2288 } | |
2289 | |
769 | 2290 if (XFASTINT (w->width) + XFASTINT (w->left) != FRAME_WIDTH (f)) |
277 | 2291 { |
2292 endp++; | |
2293 if (p1 < startp) p1 = startp; | |
2294 while (p1 < endp) *p1++ = SPACEGLYPH; | |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
2295 |
1992
37c45885540a
* xdisp.c (redisplay): Protect calls to request_sigio and
Jim Blandy <jimb@redhat.com>
parents:
1873
diff
changeset
|
2296 /* Don't draw vertical bars if we're using scroll bars. They're |
37c45885540a
* xdisp.c (redisplay): Protect calls to request_sigio and
Jim Blandy <jimb@redhat.com>
parents:
1873
diff
changeset
|
2297 covered up by the scroll bars, and it's distracting to see |
37c45885540a
* xdisp.c (redisplay): Protect calls to request_sigio and
Jim Blandy <jimb@redhat.com>
parents:
1873
diff
changeset
|
2298 them when the scroll bar windows are flickering around to be |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
2299 reconfigured. */ |
1992
37c45885540a
* xdisp.c (redisplay): Protect calls to request_sigio and
Jim Blandy <jimb@redhat.com>
parents:
1873
diff
changeset
|
2300 *p1++ = (FRAME_HAS_VERTICAL_SCROLL_BARS (f) |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
2301 ? ' ' : '|'); |
277 | 2302 } |
2303 desired_glyphs->used[vpos] = max (desired_glyphs->used[vpos], | |
2304 p1 - desired_glyphs->glyphs[vpos]); | |
2305 desired_glyphs->glyphs[vpos][desired_glyphs->used[vpos]] = 0; | |
2306 | |
2307 /* If the start of this line is the overlay arrow-position, | |
2308 then put the arrow string into the display-line. */ | |
2309 | |
2310 if (XTYPE (Voverlay_arrow_position) == Lisp_Marker | |
2311 && current_buffer == XMARKER (Voverlay_arrow_position)->buffer | |
2312 && start == marker_position (Voverlay_arrow_position) | |
2313 && XTYPE (Voverlay_arrow_string) == Lisp_String | |
2314 && ! overlay_arrow_seen) | |
2315 { | |
2316 unsigned char *p = XSTRING (Voverlay_arrow_string)->data; | |
2317 int i; | |
2318 int len = XSTRING (Voverlay_arrow_string)->size; | |
3726
33e82e88a210
* xdisp.c (display_text_line): Use temporary variable.
Jim Blandy <jimb@redhat.com>
parents:
3689
diff
changeset
|
2319 int arrow_end; |
277 | 2320 |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
2321 if (len > width) |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
2322 len = width; |
277 | 2323 for (i = 0; i < len; i++) |
2324 startp[i] = p[i]; | |
3726
33e82e88a210
* xdisp.c (display_text_line): Use temporary variable.
Jim Blandy <jimb@redhat.com>
parents:
3689
diff
changeset
|
2325 |
33e82e88a210
* xdisp.c (display_text_line): Use temporary variable.
Jim Blandy <jimb@redhat.com>
parents:
3689
diff
changeset
|
2326 /* Bug in SunOS 4.1.1 compiler requires this intermediate variable. */ |
33e82e88a210
* xdisp.c (display_text_line): Use temporary variable.
Jim Blandy <jimb@redhat.com>
parents:
3689
diff
changeset
|
2327 arrow_end = (startp - desired_glyphs->glyphs[vpos]) + len; |
33e82e88a210
* xdisp.c (display_text_line): Use temporary variable.
Jim Blandy <jimb@redhat.com>
parents:
3689
diff
changeset
|
2328 if (desired_glyphs->used[vpos] < arrow_end) |
33e82e88a210
* xdisp.c (display_text_line): Use temporary variable.
Jim Blandy <jimb@redhat.com>
parents:
3689
diff
changeset
|
2329 desired_glyphs->used[vpos] = arrow_end; |
277 | 2330 |
2331 overlay_arrow_seen = 1; | |
2332 } | |
2333 | |
2334 val.bufpos = pos; | |
2335 val_display_text_line = val; | |
2336 return &val_display_text_line; | |
2337 } | |
2338 | |
2150
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
2339 /* Redisplay the menu bar in the frame for window W. */ |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
2340 |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
2341 static void |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
2342 display_menu_bar (w) |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
2343 struct window *w; |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
2344 { |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
2345 Lisp_Object items, tail; |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
2346 register int vpos = 0; |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
2347 register FRAME_PTR f = XFRAME (WINDOW_FRAME (w)); |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
2348 int maxendcol = FRAME_WIDTH (f); |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
2349 int hpos = 0; |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
2350 |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
2351 if (FRAME_MENU_BAR_LINES (f) <= 0) |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
2352 return; |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
2353 |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
2354 get_display_line (f, vpos, 0); |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
2355 |
2189
cb92d253a599
(display_menu_bar): Assume FRAME_MENU_BAR_ITEMS already set.
Richard M. Stallman <rms@gnu.org>
parents:
2150
diff
changeset
|
2356 for (tail = FRAME_MENU_BAR_ITEMS (f); CONSP (tail); tail = XCONS (tail)->cdr) |
2150
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
2357 { |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
2358 Lisp_Object string; |
2189
cb92d253a599
(display_menu_bar): Assume FRAME_MENU_BAR_ITEMS already set.
Richard M. Stallman <rms@gnu.org>
parents:
2150
diff
changeset
|
2359 |
2150
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
2360 string = XCONS (XCONS (XCONS (tail)->car)->cdr)->car; |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
2361 |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
2362 /* Record in each item its hpos. */ |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
2363 XFASTINT (XCONS (XCONS (XCONS (tail)->car)->cdr)->cdr) = hpos; |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
2364 |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
2365 if (hpos < maxendcol) |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
2366 hpos = display_string (XWINDOW (FRAME_ROOT_WINDOW (f)), vpos, |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
2367 XSTRING (string)->data, |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
2368 XSTRING (string)->size, |
2189
cb92d253a599
(display_menu_bar): Assume FRAME_MENU_BAR_ITEMS already set.
Richard M. Stallman <rms@gnu.org>
parents:
2150
diff
changeset
|
2369 hpos, 0, hpos, maxendcol); |
cb92d253a599
(display_menu_bar): Assume FRAME_MENU_BAR_ITEMS already set.
Richard M. Stallman <rms@gnu.org>
parents:
2150
diff
changeset
|
2370 /* Put a gap of 3 spaces between items. */ |
cb92d253a599
(display_menu_bar): Assume FRAME_MENU_BAR_ITEMS already set.
Richard M. Stallman <rms@gnu.org>
parents:
2150
diff
changeset
|
2371 if (hpos < maxendcol) |
cb92d253a599
(display_menu_bar): Assume FRAME_MENU_BAR_ITEMS already set.
Richard M. Stallman <rms@gnu.org>
parents:
2150
diff
changeset
|
2372 { |
cb92d253a599
(display_menu_bar): Assume FRAME_MENU_BAR_ITEMS already set.
Richard M. Stallman <rms@gnu.org>
parents:
2150
diff
changeset
|
2373 int hpos1 = hpos + 3; |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
2374 hpos = display_string (w, vpos, "", 0, hpos, 0, |
2189
cb92d253a599
(display_menu_bar): Assume FRAME_MENU_BAR_ITEMS already set.
Richard M. Stallman <rms@gnu.org>
parents:
2150
diff
changeset
|
2375 min (hpos1, maxendcol), maxendcol); |
cb92d253a599
(display_menu_bar): Assume FRAME_MENU_BAR_ITEMS already set.
Richard M. Stallman <rms@gnu.org>
parents:
2150
diff
changeset
|
2376 } |
2150
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
2377 } |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
2378 |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
2379 FRAME_DESIRED_GLYPHS (f)->bufp[vpos] = 0; |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
2380 FRAME_DESIRED_GLYPHS (f)->highlight[vpos] = mode_line_inverse_video; |
2189
cb92d253a599
(display_menu_bar): Assume FRAME_MENU_BAR_ITEMS already set.
Richard M. Stallman <rms@gnu.org>
parents:
2150
diff
changeset
|
2381 |
cb92d253a599
(display_menu_bar): Assume FRAME_MENU_BAR_ITEMS already set.
Richard M. Stallman <rms@gnu.org>
parents:
2150
diff
changeset
|
2382 /* Fill out the line with spaces. */ |
cb92d253a599
(display_menu_bar): Assume FRAME_MENU_BAR_ITEMS already set.
Richard M. Stallman <rms@gnu.org>
parents:
2150
diff
changeset
|
2383 if (maxendcol > hpos) |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
2384 hpos = display_string (w, vpos, "", 0, hpos, 0, maxendcol, -1); |
4423
53f7c5b30816
* xdisp.c (display_menu_bar): Redisplay all lines occupied by the
Jim Blandy <jimb@redhat.com>
parents:
4386
diff
changeset
|
2385 |
53f7c5b30816
* xdisp.c (display_menu_bar): Redisplay all lines occupied by the
Jim Blandy <jimb@redhat.com>
parents:
4386
diff
changeset
|
2386 /* Clear the rest of the lines allocated to the menu bar. */ |
53f7c5b30816
* xdisp.c (display_menu_bar): Redisplay all lines occupied by the
Jim Blandy <jimb@redhat.com>
parents:
4386
diff
changeset
|
2387 vpos++; |
53f7c5b30816
* xdisp.c (display_menu_bar): Redisplay all lines occupied by the
Jim Blandy <jimb@redhat.com>
parents:
4386
diff
changeset
|
2388 while (vpos < FRAME_MENU_BAR_LINES (f)) |
53f7c5b30816
* xdisp.c (display_menu_bar): Redisplay all lines occupied by the
Jim Blandy <jimb@redhat.com>
parents:
4386
diff
changeset
|
2389 get_display_line (f, vpos++, 0); |
2150
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
2390 } |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
2391 |
277 | 2392 /* Display the mode line for window w */ |
2393 | |
2394 static void | |
2395 display_mode_line (w) | |
2396 struct window *w; | |
2397 { | |
2398 register int vpos = XFASTINT (w->height) + XFASTINT (w->top) - 1; | |
2399 register int left = XFASTINT (w->left); | |
2400 register int right = XFASTINT (w->width) + left; | |
769 | 2401 register FRAME_PTR f = XFRAME (WINDOW_FRAME (w)); |
277 | 2402 |
2303
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2403 line_number_displayed = 0; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2404 |
769 | 2405 get_display_line (f, vpos, left); |
277 | 2406 display_mode_element (w, vpos, left, 0, right, right, |
2407 current_buffer->mode_line_format); | |
769 | 2408 FRAME_DESIRED_GLYPHS (f)->bufp[vpos] = 0; |
277 | 2409 |
2410 /* Make the mode line inverse video if the entire line | |
2411 is made of mode lines. | |
2412 I.e. if this window is full width, | |
2413 or if it is the child of a full width window | |
2414 (which implies that that window is split side-by-side | |
2415 and the rest of this line is mode lines of the sibling windows). */ | |
769 | 2416 if (XFASTINT (w->width) == FRAME_WIDTH (f) |
2417 || XFASTINT (XWINDOW (w->parent)->width) == FRAME_WIDTH (f)) | |
2418 FRAME_DESIRED_GLYPHS (f)->highlight[vpos] = mode_line_inverse_video; | |
277 | 2419 |
2420 #ifdef HAVE_X_WINDOWS | |
2421 /* 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
|
2422 possible that this may mess adversely with some window managers. -jla |
277 | 2423 |
1124
453c24f2bdaa
* xdisp.c (display_mode_line): If the only other frames are
Jim Blandy <jimb@redhat.com>
parents:
1017
diff
changeset
|
2424 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
|
2425 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
|
2426 |
453c24f2bdaa
* xdisp.c (display_mode_line): If the only other frames are
Jim Blandy <jimb@redhat.com>
parents:
1017
diff
changeset
|
2427 /* 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
|
2428 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
|
2429 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
|
2430 if (FRAME_X_P (f) |
769 | 2431 && ! FRAME_MINIBUF_ONLY_P (f) |
831 | 2432 && 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
|
2433 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
|
2434 WINDOW_FRAME (w)) |
453c24f2bdaa
* xdisp.c (display_mode_line): If the only other frames are
Jim Blandy <jimb@redhat.com>
parents:
1017
diff
changeset
|
2435 ? Qnil |
453c24f2bdaa
* xdisp.c (display_mode_line): If the only other frames are
Jim Blandy <jimb@redhat.com>
parents:
1017
diff
changeset
|
2436 : 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
|
2437 Qnil); |
277 | 2438 #endif |
2439 } | |
2440 | |
2441 /* Contribute ELT to the mode line for window W. | |
2442 How it translates into text depends on its data type. | |
2443 | |
2444 VPOS is the position of the mode line being displayed. | |
2445 | |
769 | 2446 HPOS is the position (absolute on frame) where this element's text |
277 | 2447 should start. The output is truncated automatically at the right |
2448 edge of window W. | |
2449 | |
2450 DEPTH is the depth in recursion. It is used to prevent | |
2451 infinite recursion here. | |
2452 | |
2453 MINENDCOL is the hpos before which the element may not end. | |
2454 The element is padded at the right with spaces if nec | |
2455 to reach this column. | |
2456 | |
2457 MAXENDCOL is the hpos past which this element may not extend. | |
2458 If MINENDCOL is > MAXENDCOL, MINENDCOL takes priority. | |
2459 (This is necessary to make nested padding and truncation work.) | |
2460 | |
2461 Returns the hpos of the end of the text generated by ELT. | |
2462 The next element will receive that value as its HPOS arg, | |
2463 so as to concatenate the elements. */ | |
2464 | |
2465 static int | |
2466 display_mode_element (w, vpos, hpos, depth, minendcol, maxendcol, elt) | |
2467 struct window *w; | |
2468 register int vpos, hpos; | |
2469 int depth; | |
2470 int minendcol; | |
2471 register int maxendcol; | |
2472 register Lisp_Object elt; | |
2473 { | |
2474 tail_recurse: | |
2475 if (depth > 10) | |
2476 goto invalid; | |
2477 | |
2478 depth++; | |
2479 | |
2480 #ifdef SWITCH_ENUM_BUG | |
2481 switch ((int) XTYPE (elt)) | |
2482 #else | |
2483 switch (XTYPE (elt)) | |
2484 #endif | |
2485 { | |
2486 case Lisp_String: | |
2487 { | |
2488 /* A string: output it and check for %-constructs within it. */ | |
2489 register unsigned char c; | |
2490 register unsigned char *this = XSTRING (elt)->data; | |
2491 | |
2492 while (hpos < maxendcol && *this) | |
2493 { | |
2494 unsigned char *last = this; | |
2495 while ((c = *this++) != '\0' && c != '%') | |
2496 ; | |
2497 if (this - 1 != last) | |
2498 { | |
2499 register int lim = --this - last + hpos; | |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
2500 hpos = display_string (w, vpos, last, -1, hpos, 0, hpos, |
277 | 2501 min (lim, maxendcol)); |
2502 } | |
2503 else /* c == '%' */ | |
2504 { | |
2505 register int spec_width = 0; | |
2506 | |
2507 /* We can't allow -ve args due to the "%-" construct */ | |
2508 /* Argument specifies minwidth but not maxwidth | |
2509 (maxwidth can be specified by | |
2510 (<negative-number> . <stuff>) mode-line elements) */ | |
2511 | |
2512 while ((c = *this++) >= '0' && c <= '9') | |
2513 { | |
2514 spec_width = spec_width * 10 + (c - '0'); | |
2515 } | |
2516 | |
2517 spec_width += hpos; | |
2518 if (spec_width > maxendcol) | |
2519 spec_width = maxendcol; | |
2520 | |
2521 if (c == 'M') | |
2522 hpos = display_mode_element (w, vpos, hpos, depth, | |
2523 spec_width, maxendcol, | |
2524 Vglobal_mode_string); | |
2525 else if (c != 0) | |
2526 hpos = display_string (w, vpos, | |
2527 decode_mode_spec (w, c, | |
2528 maxendcol - hpos), | |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
2529 -1, |
277 | 2530 hpos, 0, spec_width, maxendcol); |
2531 } | |
2532 } | |
2533 } | |
2534 break; | |
2535 | |
2536 case Lisp_Symbol: | |
2537 /* A symbol: process the value of the symbol recursively | |
2538 as if it appeared here directly. Avoid error if symbol void. | |
2539 Special case: if value of symbol is a string, output the string | |
2540 literally. */ | |
2541 { | |
2542 register Lisp_Object tem; | |
2543 tem = Fboundp (elt); | |
485 | 2544 if (!NILP (tem)) |
277 | 2545 { |
2546 tem = Fsymbol_value (elt); | |
2547 /* If value is a string, output that string literally: | |
2548 don't check for % within it. */ | |
2549 if (XTYPE (tem) == Lisp_String) | |
2550 hpos = display_string (w, vpos, XSTRING (tem)->data, | |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
2551 XSTRING (tem)->size, |
277 | 2552 hpos, 0, minendcol, maxendcol); |
2553 /* Give up right away for nil or t. */ | |
2554 else if (!EQ (tem, elt)) | |
2555 { elt = tem; goto tail_recurse; } | |
2556 } | |
2557 } | |
2558 break; | |
2559 | |
2560 case Lisp_Cons: | |
2561 { | |
2562 register Lisp_Object car, tem; | |
2563 | |
2564 /* A cons cell: three distinct cases. | |
2565 If first element is a string or a cons, process all the elements | |
2566 and effectively concatenate them. | |
2567 If first element is a negative number, truncate displaying cdr to | |
2568 at most that many characters. If positive, pad (with spaces) | |
2569 to at least that many characters. | |
2570 If first element is a symbol, process the cadr or caddr recursively | |
2571 according to whether the symbol's value is non-nil or nil. */ | |
2572 car = XCONS (elt)->car; | |
2573 if (XTYPE (car) == Lisp_Symbol) | |
2574 { | |
2575 tem = Fboundp (car); | |
2576 elt = XCONS (elt)->cdr; | |
2577 if (XTYPE (elt) != Lisp_Cons) | |
2578 goto invalid; | |
2579 /* elt is now the cdr, and we know it is a cons cell. | |
2580 Use its car if CAR has a non-nil value. */ | |
485 | 2581 if (!NILP (tem)) |
277 | 2582 { |
2583 tem = Fsymbol_value (car); | |
485 | 2584 if (!NILP (tem)) |
277 | 2585 { elt = XCONS (elt)->car; goto tail_recurse; } |
2586 } | |
2587 /* Symbol's value is nil (or symbol is unbound) | |
2588 Get the cddr of the original list | |
2589 and if possible find the caddr and use that. */ | |
2590 elt = XCONS (elt)->cdr; | |
485 | 2591 if (NILP (elt)) |
277 | 2592 break; |
2593 else if (XTYPE (elt) != Lisp_Cons) | |
2594 goto invalid; | |
2595 elt = XCONS (elt)->car; | |
2596 goto tail_recurse; | |
2597 } | |
2598 else if (XTYPE (car) == Lisp_Int) | |
2599 { | |
2600 register int lim = XINT (car); | |
2601 elt = XCONS (elt)->cdr; | |
2602 if (lim < 0) | |
2603 /* Negative int means reduce maximum width. | |
2604 DO NOT change MINENDCOL here! | |
2605 (20 -10 . foo) should truncate foo to 10 col | |
2606 and then pad to 20. */ | |
2607 maxendcol = min (maxendcol, hpos - lim); | |
2608 else if (lim > 0) | |
2609 { | |
2610 /* Padding specified. Don't let it be more than | |
2611 current maximum. */ | |
2612 lim += hpos; | |
2613 if (lim > maxendcol) | |
2614 lim = maxendcol; | |
2615 /* If that's more padding than already wanted, queue it. | |
2616 But don't reduce padding already specified even if | |
2617 that is beyond the current truncation point. */ | |
2618 if (lim > minendcol) | |
2619 minendcol = lim; | |
2620 } | |
2621 goto tail_recurse; | |
2622 } | |
2623 else if (XTYPE (car) == Lisp_String || XTYPE (car) == Lisp_Cons) | |
2624 { | |
2625 register int limit = 50; | |
2626 /* LIMIT is to protect against circular lists. */ | |
2627 while (XTYPE (elt) == Lisp_Cons && --limit > 0 | |
2628 && hpos < maxendcol) | |
2629 { | |
2630 hpos = display_mode_element (w, vpos, hpos, depth, | |
2631 hpos, maxendcol, | |
2632 XCONS (elt)->car); | |
2633 elt = XCONS (elt)->cdr; | |
2634 } | |
2635 } | |
2636 } | |
2637 break; | |
2638 | |
2639 default: | |
2640 invalid: | |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
2641 return (display_string (w, vpos, "*invalid*", -1, hpos, 0, |
277 | 2642 minendcol, maxendcol)); |
2643 } | |
2644 | |
2645 end: | |
2646 if (minendcol > hpos) | |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
2647 hpos = display_string (w, vpos, "", 0, hpos, 0, minendcol, -1); |
277 | 2648 return hpos; |
2649 } | |
2650 | |
2651 /* Return a string for the output of a mode line %-spec for window W, | |
2652 generated by character C and width MAXWIDTH. */ | |
2653 | |
1017
d42877206c0a
* xdisp.c (display_mode_line): Use x_implicitly_set_name here.
Jim Blandy <jimb@redhat.com>
parents:
973
diff
changeset
|
2654 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
|
2655 |
277 | 2656 static char * |
2657 decode_mode_spec (w, c, maxwidth) | |
2658 struct window *w; | |
2659 register char c; | |
2660 register int maxwidth; | |
2661 { | |
2662 Lisp_Object obj = Qnil; | |
769 | 2663 FRAME_PTR f = XFRAME (WINDOW_FRAME (w)); |
2664 char *decode_mode_spec_buf = (char *) FRAME_TEMP_GLYPHS (f)->total_contents; | |
277 | 2665 |
769 | 2666 if (maxwidth > FRAME_WIDTH (f)) |
2667 maxwidth = FRAME_WIDTH (f); | |
277 | 2668 |
2669 switch (c) | |
2670 { | |
2671 case 'b': | |
2672 obj = current_buffer->name; | |
2673 #if 0 | |
2674 if (maxwidth >= 3 && XSTRING (obj)->size > maxwidth) | |
2675 { | |
2676 bcopy (XSTRING (obj)->data, decode_mode_spec_buf, maxwidth - 1); | |
2677 decode_mode_spec_buf[maxwidth - 1] = '\\'; | |
2678 decode_mode_spec_buf[maxwidth] = '\0'; | |
2679 return decode_mode_spec_buf; | |
2680 } | |
2681 #endif | |
2682 break; | |
2683 | |
2684 case 'f': | |
2685 obj = current_buffer->filename; | |
2686 #if 0 | |
485 | 2687 if (NILP (obj)) |
277 | 2688 return "[none]"; |
2689 else if (XTYPE (obj) == Lisp_String && XSTRING (obj)->size > maxwidth) | |
2690 { | |
2691 bcopy ("...", decode_mode_spec_buf, 3); | |
2692 bcopy (XSTRING (obj)->data + XSTRING (obj)->size - maxwidth + 3, | |
2693 decode_mode_spec_buf + 3, maxwidth - 3); | |
2694 return decode_mode_spec_buf; | |
2695 } | |
2696 #endif | |
2697 break; | |
2698 | |
2303
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2699 case 'l': |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2700 { |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2701 int startpos = marker_position (w->start); |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2702 int line, linepos, topline; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2703 int nlines, junk; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2704 Lisp_Object tem; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2705 int height = XFASTINT (w->height); |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2706 |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2707 /* If we decided that this buffer isn't suitable for line numbers, |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2708 don't forget that too fast. */ |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2709 if (EQ (w->base_line_pos, w->buffer)) |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2710 return "??"; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2711 |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2712 /* If the buffer is very big, don't waste time. */ |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2713 if (ZV - BEGV > line_number_display_limit) |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2714 { |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2715 w->base_line_pos = Qnil; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2716 w->base_line_number = Qnil; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2717 return "??"; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2718 } |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2719 |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2720 if (!NILP (w->base_line_number) |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2721 && !NILP (w->base_line_pos) |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2722 && XFASTINT (w->base_line_pos) <= marker_position (w->start)) |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2723 { |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2724 line = XFASTINT (w->base_line_number); |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2725 linepos = XFASTINT (w->base_line_pos); |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2726 } |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2727 else |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2728 { |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2729 line = 1; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2730 linepos = BEGV; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2731 } |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2732 |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2733 /* Count lines from base line to window start position. */ |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2734 nlines = display_count_lines (linepos, startpos, startpos, &junk); |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2735 |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2736 topline = nlines + line; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2737 |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2738 /* Determine a new base line, if the old one is too close |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2739 or too far away, or if we did not have one. |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2740 "Too close" means it's plausible a scroll-down would |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2741 go back past it. */ |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2742 if (startpos == BEGV) |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2743 { |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2744 XFASTINT (w->base_line_number) = topline; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2745 XFASTINT (w->base_line_pos) = BEGV; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2746 } |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2747 else if (nlines < height + 25 || nlines > height * 3 + 50 |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2748 || linepos == BEGV) |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2749 { |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2750 int limit = BEGV; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2751 int position; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2752 int distance = (height * 2 + 30) * 200; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2753 |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2754 if (startpos - distance > limit) |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2755 limit = startpos - distance; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2756 |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2757 nlines = display_count_lines (startpos, limit, |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2758 -(height * 2 + 30), |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2759 &position); |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2760 /* If we couldn't find the lines we wanted within |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2761 200 chars per line, |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2762 give up on line numbers for this window. */ |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2763 if (position == startpos - distance) |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2764 { |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2765 w->base_line_pos = w->buffer; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2766 w->base_line_number = Qnil; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2767 return "??"; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2768 } |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2769 |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2770 XFASTINT (w->base_line_number) = topline - nlines; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2771 XFASTINT (w->base_line_pos) = position; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2772 } |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2773 |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2774 /* Now count lines from the start pos to point. */ |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2775 nlines = display_count_lines (startpos, PT, PT, &junk); |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2776 |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2777 /* Record that we did display the line number. */ |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2778 line_number_displayed = 1; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2779 |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2780 /* Make the string to show. */ |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2781 sprintf (decode_mode_spec_buf, "%d", topline + nlines); |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2782 return decode_mode_spec_buf; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2783 } |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2784 break; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2785 |
277 | 2786 case 'm': |
2787 obj = current_buffer->mode_name; | |
2788 break; | |
2789 | |
2790 case 'n': | |
2791 if (BEGV > BEG || ZV < Z) | |
2792 return " Narrow"; | |
2793 break; | |
2794 | |
2795 case '*': | |
485 | 2796 if (!NILP (current_buffer->read_only)) |
277 | 2797 return "%"; |
2798 if (MODIFF > current_buffer->save_modified) | |
2799 return "*"; | |
2800 return "-"; | |
2801 | |
2802 case 's': | |
2803 /* status of process */ | |
2804 obj = Fget_buffer_process (Fcurrent_buffer ()); | |
485 | 2805 if (NILP (obj)) |
277 | 2806 return "no process"; |
2807 obj = Fsymbol_name (Fprocess_status (obj)); | |
2808 break; | |
2809 | |
2810 case 'p': | |
2811 { | |
2812 int pos = marker_position (w->start); | |
2813 int total = ZV - BEGV; | |
2814 | |
2815 if (XFASTINT (w->window_end_pos) <= Z - ZV) | |
2816 { | |
2817 if (pos <= BEGV) | |
2818 return "All"; | |
2819 else | |
2820 return "Bottom"; | |
2821 } | |
2822 else if (pos <= BEGV) | |
2823 return "Top"; | |
2824 else | |
2825 { | |
2826 total = ((pos - BEGV) * 100 + total - 1) / total; | |
2827 /* We can't normally display a 3-digit number, | |
2828 so get us a 2-digit number that is close. */ | |
2829 if (total == 100) | |
2830 total = 99; | |
2831 sprintf (decode_mode_spec_buf, "%2d%%", total); | |
2832 return decode_mode_spec_buf; | |
2833 } | |
2834 } | |
2835 | |
2836 case '%': | |
2837 return "%"; | |
2838 | |
2839 case '[': | |
2840 { | |
2841 int i; | |
2842 char *p; | |
2843 | |
2844 if (command_loop_level > 5) | |
2845 return "[[[... "; | |
2846 p = decode_mode_spec_buf; | |
2847 for (i = 0; i < command_loop_level; i++) | |
2848 *p++ = '['; | |
2849 *p = 0; | |
2850 return decode_mode_spec_buf; | |
2851 } | |
2852 | |
2853 case ']': | |
2854 { | |
2855 int i; | |
2856 char *p; | |
2857 | |
2858 if (command_loop_level > 5) | |
2859 return " ...]]]"; | |
2860 p = decode_mode_spec_buf; | |
2861 for (i = 0; i < command_loop_level; i++) | |
2862 *p++ = ']'; | |
2863 *p = 0; | |
2864 return decode_mode_spec_buf; | |
2865 } | |
2866 | |
2867 case '-': | |
2868 { | |
2869 register char *p; | |
2870 register int i; | |
2871 | |
2872 if (maxwidth < sizeof (lots_of_dashes)) | |
2873 return lots_of_dashes; | |
2874 else | |
2875 { | |
2876 for (p = decode_mode_spec_buf, i = maxwidth; i > 0; i--) | |
2877 *p++ = '-'; | |
2878 *p = '\0'; | |
2879 } | |
2880 return decode_mode_spec_buf; | |
2881 } | |
2882 } | |
2883 | |
2884 if (XTYPE (obj) == Lisp_String) | |
2885 return (char *) XSTRING (obj)->data; | |
2886 else | |
2887 return ""; | |
2888 } | |
2303
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2889 |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2890 /* Count up to N lines starting from FROM. |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2891 But don't go beyond LIMIT. |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2892 Return the number of lines thus found (always positive). |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2893 Store the position after what was found into *POS_PTR. */ |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2894 |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2895 static int |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2896 display_count_lines (from, limit, n, pos_ptr) |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2897 int from, limit, n; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2898 int *pos_ptr; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2899 { |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2900 int oldbegv = BEGV; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2901 int oldzv = ZV; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2902 int shortage = 0; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2903 |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2904 if (limit < from) |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2905 BEGV = limit; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2906 else |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2907 ZV = limit; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2908 |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2909 *pos_ptr = scan_buffer ('\n', from, n, &shortage); |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2910 |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2911 ZV = oldzv; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2912 BEGV = oldbegv; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2913 |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2914 if (n < 0) |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2915 /* When scanning backwards, scan_buffer stops *after* the last newline |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2916 it finds, but does count it. Compensate for that. */ |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2917 return - n - shortage - (*pos_ptr != limit); |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2918 return n - shortage; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
2919 } |
277 | 2920 |
2921 /* Display STRING on one line of window W, starting at HPOS. | |
2922 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
|
2923 If VPOS == -1, display it as the current frame's title. |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
2924 LENGTH is the length of STRING, or -1 meaning STRING is null-terminated. |
277 | 2925 |
2926 TRUNCATE is GLYPH to display at end if truncated. Zero for none. | |
2927 | |
2928 MINCOL is the first column ok to end at. (Pad with spaces to this col.) | |
2929 MAXCOL is the last column ok to end at. Truncate here. | |
2930 -1 for MINCOL or MAXCOL means no explicit minimum or maximum. | |
769 | 2931 Both count from the left edge of the frame, as does HPOS. |
277 | 2932 The right edge of W is an implicit maximum. |
2933 If TRUNCATE is nonzero, the implicit maximum is one column before the edge. | |
2934 | |
2935 Returns ending hpos */ | |
2936 | |
2937 static int | |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
2938 display_string (w, vpos, string, length, hpos, truncate, mincol, maxcol) |
277 | 2939 struct window *w; |
2940 unsigned char *string; | |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
2941 int length; |
277 | 2942 int vpos, hpos; |
2943 GLYPH truncate; | |
2944 int mincol, maxcol; | |
2945 { | |
2946 register int c; | |
2947 register GLYPH *p1; | |
2948 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
|
2949 int tab_width = XINT (XBUFFER (w->buffer)->tab_width); |
277 | 2950 register GLYPH *start; |
2951 register GLYPH *end; | |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
2952 FRAME_PTR f = XFRAME (WINDOW_FRAME (w)); |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
2953 struct frame_glyphs *desired_glyphs = FRAME_DESIRED_GLYPHS (f); |
277 | 2954 GLYPH *p1start = desired_glyphs->glyphs[vpos] + hpos; |
2955 int window_width = XFASTINT (w->width); | |
2956 | |
2957 /* Use the standard display table, not the window's display table. | |
2958 We don't want the mode line in rot13. */ | |
2959 register struct Lisp_Vector *dp = 0; | |
2960 | |
2961 if (XTYPE (Vstandard_display_table) == Lisp_Vector | |
2962 && XVECTOR (Vstandard_display_table)->size == DISP_TABLE_SIZE) | |
2963 dp = XVECTOR (Vstandard_display_table); | |
2964 | |
2324
24cd3df6f184
(display_string, display_text_line): Allow tab_width up to 1000.
Richard M. Stallman <rms@gnu.org>
parents:
2303
diff
changeset
|
2965 if (tab_width <= 0 || tab_width > 1000) tab_width = 8; |
277 | 2966 |
2967 p1 = p1start; | |
2968 start = desired_glyphs->glyphs[vpos] + XFASTINT (w->left); | |
2969 end = start + window_width - (truncate != 0); | |
2970 | |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
2971 if ((window_width + XFASTINT (w->left)) != FRAME_WIDTH (f)) |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
2972 { |
1992
37c45885540a
* xdisp.c (redisplay): Protect calls to request_sigio and
Jim Blandy <jimb@redhat.com>
parents:
1873
diff
changeset
|
2973 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f)) |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
2974 { |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
2975 int i; |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
2976 |
1992
37c45885540a
* xdisp.c (redisplay): Protect calls to request_sigio and
Jim Blandy <jimb@redhat.com>
parents:
1873
diff
changeset
|
2977 for (i = 0; i < VERTICAL_SCROLL_BAR_WIDTH; i++) |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
2978 *end-- = ' '; |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
2979 } |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
2980 else |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
2981 *end-- = '|'; |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
2982 } |
277 | 2983 |
2984 if (maxcol >= 0 && end - desired_glyphs->glyphs[vpos] > maxcol) | |
2985 end = desired_glyphs->glyphs[vpos] + maxcol; | |
2986 if (maxcol >= 0 && mincol > maxcol) | |
2987 mincol = maxcol; | |
2988 | |
2989 while (p1 < end) | |
2990 { | |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
2991 if (length == 0) |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
2992 break; |
277 | 2993 c = *string++; |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
2994 /* Specified length. */ |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
2995 if (length >= 0) |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
2996 length--; |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
2997 /* Unspecified length (null-terminated string). */ |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
2998 else if (c == 0) |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
2999 break; |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
3000 |
277 | 3001 if (c >= 040 && c < 0177 |
2065
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
3002 && (dp == 0 || XTYPE (DISP_CHAR_VECTOR (dp, c)) != Lisp_Vector)) |
277 | 3003 { |
3004 if (p1 >= start) | |
3005 *p1 = c; | |
3006 p1++; | |
3007 } | |
3008 else if (c == '\t') | |
3009 { | |
3010 do | |
3011 { | |
3012 if (p1 >= start && p1 < end) | |
3013 *p1 = SPACEGLYPH; | |
3014 p1++; | |
3015 } | |
3016 while ((p1 - start + hscroll - (hscroll > 0)) % tab_width); | |
3017 } | |
2065
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
3018 else if (dp != 0 && XTYPE (DISP_CHAR_VECTOR (dp, c)) == Lisp_Vector) |
2766
aa7b6f6aa20a
* xdisp.c (copy_rope, copy_part_of_rope): Add face argument.
Jim Blandy <jimb@redhat.com>
parents:
2754
diff
changeset
|
3019 p1 = copy_rope (p1, start, DISP_CHAR_VECTOR (dp, c), 0); |
1527
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
3020 else if (c < 0200 && ! NILP (buffer_defaults.ctl_arrow)) |
277 | 3021 { |
3022 if (p1 >= start) | |
3023 *p1 = (dp && XTYPE (DISP_CTRL_GLYPH (dp)) == Lisp_Int | |
3024 ? XINT (DISP_CTRL_GLYPH (dp)) : '^'); | |
3025 p1++; | |
368 | 3026 if (p1 >= start && p1 < end) |
277 | 3027 *p1 = c ^ 0100; |
3028 p1++; | |
3029 } | |
3030 else | |
3031 { | |
3032 if (p1 >= start) | |
3033 *p1 = (dp && XTYPE (DISP_ESCAPE_GLYPH (dp)) == Lisp_Int | |
3034 ? XINT (DISP_ESCAPE_GLYPH (dp)) : '\\'); | |
3035 p1++; | |
368 | 3036 if (p1 >= start && p1 < end) |
277 | 3037 *p1 = (c >> 6) + '0'; |
3038 p1++; | |
368 | 3039 if (p1 >= start && p1 < end) |
277 | 3040 *p1 = (7 & (c >> 3)) + '0'; |
3041 p1++; | |
368 | 3042 if (p1 >= start && p1 < end) |
277 | 3043 *p1 = (7 & c) + '0'; |
3044 p1++; | |
3045 } | |
3046 } | |
3047 | |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
3048 if (c && length > 0) |
277 | 3049 { |
3050 p1 = end; | |
3051 if (truncate) *p1++ = truncate; | |
3052 } | |
3053 else if (mincol >= 0) | |
3054 { | |
3055 end = desired_glyphs->glyphs[vpos] + mincol; | |
3056 while (p1 < end) | |
3057 *p1++ = SPACEGLYPH; | |
3058 } | |
3059 | |
3060 { | |
3061 register int len = p1 - desired_glyphs->glyphs[vpos]; | |
3062 | |
3063 if (len > desired_glyphs->used[vpos]) | |
3064 desired_glyphs->used[vpos] = len; | |
3065 desired_glyphs->glyphs[vpos][desired_glyphs->used[vpos]] = 0; | |
3066 | |
3067 return len; | |
3068 } | |
3069 } | |
3070 | |
3071 void | |
3072 syms_of_xdisp () | |
3073 { | |
3074 staticpro (&last_arrow_position); | |
3075 staticpro (&last_arrow_string); | |
3076 last_arrow_position = Qnil; | |
3077 last_arrow_string = Qnil; | |
3078 | |
3079 DEFVAR_LISP ("global-mode-string", &Vglobal_mode_string, | |
782
a6d00bdb2b60
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
781
diff
changeset
|
3080 "String (or mode line construct) included (normally) in `mode-line-format'."); |
277 | 3081 Vglobal_mode_string = Qnil; |
3082 | |
3083 DEFVAR_LISP ("overlay-arrow-position", &Voverlay_arrow_position, | |
3084 "Marker for where to display an arrow on top of the buffer text.\n\ | |
3085 This must be the beginning of a line in order to work.\n\ | |
3086 See also `overlay-arrow-string'."); | |
3087 Voverlay_arrow_position = Qnil; | |
3088 | |
3089 DEFVAR_LISP ("overlay-arrow-string", &Voverlay_arrow_string, | |
3090 "String to display as an arrow. See also `overlay-arrow-position'."); | |
3091 Voverlay_arrow_string = Qnil; | |
3092 | |
3093 DEFVAR_INT ("scroll-step", &scroll_step, | |
3094 "*The number of lines to try scrolling a window by when point moves out.\n\ | |
769 | 3095 If that fails to bring point back on frame, point is centered instead.\n\ |
3096 If this is zero, point is always centered after it moves off frame."); | |
277 | 3097 |
3098 DEFVAR_INT ("debug-end-pos", &debug_end_pos, "Don't ask"); | |
3099 | |
3100 DEFVAR_BOOL ("truncate-partial-width-windows", | |
3101 &truncate_partial_width_windows, | |
769 | 3102 "*Non-nil means truncate lines in all windows less than full frame wide."); |
277 | 3103 truncate_partial_width_windows = 1; |
3104 | |
3105 DEFVAR_BOOL ("mode-line-inverse-video", &mode_line_inverse_video, | |
3106 "*Non-nil means use inverse video for the mode line."); | |
3107 mode_line_inverse_video = 1; | |
2303
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
3108 |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
3109 DEFVAR_INT ("line-number-display-limit", &line_number_display_limit, |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
3110 "*Maximum buffer size for which line number should be displayed."); |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
3111 line_number_display_limit = 1000000; |
3265
80f57ae8d44e
(syms_of_xdisp): Make highlight-nonselected-windows Lisp var.
Richard M. Stallman <rms@gnu.org>
parents:
3165
diff
changeset
|
3112 |
80f57ae8d44e
(syms_of_xdisp): Make highlight-nonselected-windows Lisp var.
Richard M. Stallman <rms@gnu.org>
parents:
3165
diff
changeset
|
3113 DEFVAR_BOOL ("highlight-nonselected-windows", &highlight_nonselected_windows, |
80f57ae8d44e
(syms_of_xdisp): Make highlight-nonselected-windows Lisp var.
Richard M. Stallman <rms@gnu.org>
parents:
3165
diff
changeset
|
3114 "*Non-nil means highlight region even in nonselected windows."); |
80f57ae8d44e
(syms_of_xdisp): Make highlight-nonselected-windows Lisp var.
Richard M. Stallman <rms@gnu.org>
parents:
3165
diff
changeset
|
3115 highlight_nonselected_windows = 1; |
277 | 3116 } |
3117 | |
3118 /* initialize the window system */ | |
3119 init_xdisp () | |
3120 { | |
3121 Lisp_Object root_window; | |
3122 #ifndef COMPILER_REGISTER_BUG | |
3123 register | |
3124 #endif /* COMPILER_REGISTER_BUG */ | |
3125 struct window *mini_w; | |
3126 | |
3127 this_line_bufpos = 0; | |
3128 | |
3129 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
|
3130 root_window = FRAME_ROOT_WINDOW (XFRAME (WINDOW_FRAME (mini_w))); |
277 | 3131 |
3132 echo_area_glyphs = 0; | |
3133 previous_echo_glyphs = 0; | |
3134 | |
3135 if (!noninteractive) | |
3136 { | |
769 | 3137 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (root_window))); |
277 | 3138 XFASTINT (XWINDOW (root_window)->top) = 0; |
769 | 3139 set_window_height (root_window, FRAME_HEIGHT (f) - 1, 0); |
3140 XFASTINT (mini_w->top) = FRAME_HEIGHT (f) - 1; | |
277 | 3141 set_window_height (minibuf_window, 1, 0); |
3142 | |
769 | 3143 XFASTINT (XWINDOW (root_window)->width) = FRAME_WIDTH (f); |
3144 XFASTINT (mini_w->width) = FRAME_WIDTH (f); | |
277 | 3145 } |
3146 } |