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