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