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