(YACC): flag added to c_ext.
[bpt/emacs.git] / src / xdisp.c
CommitLineData
a2889657 1/* Display generation from window structure and buffer text.
c581d710 2 Copyright (C) 1985, 1986, 1987, 1988, 1993 Free Software Foundation, Inc.
a2889657
JB
3
4This file is part of GNU Emacs.
5
6GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
b1d1124b 8the Free Software Foundation; either version 2, or (at your option)
a2889657
JB
9any later version.
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Emacs; see the file COPYING. If not, write to
18the 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"
44fa5b1e 26#include "frame.h"
a2889657
JB
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"
30c566e4 35#include "termhooks.h"
a2889657
JB
36
37extern int interrupt_input;
38extern int command_loop_level;
39
40/* Nonzero means print newline before next minibuffer message. */
41
42int 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
44fa5b1e
JB
48 entirely or partially on the current frame line.
49 Or zero, which disables the optimization for the current frame line. */
a2889657
JB
50static int this_line_bufpos;
51
52/* Number of characters past the end of this line,
53 including the terminating newline */
54static int this_line_endpos;
55
44fa5b1e 56/* The vertical position of this frame line. */
a2889657
JB
57static int this_line_vpos;
58
44fa5b1e 59/* Hpos value for start of display on this frame line.
a2889657
JB
60 Usually zero, but negative if first character really began
61 on previous line */
62static int this_line_start_hpos;
63
64/* Buffer that this_line variables are describing. */
65static struct buffer *this_line_buffer;
66
67/* Set by try_window_id to the vpos of first of any lines
44fa5b1e 68 scrolled on to the bottom of the frame. These lines should
a2889657
JB
69 not be included in any general scroll computation. */
70static int scroll_bottom_vpos;
71
72/* Value of echo_area_glyphs when it was last acted on.
44fa5b1e 73 If this is nonzero, there is a message on the frame
a2889657
JB
74 in the minibuffer and it should be erased as soon
75 as it is no longer requested to appear. */
76char *previous_echo_glyphs;
77
44fa5b1e 78/* Nonzero means truncate lines in all windows less wide than the frame */
a2889657
JB
79int truncate_partial_width_windows;
80
81Lisp_Object Vglobal_mode_string;
82
83/* Marker for where to display an arrow on top of the buffer text. */
84Lisp_Object Voverlay_arrow_position;
85
86/* String to display for the arrow. */
87Lisp_Object Voverlay_arrow_string;
88
89/* Values of those variables at last redisplay. */
ded34426 90static Lisp_Object last_arrow_position, last_arrow_string;
a2889657
JB
91
92/* Nonzero if overlay arrow has been displayed once in this window. */
93static int overlay_arrow_seen;
94
44fa5b1e 95/* If cursor motion alone moves point off frame,
a2889657
JB
96 Try scrolling this many lines up or down if that will bring it back. */
97int scroll_step;
98
99/* Nonzero if try_window_id has made blank lines at window bottom
100 since the last redisplay that paused */
101static int blank_end_of_window;
102
103/* Number of windows showing the buffer of the selected window.
104 keyboard.c refers to this. */
105int buffer_shared;
106
44fa5b1e 107/* display_text_line sets these to the frame position (origin 0) of point,
a2889657
JB
108 whether the window is selected or not.
109 Set one to -1 first to determine whether point was found afterwards. */
110
111static int cursor_vpos;
112static int cursor_hpos;
113
114int debug_end_pos;
115
116/* Nonzero means display mode line highlighted */
117int mode_line_inverse_video;
118
119static void echo_area_display ();
120void mark_window_display_accurate ();
121static void redisplay_windows ();
122static void redisplay_window ();
123static void try_window ();
124static int try_window_id ();
125static struct position *display_text_line ();
126static void display_mode_line ();
127static int display_mode_element ();
128static char *fmodetrunc ();
129static char *decode_mode_spec ();
130static int display_string ();
7ce2c095 131static void display_menu_bar ();
aa6d10fa 132static int display_count_lines ();
a2889657
JB
133
134/* Prompt to display in front of the minibuffer contents */
135char *minibuf_prompt;
136
137/* Width in columns of current minibuffer prompt. */
138int 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. */
144char *echo_area_glyphs;
145
146/* true iff we should redraw the mode lines on the next redisplay */
147int 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. */
152int 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. */
157int 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 */
162int unchanged_modified;
163
164/* Nonzero if head_clip or tail_clip of current buffer has changed
165 since last redisplay that finished */
166int clip_changed;
167
168/* Nonzero if window sizes or contents have changed
169 since last redisplay that finished */
170int windows_or_buffers_changed;
171
aa6d10fa
RS
172/* Nonzero after display_mode_line if %l was used
173 and it displayed a line number. */
174int line_number_displayed;
175
176/* Maximum buffer size for which to display line numbers. */
177int line_number_display_limit;
a2889657 178\f
ded34426
JB
179/* Specify m, a string, as a message in the minibuf. If m is 0, clear out
180 any existing message, and let the minibuffer text show through. */
181void
182message1 (m)
183 char *m;
184{
185 if (noninteractive)
186 {
187 if (noninteractive_need_newline)
188 putc ('\n', stderr);
189 noninteractive_need_newline = 0;
190 fprintf (stderr, "%s\n", m);
191 fflush (stderr);
192 }
193 /* A null message buffer means that the frame hasn't really been
194 initialized yet. Error messages get reported properly by
195 cmd_error, so this must be just an informative message; toss it. */
196 else if (INTERACTIVE && FRAME_MESSAGE_BUF (selected_frame))
197 {
198#ifdef MULTI_FRAME
199 Lisp_Object minibuf_frame;
200
201 choose_minibuf_frame ();
202 minibuf_frame = WINDOW_FRAME (XWINDOW (minibuf_window));
d724d989 203 FRAME_SAMPLE_VISIBILITY (XFRAME (minibuf_frame));
ded34426
JB
204 if (FRAME_VISIBLE_P (selected_frame)
205 && ! FRAME_VISIBLE_P (XFRAME (minibuf_frame)))
206 Fmake_frame_visible (WINDOW_FRAME (XWINDOW (minibuf_window)));
207#endif
208
209 if (m)
210 echo_area_glyphs = m;
211 else
212 echo_area_glyphs = previous_echo_glyphs = 0;
213
214 do_pending_window_change ();
215 echo_area_display ();
216 update_frame (XFRAME (XWINDOW (minibuf_window)->frame), 1, 1);
217 do_pending_window_change ();
218 }
219}
220
44fa5b1e 221/* Nonzero if FRAME_MESSAGE_BUF (selected_frame) is being used by print;
9c74a0dd
JB
222 zero if being used by message. */
223int message_buf_print;
224
81d478f3
JB
225/* Dump an informative message to the minibuf. If m is 0, clear out
226 any existing message, and let the minibuffer text show through. */
a2889657 227/* VARARGS 1 */
a2889657
JB
228void
229message (m, a1, a2, a3)
230 char *m;
231{
232 if (noninteractive)
233 {
81d478f3
JB
234 if (m)
235 {
236 if (noninteractive_need_newline)
237 putc ('\n', stderr);
238 noninteractive_need_newline = 0;
239 fprintf (stderr, m, a1, a2, a3);
240 fprintf (stderr, "\n");
241 fflush (stderr);
242 }
a2889657 243 }
1f40cad2 244 else if (INTERACTIVE)
a2889657 245 {
1f40cad2
JB
246 /* The frame whose minibuffer we're going to display the message on.
247 It may be larger than the selected frame, so we need
248 to use its buffer, not the selected frame's buffer. */
249 FRAME_PTR echo_frame;
250#ifdef MULTI_FRAME
251 choose_minibuf_frame ();
252 echo_frame = XFRAME (WINDOW_FRAME (XWINDOW (minibuf_window)));
253#else
254 echo_frame = selected_frame;
255#endif
256
257 /* A null message buffer means that the frame hasn't really been
258 initialized yet. Error messages get reported properly by
259 cmd_error, so this must be just an informative message; toss it. */
260 if (FRAME_MESSAGE_BUF (echo_frame))
81d478f3 261 {
1f40cad2
JB
262 if (m)
263 {
264 {
a2889657 265#ifdef NO_ARG_ARRAY
1f40cad2
JB
266 int a[3];
267 a[0] = a1;
268 a[1] = a2;
269 a[2] = a3;
a2889657 270
1f40cad2
JB
271 doprnt (FRAME_MESSAGE_BUF (echo_frame),
272 FRAME_WIDTH (echo_frame), m, 0, 3, a);
a2889657 273#else
1f40cad2
JB
274 doprnt (FRAME_MESSAGE_BUF (echo_frame),
275 FRAME_WIDTH (echo_frame), m, 0, 3, &a1);
276#endif /* NO_ARG_ARRAY */
277 }
278
279 message1 (FRAME_MESSAGE_BUF (echo_frame));
280 }
281 else
282 message1 (0);
283
284 /* Print should start at the beginning of the message
285 buffer next time. */
286 message_buf_print = 0;
81d478f3 287 }
a2889657
JB
288 }
289}
290
291static void
292echo_area_display ()
293{
294 register int vpos;
44fa5b1e 295 FRAME_PTR f;
a2889657 296
44fa5b1e
JB
297#ifdef MULTI_FRAME
298 choose_minibuf_frame ();
b1d1124b
JB
299#endif
300
44fa5b1e 301 f = XFRAME (WINDOW_FRAME (XWINDOW (minibuf_window)));
a2889657 302
44fa5b1e 303 if (! FRAME_VISIBLE_P (f))
a2889657 304 return;
a2889657 305
44fa5b1e 306 if (frame_garbaged)
a2889657
JB
307 {
308 Fredraw_display ();
44fa5b1e 309 frame_garbaged = 0;
a2889657
JB
310 }
311
312 if (echo_area_glyphs || minibuf_level == 0)
313 {
314 vpos = XFASTINT (XWINDOW (minibuf_window)->top);
44fa5b1e 315 get_display_line (f, vpos, 0);
a2889657
JB
316 display_string (XWINDOW (minibuf_window), vpos,
317 echo_area_glyphs ? echo_area_glyphs : "",
44fa5b1e 318 0, 0, 0, FRAME_WIDTH (f));
a2889657
JB
319
320 /* If desired cursor location is on this line, put it at end of text */
44fa5b1e
JB
321 if (FRAME_CURSOR_Y (f) == vpos)
322 FRAME_CURSOR_X (f) = FRAME_DESIRED_GLYPHS (f)->used[vpos];
daa37602
JB
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 {
44fa5b1e 330 get_display_line (f, i, 0);
daa37602 331 display_string (XWINDOW (minibuf_window), vpos,
44fa5b1e 332 "", 0, 0, 0, FRAME_WIDTH (f));
daa37602
JB
333 }
334 }
a2889657
JB
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\f
44fa5b1e 345/* Do a frame update, taking possible shortcuts into account.
a2889657
JB
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
360void
361redisplay ()
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
d724d989
JB
374 /* Set the visible flags for all frames.
375 Do this before checking for resized or garbaged frames; they want
376 to know if their frames are visible.
377 See the comment in frame.h for FRAME_SAMPLE_VISIBILITY. */
378 {
35f56f96 379 Lisp_Object tail, frame;
d724d989 380
35f56f96
JB
381 FOR_EACH_FRAME (tail, frame)
382 FRAME_SAMPLE_VISIBILITY (XFRAME (frame));
d724d989
JB
383 }
384
44fa5b1e 385 /* Notice any pending interrupt request to change frame size. */
a2889657
JB
386 do_pending_window_change ();
387
44fa5b1e 388 if (frame_garbaged)
a2889657
JB
389 {
390 Fredraw_display ();
44fa5b1e 391 frame_garbaged = 0;
a2889657
JB
392 }
393
6e8290aa 394 /* Normally the message* functions will have already displayed and
44fa5b1e 395 updated the echo area, but the frame may have been trashed, or
6e8290aa
JB
396 the update may have been preempted, so display the echo area
397 again here. */
a2889657
JB
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
44fa5b1e 416 FRAME_SCROLL_BOTTOM_VPOS (XFRAME (w->frame)) = -1;
a2889657
JB
417
418 all_windows = update_mode_lines || buffer_shared > 1;
a2889657
JB
419
420 /* If specs for an arrow have changed, do thorough redisplay
421 to ensure we remove any arrow that should no longer exist. */
ded34426
JB
422 if (! EQ (Voverlay_arrow_position, last_arrow_position)
423 || ! EQ (Voverlay_arrow_string, last_arrow_string))
a2889657
JB
424 all_windows = 1, clip_changed = 1;
425
426 tlbufpos = this_line_bufpos;
427 tlendpos = this_line_endpos;
265a9e55 428 if (!all_windows && tlbufpos > 0 && NILP (w->update_mode_line)
44fa5b1e 429 && FRAME_VISIBLE_P (XFRAME (w->frame))
a2889657
JB
430 /* Make sure recorded data applies to current buffer, etc */
431 && this_line_buffer == current_buffer
432 && current_buffer == XBUFFER (w->buffer)
265a9e55 433 && NILP (w->force_start)
a2889657
JB
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
05ba02eb
JB
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))
a2889657
JB
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 {
44fa5b1e 469 if (XFASTINT (w->width) != FRAME_WIDTH (XFRAME (WINDOW_FRAME (w))))
a2889657
JB
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)),
b1d1124b 490 window_internal_width (w) - 1,
de3e8b15
JB
491 XINT (w->hscroll),
492 pos_tab_offset (w, tlbufpos));
a2889657
JB
493 if (pos.vpos < 1)
494 {
44fa5b1e 495 FRAME_CURSOR_X (selected_frame)
a2889657 496 = XFASTINT (w->left) + max (pos.hpos, 0);
44fa5b1e 497 FRAME_CURSOR_Y (selected_frame) = this_line_vpos;
a2889657
JB
498 goto update;
499 }
500 else
501 goto cancel;
502 }
503 cancel:
504 /* Text changed drastically or point moved off of line */
44fa5b1e 505 cancel_line (this_line_vpos, selected_frame);
a2889657
JB
506 }
507
508 this_line_bufpos = 0;
509 all_windows |= buffer_shared > 1;
510
511 if (all_windows)
512 {
35f56f96 513 Lisp_Object tail, frame;
a2889657
JB
514
515 /* Recompute # windows showing selected buffer.
8de2d90b 516 This will be incremented each time such a window is displayed. */
a2889657
JB
517 buffer_shared = 0;
518
35f56f96 519 FOR_EACH_FRAME (tail, frame)
30c566e4 520 {
35f56f96
JB
521 FRAME_PTR f = XFRAME (frame);
522
88f22aff 523 /* Mark all the scroll bars to be removed; we'll redeem the ones
30c566e4 524 we want when we redisplay their windows. */
88f22aff
JB
525 if (condemn_scroll_bars_hook)
526 (*condemn_scroll_bars_hook) (f);
30c566e4
JB
527
528 if (FRAME_VISIBLE_P (f))
529 redisplay_windows (FRAME_ROOT_WINDOW (f));
530
88f22aff 531 /* Any scroll bars which redisplay_windows should have nuked
30c566e4 532 should now go away. */
88f22aff
JB
533 if (judge_scroll_bars_hook)
534 (*judge_scroll_bars_hook) (f);
30c566e4 535 }
a2889657 536 }
44fa5b1e 537 else if (FRAME_VISIBLE_P (selected_frame))
a2889657
JB
538 {
539 redisplay_window (selected_window, 1);
44fa5b1e 540 if (XFASTINT (w->width) != FRAME_WIDTH (selected_frame))
a2889657
JB
541 preserve_other_columns (w);
542 }
543
544update:
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
44fa5b1e 552#ifdef MULTI_FRAME
a2889657
JB
553 if (all_windows)
554 {
555 Lisp_Object tail;
556
557 pause = 0;
558
44fa5b1e 559 for (tail = Vframe_list; CONSP (tail); tail = XCONS (tail)->cdr)
a2889657 560 {
44fa5b1e 561 FRAME_PTR f;
a2889657 562
44fa5b1e 563 if (XTYPE (XCONS (tail)->car) != Lisp_Frame)
a2889657
JB
564 continue;
565
44fa5b1e 566 f = XFRAME (XCONS (tail)->car);
30c566e4 567 if (FRAME_VISIBLE_P (f))
a2889657 568 {
44fa5b1e 569 pause |= update_frame (f, 0, 0);
a2889657 570 if (!pause)
44fa5b1e 571 mark_window_display_accurate (f->root_window, 1);
a2889657
JB
572 }
573 }
574 }
575 else
44fa5b1e 576#endif /* MULTI_FRAME */
6e8290aa 577 {
44fa5b1e
JB
578 if (FRAME_VISIBLE_P (selected_frame))
579 pause = update_frame (selected_frame, 0, 0);
d724d989 580
8de2d90b 581 /* We may have called echo_area_display at the top of this
44fa5b1e
JB
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
8de2d90b
JB
585 it here. */
586 {
44fa5b1e
JB
587 FRAME_PTR mini_frame =
588 XFRAME (WINDOW_FRAME (XWINDOW (minibuf_window)));
8de2d90b 589
44fa5b1e
JB
590 if (mini_frame != selected_frame)
591 pause |= update_frame (mini_frame, 0, 0);
8de2d90b 592 }
6e8290aa 593 }
a2889657 594
44fa5b1e 595 /* If frame does not match, prevent doing single-line-update next time.
a2889657
JB
596 Also, don't forget to check every line to update the arrow. */
597 if (pause)
598 {
599 this_line_bufpos = 0;
265a9e55 600 if (!NILP (last_arrow_position))
a2889657
JB
601 {
602 last_arrow_position = Qt;
603 last_arrow_string = Qt;
604 }
44fa5b1e 605 /* If we pause after scrolling, some lines in current_frame
a2889657
JB
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. */
44fa5b1e 609 if (XFASTINT (w->width) != FRAME_WIDTH (selected_frame))
a2889657
JB
610 update_mode_lines = 1;
611 }
612
44fa5b1e 613 /* Now text on frame agrees with windows, so
a2889657
JB
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);
44fa5b1e
JB
627 XFASTINT (w->last_point_x) = FRAME_CURSOR_X (selected_frame);
628 XFASTINT (w->last_point_y) = FRAME_CURSOR_Y (selected_frame);
a2889657
JB
629
630 if (all_windows)
11e82b76 631 mark_window_display_accurate (FRAME_ROOT_WINDOW (selected_frame), 1);
a2889657
JB
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
44fa5b1e 655 /* Change frame size now if a change is pending. */
a2889657
JB
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
667redisplay_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
679void
680mark_window_display_accurate (window, flag)
681 Lisp_Object window;
682 int flag;
683{
684 register struct window *w;
685
265a9e55 686 for (;!NILP (window); window = w->next)
a2889657 687 {
ded34426 688 if (XTYPE (window) != Lisp_Window) abort ();
a2889657
JB
689 w = XWINDOW (window);
690
265a9e55 691 if (!NILP (w->buffer))
a2889657
JB
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
265a9e55 699 if (!NILP (w->vchild))
a2889657 700 mark_window_display_accurate (w->vchild, flag);
265a9e55 701 if (!NILP (w->hchild))
a2889657
JB
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\f
718int do_id = 1;
719
720static void
721redisplay_windows (window)
722 Lisp_Object window;
723{
265a9e55 724 for (; !NILP (window); window = XWINDOW (window)->next)
a2889657
JB
725 redisplay_window (window, 0);
726}
727
728static void
729redisplay_window (window, just_this_one)
730 Lisp_Object window;
731 int just_this_one;
732{
733 register struct window *w = XWINDOW (window);
30c566e4 734 FRAME_PTR f = XFRAME (WINDOW_FRAME (w));
a2889657
JB
735 int height;
736 register int lpoint = point;
737 struct buffer *old = current_buffer;
b1d1124b 738 register int width = window_internal_width (w) - 1;
a2889657
JB
739 register int startp;
740 register int hscroll = XINT (w->hscroll);
741 struct position pos;
b1d1124b 742 int opoint = point;
a2889657
JB
743 int tem;
744 int window_needs_modeline;
745
44fa5b1e 746 if (FRAME_HEIGHT (f) == 0) abort (); /* Some bug zeros some core */
a2889657
JB
747
748 /* If this is a combination window, do its children; that's all. */
749
265a9e55 750 if (!NILP (w->vchild))
a2889657
JB
751 {
752 redisplay_windows (w->vchild);
753 return;
754 }
265a9e55 755 if (!NILP (w->hchild))
a2889657
JB
756 {
757 redisplay_windows (w->hchild);
758 return;
759 }
265a9e55 760 if (NILP (w->buffer))
a2889657 761 abort ();
8de2d90b
JB
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. */
88f22aff 771 goto finish_scroll_bars;
8de2d90b
JB
772 }
773 else
774 {
775 /* This is a minibuffer, but it's not the currently active one, so
776 clear it. */
44fa5b1e 777 int vpos = XFASTINT (XWINDOW (FRAME_MINIBUF_WINDOW (f))->top);
8de2d90b
JB
778 int i;
779
780 for (i = 0; i < height; i++)
781 {
44fa5b1e 782 get_display_line (f, vpos + i, 0);
8de2d90b
JB
783 display_string (w, vpos + i, "", 0, 0, 0, width);
784 }
785
88f22aff 786 goto finish_scroll_bars;
8de2d90b
JB
787 }
788 }
a2889657
JB
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
a2889657
JB
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 {
265a9e55 812 SET_PT (BEGV);
a2889657
JB
813 Fset_marker (w->pointm, make_number (point), Qnil);
814 }
815 else if (point > (ZV - 1))
816 {
265a9e55 817 SET_PT (ZV);
a2889657
JB
818 Fset_marker (w->pointm, make_number (point), Qnil);
819 }
820 }
821
822 /* If window-start is screwed up, choose a new one. */
a2889657
JB
823 if (XMARKER (w->start)->buffer != current_buffer)
824 goto recenter;
825
826 startp = marker_position (w->start);
827
8de2d90b 828 /* Handle case where place to start displaying has been specified,
aa6d10fa 829 unless the specified location is outside the accessible range. */
265a9e55 830 if (!NILP (w->force_start))
a2889657 831 {
aa6d10fa
RS
832 /* Forget any recorded base line for line number display. */
833 w->base_line_number = Qnil;
a2889657
JB
834 w->update_mode_line = Qt;
835 w->force_start = Qnil;
836 XFASTINT (w->last_modified) = 0;
8de2d90b
JB
837 if (startp < BEGV) startp = BEGV;
838 if (startp > ZV) startp = ZV;
a2889657
JB
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);
44fa5b1e 852 if (w != XWINDOW (FRAME_SELECTED_WINDOW (f)))
a2889657
JB
853 Fset_marker (w->pointm, make_number (point), Qnil);
854 else
855 {
856 lpoint = point;
44fa5b1e
JB
857 FRAME_CURSOR_X (f) = max (0, pos.hpos) + XFASTINT (w->left);
858 FRAME_CURSOR_Y (f) = pos.vpos + XFASTINT (w->top);
a2889657
JB
859 }
860 }
861 goto done;
862 }
863
864 /* Handle case where text has not changed, only point,
44fa5b1e 865 and it has not moved off the frame */
a2889657
JB
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
44fa5b1e 876 && (just_this_one || XFASTINT (w->width) == FRAME_WIDTH (f))
a2889657
JB
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 {
44fa5b1e
JB
885 /* Ok, point is still on frame */
886 if (w == XWINDOW (FRAME_SELECTED_WINDOW (f)))
a2889657
JB
887 {
888 /* These variables are supposed to be origin 1 */
44fa5b1e
JB
889 FRAME_CURSOR_X (f) = max (0, pos.hpos) + XFASTINT (w->left);
890 FRAME_CURSOR_Y (f) = pos.vpos + XFASTINT (w->top);
a2889657
JB
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
44fa5b1e 894 is nothing in DesiredFrame yet, and then the other window is
a2889657 895 redisplayed, making likes that are empty in this window's columns.
44fa5b1e 896 if (XFASTINT (w->width) != FRAME_WIDTH (f))
a2889657
JB
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. */
265a9e55 906 else if (!NILP (w->start_at_line_beg)
a2889657
JB
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
44fa5b1e 918 && XFASTINT (w->width) == FRAME_WIDTH (f)
a2889657
JB
919 && EQ (last_arrow_position, Voverlay_arrow_position)
920 && EQ (last_arrow_string, Voverlay_arrow_string)
44fa5b1e 921 && (tem = try_window_id (FRAME_SELECTED_WINDOW (f)))
a2889657
JB
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! */
8de2d90b 933 && (startp < ZV || startp == BEGV
a2889657
JB
934 || (XFASTINT (w->last_modified) >= MODIFF)))
935 {
936 /* Try to redisplay starting at same place as before */
44fa5b1e 937 /* If point has not moved off frame, accept the results */
a2889657
JB
938 try_window (window, startp);
939 if (cursor_vpos >= 0)
aa6d10fa
RS
940 {
941 if (!just_this_one || clip_changed || beg_unchanged < startp)
942 /* Forget any recorded base line for line number display. */
943 w->base_line_number = Qnil;
944 goto done;
945 }
a2889657
JB
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)
aa6d10fa
RS
972 {
973 if (!just_this_one || clip_changed || beg_unchanged < startp)
974 /* Forget any recorded base line for line number display. */
975 w->base_line_number = Qnil;
976 goto done;
977 }
a2889657
JB
978 else
979 cancel_my_columns (w);
980 }
981 scroll_fail: ;
982 }
983
984 /* Finally, just choose place to start which centers point */
985
986recenter:
aa6d10fa
RS
987 /* Forget any previously recorded base line for line number display. */
988 w->base_line_number = Qnil;
989
a2889657
JB
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
997done:
265a9e55 998 if ((!NILP (w->update_mode_line)
aa6d10fa
RS
999 /* If window not full width, must redo its mode line
1000 if the window to its side is being redone */
1001 || (!just_this_one && width < FRAME_WIDTH (f) - 1)
1002 || INTEGERP (w->base_line_pos))
a2889657
JB
1003 && height != XFASTINT (w->height))
1004 display_mode_line (w);
aa6d10fa
RS
1005 if (! line_number_displayed
1006 && ! BUFFERP (w->base_line_pos))
1007 {
1008 w->base_line_pos = Qnil;
1009 w->base_line_number = Qnil;
1010 }
a2889657 1011
7ce2c095
RS
1012 /* When we reach a frame's selected window, redo the frame's menu bar. */
1013 if (!NILP (w->update_mode_line)
1014 && FRAME_MENU_BAR_LINES (f) > 0
1015 && EQ (FRAME_SELECTED_WINDOW (f), window))
1016 display_menu_bar (w);
1017
88f22aff
JB
1018 finish_scroll_bars:
1019 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
30c566e4 1020 {
b1d1124b 1021 int start, end, whole;
30c566e4 1022
b1d1124b
JB
1023 /* Calculate the start and end positions for the current window.
1024 Note that minibuffers sometimes aren't displaying any text. */
1025 if (! MINI_WINDOW_P (w)
1026 || (w == XWINDOW (minibuf_window) && ! echo_area_glyphs))
1027 {
1028 start = startp;
1029 /* I don't think this is guaranteed to be right. For the
1030 moment, we'll pretend it is. */
1031 end = Z - XINT (w->window_end_pos);
1032 whole = Z - BEG;
1033 }
1034 else
1035 start = end = whole = 0;
30c566e4 1036
88f22aff
JB
1037 /* Indicate what this scroll bar ought to be displaying now. */
1038 (*set_vertical_scroll_bar_hook) (w, end - start, whole, start - 1);
30c566e4 1039
88f22aff 1040 /* Note that we actually used the scroll bar attached to this window,
30c566e4 1041 so it shouldn't be deleted at the end of redisplay. */
88f22aff 1042 (*redeem_scroll_bar_hook) (w);
30c566e4 1043 }
b1d1124b
JB
1044
1045 SET_PT (opoint);
1046 current_buffer = old;
1047 SET_PT (lpoint);
a2889657
JB
1048}
1049\f
1050/* Do full redisplay on one window, starting at position `pos'. */
1051
1052static void
1053try_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);
44fa5b1e 1062 FRAME_PTR f = XFRAME (w->frame);
b1d1124b 1063 int width = window_internal_width (w) - 1;
a2889657
JB
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,
44fa5b1e 1085 include the split character in the text considered on the frame */
a2889657
JB
1086 if (val.hpos < (XINT (w->hscroll) ? 1 - XINT (w->hscroll) : 0))
1087 pos++;
1088
44fa5b1e 1089 /* If bottom just moved off end of frame, change mode line percentage. */
a2889657
JB
1090 if (XFASTINT (w->window_end_pos) == 0
1091 && Z != pos)
1092 w->update_mode_line = Qt;
1093
44fa5b1e 1094 /* Say where last char on frame will be, once redisplay is finished. */
a2889657
JB
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\f
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
1108static int
1109try_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);
44fa5b1e 1115 FRAME_PTR f = XFRAME (w->frame);
a2889657
JB
1116 int top = XFASTINT (w->top);
1117 int start = marker_position (w->start);
b1d1124b 1118 int width = window_internal_width (w) - 1;
a2889657
JB
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,
f7be7f78 1141 beg_unchanged + 1, height + 1, 0, width, hscroll,
a2889657
JB
1142 pos_tab_offset (w, start));
1143 if (bp.vpos >= height)
6e8290aa
JB
1144 {
1145 if (point < bp.bufpos && !bp.contin)
1146 {
44fa5b1e
JB
1147 /* All changes are below the frame, and point is on the frame.
1148 We don't need to change the frame at all.
6e8290aa
JB
1149 But we need to update window_end_pos to account for
1150 any change in buffer size. */
f7be7f78
JB
1151 bp = *compute_motion (start, 0, lmargin,
1152 Z, height, 0,
1153 width, hscroll, pos_tab_offset (w, start));
6e8290aa
JB
1154 XFASTINT (w->window_end_vpos) = height;
1155 XFASTINT (w->window_end_pos) = Z - bp.bufpos;
1156 return 1;
1157 }
1158 return 0;
1159 }
a2889657
JB
1160
1161 vpos = bp.vpos;
1162
44fa5b1e 1163 /* Find beginning of that frame line. Must display from there. */
a2889657
JB
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,
44fa5b1e 1172 really start with previous frame line, in case it was not
a2889657 1173 continued when last redisplayed */
05ba02eb
JB
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))
a2889657
JB
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
44fa5b1e
JB
1208 /* If changes reach past the text available on the frame,
1209 just display rest of frame. */
a2889657
JB
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
44fa5b1e 1240 /* Is everything on frame below the changes whitespace?
a2889657
JB
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
44fa5b1e 1253 /* Before doing any scrolling, verify that point will be on frame. */
a2889657
JB
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
44fa5b1e 1283 before the frame changes to reflect what we do here,
a2889657 1284 further updates will not come to try_window_id
44fa5b1e 1285 and assume the frame and window_end_vpos match. */
a2889657
JB
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. */
44fa5b1e 1294 if (scroll_cost (f, bp.vpos + top - scroll_amount,
a2889657
JB
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. */
44fa5b1e 1305 tem = scroll_frame_lines (f, bp.vpos + top - scroll_amount,
a2889657
JB
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. */
44fa5b1e 1317 if (scroll_cost (f, ep.vpos + top - scroll_amount,
a2889657
JB
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;
44fa5b1e 1324 tem = scroll_frame_lines (f, ep.vpos + top - scroll_amount,
a2889657
JB
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,
44fa5b1e 1369 include the split character in the text considered on the frame */
a2889657
JB
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. */
44fa5b1e 1382 FRAME_SCROLL_BOTTOM_VPOS (f) = xp.vpos;
a2889657
JB
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
44fa5b1e 1416 /* If bottom just moved off end of frame, change mode line percentage. */
a2889657
JB
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));
44fa5b1e 1443 /* Admit failure if point is off frame now */
a2889657
JB
1444 if (val.vpos >= height)
1445 {
1446 for (vpos = 0; vpos < height; vpos++)
44fa5b1e 1447 cancel_line (vpos + top, f);
a2889657
JB
1448 return 0;
1449 }
1450 cursor_vpos = val.vpos + top;
1451 cursor_hpos = val.hpos + XFASTINT (w->left);
1452 }
1453
44fa5b1e
JB
1454 FRAME_CURSOR_X (f) = max (0, cursor_hpos);
1455 FRAME_CURSOR_Y (f) = cursor_vpos;
a2889657
JB
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\f
c581d710 1472/* Copy glyphs from the vector FROM to the rope T.
f7430cb6 1473 But don't actually copy the parts that would come in before S.
c581d710 1474 Value is T, advanced past the copied data. */
a2889657
JB
1475
1476GLYPH *
1477copy_rope (t, s, from)
1478 register GLYPH *t; /* Copy to here. */
1479 register GLYPH *s; /* Starting point. */
c581d710 1480 Lisp_Object from; /* Data to copy; known to be a vector. */
a2889657 1481{
c581d710
RS
1482 register int n = XVECTOR (from)->size;
1483 register Lisp_Object *f = XVECTOR (from)->contents;
1484
1485 while (n--)
1486 {
1487 if (t >= s) *t = *f;
1488 ++t;
1489 ++f;
1490 }
1491 return t;
1492}
1493
1494/* Similar but copy at most LEN glyphs. */
1495
1496GLYPH *
1497copy_part_of_rope (t, s, from, len)
1498 register GLYPH *t; /* Copy to here. */
1499 register GLYPH *s; /* Starting point. */
1500 Lisp_Object from; /* Data to copy; known to be a vector. */
1501 int len;
1502{
1503 register int n = XVECTOR (from)->size;
1504 register Lisp_Object *f = XVECTOR (from)->contents;
1505
1506 if (n > len)
1507 n = len;
a2889657
JB
1508
1509 while (n--)
1510 {
1511 if (t >= s) *t = *f;
1512 ++t;
1513 ++f;
1514 }
1515 return t;
1516}
1517\f
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
44fa5b1e 1526 Display on position VPOS on the frame. (origin 0).
a2889657
JB
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
1532struct position val_display_text_line;
1533
1534static struct position *
1535display_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;
44fa5b1e 1551 FRAME_PTR f = XFRAME (w->frame);
a2889657 1552 int tab_width = XINT (current_buffer->tab_width);
265a9e55 1553 int ctl_arrow = !NILP (current_buffer->ctl_arrow);
b1d1124b 1554 int width = window_internal_width (w) - 1;
a2889657
JB
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
44fa5b1e 1561 && XFASTINT (w->width) < FRAME_WIDTH (f))
265a9e55 1562 || !NILP (current_buffer->truncate_lines);
a2889657
JB
1563 int selective
1564 = XTYPE (current_buffer->selective_display) == Lisp_Int
1565 ? XINT (current_buffer->selective_display)
265a9e55 1566 : !NILP (current_buffer->selective_display) ? -1 : 0;
a2889657 1567#ifndef old
265a9e55 1568 int selective_e = selective && !NILP (current_buffer->selective_display_ellipses);
a2889657 1569#endif
44fa5b1e 1570 register struct frame_glyphs *desired_glyphs = FRAME_DESIRED_GLYPHS (f);
a2889657
JB
1571 register struct Lisp_Vector *dp = window_display_table (w);
1572 int selective_rlen
c581d710
RS
1573 = (selective && dp && XTYPE (DISP_INVIS_VECTOR (dp)) == Lisp_Vector
1574 ? XVECTOR (DISP_INVIS_VECTOR (dp))->size : 0);
a2889657
JB
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);
44fa5b1e 1581 get_display_line (f, vpos, XFASTINT (w->left));
a2889657
JB
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
c581d710 1628 && (dp == 0 || XTYPE (DISP_CHAR_VECTOR (dp, c)) != Lisp_Vector))
a2889657
JB
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;
c581d710
RS
1651 copy_part_of_rope (p1prev, p1prev,
1652 XVECTOR (DISP_INVIS_VECTOR (dp))->contents,
1653 (p1 - p1prev));
a2889657
JB
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 }
6e8290aa 1668 else if (c == Ctl ('M') && selective == -1)
a2889657
JB
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;
c581d710
RS
1678 copy_part_of_rope (p1prev, p1prev,
1679 XVECTOR(DISP_INVIS_VECTOR (dp))->contents,
1680 (p1 - p1prev));
a2889657
JB
1681 }
1682 break;
1683 }
c581d710 1684 else if (dp != 0 && XTYPE (DISP_CHAR_VECTOR (dp, c)) == Lisp_Vector)
a2889657 1685 {
c581d710 1686 p1 = copy_rope (p1, startp, DISP_CHAR_VECTOR (dp, c));
a2889657
JB
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++;
6e8290aa 1694 if (p1 >= startp && p1 < endp)
a2889657
JB
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++;
6e8290aa 1704 if (p1 >= startp && p1 < endp)
a2889657
JB
1705 *p1 = (c >> 6) + '0';
1706 p1++;
6e8290aa 1707 if (p1 >= startp && p1 < endp)
a2889657
JB
1708 *p1 = (7 & (c >> 3)) + '0';
1709 p1++;
6e8290aa 1710 if (p1 >= startp && p1 < endp)
a2889657
JB
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,
44fa5b1e 1771 record its frame location now. */
a2889657
JB
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);
44fa5b1e 1784 if (w == XWINDOW (FRAME_SELECTED_WINDOW (f)))
a2889657 1785 {
44fa5b1e
JB
1786 FRAME_CURSOR_Y (f) = cursor_vpos;
1787 FRAME_CURSOR_X (f) = cursor_hpos;
a2889657
JB
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
44fa5b1e 1817 if (XFASTINT (w->width) + XFASTINT (w->left) != FRAME_WIDTH (f))
a2889657
JB
1818 {
1819 endp++;
1820 if (p1 < startp) p1 = startp;
1821 while (p1 < endp) *p1++ = SPACEGLYPH;
b1d1124b 1822
88f22aff
JB
1823 /* Don't draw vertical bars if we're using scroll bars. They're
1824 covered up by the scroll bars, and it's distracting to see
1825 them when the scroll bar windows are flickering around to be
b1d1124b 1826 reconfigured. */
88f22aff 1827 *p1++ = (FRAME_HAS_VERTICAL_SCROLL_BARS (f)
b1d1124b 1828 ? ' ' : '|');
a2889657
JB
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
b1d1124b
JB
1847 if (len > width)
1848 len = width;
a2889657
JB
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\f
7ce2c095
RS
1863/* Redisplay the menu bar in the frame for window W. */
1864
1865static void
1866display_menu_bar (w)
1867 struct window *w;
1868{
1869 Lisp_Object items, tail;
1870 register int vpos = 0;
1871 register FRAME_PTR f = XFRAME (WINDOW_FRAME (w));
1872 int maxendcol = FRAME_WIDTH (f);
1873 int hpos = 0;
1874
1875 if (FRAME_MENU_BAR_LINES (f) <= 0)
1876 return;
1877
1878 get_display_line (f, vpos, 0);
1879
2d66ad19 1880 for (tail = FRAME_MENU_BAR_ITEMS (f); CONSP (tail); tail = XCONS (tail)->cdr)
7ce2c095
RS
1881 {
1882 Lisp_Object string;
2d66ad19 1883
7ce2c095
RS
1884 string = XCONS (XCONS (XCONS (tail)->car)->cdr)->car;
1885
1886 /* Record in each item its hpos. */
1887 XFASTINT (XCONS (XCONS (XCONS (tail)->car)->cdr)->cdr) = hpos;
1888
1889 if (hpos < maxendcol)
1890 hpos = display_string (XWINDOW (FRAME_ROOT_WINDOW (f)), vpos,
1891 XSTRING (string)->data,
2d66ad19
RS
1892 hpos, 0, hpos, maxendcol);
1893 /* Put a gap of 3 spaces between items. */
1894 if (hpos < maxendcol)
1895 {
1896 int hpos1 = hpos + 3;
1897 hpos = display_string (w, vpos, "", hpos, 0,
1898 min (hpos1, maxendcol), maxendcol);
1899 }
7ce2c095
RS
1900 }
1901
1902 FRAME_DESIRED_GLYPHS (f)->bufp[vpos] = 0;
1903 FRAME_DESIRED_GLYPHS (f)->highlight[vpos] = mode_line_inverse_video;
2d66ad19
RS
1904
1905 /* Fill out the line with spaces. */
1906 if (maxendcol > hpos)
1907 hpos = display_string (w, vpos, "", hpos, 0, maxendcol, -1);
7ce2c095
RS
1908}
1909\f
a2889657
JB
1910/* Display the mode line for window w */
1911
1912static void
1913display_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;
44fa5b1e 1919 register FRAME_PTR f = XFRAME (WINDOW_FRAME (w));
a2889657 1920
aa6d10fa
RS
1921 line_number_displayed = 0;
1922
44fa5b1e 1923 get_display_line (f, vpos, left);
a2889657
JB
1924 display_mode_element (w, vpos, left, 0, right, right,
1925 current_buffer->mode_line_format);
44fa5b1e 1926 FRAME_DESIRED_GLYPHS (f)->bufp[vpos] = 0;
a2889657
JB
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). */
44fa5b1e
JB
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;
a2889657
JB
1937
1938#ifdef HAVE_X_WINDOWS
1939 /* I'm trying this out because I saw Unimpress use it, but it's
0956dd96 1940 possible that this may mess adversely with some window managers. -jla
a2889657 1941
0956dd96
JB
1942 Wouldn't it be nice to use something like mode-line-format to
1943 describe frame titles? -JimB */
1944
1945 /* Change the title of the frame to the name of the buffer displayed
1946 in the currently selected window. Don't do this for minibuffer frames,
1947 and don't do it when there's only one non-minibuffer frame. */
22aefb49 1948 if (FRAME_X_P (f)
44fa5b1e 1949 && ! FRAME_MINIBUF_ONLY_P (f)
69ced0fa 1950 && w == XWINDOW (f->selected_window))
0956dd96
JB
1951 x_implicitly_set_name (f, (EQ (Fnext_frame (WINDOW_FRAME (w), Qnil),
1952 WINDOW_FRAME (w))
1953 ? Qnil
1954 : XBUFFER (w->buffer)->name),
11e82b76 1955 Qnil);
a2889657
JB
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
44fa5b1e 1964 HPOS is the position (absolute on frame) where this element's text
a2889657
JB
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
1983static int
1984display_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);
265a9e55 2061 if (!NILP (tem))
a2889657
JB
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. */
265a9e55 2097 if (!NILP (tem))
a2889657
JB
2098 {
2099 tem = Fsymbol_value (car);
265a9e55 2100 if (!NILP (tem))
a2889657
JB
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;
265a9e55 2107 if (NILP (elt))
a2889657
JB
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\f
2167/* Return a string for the output of a mode line %-spec for window W,
2168 generated by character C and width MAXWIDTH. */
2169
11e82b76
JB
2170static char lots_of_dashes[] = "--------------------------------------------------------------------------------------------------------------------------------------------";
2171
a2889657
JB
2172static char *
2173decode_mode_spec (w, c, maxwidth)
2174 struct window *w;
2175 register char c;
2176 register int maxwidth;
2177{
2178 Lisp_Object obj = Qnil;
44fa5b1e
JB
2179 FRAME_PTR f = XFRAME (WINDOW_FRAME (w));
2180 char *decode_mode_spec_buf = (char *) FRAME_TEMP_GLYPHS (f)->total_contents;
a2889657 2181
44fa5b1e
JB
2182 if (maxwidth > FRAME_WIDTH (f))
2183 maxwidth = FRAME_WIDTH (f);
a2889657
JB
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
265a9e55 2203 if (NILP (obj))
a2889657
JB
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
aa6d10fa
RS
2215 case 'l':
2216 {
2217 int startpos = marker_position (w->start);
2218 int line, linepos, topline;
2219 int nlines, junk;
2220 Lisp_Object tem;
2221 int height = XFASTINT (w->height);
2222
2223 /* If we decided that this buffer isn't suitable for line numbers,
2224 don't forget that too fast. */
2225 if (EQ (w->base_line_pos, w->buffer))
2226 return "??";
2227
2228 /* If the buffer is very big, don't waste time. */
2229 if (ZV - BEGV > line_number_display_limit)
2230 {
2231 w->base_line_pos = Qnil;
2232 w->base_line_number = Qnil;
2233 return "??";
2234 }
2235
2236 if (!NILP (w->base_line_number)
2237 && !NILP (w->base_line_pos)
2238 && XFASTINT (w->base_line_pos) <= marker_position (w->start))
2239 {
2240 line = XFASTINT (w->base_line_number);
2241 linepos = XFASTINT (w->base_line_pos);
2242 }
2243 else
2244 {
2245 line = 1;
2246 linepos = BEGV;
2247 }
2248
2249 /* Count lines from base line to window start position. */
2250 nlines = display_count_lines (linepos, startpos, startpos, &junk);
2251
2252 topline = nlines + line;
2253
2254 /* Determine a new base line, if the old one is too close
2255 or too far away, or if we did not have one.
2256 "Too close" means it's plausible a scroll-down would
2257 go back past it. */
2258 if (startpos == BEGV)
2259 {
2260 XFASTINT (w->base_line_number) = topline;
2261 XFASTINT (w->base_line_pos) = BEGV;
2262 }
2263 else if (nlines < height + 25 || nlines > height * 3 + 50
2264 || linepos == BEGV)
2265 {
2266 int limit = BEGV;
2267 int position;
2268 int distance = (height * 2 + 30) * 200;
2269
2270 if (startpos - distance > limit)
2271 limit = startpos - distance;
2272
2273 nlines = display_count_lines (startpos, limit,
2274 -(height * 2 + 30),
2275 &position);
2276 /* If we couldn't find the lines we wanted within
2277 200 chars per line,
2278 give up on line numbers for this window. */
2279 if (position == startpos - distance)
2280 {
2281 w->base_line_pos = w->buffer;
2282 w->base_line_number = Qnil;
2283 return "??";
2284 }
2285
2286 XFASTINT (w->base_line_number) = topline - nlines;
2287 XFASTINT (w->base_line_pos) = position;
2288 }
2289
2290 /* Now count lines from the start pos to point. */
2291 nlines = display_count_lines (startpos, PT, PT, &junk);
2292
2293 /* Record that we did display the line number. */
2294 line_number_displayed = 1;
2295
2296 /* Make the string to show. */
2297 sprintf (decode_mode_spec_buf, "%d", topline + nlines);
2298 return decode_mode_spec_buf;
2299 }
2300 break;
2301
a2889657
JB
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 '*':
265a9e55 2312 if (!NILP (current_buffer->read_only))
a2889657
JB
2313 return "%";
2314 if (MODIFF > current_buffer->save_modified)
2315 return "*";
2316 return "-";
2317
2318 case 's':
2319 /* status of process */
a2889657 2320 obj = Fget_buffer_process (Fcurrent_buffer ());
265a9e55 2321 if (NILP (obj))
a2889657
JB
2322 return "no process";
2323 obj = Fsymbol_name (Fprocess_status (obj));
2324 break;
a2889657
JB
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 {
a2889657
JB
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}
aa6d10fa
RS
2405
2406/* Count up to N lines starting from FROM.
2407 But don't go beyond LIMIT.
2408 Return the number of lines thus found (always positive).
2409 Store the position after what was found into *POS_PTR. */
2410
2411static int
2412display_count_lines (from, limit, n, pos_ptr)
2413 int from, limit, n;
2414 int *pos_ptr;
2415{
2416 int oldbegv = BEGV;
2417 int oldzv = ZV;
2418 int shortage = 0;
2419
2420 if (limit < from)
2421 BEGV = limit;
2422 else
2423 ZV = limit;
2424
2425 *pos_ptr = scan_buffer ('\n', from, n, &shortage);
2426
2427 ZV = oldzv;
2428 BEGV = oldbegv;
2429
2430 if (n < 0)
2431 /* When scanning backwards, scan_buffer stops *after* the last newline
2432 it finds, but does count it. Compensate for that. */
2433 return - n - shortage - (*pos_ptr != limit);
2434 return n - shortage;
2435}
a2889657
JB
2436\f
2437/* Display STRING on one line of window W, starting at HPOS.
2438 Display at position VPOS. Caller should have done get_display_line.
11e82b76 2439 If VPOS == -1, display it as the current frame's title.
a2889657
JB
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.
44fa5b1e 2446 Both count from the left edge of the frame, as does HPOS.
a2889657
JB
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
2452static int
2453display_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);
253c7d2f 2463 int tab_width = XINT (XBUFFER (w->buffer)->tab_width);
a2889657
JB
2464 register GLYPH *start;
2465 register GLYPH *end;
b1d1124b
JB
2466 FRAME_PTR f = XFRAME (WINDOW_FRAME (w));
2467 struct frame_glyphs *desired_glyphs = FRAME_DESIRED_GLYPHS (f);
a2889657
JB
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
b1d1124b
JB
2485 if ((window_width + XFASTINT (w->left)) != FRAME_WIDTH (f))
2486 {
88f22aff 2487 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
b1d1124b
JB
2488 {
2489 int i;
2490
88f22aff 2491 for (i = 0; i < VERTICAL_SCROLL_BAR_WIDTH; i++)
b1d1124b
JB
2492 *end-- = ' ';
2493 }
2494 else
2495 *end-- = '|';
2496 }
a2889657
JB
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
c581d710 2508 && (dp == 0 || XTYPE (DISP_CHAR_VECTOR (dp, c)) != Lisp_Vector))
a2889657
JB
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 }
c581d710
RS
2524 else if (dp != 0 && XTYPE (DISP_CHAR_VECTOR (dp, c)) == Lisp_Vector)
2525 p1 = copy_rope (p1, start, DISP_CHAR_VECTOR (dp, c));
ded34426 2526 else if (c < 0200 && ! NILP (buffer_defaults.ctl_arrow))
a2889657
JB
2527 {
2528 if (p1 >= start)
2529 *p1 = (dp && XTYPE (DISP_CTRL_GLYPH (dp)) == Lisp_Int
2530 ? XINT (DISP_CTRL_GLYPH (dp)) : '^');
2531 p1++;
6e8290aa 2532 if (p1 >= start && p1 < end)
a2889657
JB
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++;
6e8290aa 2542 if (p1 >= start && p1 < end)
a2889657
JB
2543 *p1 = (c >> 6) + '0';
2544 p1++;
6e8290aa 2545 if (p1 >= start && p1 < end)
a2889657
JB
2546 *p1 = (7 & (c >> 3)) + '0';
2547 p1++;
6e8290aa 2548 if (p1 >= start && p1 < end)
a2889657
JB
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\f
2577void
2578syms_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,
8c45d522 2586 "String (or mode line construct) included (normally) in `mode-line-format'.");
a2889657
JB
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\
2591This must be the beginning of a line in order to work.\n\
2592See 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\
44fa5b1e
JB
2601If that fails to bring point back on frame, point is centered instead.\n\
2602If this is zero, point is always centered after it moves off frame.");
a2889657
JB
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,
44fa5b1e 2608 "*Non-nil means truncate lines in all windows less than full frame wide.");
a2889657
JB
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;
aa6d10fa
RS
2614
2615 DEFVAR_INT ("line-number-display-limit", &line_number_display_limit,
2616 "*Maximum buffer size for which line number should be displayed.");
2617 line_number_display_limit = 1000000;
a2889657
JB
2618}
2619
2620/* initialize the window system */
2621init_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);
11e82b76 2632 root_window = FRAME_ROOT_WINDOW (XFRAME (WINDOW_FRAME (mini_w)));
a2889657
JB
2633
2634 echo_area_glyphs = 0;
2635 previous_echo_glyphs = 0;
2636
2637 if (!noninteractive)
2638 {
44fa5b1e 2639 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (root_window)));
a2889657 2640 XFASTINT (XWINDOW (root_window)->top) = 0;
44fa5b1e
JB
2641 set_window_height (root_window, FRAME_HEIGHT (f) - 1, 0);
2642 XFASTINT (mini_w->top) = FRAME_HEIGHT (f) - 1;
a2889657
JB
2643 set_window_height (minibuf_window, 1, 0);
2644
44fa5b1e
JB
2645 XFASTINT (XWINDOW (root_window)->width) = FRAME_WIDTH (f);
2646 XFASTINT (mini_w->width) = FRAME_WIDTH (f);
a2889657
JB
2647 }
2648}