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