(jka-compr-handler): Save match data.
[emacs.git] / src / xdisp.c
blob85a7f968c956e7097c4eab1d63174c7376c3e2b5
1 /* Display generation from window structure and buffer text.
2 Copyright (C) 1985, 86, 87, 88, 93, 94 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
21 #include <config.h>
22 #include <stdio.h>
23 /*#include <ctype.h>*/
24 #undef NULL
25 #include "lisp.h"
26 #include "frame.h"
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"
35 #include "termhooks.h"
36 #include "intervals.h"
38 #ifdef USE_X_TOOLKIT
39 extern void set_frame_menubar ();
40 #endif
42 extern int interrupt_input;
43 extern int command_loop_level;
45 /* Nonzero means print newline before next minibuffer message. */
47 int noninteractive_need_newline;
49 #define min(a, b) ((a) < (b) ? (a) : (b))
50 #define max(a, b) ((a) > (b) ? (a) : (b))
52 /* The buffer position of the first character appearing
53 entirely or partially on the current frame line.
54 Or zero, which disables the optimization for the current frame line. */
55 static int this_line_bufpos;
57 /* Number of characters past the end of this line,
58 including the terminating newline */
59 static int this_line_endpos;
61 /* The vertical position of this frame line. */
62 static int this_line_vpos;
64 /* Hpos value for start of display on this frame line.
65 Usually zero, but negative if first character really began
66 on previous line */
67 static int this_line_start_hpos;
69 /* Buffer that this_line variables are describing. */
70 static struct buffer *this_line_buffer;
72 /* Set by try_window_id to the vpos of first of any lines
73 scrolled on to the bottom of the frame. These lines should
74 not be included in any general scroll computation. */
75 static int scroll_bottom_vpos;
77 /* Value of echo_area_glyphs when it was last acted on.
78 If this is nonzero, there is a message on the frame
79 in the minibuffer and it should be erased as soon
80 as it is no longer requested to appear. */
81 char *previous_echo_glyphs;
83 /* Nonzero means truncate lines in all windows less wide than the frame */
84 int truncate_partial_width_windows;
86 Lisp_Object Vglobal_mode_string;
88 /* Marker for where to display an arrow on top of the buffer text. */
89 Lisp_Object Voverlay_arrow_position;
91 /* String to display for the arrow. */
92 Lisp_Object Voverlay_arrow_string;
94 /* Values of those variables at last redisplay. */
95 static Lisp_Object last_arrow_position, last_arrow_string;
97 /* Nonzero if overlay arrow has been displayed once in this window. */
98 static int overlay_arrow_seen;
100 /* Nonzero means highlight the region even in nonselected windows. */
101 static int highlight_nonselected_windows;
103 /* If cursor motion alone moves point off frame,
104 Try scrolling this many lines up or down if that will bring it back. */
105 int scroll_step;
107 /* Nonzero if try_window_id has made blank lines at window bottom
108 since the last redisplay that paused */
109 static int blank_end_of_window;
111 /* Number of windows showing the buffer of the selected window.
112 keyboard.c refers to this. */
113 int buffer_shared;
115 /* display_text_line sets these to the frame position (origin 0) of point,
116 whether the window is selected or not.
117 Set one to -1 first to determine whether point was found afterwards. */
119 static int cursor_vpos;
120 static int cursor_hpos;
122 int debug_end_pos;
124 /* Nonzero means display mode line highlighted */
125 int mode_line_inverse_video;
127 static void echo_area_display ();
128 void mark_window_display_accurate ();
129 static void redisplay_windows ();
130 static void redisplay_window ();
131 static void update_menu_bars ();
132 static void update_menu_bar ();
133 static void try_window ();
134 static int try_window_id ();
135 static struct position *display_text_line ();
136 static void display_mode_line ();
137 static int display_mode_element ();
138 static char *fmodetrunc ();
139 static char *decode_mode_spec ();
140 static int display_string ();
141 static void display_menu_bar ();
142 static int display_count_lines ();
144 /* Prompt to display in front of the minibuffer contents */
145 char *minibuf_prompt;
147 /* Width in columns of current minibuffer prompt. */
148 int minibuf_prompt_width;
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. */
154 char *echo_area_glyphs;
156 /* This is the length of the message in echo_area_glyphs. */
157 int echo_area_glyphs_length;
159 /* true iff we should redraw the mode lines on the next redisplay */
160 int update_mode_lines;
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. */
165 int beg_unchanged;
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. */
170 int end_unchanged;
172 /* MODIFF as of last redisplay that finished;
173 if it matches MODIFF, beg_unchanged and end_unchanged
174 contain no useful information */
175 int unchanged_modified;
177 /* Nonzero if head_clip or tail_clip of current buffer has changed
178 since last redisplay that finished */
179 int clip_changed;
181 /* Nonzero if window sizes or contents have changed
182 since last redisplay that finished */
183 int windows_or_buffers_changed;
185 /* Nonzero after display_mode_line if %l was used
186 and it displayed a line number. */
187 int line_number_displayed;
189 /* Maximum buffer size for which to display line numbers. */
190 int line_number_display_limit;
192 /* Display an echo area message M with a specified length of LEN chars.
193 The string may include null characters. If m is 0, clear out any
194 existing message, and let the minibuffer text show through.
195 Do not pass text that is stored in a Lisp string. */
197 void
198 message2 (m, len)
199 char *m;
200 int len;
202 if (noninteractive)
204 if (noninteractive_need_newline)
205 putc ('\n', stderr);
206 noninteractive_need_newline = 0;
207 fwrite (m, len, 1, stderr);
208 if (cursor_in_echo_area == 0)
209 fprintf (stderr, "\n");
210 fflush (stderr);
212 /* A null message buffer means that the frame hasn't really been
213 initialized yet. Error messages get reported properly by
214 cmd_error, so this must be just an informative message; toss it. */
215 else if (INTERACTIVE && FRAME_MESSAGE_BUF (selected_frame))
217 #ifdef MULTI_FRAME
218 Lisp_Object minibuf_frame;
220 choose_minibuf_frame ();
221 minibuf_frame = WINDOW_FRAME (XWINDOW (minibuf_window));
222 FRAME_SAMPLE_VISIBILITY (XFRAME (minibuf_frame));
223 if (FRAME_VISIBLE_P (selected_frame)
224 && ! FRAME_VISIBLE_P (XFRAME (minibuf_frame)))
225 Fmake_frame_visible (WINDOW_FRAME (XWINDOW (minibuf_window)));
226 #endif
228 if (m)
230 echo_area_glyphs = m;
231 echo_area_glyphs_length = len;
233 else
234 echo_area_glyphs = previous_echo_glyphs = 0;
236 do_pending_window_change ();
237 echo_area_display ();
238 update_frame (XFRAME (XWINDOW (minibuf_window)->frame), 1, 1);
239 do_pending_window_change ();
240 if (frame_up_to_date_hook != 0 && ! gc_in_progress)
241 (*frame_up_to_date_hook) (XFRAME (XWINDOW (minibuf_window)->frame));
245 void
246 message1 (m)
247 char *m;
249 message2 (m, (m ? strlen (m) : 0));
252 /* Truncate what will be displayed in the echo area
253 the next time we display it--but don't redisplay it now. */
255 void
256 truncate_echo_area (len)
257 int len;
259 /* A null message buffer means that the frame hasn't really been
260 initialized yet. Error messages get reported properly by
261 cmd_error, so this must be just an informative message; toss it. */
262 if (!noninteractive && INTERACTIVE && FRAME_MESSAGE_BUF (selected_frame))
263 echo_area_glyphs_length = len;
266 /* Nonzero if FRAME_MESSAGE_BUF (selected_frame) is being used by print;
267 zero if being used by message. */
268 int message_buf_print;
270 /* Dump an informative message to the minibuf. If m is 0, clear out
271 any existing message, and let the minibuffer text show through. */
272 /* VARARGS 1 */
273 void
274 message (m, a1, a2, a3)
275 char *m;
277 if (noninteractive)
279 if (m)
281 if (noninteractive_need_newline)
282 putc ('\n', stderr);
283 noninteractive_need_newline = 0;
284 fprintf (stderr, m, a1, a2, a3);
285 if (cursor_in_echo_area == 0)
286 fprintf (stderr, "\n");
287 fflush (stderr);
290 else if (INTERACTIVE)
292 /* The frame whose minibuffer we're going to display the message on.
293 It may be larger than the selected frame, so we need
294 to use its buffer, not the selected frame's buffer. */
295 FRAME_PTR echo_frame;
296 #ifdef MULTI_FRAME
297 choose_minibuf_frame ();
298 echo_frame = XFRAME (WINDOW_FRAME (XWINDOW (minibuf_window)));
299 #else
300 echo_frame = selected_frame;
301 #endif
303 /* A null message buffer means that the frame hasn't really been
304 initialized yet. Error messages get reported properly by
305 cmd_error, so this must be just an informative message; toss it. */
306 if (FRAME_MESSAGE_BUF (echo_frame))
308 if (m)
310 int len;
311 #ifdef NO_ARG_ARRAY
312 int a[3];
313 a[0] = a1;
314 a[1] = a2;
315 a[2] = a3;
317 len = doprnt (FRAME_MESSAGE_BUF (echo_frame),
318 FRAME_WIDTH (echo_frame), m, 0, 3, a);
319 #else
320 len = doprnt (FRAME_MESSAGE_BUF (echo_frame),
321 FRAME_WIDTH (echo_frame), m, 0, 3, &a1);
322 #endif /* NO_ARG_ARRAY */
324 message2 (FRAME_MESSAGE_BUF (echo_frame), len);
326 else
327 message1 (0);
329 /* Print should start at the beginning of the message
330 buffer next time. */
331 message_buf_print = 0;
336 static void
337 echo_area_display ()
339 register int vpos;
340 FRAME_PTR f;
342 #ifdef MULTI_FRAME
343 choose_minibuf_frame ();
344 #endif
346 f = XFRAME (WINDOW_FRAME (XWINDOW (minibuf_window)));
348 if (! FRAME_VISIBLE_P (f))
349 return;
351 if (frame_garbaged)
353 redraw_garbaged_frames ();
354 frame_garbaged = 0;
357 if (echo_area_glyphs || minibuf_level == 0)
359 vpos = XFASTINT (XWINDOW (minibuf_window)->top);
360 get_display_line (f, vpos, 0);
361 display_string (XWINDOW (minibuf_window), vpos,
362 echo_area_glyphs ? echo_area_glyphs : "",
363 echo_area_glyphs ? echo_area_glyphs_length : -1,
364 0, 0, 0, 0, FRAME_WIDTH (f));
366 /* If desired cursor location is on this line, put it at end of text */
367 if (FRAME_CURSOR_Y (f) == vpos)
368 FRAME_CURSOR_X (f) = FRAME_DESIRED_GLYPHS (f)->used[vpos];
370 /* Fill the rest of the minibuffer window with blank lines. */
372 int i;
374 for (i = vpos + 1;
375 i < vpos + XFASTINT (XWINDOW (minibuf_window)->height); i++)
377 get_display_line (f, i, 0);
378 display_string (XWINDOW (minibuf_window), vpos,
379 "", 0, 0, 0, 0, 0, FRAME_WIDTH (f));
383 else if (!EQ (minibuf_window, selected_window))
384 windows_or_buffers_changed++;
386 if (EQ (minibuf_window, selected_window))
387 this_line_bufpos = 0;
389 previous_echo_glyphs = echo_area_glyphs;
392 #ifdef HAVE_X_WINDOWS
393 /* I'm trying this out because I saw Unimpress use it, but it's
394 possible that this may mess adversely with some window managers. -jla
396 Wouldn't it be nice to use something like mode-line-format to
397 describe frame titles? -JimB */
399 /* Change the title of the frame to the name of the buffer displayed
400 in the currently selected window. Don't do this for minibuffer frames,
401 and don't do it when there's only one non-minibuffer frame. */
402 static void
403 x_consider_frame_title (frame)
404 Lisp_Object frame;
406 FRAME_PTR f = XFRAME (frame);
408 if (FRAME_X_P (f) && ! FRAME_MINIBUF_ONLY_P (f))
410 Lisp_Object title;
412 title = Qnil;
413 if (! EQ (Fnext_frame (frame, Qnil), frame))
414 title = XBUFFER (XWINDOW (f->selected_window)->buffer)->name;
416 x_implicitly_set_name (f, title, Qnil);
419 #endif
421 /* Prepare for redisplay by updating menu-bar item lists when appropriate.
422 This can't be done in `redisplay' itself because it can call eval. */
424 void
425 prepare_menu_bars ()
427 register struct window *w = XWINDOW (selected_window);
428 int all_windows;
430 if (noninteractive)
431 return;
433 /* Set the visible flags for all frames.
434 Do this before checking for resized or garbaged frames; they want
435 to know if their frames are visible.
436 See the comment in frame.h for FRAME_SAMPLE_VISIBILITY. */
438 Lisp_Object tail, frame;
440 FOR_EACH_FRAME (tail, frame)
441 FRAME_SAMPLE_VISIBILITY (XFRAME (frame));
444 /* Notice any pending interrupt request to change frame size. */
445 do_pending_window_change ();
447 if (frame_garbaged)
449 redraw_garbaged_frames ();
450 frame_garbaged = 0;
453 if (clip_changed || windows_or_buffers_changed)
454 update_mode_lines++;
456 /* Detect case that we need to write a star in the mode line. */
457 if (XFASTINT (w->last_modified) < MODIFF
458 && XFASTINT (w->last_modified) <= current_buffer->save_modified)
460 w->update_mode_line = Qt;
461 if (buffer_shared > 1)
462 update_mode_lines++;
465 all_windows = update_mode_lines || buffer_shared > 1;
467 /* If specs for an arrow have changed, do thorough redisplay
468 to ensure we remove any arrow that should no longer exist. */
469 if (! EQ (Voverlay_arrow_position, last_arrow_position)
470 || ! EQ (Voverlay_arrow_string, last_arrow_string))
471 all_windows = 1, clip_changed = 1;
473 /* Update the menu bar item lists, if appropriate.
474 This has to be done before any actual redisplay
475 or generation of display lines. */
476 if (all_windows)
478 Lisp_Object tail, frame;
480 FOR_EACH_FRAME (tail, frame)
482 FRAME_PTR f = XFRAME (frame);
484 if (FRAME_VISIBLE_P (f))
485 update_menu_bars (FRAME_ROOT_WINDOW (f));
488 else if (FRAME_VISIBLE_P (selected_frame))
489 update_menu_bar (selected_window);
492 /* Do a frame update, taking possible shortcuts into account.
493 This is the main external entry point for redisplay.
495 If the last redisplay displayed an echo area message and that
496 message is no longer requested, we clear the echo area
497 or bring back the minibuffer if that is in use.
499 Do not call eval from within this function.
500 Calls to eval after the call to echo_area_display would confuse
501 the display_line mechanism and would cause a crash.
502 Calls to eval before that point will work most of the time,
503 but can still lose, because this function
504 can be called from signal handlers; with alarms set up;
505 or with synchronous processes running.
507 See Fcall_process; if you called it from here, it could be
508 entered recursively. */
510 static int do_verify_charstarts;
512 void
513 redisplay ()
515 register struct window *w = XWINDOW (selected_window);
516 register int pause;
517 int must_finish = 0;
518 int all_windows;
519 register int tlbufpos, tlendpos;
520 struct position pos;
521 extern int input_pending;
523 if (noninteractive)
524 return;
526 /* Set the visible flags for all frames.
527 Do this before checking for resized or garbaged frames; they want
528 to know if their frames are visible.
529 See the comment in frame.h for FRAME_SAMPLE_VISIBILITY. */
531 Lisp_Object tail, frame;
533 FOR_EACH_FRAME (tail, frame)
534 FRAME_SAMPLE_VISIBILITY (XFRAME (frame));
537 /* Notice any pending interrupt request to change frame size. */
538 do_pending_window_change ();
540 if (frame_garbaged)
542 redraw_garbaged_frames ();
543 frame_garbaged = 0;
546 if (clip_changed || windows_or_buffers_changed)
547 update_mode_lines++;
549 /* Detect case that we need to write a star in the mode line. */
550 if (XFASTINT (w->last_modified) < MODIFF
551 && XFASTINT (w->last_modified) <= current_buffer->save_modified)
553 w->update_mode_line = Qt;
554 if (buffer_shared > 1)
555 update_mode_lines++;
558 FRAME_SCROLL_BOTTOM_VPOS (XFRAME (w->frame)) = -1;
560 all_windows = update_mode_lines || buffer_shared > 1;
562 /* If specs for an arrow have changed, do thorough redisplay
563 to ensure we remove any arrow that should no longer exist. */
564 if (! EQ (Voverlay_arrow_position, last_arrow_position)
565 || ! EQ (Voverlay_arrow_string, last_arrow_string))
566 all_windows = 1, clip_changed = 1;
568 /* Normally the message* functions will have already displayed and
569 updated the echo area, but the frame may have been trashed, or
570 the update may have been preempted, so display the echo area
571 again here. */
572 if (echo_area_glyphs || previous_echo_glyphs)
574 echo_area_display ();
575 must_finish = 1;
578 /* If showing region, and mark has changed, must redisplay whole window. */
579 if (((!NILP (Vtransient_mark_mode)
580 && !NILP (XBUFFER (w->buffer)->mark_active))
581 != !NILP (w->region_showing))
582 || (!NILP (w->region_showing)
583 && !EQ (w->region_showing,
584 Fmarker_position (XBUFFER (w->buffer)->mark))))
585 this_line_bufpos = -1;
587 tlbufpos = this_line_bufpos;
588 tlendpos = this_line_endpos;
589 if (!all_windows && tlbufpos > 0 && NILP (w->update_mode_line)
590 && FRAME_VISIBLE_P (XFRAME (w->frame))
591 /* Make sure recorded data applies to current buffer, etc */
592 && this_line_buffer == current_buffer
593 && current_buffer == XBUFFER (w->buffer)
594 && NILP (w->force_start)
595 /* Point must be on the line that we have info recorded about */
596 && PT >= tlbufpos
597 && PT <= Z - tlendpos
598 /* All text outside that line, including its final newline,
599 must be unchanged */
600 && (XFASTINT (w->last_modified) >= MODIFF
601 || (beg_unchanged >= tlbufpos - 1
602 && GPT >= tlbufpos
603 /* If selective display, can't optimize
604 if the changes start at the beginning of the line. */
605 && ((XTYPE (current_buffer->selective_display) == Lisp_Int
606 && XINT (current_buffer->selective_display) > 0
607 ? (beg_unchanged >= tlbufpos
608 && GPT > tlbufpos)
609 : 1))
610 && end_unchanged >= tlendpos
611 && Z - GPT >= tlendpos)))
613 if (tlbufpos > BEGV && FETCH_CHAR (tlbufpos - 1) != '\n'
614 && (tlbufpos == ZV
615 || FETCH_CHAR (tlbufpos) == '\n'))
616 /* Former continuation line has disappeared by becoming empty */
617 goto cancel;
618 else if (XFASTINT (w->last_modified) < MODIFF
619 || MINI_WINDOW_P (w))
621 cursor_vpos = -1;
622 overlay_arrow_seen = 0;
623 display_text_line (w, tlbufpos, this_line_vpos, this_line_start_hpos,
624 pos_tab_offset (w, tlbufpos));
625 /* If line contains point, is not continued,
626 and ends at same distance from eob as before, we win */
627 if (cursor_vpos >= 0 && this_line_bufpos
628 && this_line_endpos == tlendpos)
630 /* If this is not the window's last line,
631 we must adjust the charstarts of the lines below. */
632 if (this_line_vpos + 1
633 < XFASTINT (w->top) + window_internal_height (w))
635 int left = XFASTINT (w->left);
636 int *charstart_next_line
637 = FRAME_CURRENT_GLYPHS (XFRAME (WINDOW_FRAME (w)))->charstarts[this_line_vpos + 1];
638 int i;
639 int adjust;
641 if (Z - tlendpos == ZV)
642 /* This line ends at end of (accessible part of) buffer.
643 There is no newline to count. */
644 adjust = Z - tlendpos - charstart_next_line[left];
645 else
646 /* This line ends in a newline.
647 Must take account of the newline and the rest of the
648 text that follows. */
649 adjust = Z - tlendpos + 1 - charstart_next_line[left];
651 adjust_window_charstarts (w, this_line_vpos, adjust);
654 if (XFASTINT (w->width) != FRAME_WIDTH (XFRAME (WINDOW_FRAME (w))))
655 preserve_other_columns (w);
656 goto update;
658 else
659 goto cancel;
661 else if (PT == XFASTINT (w->last_point))
663 if (!must_finish)
665 do_pending_window_change ();
666 return;
668 goto update;
670 /* If highlighting the region, we can't just move the cursor. */
671 else if (! (!NILP (Vtransient_mark_mode)
672 && !NILP (current_buffer->mark_active))
673 && NILP (w->region_showing))
675 pos = *compute_motion (tlbufpos, 0,
676 XINT (w->hscroll) ? 1 - XINT (w->hscroll) : 0,
677 PT, 2, - (1 << (SHORTBITS - 1)),
678 window_internal_width (w) - 1,
679 XINT (w->hscroll),
680 pos_tab_offset (w, tlbufpos), w);
681 if (pos.vpos < 1)
683 FRAME_CURSOR_X (selected_frame)
684 = XFASTINT (w->left) + max (pos.hpos, 0);
685 FRAME_CURSOR_Y (selected_frame) = this_line_vpos;
686 goto update;
688 else
689 goto cancel;
691 cancel:
692 /* Text changed drastically or point moved off of line */
693 cancel_line (this_line_vpos, selected_frame);
696 this_line_bufpos = 0;
697 all_windows |= buffer_shared > 1;
699 if (all_windows)
701 Lisp_Object tail, frame;
703 #ifdef HAVE_X_WINDOWS
704 /* Since we're doing a thorough redisplay, we might as well
705 recompute all our display faces. */
706 clear_face_vector ();
707 #endif
709 /* Recompute # windows showing selected buffer.
710 This will be incremented each time such a window is displayed. */
711 buffer_shared = 0;
713 FOR_EACH_FRAME (tail, frame)
715 FRAME_PTR f = XFRAME (frame);
717 /* Mark all the scroll bars to be removed; we'll redeem the ones
718 we want when we redisplay their windows. */
719 if (condemn_scroll_bars_hook)
720 (*condemn_scroll_bars_hook) (f);
722 if (FRAME_VISIBLE_P (f))
723 redisplay_windows (FRAME_ROOT_WINDOW (f));
724 #ifdef HAVE_X_WINDOWS
725 else if (FRAME_ICONIFIED_P (f)
726 && ! MINI_WINDOW_P (XWINDOW (f->selected_window)))
727 x_consider_frame_title (frame);
728 #endif
730 /* Any scroll bars which redisplay_windows should have nuked
731 should now go away. */
732 if (judge_scroll_bars_hook)
733 (*judge_scroll_bars_hook) (f);
736 else if (FRAME_VISIBLE_P (selected_frame))
738 redisplay_window (selected_window, 1);
739 if (XFASTINT (w->width) != FRAME_WIDTH (selected_frame))
740 preserve_other_columns (w);
743 update:
744 /* Prevent various kinds of signals during display update.
745 stdio is not robust about handling signals,
746 which can cause an apparent I/O error. */
747 if (interrupt_input)
748 unrequest_sigio ();
749 stop_polling ();
751 #ifdef MULTI_FRAME
752 if (all_windows)
754 Lisp_Object tail;
756 pause = 0;
758 for (tail = Vframe_list; CONSP (tail); tail = XCONS (tail)->cdr)
760 FRAME_PTR f;
762 if (XTYPE (XCONS (tail)->car) != Lisp_Frame)
763 continue;
765 f = XFRAME (XCONS (tail)->car);
766 if (FRAME_VISIBLE_P (f))
768 pause |= update_frame (f, 0, 0);
769 if (!pause)
771 mark_window_display_accurate (f->root_window, 1);
772 if (frame_up_to_date_hook != 0)
773 (*frame_up_to_date_hook) (f);
778 else
779 #endif /* MULTI_FRAME */
781 if (FRAME_VISIBLE_P (selected_frame))
782 pause = update_frame (selected_frame, 0, 0);
784 /* We may have called echo_area_display at the top of this
785 function. If the echo area is on another frame, that may
786 have put text on a frame other than the selected one, so the
787 above call to update_frame would not have caught it. Catch
788 it here. */
790 FRAME_PTR mini_frame
791 = XFRAME (WINDOW_FRAME (XWINDOW (minibuf_window)));
793 if (mini_frame != selected_frame)
794 pause |= update_frame (mini_frame, 0, 0);
798 /* If frame does not match, prevent doing single-line-update next time.
799 Also, don't forget to check every line to update the arrow. */
800 if (pause)
802 this_line_bufpos = 0;
803 if (!NILP (last_arrow_position))
805 last_arrow_position = Qt;
806 last_arrow_string = Qt;
808 /* If we pause after scrolling, some lines in current_frame
809 may be null, so preserve_other_columns won't be able to
810 preserve all the vertical-bar separators. So, avoid using it
811 in that case. */
812 if (XFASTINT (w->width) != FRAME_WIDTH (selected_frame))
813 update_mode_lines = 1;
816 /* Now text on frame agrees with windows, so
817 put info into the windows for partial redisplay to follow */
819 if (!pause)
821 register struct buffer *b = XBUFFER (w->buffer);
823 blank_end_of_window = 0;
824 clip_changed = 0;
825 unchanged_modified = BUF_MODIFF (b);
826 beg_unchanged = BUF_GPT (b) - BUF_BEG (b);
827 end_unchanged = BUF_Z (b) - BUF_GPT (b);
829 XFASTINT (w->last_point) = BUF_PT (b);
830 XFASTINT (w->last_point_x) = FRAME_CURSOR_X (selected_frame);
831 XFASTINT (w->last_point_y) = FRAME_CURSOR_Y (selected_frame);
833 if (all_windows)
834 mark_window_display_accurate (FRAME_ROOT_WINDOW (selected_frame), 1);
835 else
837 w->update_mode_line = Qnil;
838 XFASTINT (w->last_modified) = BUF_MODIFF (b);
839 w->window_end_valid = w->buffer;
840 last_arrow_position = Voverlay_arrow_position;
841 last_arrow_string = Voverlay_arrow_string;
842 if (do_verify_charstarts)
843 verify_charstarts (w);
844 if (frame_up_to_date_hook != 0)
845 (*frame_up_to_date_hook) (selected_frame);
847 update_mode_lines = 0;
848 windows_or_buffers_changed = 0;
851 /* Start SIGIO interrupts coming again.
852 Having them off during the code above
853 makes it less likely one will discard output,
854 but not impossible, since there might be stuff
855 in the system buffer here.
856 But it is much hairier to try to do anything about that. */
858 if (interrupt_input)
859 request_sigio ();
860 start_polling ();
862 /* Change frame size now if a change is pending. */
863 do_pending_window_change ();
866 /* Redisplay, but leave alone any recent echo area message
867 unless another message has been requested in its place.
869 This is useful in situations where you need to redisplay but no
870 user action has occurred, making it inappropriate for the message
871 area to be cleared. See tracking_off and
872 wait_reading_process_input for examples of these situations. */
874 redisplay_preserve_echo_area ()
876 if (echo_area_glyphs == 0 && previous_echo_glyphs != 0)
878 echo_area_glyphs = previous_echo_glyphs;
879 redisplay ();
880 echo_area_glyphs = 0;
882 else
883 redisplay ();
886 void
887 mark_window_display_accurate (window, flag)
888 Lisp_Object window;
889 int flag;
891 register struct window *w;
893 for (;!NILP (window); window = w->next)
895 if (XTYPE (window) != Lisp_Window) abort ();
896 w = XWINDOW (window);
898 if (!NILP (w->buffer))
900 XFASTINT (w->last_modified)
901 = !flag ? 0
902 : XBUFFER (w->buffer) == current_buffer
903 ? MODIFF : BUF_MODIFF (XBUFFER (w->buffer));
905 /* Record if we are showing a region, so can make sure to
906 update it fully at next redisplay. */
907 w->region_showing = (!NILP (Vtransient_mark_mode)
908 && !NILP (XBUFFER (w->buffer)->mark_active)
909 ? Fmarker_position (XBUFFER (w->buffer)->mark)
910 : Qnil);
913 w->window_end_valid = w->buffer;
914 w->update_mode_line = Qnil;
916 if (!NILP (w->vchild))
917 mark_window_display_accurate (w->vchild, flag);
918 if (!NILP (w->hchild))
919 mark_window_display_accurate (w->hchild, flag);
922 if (flag)
924 last_arrow_position = Voverlay_arrow_position;
925 last_arrow_string = Voverlay_arrow_string;
927 else
929 /* t is unequal to any useful value of Voverlay_arrow_... */
930 last_arrow_position = Qt;
931 last_arrow_string = Qt;
935 /* Update the menu bar item lists for WINDOW
936 and its subwindows and siblings.
937 This has to be done before we start to fill in any display lines,
938 because it can call eval. */
940 static void
941 update_menu_bars (window)
942 Lisp_Object window;
944 for (; !NILP (window); window = XWINDOW (window)->next)
945 update_menu_bar (window);
948 /* Update the menu bar item list for window WINDOW and its subwindows. */
950 static void
951 update_menu_bar (window)
952 Lisp_Object window;
954 register struct window *w = XWINDOW (window);
955 struct buffer *old = current_buffer;
956 FRAME_PTR f = XFRAME (WINDOW_FRAME (w));
958 /* If this is a combination window, do its children; that's all. */
960 if (!NILP (w->vchild))
962 update_menu_bars (w->vchild);
963 return;
965 if (!NILP (w->hchild))
967 update_menu_bars (w->hchild);
968 return;
970 if (NILP (w->buffer))
971 abort ();
973 if (update_mode_lines)
974 w->update_mode_line = Qt;
976 /* When we reach a frame's selected window, redo the frame's menu bar. */
977 if (!NILP (w->update_mode_line)
978 #ifdef USE_X_TOOLKIT
979 && FRAME_EXTERNAL_MENU_BAR (f)
980 #else
981 && FRAME_MENU_BAR_LINES (f) > 0
982 #endif
983 && EQ (FRAME_SELECTED_WINDOW (f), window))
985 /* If the user has switched buffers or windows, we need to
986 recompute to reflect the new bindings. But we'll
987 recompute when update_mode_lines is set too; that means
988 that people can use force-mode-line-update to request
989 that the menu bar be recomputed. The adverse effect on
990 the rest of the redisplay algorithm is about the same as
991 windows_or_buffers_changed anyway. */
992 if (windows_or_buffers_changed
993 || update_mode_lines
994 || (XFASTINT (w->last_modified) < MODIFF
995 && (XFASTINT (w->last_modified)
996 <= XBUFFER (w->buffer)->save_modified)))
998 struct buffer *prev = current_buffer;
999 current_buffer = XBUFFER (w->buffer);
1000 FRAME_MENU_BAR_ITEMS (f) = menu_bar_items (FRAME_MENU_BAR_ITEMS (f));
1001 current_buffer = prev;
1002 #ifdef USE_X_TOOLKIT
1003 set_frame_menubar (f, 0);
1004 #endif /* USE_X_TOOLKIT */
1009 int do_id = 1;
1011 /* Redisplay WINDOW and its subwindows and siblings. */
1013 static void
1014 redisplay_windows (window)
1015 Lisp_Object window;
1017 for (; !NILP (window); window = XWINDOW (window)->next)
1018 redisplay_window (window, 0);
1021 /* Redisplay window WINDOW and its subwindows. */
1023 static void
1024 redisplay_window (window, just_this_one)
1025 Lisp_Object window;
1026 int just_this_one;
1028 register struct window *w = XWINDOW (window);
1029 FRAME_PTR f = XFRAME (WINDOW_FRAME (w));
1030 int height;
1031 register int lpoint = PT;
1032 struct buffer *old = current_buffer;
1033 register int width = window_internal_width (w) - 1;
1034 register int startp;
1035 register int hscroll = XINT (w->hscroll);
1036 struct position pos;
1037 int opoint = PT;
1038 int tem;
1039 int window_needs_modeline;
1041 if (FRAME_HEIGHT (f) == 0) abort (); /* Some bug zeros some core */
1043 /* If this is a combination window, do its children; that's all. */
1045 if (!NILP (w->vchild))
1047 redisplay_windows (w->vchild);
1048 return;
1050 if (!NILP (w->hchild))
1052 redisplay_windows (w->hchild);
1053 return;
1055 if (NILP (w->buffer))
1056 abort ();
1058 height = window_internal_height (w);
1060 if (MINI_WINDOW_P (w))
1062 if (w == XWINDOW (minibuf_window))
1064 if (echo_area_glyphs)
1065 /* We've already displayed the echo area glyphs, if any. */
1066 goto finish_scroll_bars;
1068 else
1070 /* This is a minibuffer, but it's not the currently active one, so
1071 clear it. */
1072 int vpos = XFASTINT (XWINDOW (FRAME_MINIBUF_WINDOW (f))->top);
1073 int i;
1075 for (i = 0; i < height; i++)
1077 get_display_line (f, vpos + i, 0);
1078 display_string (w, vpos + i, "", 0, 0, 0, 1, 0, width);
1081 goto finish_scroll_bars;
1085 if (update_mode_lines)
1086 w->update_mode_line = Qt;
1088 /* Otherwise set up data on this window; select its buffer and point value */
1090 current_buffer = XBUFFER (w->buffer);
1091 opoint = PT;
1093 /* Count number of windows showing the selected buffer. */
1095 if (!just_this_one
1096 && current_buffer == XBUFFER (XWINDOW (selected_window)->buffer))
1097 buffer_shared++;
1099 /* POINT refers normally to the selected window.
1100 For any other window, set up appropriate value. */
1102 if (!EQ (window, selected_window))
1104 SET_PT (marker_position (w->pointm));
1105 if (PT < BEGV)
1107 SET_PT (BEGV);
1108 Fset_marker (w->pointm, make_number (PT), Qnil);
1110 else if (PT > (ZV - 1))
1112 SET_PT (ZV);
1113 Fset_marker (w->pointm, make_number (PT), Qnil);
1117 /* If window-start is screwed up, choose a new one. */
1118 if (XMARKER (w->start)->buffer != current_buffer)
1119 goto recenter;
1121 startp = marker_position (w->start);
1123 /* Handle case where place to start displaying has been specified,
1124 unless the specified location is outside the accessible range. */
1125 if (!NILP (w->force_start))
1127 /* Forget any recorded base line for line number display. */
1128 w->base_line_number = Qnil;
1129 w->update_mode_line = Qt;
1130 w->force_start = Qnil;
1131 XFASTINT (w->last_modified) = 0;
1132 if (startp < BEGV) startp = BEGV;
1133 if (startp > ZV) startp = ZV;
1134 try_window (window, startp);
1135 if (cursor_vpos < 0)
1137 /* ??? What should happen here if highlighting a region? */
1138 /* If point does not appear, move point so it does appear */
1139 pos = *compute_motion (startp, 0,
1140 ((EQ (window, minibuf_window) && startp == 1)
1141 ? minibuf_prompt_width : 0)
1143 (hscroll ? 1 - hscroll : 0),
1144 ZV, height / 2,
1145 - (1 << (SHORTBITS - 1)),
1146 width, hscroll, pos_tab_offset (w, startp), w);
1147 SET_PT (pos.bufpos);
1148 if (w != XWINDOW (selected_window))
1149 Fset_marker (w->pointm, make_number (PT), Qnil);
1150 else
1152 if (current_buffer == old)
1153 lpoint = PT;
1154 FRAME_CURSOR_X (f) = max (0, pos.hpos) + XFASTINT (w->left);
1155 FRAME_CURSOR_Y (f) = pos.vpos + XFASTINT (w->top);
1158 goto done;
1161 /* Handle case where text has not changed, only point,
1162 and it has not moved off the frame */
1164 /* This code is not used for minibuffer for the sake of
1165 the case of redisplaying to replace an echo area message;
1166 since in that case the minibuffer contents per se are usually unchanged.
1167 This code is of no real use in the minibuffer since
1168 the handling of this_line_bufpos, etc.,
1169 in redisplay handles the same cases. */
1171 if (XFASTINT (w->last_modified) >= MODIFF
1172 && PT >= startp && !clip_changed
1173 && (just_this_one || XFASTINT (w->width) == FRAME_WIDTH (f))
1174 /* Can't use this case if highlighting a region. */
1175 && !(!NILP (Vtransient_mark_mode) && !NILP (current_buffer->mark_active))
1176 && NILP (w->region_showing)
1177 && !EQ (window, minibuf_window))
1179 pos = *compute_motion (startp, 0, (hscroll ? 1 - hscroll : 0),
1180 PT, height + 1, 10000, width, hscroll,
1181 pos_tab_offset (w, startp), w);
1183 if (pos.vpos < height)
1185 /* Ok, point is still on frame */
1186 if (w == XWINDOW (FRAME_SELECTED_WINDOW (f)))
1188 /* These variables are supposed to be origin 1 */
1189 FRAME_CURSOR_X (f) = max (0, pos.hpos) + XFASTINT (w->left);
1190 FRAME_CURSOR_Y (f) = pos.vpos + XFASTINT (w->top);
1192 /* This doesn't do the trick, because if a window to the right of
1193 this one must be redisplayed, this does nothing because there
1194 is nothing in DesiredFrame yet, and then the other window is
1195 redisplayed, making likes that are empty in this window's columns.
1196 if (XFASTINT (w->width) != FRAME_WIDTH (f))
1197 preserve_my_columns (w);
1199 goto done;
1201 /* Don't bother trying redisplay with same start;
1202 we already know it will lose */
1204 /* If current starting point was originally the beginning of a line
1205 but no longer is, find a new starting point. */
1206 else if (!NILP (w->start_at_line_beg)
1207 && !(startp == BEGV
1208 || FETCH_CHAR (startp - 1) == '\n'))
1210 goto recenter;
1212 else if (just_this_one && !MINI_WINDOW_P (w)
1213 && PT >= startp
1214 && XFASTINT (w->last_modified)
1215 /* or else vmotion on first line won't work. */
1216 && ! NILP (w->start_at_line_beg)
1217 && ! EQ (w->window_end_valid, Qnil)
1218 && do_id && !clip_changed
1219 && !blank_end_of_window
1220 && XFASTINT (w->width) == FRAME_WIDTH (f)
1221 /* Can't use this case if highlighting a region. */
1222 && !(!NILP (Vtransient_mark_mode)
1223 && !NILP (current_buffer->mark_active))
1224 && NILP (w->region_showing)
1225 && EQ (last_arrow_position, Voverlay_arrow_position)
1226 && EQ (last_arrow_string, Voverlay_arrow_string)
1227 && (tem = try_window_id (FRAME_SELECTED_WINDOW (f)))
1228 && tem != -2)
1230 /* tem > 0 means success. tem == -1 means choose new start.
1231 tem == -2 means try again with same start,
1232 and nothing but whitespace follows the changed stuff.
1233 tem == 0 means try again with same start. */
1234 if (tem > 0)
1235 goto done;
1237 else if (startp >= BEGV && startp <= ZV
1238 /* Avoid starting display at end of buffer! */
1239 && (startp < ZV || startp == BEGV
1240 || (XFASTINT (w->last_modified) >= MODIFF)))
1242 /* Try to redisplay starting at same place as before */
1243 /* If point has not moved off frame, accept the results */
1244 try_window (window, startp);
1245 if (cursor_vpos >= 0)
1247 if (!just_this_one || clip_changed || beg_unchanged < startp)
1248 /* Forget any recorded base line for line number display. */
1249 w->base_line_number = Qnil;
1250 goto done;
1252 else
1253 cancel_my_columns (w);
1256 XFASTINT (w->last_modified) = 0;
1257 w->update_mode_line = Qt;
1259 /* Try to scroll by specified few lines */
1261 if (scroll_step && !clip_changed)
1263 if (PT > startp)
1265 pos = *vmotion (Z - XFASTINT (w->window_end_pos),
1266 scroll_step, width, hscroll, window);
1267 if (pos.vpos >= height)
1268 goto scroll_fail;
1271 pos = *vmotion (startp, PT < startp ? - scroll_step : scroll_step,
1272 width, hscroll, window);
1274 if (PT >= pos.bufpos)
1276 try_window (window, pos.bufpos);
1277 if (cursor_vpos >= 0)
1279 if (!just_this_one || clip_changed || beg_unchanged < startp)
1280 /* Forget any recorded base line for line number display. */
1281 w->base_line_number = Qnil;
1282 goto done;
1284 else
1285 cancel_my_columns (w);
1287 scroll_fail: ;
1290 /* Finally, just choose place to start which centers point */
1292 recenter:
1293 /* Forget any previously recorded base line for line number display. */
1294 w->base_line_number = Qnil;
1296 pos = *vmotion (PT, - (height / 2), width, hscroll, window);
1297 try_window (window, pos.bufpos);
1299 startp = marker_position (w->start);
1300 w->start_at_line_beg =
1301 (startp == BEGV || FETCH_CHAR (startp - 1) == '\n') ? Qt : Qnil;
1303 done:
1304 if ((!NILP (w->update_mode_line)
1305 /* If window not full width, must redo its mode line
1306 if the window to its side is being redone */
1307 || (!just_this_one && width < FRAME_WIDTH (f) - 1)
1308 || INTEGERP (w->base_line_pos))
1309 && height != XFASTINT (w->height))
1310 display_mode_line (w);
1311 if (! line_number_displayed
1312 && ! BUFFERP (w->base_line_pos))
1314 w->base_line_pos = Qnil;
1315 w->base_line_number = Qnil;
1318 /* When we reach a frame's selected window, redo the frame's menu bar. */
1319 if (!NILP (w->update_mode_line)
1320 #ifdef USE_X_TOOLKIT
1321 && FRAME_EXTERNAL_MENU_BAR (f)
1322 #else
1323 && FRAME_MENU_BAR_LINES (f) > 0
1324 #endif
1325 && EQ (FRAME_SELECTED_WINDOW (f), window))
1326 display_menu_bar (w);
1328 finish_scroll_bars:
1329 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
1331 int start, end, whole;
1333 /* Calculate the start and end positions for the current window.
1334 At some point, it would be nice to choose between scrollbars
1335 which reflect the whole buffer size, with special markers
1336 indicating narrowing, and scrollbars which reflect only the
1337 visible region.
1339 Note that minibuffers sometimes aren't displaying any text. */
1340 if (! MINI_WINDOW_P (w)
1341 || (w == XWINDOW (minibuf_window) && ! echo_area_glyphs))
1343 whole = ZV - BEGV;
1344 start = startp - BEGV;
1345 /* I don't think this is guaranteed to be right. For the
1346 moment, we'll pretend it is. */
1347 end = (Z - XINT (w->window_end_pos)) - BEGV;
1349 if (end < start) end = start;
1350 if (whole < (end - start)) whole = end - start;
1352 else
1353 start = end = whole = 0;
1355 /* Indicate what this scroll bar ought to be displaying now. */
1356 (*set_vertical_scroll_bar_hook) (w, end - start, whole, start);
1358 /* Note that we actually used the scroll bar attached to this window,
1359 so it shouldn't be deleted at the end of redisplay. */
1360 (*redeem_scroll_bar_hook) (w);
1363 SET_PT (opoint);
1364 current_buffer = old;
1365 SET_PT (lpoint);
1368 /* Do full redisplay on one window, starting at position `pos'. */
1370 static void
1371 try_window (window, pos)
1372 Lisp_Object window;
1373 register int pos;
1375 register struct window *w = XWINDOW (window);
1376 register int height = window_internal_height (w);
1377 register int vpos = XFASTINT (w->top);
1378 register int last_text_vpos = vpos;
1379 int tab_offset = pos_tab_offset (w, pos);
1380 FRAME_PTR f = XFRAME (w->frame);
1381 int width = window_internal_width (w) - 1;
1382 struct position val;
1384 Fset_marker (w->start, make_number (pos), Qnil);
1385 cursor_vpos = -1;
1386 overlay_arrow_seen = 0;
1387 val.hpos = XINT (w->hscroll) ? 1 - XINT (w->hscroll) : 0;
1389 while (--height >= 0)
1391 val = *display_text_line (w, pos, vpos, val.hpos, tab_offset);
1392 tab_offset += width;
1393 if (val.vpos) tab_offset = 0;
1394 vpos++;
1395 if (pos != val.bufpos)
1396 last_text_vpos
1397 /* Next line, unless prev line ended in end of buffer with no cr */
1398 = vpos - (val.vpos && (FETCH_CHAR (val.bufpos - 1) != '\n'
1399 #ifdef USE_TEXT_PROPERTIES
1400 || ! NILP (Fget_char_property (val.bufpos-1,
1401 Qinvisible,
1402 window))
1403 #endif
1405 pos = val.bufpos;
1408 /* If last line is continued in middle of character,
1409 include the split character in the text considered on the frame */
1410 if (val.hpos < (XINT (w->hscroll) ? 1 - XINT (w->hscroll) : 0))
1411 pos++;
1413 /* If bottom just moved off end of frame, change mode line percentage. */
1414 if (XFASTINT (w->window_end_pos) == 0
1415 && Z != pos)
1416 w->update_mode_line = Qt;
1418 /* Say where last char on frame will be, once redisplay is finished. */
1419 XFASTINT (w->window_end_pos) = Z - pos;
1420 XFASTINT (w->window_end_vpos) = last_text_vpos - XFASTINT (w->top);
1421 /* But that is not valid info until redisplay finishes. */
1422 w->window_end_valid = Qnil;
1425 /* Try to redisplay when buffer is modified locally,
1426 computing insert/delete line to preserve text outside
1427 the bounds of the changes.
1428 Return 1 if successful, 0 if if cannot tell what to do,
1429 or -1 to tell caller to find a new window start,
1430 or -2 to tell caller to do normal redisplay with same window start. */
1432 static int
1433 try_window_id (window)
1434 Lisp_Object window;
1436 int pos;
1437 register struct window *w = XWINDOW (window);
1438 register int height = window_internal_height (w);
1439 FRAME_PTR f = XFRAME (w->frame);
1440 int top = XFASTINT (w->top);
1441 int start = marker_position (w->start);
1442 int width = window_internal_width (w) - 1;
1443 int hscroll = XINT (w->hscroll);
1444 int lmargin = hscroll > 0 ? 1 - hscroll : 0;
1445 register int vpos;
1446 register int i, tem;
1447 int last_text_vpos = 0;
1448 int stop_vpos;
1449 int selective
1450 = XTYPE (current_buffer->selective_display) == Lisp_Int
1451 ? XINT (current_buffer->selective_display)
1452 : !NILP (current_buffer->selective_display) ? -1 : 0;
1454 struct position val, bp, ep, xp, pp;
1455 int scroll_amount = 0;
1456 int delta;
1457 int tab_offset, epto;
1459 if (GPT - BEG < beg_unchanged)
1460 beg_unchanged = GPT - BEG;
1461 if (Z - GPT < end_unchanged)
1462 end_unchanged = Z - GPT;
1464 if (beg_unchanged + BEG < start)
1465 return 0; /* Give up if changes go above top of window */
1467 /* Find position before which nothing is changed. */
1468 bp = *compute_motion (start, 0, lmargin,
1469 min (ZV, beg_unchanged + BEG), height + 1, 0,
1470 width, hscroll, pos_tab_offset (w, start), w);
1471 if (bp.vpos >= height)
1473 if (PT < bp.bufpos && !bp.contin)
1475 /* All changes are below the frame, and point is on the frame.
1476 We don't need to change the frame at all.
1477 But we need to update window_end_pos to account for
1478 any change in buffer size. */
1479 bp = *compute_motion (start, 0, lmargin,
1480 Z, height, 0,
1481 width, hscroll, pos_tab_offset (w, start), w);
1482 XFASTINT (w->window_end_vpos) = height;
1483 XFASTINT (w->window_end_pos) = Z - bp.bufpos;
1484 return 1;
1486 return 0;
1489 vpos = bp.vpos;
1491 /* Find beginning of that frame line. Must display from there. */
1492 bp = *vmotion (bp.bufpos, 0, width, hscroll, window);
1494 pos = bp.bufpos;
1495 val.hpos = lmargin;
1496 if (pos < start)
1497 return -1;
1499 /* If about to start displaying at the beginning of a continuation line,
1500 really start with previous frame line, in case it was not
1501 continued when last redisplayed */
1502 if ((bp.contin && bp.bufpos - 1 == beg_unchanged && vpos > 0)
1504 /* Likewise if we have to worry about selective display. */
1505 (selective > 0 && bp.bufpos - 1 == beg_unchanged && vpos > 0))
1507 bp = *vmotion (bp.bufpos, -1, width, hscroll, window);
1508 --vpos;
1509 pos = bp.bufpos;
1512 if (bp.contin && bp.hpos != lmargin)
1514 val.hpos = bp.prevhpos - width + lmargin;
1515 pos--;
1518 bp.vpos = vpos;
1520 /* Find first visible newline after which no more is changed. */
1521 tem = find_next_newline (Z - max (end_unchanged, Z - ZV), 1);
1522 if (selective > 0)
1523 while (tem < ZV - 1 && (indented_beyond_p (tem, selective)))
1524 tem = find_next_newline (tem, 1);
1526 /* Compute the cursor position after that newline. */
1527 ep = *compute_motion (pos, vpos, val.hpos, tem,
1528 height, - (1 << (SHORTBITS - 1)),
1529 width, hscroll, pos_tab_offset (w, bp.bufpos), w);
1531 /* If changes reach past the text available on the frame,
1532 just display rest of frame. */
1533 if (ep.bufpos > Z - XFASTINT (w->window_end_pos))
1534 stop_vpos = height;
1535 else
1536 stop_vpos = ep.vpos;
1538 /* If no newline before ep, the line ep is on includes some changes
1539 that must be displayed. Make sure we don't stop before it. */
1540 /* Also, if changes reach all the way until ep.bufpos,
1541 it is possible that something was deleted after the
1542 newline before it, so the following line must be redrawn. */
1543 if (stop_vpos == ep.vpos
1544 && (ep.bufpos == BEGV
1545 || FETCH_CHAR (ep.bufpos - 1) != '\n'
1546 || ep.bufpos == Z - end_unchanged))
1547 stop_vpos = ep.vpos + 1;
1549 cursor_vpos = -1;
1550 overlay_arrow_seen = 0;
1552 /* If changes do not reach to bottom of window,
1553 figure out how much to scroll the rest of the window */
1554 if (stop_vpos < height)
1556 /* Now determine how far up or down the rest of the window has moved */
1557 epto = pos_tab_offset (w, ep.bufpos);
1558 xp = *compute_motion (ep.bufpos, ep.vpos, ep.hpos,
1559 Z - XFASTINT (w->window_end_pos),
1560 10000, 0, width, hscroll, epto, w);
1561 scroll_amount = xp.vpos - XFASTINT (w->window_end_vpos);
1563 /* Is everything on frame below the changes whitespace?
1564 If so, no scrolling is really necessary. */
1565 for (i = ep.bufpos; i < xp.bufpos; i++)
1567 tem = FETCH_CHAR (i);
1568 if (tem != ' ' && tem != '\n' && tem != '\t')
1569 break;
1571 if (i == xp.bufpos)
1572 return -2;
1574 XFASTINT (w->window_end_vpos) += scroll_amount;
1576 /* Before doing any scrolling, verify that point will be on frame. */
1577 if (PT > ep.bufpos && !(PT <= xp.bufpos && xp.bufpos < height))
1579 if (PT <= xp.bufpos)
1581 pp = *compute_motion (ep.bufpos, ep.vpos, ep.hpos,
1582 PT, height, - (1 << (SHORTBITS - 1)),
1583 width, hscroll, epto, w);
1585 else
1587 pp = *compute_motion (xp.bufpos, xp.vpos, xp.hpos,
1588 PT, height, - (1 << (SHORTBITS - 1)),
1589 width, hscroll,
1590 pos_tab_offset (w, xp.bufpos), w);
1592 if (pp.bufpos < PT || pp.vpos == height)
1593 return 0;
1594 cursor_vpos = pp.vpos + top;
1595 cursor_hpos = pp.hpos + XFASTINT (w->left);
1598 if (stop_vpos - scroll_amount >= height
1599 || ep.bufpos == xp.bufpos)
1601 if (scroll_amount < 0)
1602 stop_vpos -= scroll_amount;
1603 scroll_amount = 0;
1604 /* In this path, we have altered window_end_vpos
1605 and not left it negative.
1606 We must make sure that, in case display is preempted
1607 before the frame changes to reflect what we do here,
1608 further updates will not come to try_window_id
1609 and assume the frame and window_end_vpos match. */
1610 blank_end_of_window = 1;
1612 else if (!scroll_amount)
1614 /* Even if we don't need to scroll, we must adjust the
1615 charstarts of subsequent lines (that we won't redisplay)
1616 according to the amount of text inserted or deleted. */
1617 int oldpos = FRAME_CURRENT_GLYPHS (f)->charstarts[ep.vpos + top][0];
1618 int adjust = ep.bufpos - oldpos;
1619 adjust_window_charstarts (w, ep.vpos + top - 1, adjust);
1621 else if (bp.bufpos == Z - end_unchanged)
1623 /* If reprinting everything is nearly as fast as scrolling,
1624 don't bother scrolling. Can happen if lines are short. */
1625 if (scroll_cost (f, bp.vpos + top - scroll_amount,
1626 top + height - max (0, scroll_amount),
1627 scroll_amount)
1628 > xp.bufpos - bp.bufpos - 20)
1629 /* Return "try normal display with same window-start."
1630 Too bad we can't prevent further scroll-thinking. */
1631 return -2;
1632 /* If pure deletion, scroll up as many lines as possible.
1633 In common case of killing a line, this can save the
1634 following line from being overwritten by scrolling
1635 and therefore having to be redrawn. */
1636 tem = scroll_frame_lines (f, bp.vpos + top - scroll_amount,
1637 top + height - max (0, scroll_amount),
1638 scroll_amount, bp.bufpos);
1639 if (!tem)
1640 stop_vpos = height;
1641 else
1643 /* scroll_frame_lines did not properly adjust subsequent
1644 lines' charstarts in the case where the text of the
1645 screen line at bp.vpos has changed.
1646 (This can happen in a deletion that ends in mid-line.)
1647 To adjust properly, we need to make things constent at
1648 the position ep.
1649 So do a second adjust to make that happen.
1650 Note that stop_vpos >= ep.vpos, so it is sufficient
1651 to update the charstarts for lines at ep.vpos and below. */
1652 int oldstart
1653 = FRAME_CURRENT_GLYPHS (f)->charstarts[ep.vpos + top][0];
1654 adjust_window_charstarts (w, ep.vpos + top - 1,
1655 ep.bufpos - oldstart);
1658 else if (scroll_amount)
1660 /* If reprinting everything is nearly as fast as scrolling,
1661 don't bother scrolling. Can happen if lines are short. */
1662 /* Note that if scroll_amount > 0, xp.bufpos - bp.bufpos is an
1663 overestimate of cost of reprinting, since xp.bufpos
1664 would end up below the bottom of the window. */
1665 if (scroll_cost (f, ep.vpos + top - scroll_amount,
1666 top + height - max (0, scroll_amount),
1667 scroll_amount)
1668 > xp.bufpos - ep.bufpos - 20)
1669 /* Return "try normal display with same window-start."
1670 Too bad we can't prevent further scroll-thinking. */
1671 return -2;
1672 tem = scroll_frame_lines (f, ep.vpos + top - scroll_amount,
1673 top + height - max (0, scroll_amount),
1674 scroll_amount, ep.bufpos);
1675 if (!tem) stop_vpos = height;
1679 /* In any case, do not display past bottom of window */
1680 if (stop_vpos >= height)
1682 stop_vpos = height;
1683 scroll_amount = 0;
1686 /* Handle case where pos is before w->start --
1687 can happen if part of line had been clipped and is not clipped now */
1688 if (vpos == 0 && pos < marker_position (w->start))
1689 Fset_marker (w->start, make_number (pos), Qnil);
1691 /* Redisplay the lines where the text was changed */
1692 last_text_vpos = vpos;
1693 tab_offset = pos_tab_offset (w, pos);
1694 /* If we are starting display in mid-character, correct tab_offset
1695 to account for passing the line that that character really starts in. */
1696 if (val.hpos < lmargin)
1697 tab_offset += width;
1698 while (vpos < stop_vpos)
1700 val = *display_text_line (w, pos, top + vpos++, val.hpos, tab_offset);
1701 tab_offset += width;
1702 if (val.vpos) tab_offset = 0;
1703 if (pos != val.bufpos)
1704 last_text_vpos
1705 /* Next line, unless prev line ended in end of buffer with no cr */
1706 = vpos - (val.vpos && FETCH_CHAR (val.bufpos - 1) != '\n');
1707 pos = val.bufpos;
1710 /* There are two cases:
1711 1) we have displayed down to the bottom of the window
1712 2) we have scrolled lines below stop_vpos by scroll_amount */
1714 if (vpos == height)
1716 /* If last line is continued in middle of character,
1717 include the split character in the text considered on the frame */
1718 if (val.hpos < lmargin)
1719 val.bufpos++;
1720 XFASTINT (w->window_end_vpos) = last_text_vpos;
1721 XFASTINT (w->window_end_pos) = Z - val.bufpos;
1724 /* If scrolling made blank lines at window bottom,
1725 redisplay to fill those lines */
1726 if (scroll_amount < 0)
1728 /* Don't consider these lines for general-purpose scrolling.
1729 That will save time in the scrolling computation. */
1730 FRAME_SCROLL_BOTTOM_VPOS (f) = xp.vpos;
1731 vpos = xp.vpos;
1732 pos = xp.bufpos;
1733 val.hpos = lmargin;
1734 if (pos == ZV)
1735 vpos = height + scroll_amount;
1736 else if (xp.contin && xp.hpos != lmargin)
1738 val.hpos = xp.prevhpos - width + lmargin;
1739 pos--;
1742 blank_end_of_window = 1;
1743 tab_offset = pos_tab_offset (w, pos);
1744 /* If we are starting display in mid-character, correct tab_offset
1745 to account for passing the line that that character starts in. */
1746 if (val.hpos < lmargin)
1747 tab_offset += width;
1749 while (vpos < height)
1751 val = *display_text_line (w, pos, top + vpos++, val.hpos, tab_offset);
1752 tab_offset += width;
1753 if (val.vpos) tab_offset = 0;
1754 pos = val.bufpos;
1757 /* Here is a case where display_text_line sets cursor_vpos wrong.
1758 Make it be fixed up, below. */
1759 if (xp.bufpos == ZV
1760 && xp.bufpos == PT)
1761 cursor_vpos = -1;
1764 /* If bottom just moved off end of frame, change mode line percentage. */
1765 if (XFASTINT (w->window_end_pos) == 0
1766 && Z != val.bufpos)
1767 w->update_mode_line = Qt;
1769 /* Attempt to adjust end-of-text positions to new bottom line */
1770 if (scroll_amount)
1772 delta = height - xp.vpos;
1773 if (delta < 0
1774 || (delta > 0 && xp.bufpos <= ZV)
1775 || (delta == 0 && xp.hpos))
1777 val = *vmotion (Z - XFASTINT (w->window_end_pos),
1778 delta, width, hscroll, window);
1779 XFASTINT (w->window_end_pos) = Z - val.bufpos;
1780 XFASTINT (w->window_end_vpos) += val.vpos;
1784 w->window_end_valid = Qnil;
1786 /* If point was not in a line that was displayed, find it */
1787 if (cursor_vpos < 0)
1789 val = *compute_motion (start, 0, lmargin, PT, 10000, 10000,
1790 width, hscroll, pos_tab_offset (w, start), w);
1791 /* Admit failure if point is off frame now */
1792 if (val.vpos >= height)
1794 for (vpos = 0; vpos < height; vpos++)
1795 cancel_line (vpos + top, f);
1796 return 0;
1798 cursor_vpos = val.vpos + top;
1799 cursor_hpos = val.hpos + XFASTINT (w->left);
1802 FRAME_CURSOR_X (f) = max (0, cursor_hpos);
1803 FRAME_CURSOR_Y (f) = cursor_vpos;
1805 if (debug_end_pos)
1807 val = *compute_motion (start, 0, lmargin, ZV,
1808 height, - (1 << (SHORTBITS - 1)),
1809 width, hscroll, pos_tab_offset (w, start), w);
1810 if (val.vpos != XFASTINT (w->window_end_vpos))
1811 abort ();
1812 if (XFASTINT (w->window_end_pos)
1813 != Z - val.bufpos)
1814 abort ();
1817 return 1;
1820 /* Mark a section of BUF as modified, but only for the sake of redisplay.
1821 This is useful for recording changes to overlays.
1823 We increment the buffer's modification timestamp and set the
1824 redisplay caches (windows_or_buffers_changed, beg_unchanged, etc)
1825 as if the region of text between START and END had been modified;
1826 the redisplay code will check this against the windows' timestamps,
1827 and redraw the appropriate area of the buffer.
1829 However, if the buffer is unmodified, we bump the last-save
1830 timestamp as well, so that incrementing the timestamp doesn't fool
1831 Emacs into thinking that the buffer's text has been modified.
1833 Tweaking the timestamps shouldn't hurt the first-modification
1834 timestamps recorded in the undo records; those values aren't
1835 written until just before a real text modification is made, so they
1836 will never catch the timestamp value just before this function gets
1837 called. */
1839 void
1840 redisplay_region (buf, start, end)
1841 struct buffer *buf;
1842 int start, end;
1844 if (start == end)
1845 return;
1847 if (start > end)
1849 int temp = start;
1850 start = end; end = temp;
1853 if (buf != current_buffer)
1854 windows_or_buffers_changed = 1;
1855 else
1857 if (unchanged_modified == MODIFF)
1859 beg_unchanged = start - BEG;
1860 end_unchanged = Z - end;
1862 else
1864 if (Z - end < end_unchanged)
1865 end_unchanged = Z - end;
1866 if (start - BEG < beg_unchanged)
1867 beg_unchanged = start - BEG;
1871 /* Increment the buffer's time stamp, but also increment the save
1872 and autosave timestamps, so as not to screw up that timekeeping. */
1873 if (BUF_MODIFF (buf) == buf->save_modified)
1874 buf->save_modified++;
1875 if (BUF_MODIFF (buf) == buf->auto_save_modified)
1876 buf->auto_save_modified++;
1878 BUF_MODIFF (buf) ++;
1882 /* Copy LEN glyphs starting address FROM to the rope TO.
1883 But don't actually copy the parts that would come in before S.
1884 Value is TO, advanced past the copied data.
1885 F is the frame we are displaying in. */
1887 static GLYPH *
1888 copy_part_of_rope (f, to, s, from, len, face)
1889 FRAME_PTR f;
1890 register GLYPH *to; /* Copy to here. */
1891 register GLYPH *s; /* Starting point. */
1892 Lisp_Object *from; /* Data to copy. */
1893 int len;
1894 int face; /* Face to apply to glyphs which don't specify one. */
1896 int n = len;
1897 register Lisp_Object *fp = from;
1898 /* These cache the results of the last call to compute_glyph_face. */
1899 int last_code = -1;
1900 int last_merged = 0;
1902 #ifdef HAVE_X_WINDOWS
1903 if (! FRAME_TERMCAP_P (f))
1904 while (n--)
1906 int glyph = (INTEGERP (*fp) ? XFASTINT (*fp) : 0);
1907 int facecode;
1909 if (FAST_GLYPH_FACE (glyph) == 0)
1910 /* If GLYPH has no face code, use FACE. */
1911 facecode = face;
1912 else if (FAST_GLYPH_FACE (glyph) == last_code)
1913 /* If it's same as previous glyph, use same result. */
1914 facecode = last_merged;
1915 else
1917 /* Merge this glyph's face and remember the result. */
1918 last_code = FAST_GLYPH_FACE (glyph);
1919 last_merged = facecode = compute_glyph_face (f, last_code, face);
1922 if (to >= s)
1923 *to = FAST_MAKE_GLYPH (FAST_GLYPH_CHAR (glyph), facecode);
1924 ++to;
1925 ++fp;
1927 else
1928 #endif
1929 while (n--)
1931 if (to >= s) *to = (INTEGERP (*fp) ? XFASTINT (*fp) : 0);
1932 ++to;
1933 ++fp;
1935 return to;
1938 /* Correct a glyph by replacing its specified user-level face code
1939 with a displayable computed face code. */
1941 static GLYPH
1942 fix_glyph (f, glyph, current_face)
1943 FRAME_PTR f;
1944 GLYPH glyph;
1945 int current_face;
1947 #ifdef HAVE_X_WINDOWS
1948 if (! FRAME_TERMCAP_P (f) && FAST_GLYPH_FACE (glyph) != 0)
1949 return FAST_MAKE_GLYPH (FAST_GLYPH_CHAR (glyph),
1950 compute_glyph_face (f, FAST_GLYPH_FACE (glyph),
1951 current_face));
1952 #endif
1953 return glyph;
1956 /* Display one line of window w, starting at position START in W's buffer.
1957 Display starting at horizontal position HPOS, which is normally zero
1958 or negative. A negative value causes output up to hpos = 0 to be discarded.
1959 This is done for negative hscroll, or when this is a continuation line
1960 and the continuation occurred in the middle of a multi-column character.
1962 TABOFFSET is an offset for ostensible hpos, used in tab stop calculations.
1964 Display on position VPOS on the frame. (origin 0).
1966 Returns a STRUCT POSITION giving character to start next line with
1967 and where to display it, including a zero or negative hpos.
1968 The vpos field is not really a vpos; it is 1 unless the line is continued */
1970 struct position val_display_text_line;
1972 static struct position *
1973 display_text_line (w, start, vpos, hpos, taboffset)
1974 struct window *w;
1975 int start;
1976 int vpos;
1977 int hpos;
1978 int taboffset;
1980 register int pos = start;
1981 register int c;
1982 register GLYPH *p1;
1983 int end;
1984 register int pause;
1985 register unsigned char *p;
1986 GLYPH *endp;
1987 register GLYPH *leftmargin;
1988 register GLYPH *p1prev = 0;
1989 register GLYPH *p1start;
1990 int *charstart;
1991 FRAME_PTR f = XFRAME (w->frame);
1992 int tab_width = XINT (current_buffer->tab_width);
1993 int ctl_arrow = !NILP (current_buffer->ctl_arrow);
1994 int width = window_internal_width (w) - 1;
1995 struct position val;
1996 int lastpos;
1997 int invis;
1998 int hscroll = XINT (w->hscroll);
1999 int truncate = (hscroll
2000 || (truncate_partial_width_windows
2001 && XFASTINT (w->width) < FRAME_WIDTH (f))
2002 || !NILP (current_buffer->truncate_lines));
2004 /* 1 if we should highlight the region. */
2005 int highlight_region
2006 = !NILP (Vtransient_mark_mode) && !NILP (current_buffer->mark_active);
2007 int region_beg, region_end;
2009 int selective
2010 = XTYPE (current_buffer->selective_display) == Lisp_Int
2011 ? XINT (current_buffer->selective_display)
2012 : !NILP (current_buffer->selective_display) ? -1 : 0;
2013 register struct frame_glyphs *desired_glyphs = FRAME_DESIRED_GLYPHS (f);
2014 register struct Lisp_Vector *dp = window_display_table (w);
2016 Lisp_Object default_invis_vector[3];
2017 /* Nonzero means display something where there are invisible lines.
2018 The precise value is the number of glyphs to display. */
2019 int selective_rlen
2020 = (selective && dp && XTYPE (DISP_INVIS_VECTOR (dp)) == Lisp_Vector
2021 ? XVECTOR (DISP_INVIS_VECTOR (dp))->size
2022 : selective && !NILP (current_buffer->selective_display_ellipses)
2023 ? 3 : 0);
2024 /* This is the sequence of Lisp objects to display
2025 when there are invisible lines. */
2026 Lisp_Object *invis_vector_contents
2027 = (dp && XTYPE (DISP_INVIS_VECTOR (dp)) == Lisp_Vector
2028 ? XVECTOR (DISP_INVIS_VECTOR (dp))->contents
2029 : default_invis_vector);
2031 GLYPH truncator = (dp == 0 || XTYPE (DISP_TRUNC_GLYPH (dp)) != Lisp_Int
2032 ? '$' : XINT (DISP_TRUNC_GLYPH (dp)));
2033 GLYPH continuer = (dp == 0 || XTYPE (DISP_CONTINUE_GLYPH (dp)) != Lisp_Int
2034 ? '\\' : XINT (DISP_CONTINUE_GLYPH (dp)));
2036 /* The next buffer location at which the face should change, due
2037 to overlays or text property changes. */
2038 int next_face_change;
2040 #ifdef USE_TEXT_PROPERTIES
2041 /* The next location where the `invisible' property changes */
2042 int next_invisible;
2043 #endif
2045 /* The face we're currently using. */
2046 int current_face = 0;
2047 int i;
2049 XFASTINT (default_invis_vector[2]) = '.';
2050 default_invis_vector[0] = default_invis_vector[1] = default_invis_vector[2];
2052 hpos += XFASTINT (w->left);
2053 get_display_line (f, vpos, XFASTINT (w->left));
2054 if (tab_width <= 0 || tab_width > 1000) tab_width = 8;
2056 /* Show where to highlight the region. */
2057 if (highlight_region && XMARKER (current_buffer->mark)->buffer != 0
2058 /* Maybe highlight only in selected window. */
2059 && (highlight_nonselected_windows
2060 || w == XWINDOW (selected_window)))
2062 region_beg = marker_position (current_buffer->mark);
2063 if (PT < region_beg)
2065 region_end = region_beg;
2066 region_beg = PT;
2068 else
2069 region_end = PT;
2070 w->region_showing = Qt;
2072 else
2073 region_beg = region_end = -1;
2075 if (MINI_WINDOW_P (w) && start == 1
2076 && vpos == XFASTINT (w->top))
2078 if (minibuf_prompt)
2080 minibuf_prompt_width
2081 = (display_string (w, vpos, minibuf_prompt, -1, hpos,
2082 (!truncate ? continuer : truncator),
2083 1, -1, -1)
2084 - hpos);
2085 hpos += minibuf_prompt_width;
2087 else
2088 minibuf_prompt_width = 0;
2091 desired_glyphs->bufp[vpos] = pos;
2092 p1 = desired_glyphs->glyphs[vpos] + hpos;
2093 p1start = p1;
2094 charstart = desired_glyphs->charstarts[vpos] + hpos;
2095 /* In case we don't ever write anything into it... */
2096 *charstart = -1;
2097 end = ZV;
2098 leftmargin = desired_glyphs->glyphs[vpos] + XFASTINT (w->left);
2099 endp = leftmargin + width;
2101 /* Arrange the overlays nicely for our purposes. Usually, we call
2102 display_text_line on only one line at a time, in which case this
2103 can't really hurt too much, or we call it on lines which appear
2104 one after another in the buffer, in which case all calls to
2105 recenter_overlay_lists but the first will be pretty cheap. */
2106 recenter_overlay_lists (current_buffer, pos);
2108 /* Loop generating characters.
2109 Stop at end of buffer, before newline,
2110 if reach or pass continuation column,
2111 or at face change. */
2112 pause = pos;
2113 next_face_change = pos;
2114 #ifdef USE_TEXT_PROPERTIES
2115 next_invisible = pos;
2116 #endif
2117 while (1)
2119 /* Record which glyph starts a character,
2120 and the character position of that character. */
2121 if (p1 >= leftmargin)
2122 charstart[p1 - p1start] = pos;
2124 if (p1 >= endp)
2125 break;
2127 p1prev = p1;
2128 if (pos >= pause)
2130 /* Did we hit the end of the visible region of the buffer?
2131 Stop here. */
2132 if (pos >= end)
2133 break;
2135 /* Did we reach point? Record the cursor location. */
2136 if (pos == PT && cursor_vpos < 0)
2138 cursor_vpos = vpos;
2139 cursor_hpos = p1 - leftmargin;
2142 #ifdef USE_TEXT_PROPERTIES
2143 /* if the `invisible' property is set to t, we can skip to
2144 the next property change */
2145 while (pos == next_invisible && pos < end)
2147 Lisp_Object position, limit, endpos, prop, ww;
2148 XFASTINT (position) = pos;
2149 XSET (ww, Lisp_Window, w);
2150 prop = Fget_char_property (position, Qinvisible, ww);
2151 /* This is just an estimate to give reasonable
2152 performance; nothing should go wrong if it is too small. */
2153 limit = Fnext_overlay_change (position);
2154 if (XFASTINT (limit) > pos + 50)
2155 XFASTINT (limit) = pos + 50;
2156 endpos = Fnext_single_property_change (position, Qinvisible,
2157 Fcurrent_buffer (), limit);
2158 if (INTEGERP (endpos))
2159 next_invisible = XINT (endpos);
2160 else
2161 next_invisible = end;
2162 if (! NILP (prop))
2164 if (pos < PT && next_invisible >= PT)
2166 cursor_vpos = vpos;
2167 cursor_hpos = p1 - leftmargin;
2169 pos = next_invisible;
2172 if (pos >= end)
2173 break;
2174 #endif
2176 #ifdef HAVE_X_WINDOWS
2177 /* Did we hit a face change? Figure out what face we should
2178 use now. We also hit this the first time through the
2179 loop, to see what face we should start with. */
2180 if (pos >= next_face_change && FRAME_X_P (f))
2181 current_face = compute_char_face (f, w, pos,
2182 region_beg, region_end,
2183 &next_face_change, pos + 50, 0);
2184 #endif
2186 pause = end;
2188 #ifdef USE_TEXT_PROPERTIES
2189 if (pos < next_invisible && next_invisible < pause)
2190 pause = next_invisible;
2191 #endif
2192 if (pos < next_face_change && next_face_change < pause)
2193 pause = next_face_change;
2195 /* Wouldn't you hate to read the next line to someone over
2196 the phone? */
2197 if (pos < PT && PT < pause)
2198 pause = PT;
2199 if (pos < GPT && GPT < pause)
2200 pause = GPT;
2202 p = &FETCH_CHAR (pos);
2204 c = *p++;
2205 if (c >= 040 && c < 0177
2206 && (dp == 0 || XTYPE (DISP_CHAR_VECTOR (dp, c)) != Lisp_Vector))
2208 if (p1 >= leftmargin)
2209 *p1 = MAKE_GLYPH (f, c, current_face);
2210 p1++;
2212 else if (c == '\n')
2214 invis = 0;
2215 while (pos < end
2216 && selective > 0
2217 && indented_beyond_p (pos + 1, selective))
2219 invis = 1;
2220 pos = find_next_newline (pos + 1, 1);
2221 if (FETCH_CHAR (pos - 1) == '\n')
2222 pos--;
2224 if (invis && selective_rlen > 0 && p1 >= leftmargin)
2226 p1 += selective_rlen;
2227 if (p1 - leftmargin > width)
2228 p1 = endp;
2229 copy_part_of_rope (f, p1prev, p1prev, invis_vector_contents,
2230 (p1 - p1prev), current_face);
2232 #ifdef HAVE_X_WINDOWS
2233 /* Draw the face of the newline character as extending all the
2234 way to the end of the frame line. */
2235 if (current_face)
2236 while (p1 < endp)
2237 *p1++ = FAST_MAKE_GLYPH (' ', current_face);
2238 #endif
2239 break;
2241 else if (c == '\t')
2245 if (p1 >= leftmargin && p1 < endp)
2246 *p1 = MAKE_GLYPH (f, ' ', current_face);
2247 p1++;
2249 while ((p1 - leftmargin + taboffset + hscroll - (hscroll > 0))
2250 % tab_width);
2252 else if (c == Ctl ('M') && selective == -1)
2254 pos = find_next_newline (pos, 1);
2255 if (FETCH_CHAR (pos - 1) == '\n')
2256 pos--;
2257 if (selective_rlen > 0)
2259 p1 += selective_rlen;
2260 if (p1 - leftmargin > width)
2261 p1 = endp;
2262 copy_part_of_rope (f, p1prev, p1prev, invis_vector_contents,
2263 (p1 - p1prev), current_face);
2265 #ifdef HAVE_X_WINDOWS
2266 /* Draw the face of the newline character as extending all the
2267 way to the end of the frame line. */
2268 if (current_face)
2269 while (p1 < endp)
2270 *p1++ = FAST_MAKE_GLYPH (' ', current_face);
2271 #endif
2272 break;
2274 else if (dp != 0 && XTYPE (DISP_CHAR_VECTOR (dp, c)) == Lisp_Vector)
2276 p1 = copy_part_of_rope (f, p1, leftmargin,
2277 XVECTOR (DISP_CHAR_VECTOR (dp, c))->contents,
2278 XVECTOR (DISP_CHAR_VECTOR (dp, c))->size,
2279 current_face);
2281 else if (c < 0200 && ctl_arrow)
2283 if (p1 >= leftmargin)
2284 *p1 = fix_glyph (f, (dp && XTYPE (DISP_CTRL_GLYPH (dp)) == Lisp_Int
2285 ? XINT (DISP_CTRL_GLYPH (dp)) : '^'),
2286 current_face);
2287 p1++;
2288 if (p1 >= leftmargin && p1 < endp)
2289 *p1 = MAKE_GLYPH (f, c ^ 0100, current_face);
2290 p1++;
2292 else
2294 if (p1 >= leftmargin)
2295 *p1 = fix_glyph (f, (dp && XTYPE (DISP_ESCAPE_GLYPH (dp)) == Lisp_Int
2296 ? XINT (DISP_ESCAPE_GLYPH (dp)) : '\\'),
2297 current_face);
2298 p1++;
2299 if (p1 >= leftmargin && p1 < endp)
2300 *p1 = MAKE_GLYPH (f, (c >> 6) + '0', current_face);
2301 p1++;
2302 if (p1 >= leftmargin && p1 < endp)
2303 *p1 = MAKE_GLYPH (f, (7 & (c >> 3)) + '0', current_face);
2304 p1++;
2305 if (p1 >= leftmargin && p1 < endp)
2306 *p1 = MAKE_GLYPH (f, (7 & c) + '0', current_face);
2307 p1++;
2310 /* Do nothing here for a char that's entirely off the left edge. */
2311 if (p1 >= leftmargin)
2313 /* For all the glyphs occupied by this character, except for the
2314 first, store -1 in charstarts. */
2315 if (p1 != p1prev)
2317 int *p2x = &charstart[p1prev - p1start];
2318 int *p2 = &charstart[p1 - p1start];
2320 /* The window's left column should always
2321 contain a character position.
2322 And don't clobber anything to the left of that. */
2323 if (p1prev < leftmargin)
2325 charstart[0] = pos;
2326 p2x = charstart;
2329 /* This loop skips over the char p2x initially points to. */
2330 while (++p2x != p2)
2331 *p2x = -1;
2335 pos++;
2338 val.hpos = - XINT (w->hscroll);
2339 if (val.hpos)
2340 val.hpos++;
2342 val.vpos = 1;
2344 lastpos = pos;
2346 /* Store 0 in this charstart line for the positions where
2347 there is no character. But do leave what was recorded
2348 for the character that ended the line. */
2349 /* Add 1 in the endtest to compensate for the fact that ENDP was
2350 made from WIDTH, which is 1 less than the window's actual
2351 internal width. */
2352 for (i = p1 - p1start + 1; i < endp - p1start + 1; i++)
2353 charstart[i] = 0;
2355 /* Handle continuation in middle of a character */
2356 /* by backing up over it */
2357 if (p1 > endp)
2359 /* Don't back up if we never actually displayed any text.
2360 This occurs when the minibuffer prompt takes up the whole line. */
2361 if (p1prev)
2363 /* Start the next line with that same character */
2364 pos--;
2365 /* but at negative hpos, to skip the columns output on this line. */
2366 val.hpos += p1prev - endp;
2369 /* Keep in this line everything up to the continuation column. */
2370 p1 = endp;
2373 /* Finish deciding which character to start the next line on,
2374 and what hpos to start it at.
2375 Also set `lastpos' to the last position which counts as "on this line"
2376 for cursor-positioning. */
2378 if (pos < ZV)
2380 if (FETCH_CHAR (pos) == '\n')
2382 /* If stopped due to a newline, start next line after it */
2383 pos++;
2384 /* Check again for hidden lines, in case the newline occurred exactly
2385 at the right margin. */
2386 while (pos < ZV && selective > 0
2387 && indented_beyond_p (pos, selective))
2388 pos = find_next_newline (pos, 1);
2390 else
2391 /* Stopped due to right margin of window */
2393 if (truncate)
2395 *p1++ = fix_glyph (f, truncator, 0);
2396 /* Truncating => start next line after next newline,
2397 and point is on this line if it is before the newline,
2398 and skip none of first char of next line */
2400 pos = find_next_newline (pos, 1);
2401 while (pos < ZV && selective > 0
2402 && indented_beyond_p (pos, selective));
2403 val.hpos = XINT (w->hscroll) ? 1 - XINT (w->hscroll) : 0;
2405 lastpos = pos - (FETCH_CHAR (pos - 1) == '\n');
2407 else
2409 *p1++ = fix_glyph (f, continuer, 0);
2410 val.vpos = 0;
2411 lastpos--;
2416 /* If point is at eol or in invisible text at eol,
2417 record its frame location now. */
2419 if (start <= PT && PT <= lastpos && cursor_vpos < 0)
2421 cursor_vpos = vpos;
2422 cursor_hpos = p1 - leftmargin;
2425 if (cursor_vpos == vpos)
2427 if (cursor_hpos < 0) cursor_hpos = 0;
2428 if (cursor_hpos > width) cursor_hpos = width;
2429 cursor_hpos += XFASTINT (w->left);
2430 if (w == XWINDOW (FRAME_SELECTED_WINDOW (f)))
2432 FRAME_CURSOR_Y (f) = cursor_vpos;
2433 FRAME_CURSOR_X (f) = cursor_hpos;
2435 if (w == XWINDOW (selected_window))
2437 /* Line is not continued and did not start
2438 in middle of character */
2439 if ((hpos - XFASTINT (w->left)
2440 == (XINT (w->hscroll) ? 1 - XINT (w->hscroll) : 0))
2441 && val.vpos)
2443 this_line_bufpos = start;
2444 this_line_buffer = current_buffer;
2445 this_line_vpos = cursor_vpos;
2446 this_line_start_hpos = hpos;
2447 this_line_endpos = Z - lastpos;
2449 else
2450 this_line_bufpos = 0;
2455 /* If hscroll and line not empty, insert truncation-at-left marker */
2456 if (hscroll && lastpos != start)
2458 *leftmargin = fix_glyph (f, truncator, 0);
2459 if (p1 <= leftmargin)
2460 p1 = leftmargin + 1;
2463 if (XFASTINT (w->width) + XFASTINT (w->left) != FRAME_WIDTH (f))
2465 endp++;
2466 if (p1 < leftmargin) p1 = leftmargin;
2467 while (p1 < endp) *p1++ = SPACEGLYPH;
2469 /* Don't draw vertical bars if we're using scroll bars. They're
2470 covered up by the scroll bars, and it's distracting to see
2471 them when the scroll bar windows are flickering around to be
2472 reconfigured. */
2473 *p1++ = (FRAME_HAS_VERTICAL_SCROLL_BARS (f)
2474 ? ' ' : '|');
2476 desired_glyphs->used[vpos] = max (desired_glyphs->used[vpos],
2477 p1 - desired_glyphs->glyphs[vpos]);
2478 desired_glyphs->glyphs[vpos][desired_glyphs->used[vpos]] = 0;
2480 /* If the start of this line is the overlay arrow-position,
2481 then put the arrow string into the display-line. */
2483 if (XTYPE (Voverlay_arrow_position) == Lisp_Marker
2484 && current_buffer == XMARKER (Voverlay_arrow_position)->buffer
2485 && start == marker_position (Voverlay_arrow_position)
2486 && XTYPE (Voverlay_arrow_string) == Lisp_String
2487 && ! overlay_arrow_seen)
2489 unsigned char *p = XSTRING (Voverlay_arrow_string)->data;
2490 int i;
2491 int len = XSTRING (Voverlay_arrow_string)->size;
2492 int arrow_end;
2494 if (len > width)
2495 len = width;
2496 for (i = 0; i < len; i++)
2497 leftmargin[i] = p[i];
2499 /* Bug in SunOS 4.1.1 compiler requires this intermediate variable. */
2500 arrow_end = (leftmargin - desired_glyphs->glyphs[vpos]) + len;
2501 if (desired_glyphs->used[vpos] < arrow_end)
2502 desired_glyphs->used[vpos] = arrow_end;
2504 overlay_arrow_seen = 1;
2507 val.bufpos = pos;
2508 val_display_text_line = val;
2509 return &val_display_text_line;
2512 /* Redisplay the menu bar in the frame for window W. */
2514 static void
2515 display_menu_bar (w)
2516 struct window *w;
2518 Lisp_Object items, tail;
2519 register int vpos = 0;
2520 register FRAME_PTR f = XFRAME (WINDOW_FRAME (w));
2521 int maxendcol = FRAME_WIDTH (f);
2522 int hpos = 0;
2523 int i;
2525 #ifndef USE_X_TOOLKIT
2526 if (FRAME_MENU_BAR_LINES (f) <= 0)
2527 return;
2529 get_display_line (f, vpos, 0);
2531 items = FRAME_MENU_BAR_ITEMS (f);
2532 for (i = 0; i < XVECTOR (items)->size; i += 3)
2534 Lisp_Object pos, string;
2535 string = XVECTOR (items)->contents[i + 1];
2536 if (NILP (string))
2537 break;
2539 XFASTINT (XVECTOR (items)->contents[i + 2]) = hpos;
2541 if (hpos < maxendcol)
2542 hpos = display_string (XWINDOW (FRAME_ROOT_WINDOW (f)), vpos,
2543 XSTRING (string)->data,
2544 XSTRING (string)->size,
2545 hpos, 0, 0, hpos, maxendcol);
2546 /* Put a gap of 3 spaces between items. */
2547 if (hpos < maxendcol)
2549 int hpos1 = hpos + 3;
2550 hpos = display_string (w, vpos, "", 0, hpos, 0, 0,
2551 min (hpos1, maxendcol), maxendcol);
2555 FRAME_DESIRED_GLYPHS (f)->bufp[vpos] = 0;
2556 FRAME_DESIRED_GLYPHS (f)->highlight[vpos] = mode_line_inverse_video;
2558 /* Fill out the line with spaces. */
2559 if (maxendcol > hpos)
2560 hpos = display_string (w, vpos, "", 0, hpos, 0, 0, maxendcol, maxendcol);
2562 /* Clear the rest of the lines allocated to the menu bar. */
2563 vpos++;
2564 while (vpos < FRAME_MENU_BAR_LINES (f))
2565 get_display_line (f, vpos++, 0);
2566 #endif /* not USE_X_TOOLKIT */
2569 /* Display the mode line for window w */
2571 static void
2572 display_mode_line (w)
2573 struct window *w;
2575 register int vpos = XFASTINT (w->height) + XFASTINT (w->top) - 1;
2576 register int left = XFASTINT (w->left);
2577 register int right = XFASTINT (w->width) + left;
2578 register FRAME_PTR f = XFRAME (WINDOW_FRAME (w));
2580 line_number_displayed = 0;
2582 get_display_line (f, vpos, left);
2583 display_mode_element (w, vpos, left, 0, right, right,
2584 current_buffer->mode_line_format);
2585 FRAME_DESIRED_GLYPHS (f)->bufp[vpos] = 0;
2587 /* Make the mode line inverse video if the entire line
2588 is made of mode lines.
2589 I.e. if this window is full width,
2590 or if it is the child of a full width window
2591 (which implies that that window is split side-by-side
2592 and the rest of this line is mode lines of the sibling windows). */
2593 if (XFASTINT (w->width) == FRAME_WIDTH (f)
2594 || XFASTINT (XWINDOW (w->parent)->width) == FRAME_WIDTH (f))
2595 FRAME_DESIRED_GLYPHS (f)->highlight[vpos] = mode_line_inverse_video;
2596 #ifdef HAVE_X_WINDOWS
2597 else if (! FRAME_TERMCAP_P (f))
2599 /* For a partial width window, explicitly set face of each glyph. */
2600 int i;
2601 GLYPH *ptr = FRAME_DESIRED_GLYPHS (f)->glyphs[vpos];
2602 for (i = left; i < right; ++i)
2603 ptr[i] = FAST_MAKE_GLYPH (FAST_GLYPH_CHAR (ptr[i]), 1);
2605 #endif
2607 #ifdef HAVE_X_WINDOWS
2608 if (w == XWINDOW (f->selected_window))
2609 x_consider_frame_title (WINDOW_FRAME (w));
2610 #endif
2613 /* Contribute ELT to the mode line for window W.
2614 How it translates into text depends on its data type.
2616 VPOS is the position of the mode line being displayed.
2618 HPOS is the position (absolute on frame) where this element's text
2619 should start. The output is truncated automatically at the right
2620 edge of window W.
2622 DEPTH is the depth in recursion. It is used to prevent
2623 infinite recursion here.
2625 MINENDCOL is the hpos before which the element may not end.
2626 The element is padded at the right with spaces if nec
2627 to reach this column.
2629 MAXENDCOL is the hpos past which this element may not extend.
2630 If MINENDCOL is > MAXENDCOL, MINENDCOL takes priority.
2631 (This is necessary to make nested padding and truncation work.)
2633 Returns the hpos of the end of the text generated by ELT.
2634 The next element will receive that value as its HPOS arg,
2635 so as to concatenate the elements. */
2637 static int
2638 display_mode_element (w, vpos, hpos, depth, minendcol, maxendcol, elt)
2639 struct window *w;
2640 register int vpos, hpos;
2641 int depth;
2642 int minendcol;
2643 register int maxendcol;
2644 register Lisp_Object elt;
2646 tail_recurse:
2647 if (depth > 10)
2648 goto invalid;
2650 depth++;
2652 #ifdef SWITCH_ENUM_BUG
2653 switch ((int) XTYPE (elt))
2654 #else
2655 switch (XTYPE (elt))
2656 #endif
2658 case Lisp_String:
2660 /* A string: output it and check for %-constructs within it. */
2661 register unsigned char c;
2662 register unsigned char *this = XSTRING (elt)->data;
2664 while (hpos < maxendcol && *this)
2666 unsigned char *last = this;
2667 while ((c = *this++) != '\0' && c != '%')
2669 if (this - 1 != last)
2671 register int lim = --this - last + hpos;
2672 hpos = display_string (w, vpos, last, -1, hpos, 0, 1,
2673 hpos, min (lim, maxendcol));
2675 else /* c == '%' */
2677 register int spec_width = 0;
2679 /* We can't allow -ve args due to the "%-" construct */
2680 /* Argument specifies minwidth but not maxwidth
2681 (maxwidth can be specified by
2682 (<negative-number> . <stuff>) mode-line elements) */
2684 while ((c = *this++) >= '0' && c <= '9')
2686 spec_width = spec_width * 10 + (c - '0');
2689 spec_width += hpos;
2690 if (spec_width > maxendcol)
2691 spec_width = maxendcol;
2693 if (c == 'M')
2694 hpos = display_mode_element (w, vpos, hpos, depth,
2695 spec_width, maxendcol,
2696 Vglobal_mode_string);
2697 else if (c != 0)
2698 hpos = display_string (w, vpos,
2699 decode_mode_spec (w, c,
2700 maxendcol - hpos),
2702 hpos, 0, 1, spec_width, maxendcol);
2706 break;
2708 case Lisp_Symbol:
2709 /* A symbol: process the value of the symbol recursively
2710 as if it appeared here directly. Avoid error if symbol void.
2711 Special case: if value of symbol is a string, output the string
2712 literally. */
2714 register Lisp_Object tem;
2715 tem = Fboundp (elt);
2716 if (!NILP (tem))
2718 tem = Fsymbol_value (elt);
2719 /* If value is a string, output that string literally:
2720 don't check for % within it. */
2721 if (XTYPE (tem) == Lisp_String)
2722 hpos = display_string (w, vpos, XSTRING (tem)->data,
2723 XSTRING (tem)->size,
2724 hpos, 0, 1, minendcol, maxendcol);
2725 /* Give up right away for nil or t. */
2726 else if (!EQ (tem, elt))
2727 { elt = tem; goto tail_recurse; }
2730 break;
2732 case Lisp_Cons:
2734 register Lisp_Object car, tem;
2736 /* A cons cell: three distinct cases.
2737 If first element is a string or a cons, process all the elements
2738 and effectively concatenate them.
2739 If first element is a negative number, truncate displaying cdr to
2740 at most that many characters. If positive, pad (with spaces)
2741 to at least that many characters.
2742 If first element is a symbol, process the cadr or caddr recursively
2743 according to whether the symbol's value is non-nil or nil. */
2744 car = XCONS (elt)->car;
2745 if (XTYPE (car) == Lisp_Symbol)
2747 tem = Fboundp (car);
2748 elt = XCONS (elt)->cdr;
2749 if (XTYPE (elt) != Lisp_Cons)
2750 goto invalid;
2751 /* elt is now the cdr, and we know it is a cons cell.
2752 Use its car if CAR has a non-nil value. */
2753 if (!NILP (tem))
2755 tem = Fsymbol_value (car);
2756 if (!NILP (tem))
2757 { elt = XCONS (elt)->car; goto tail_recurse; }
2759 /* Symbol's value is nil (or symbol is unbound)
2760 Get the cddr of the original list
2761 and if possible find the caddr and use that. */
2762 elt = XCONS (elt)->cdr;
2763 if (NILP (elt))
2764 break;
2765 else if (XTYPE (elt) != Lisp_Cons)
2766 goto invalid;
2767 elt = XCONS (elt)->car;
2768 goto tail_recurse;
2770 else if (XTYPE (car) == Lisp_Int)
2772 register int lim = XINT (car);
2773 elt = XCONS (elt)->cdr;
2774 if (lim < 0)
2775 /* Negative int means reduce maximum width.
2776 DO NOT change MINENDCOL here!
2777 (20 -10 . foo) should truncate foo to 10 col
2778 and then pad to 20. */
2779 maxendcol = min (maxendcol, hpos - lim);
2780 else if (lim > 0)
2782 /* Padding specified. Don't let it be more than
2783 current maximum. */
2784 lim += hpos;
2785 if (lim > maxendcol)
2786 lim = maxendcol;
2787 /* If that's more padding than already wanted, queue it.
2788 But don't reduce padding already specified even if
2789 that is beyond the current truncation point. */
2790 if (lim > minendcol)
2791 minendcol = lim;
2793 goto tail_recurse;
2795 else if (XTYPE (car) == Lisp_String || XTYPE (car) == Lisp_Cons)
2797 register int limit = 50;
2798 /* LIMIT is to protect against circular lists. */
2799 while (XTYPE (elt) == Lisp_Cons && --limit > 0
2800 && hpos < maxendcol)
2802 hpos = display_mode_element (w, vpos, hpos, depth,
2803 hpos, maxendcol,
2804 XCONS (elt)->car);
2805 elt = XCONS (elt)->cdr;
2809 break;
2811 default:
2812 invalid:
2813 return (display_string (w, vpos, "*invalid*", -1, hpos, 0, 1,
2814 minendcol, maxendcol));
2817 end:
2818 if (minendcol > hpos)
2819 hpos = display_string (w, vpos, "", 0, hpos, 0, 1, minendcol, maxendcol);
2820 return hpos;
2823 /* Return a string for the output of a mode line %-spec for window W,
2824 generated by character C and width MAXWIDTH. */
2826 static char lots_of_dashes[] = "--------------------------------------------------------------------------------------------------------------------------------------------";
2828 static char *
2829 decode_mode_spec (w, c, maxwidth)
2830 struct window *w;
2831 register char c;
2832 register int maxwidth;
2834 Lisp_Object obj;
2835 FRAME_PTR f = XFRAME (WINDOW_FRAME (w));
2836 char *decode_mode_spec_buf = (char *) FRAME_TEMP_GLYPHS (f)->total_contents;
2838 obj = Qnil;
2839 if (maxwidth > FRAME_WIDTH (f))
2840 maxwidth = FRAME_WIDTH (f);
2842 switch (c)
2844 case 'b':
2845 obj = current_buffer->name;
2846 #if 0
2847 if (maxwidth >= 3 && XSTRING (obj)->size > maxwidth)
2849 bcopy (XSTRING (obj)->data, decode_mode_spec_buf, maxwidth - 1);
2850 decode_mode_spec_buf[maxwidth - 1] = '\\';
2851 decode_mode_spec_buf[maxwidth] = '\0';
2852 return decode_mode_spec_buf;
2854 #endif
2855 break;
2857 case 'f':
2858 obj = current_buffer->filename;
2859 #if 0
2860 if (NILP (obj))
2861 return "[none]";
2862 else if (XTYPE (obj) == Lisp_String && XSTRING (obj)->size > maxwidth)
2864 bcopy ("...", decode_mode_spec_buf, 3);
2865 bcopy (XSTRING (obj)->data + XSTRING (obj)->size - maxwidth + 3,
2866 decode_mode_spec_buf + 3, maxwidth - 3);
2867 return decode_mode_spec_buf;
2869 #endif
2870 break;
2872 case 'l':
2874 int startpos = marker_position (w->start);
2875 int line, linepos, topline;
2876 int nlines, junk;
2877 Lisp_Object tem;
2878 int height = XFASTINT (w->height);
2880 /* If we decided that this buffer isn't suitable for line numbers,
2881 don't forget that too fast. */
2882 if (EQ (w->base_line_pos, w->buffer))
2883 return "??";
2885 /* If the buffer is very big, don't waste time. */
2886 if (ZV - BEGV > line_number_display_limit)
2888 w->base_line_pos = Qnil;
2889 w->base_line_number = Qnil;
2890 return "??";
2893 if (!NILP (w->base_line_number)
2894 && !NILP (w->base_line_pos)
2895 && XFASTINT (w->base_line_pos) <= marker_position (w->start))
2897 line = XFASTINT (w->base_line_number);
2898 linepos = XFASTINT (w->base_line_pos);
2900 else
2902 line = 1;
2903 linepos = BEGV;
2906 /* Count lines from base line to window start position. */
2907 nlines = display_count_lines (linepos, startpos, startpos, &junk);
2909 topline = nlines + line;
2911 /* Determine a new base line, if the old one is too close
2912 or too far away, or if we did not have one.
2913 "Too close" means it's plausible a scroll-down would
2914 go back past it. */
2915 if (startpos == BEGV)
2917 XFASTINT (w->base_line_number) = topline;
2918 XFASTINT (w->base_line_pos) = BEGV;
2920 else if (nlines < height + 25 || nlines > height * 3 + 50
2921 || linepos == BEGV)
2923 int limit = BEGV;
2924 int position;
2925 int distance = (height * 2 + 30) * 200;
2927 if (startpos - distance > limit)
2928 limit = startpos - distance;
2930 nlines = display_count_lines (startpos, limit,
2931 -(height * 2 + 30),
2932 &position);
2933 /* If we couldn't find the lines we wanted within
2934 200 chars per line,
2935 give up on line numbers for this window. */
2936 if (position == startpos - distance)
2938 w->base_line_pos = w->buffer;
2939 w->base_line_number = Qnil;
2940 return "??";
2943 XFASTINT (w->base_line_number) = topline - nlines;
2944 XFASTINT (w->base_line_pos) = position;
2947 /* Now count lines from the start pos to point. */
2948 nlines = display_count_lines (startpos, PT, PT, &junk);
2950 /* Record that we did display the line number. */
2951 line_number_displayed = 1;
2953 /* Make the string to show. */
2954 sprintf (decode_mode_spec_buf, "%d", topline + nlines);
2955 return decode_mode_spec_buf;
2957 break;
2959 case 'm':
2960 obj = current_buffer->mode_name;
2961 break;
2963 case 'n':
2964 if (BEGV > BEG || ZV < Z)
2965 return " Narrow";
2966 break;
2968 case '*':
2969 if (!NILP (current_buffer->read_only))
2970 return "%";
2971 if (MODIFF > current_buffer->save_modified)
2972 return "*";
2973 return "-";
2975 case '+':
2976 if (MODIFF > current_buffer->save_modified)
2977 return "*";
2978 return "-";
2980 case 's':
2981 /* status of process */
2982 obj = Fget_buffer_process (Fcurrent_buffer ());
2983 if (NILP (obj))
2984 return "no process";
2985 #ifdef subprocesses
2986 obj = Fsymbol_name (Fprocess_status (obj));
2987 #endif
2988 break;
2990 case 't': /* indicate TEXT or BINARY */
2991 #ifdef MSDOS
2992 decode_mode_spec_buf[0]
2993 = NILP (current_buffer->buffer_file_type) ? "T" : "B";
2994 decode_mode_spec_buf[1] = 0;
2995 return decode_mode_spec_buf;
2996 #else /* not MSDOS */
2997 return "T";
2998 #endif /* not MSDOS */
3000 case 'p':
3002 int pos = marker_position (w->start);
3003 int total = ZV - BEGV;
3005 if (XFASTINT (w->window_end_pos) <= Z - ZV)
3007 if (pos <= BEGV)
3008 return "All";
3009 else
3010 return "Bottom";
3012 else if (pos <= BEGV)
3013 return "Top";
3014 else
3016 total = ((pos - BEGV) * 100 + total - 1) / total;
3017 /* We can't normally display a 3-digit number,
3018 so get us a 2-digit number that is close. */
3019 if (total == 100)
3020 total = 99;
3021 sprintf (decode_mode_spec_buf, "%2d%%", total);
3022 return decode_mode_spec_buf;
3026 /* Display percentage of size above the bottom of the screen. */
3027 case 'P':
3029 int toppos = marker_position (w->start);
3030 int botpos = Z - XFASTINT (w->window_end_pos);
3031 int total = ZV - BEGV;
3033 if (botpos >= ZV)
3035 if (toppos <= BEGV)
3036 return "All";
3037 else
3038 return "Bottom";
3040 else
3042 total = ((botpos - BEGV) * 100 + total - 1) / total;
3043 /* We can't normally display a 3-digit number,
3044 so get us a 2-digit number that is close. */
3045 if (total == 100)
3046 total = 99;
3047 if (toppos <= BEGV)
3048 sprintf (decode_mode_spec_buf, "Top%2d%%", total);
3049 else
3050 sprintf (decode_mode_spec_buf, "%2d%%", total);
3051 return decode_mode_spec_buf;
3055 case '%':
3056 return "%";
3058 case '[':
3060 int i;
3061 char *p;
3063 if (command_loop_level > 5)
3064 return "[[[... ";
3065 p = decode_mode_spec_buf;
3066 for (i = 0; i < command_loop_level; i++)
3067 *p++ = '[';
3068 *p = 0;
3069 return decode_mode_spec_buf;
3072 case ']':
3074 int i;
3075 char *p;
3077 if (command_loop_level > 5)
3078 return " ...]]]";
3079 p = decode_mode_spec_buf;
3080 for (i = 0; i < command_loop_level; i++)
3081 *p++ = ']';
3082 *p = 0;
3083 return decode_mode_spec_buf;
3086 case '-':
3088 register char *p;
3089 register int i;
3091 if (maxwidth < sizeof (lots_of_dashes))
3092 return lots_of_dashes;
3093 else
3095 for (p = decode_mode_spec_buf, i = maxwidth; i > 0; i--)
3096 *p++ = '-';
3097 *p = '\0';
3099 return decode_mode_spec_buf;
3103 if (XTYPE (obj) == Lisp_String)
3104 return (char *) XSTRING (obj)->data;
3105 else
3106 return "";
3109 /* Count up to N lines starting from FROM.
3110 But don't go beyond LIMIT.
3111 Return the number of lines thus found (always positive).
3112 Store the position after what was found into *POS_PTR. */
3114 static int
3115 display_count_lines (from, limit, n, pos_ptr)
3116 int from, limit, n;
3117 int *pos_ptr;
3119 int oldbegv = BEGV;
3120 int oldzv = ZV;
3121 int shortage = 0;
3123 if (limit < from)
3124 BEGV = limit;
3125 else
3126 ZV = limit;
3128 *pos_ptr = scan_buffer ('\n', from, n, &shortage, 0);
3130 ZV = oldzv;
3131 BEGV = oldbegv;
3133 if (n < 0)
3134 /* When scanning backwards, scan_buffer stops *after* the last newline
3135 it finds, but does count it. Compensate for that. */
3136 return - n - shortage - (*pos_ptr != limit);
3137 return n - shortage;
3140 /* Display STRING on one line of window W, starting at HPOS.
3141 Display at position VPOS. Caller should have done get_display_line.
3142 If VPOS == -1, display it as the current frame's title.
3143 LENGTH is the length of STRING, or -1 meaning STRING is null-terminated.
3145 TRUNCATE is GLYPH to display at end if truncated. Zero for none.
3147 MINCOL is the first column ok to end at. (Pad with spaces to this col.)
3148 MAXCOL is the last column ok to end at. Truncate here.
3149 -1 for MINCOL or MAXCOL means no explicit minimum or maximum.
3150 Both count from the left edge of the frame, as does HPOS.
3151 The right edge of W is an implicit maximum.
3152 If TRUNCATE is nonzero, the implicit maximum is one column before the edge.
3154 OBEY_WINDOW_WIDTH says to put spaces or vertical bars
3155 at the place where the current window ends in this line
3156 and not display anything beyond there. Otherwise, only MAXCOL
3157 controls where to stop output.
3159 Returns ending hpos. */
3161 static int
3162 display_string (w, vpos, string, length, hpos, truncate,
3163 obey_window_width, mincol, maxcol)
3164 struct window *w;
3165 unsigned char *string;
3166 int length;
3167 int vpos, hpos;
3168 GLYPH truncate;
3169 int obey_window_width;
3170 int mincol, maxcol;
3172 register int c;
3173 register GLYPH *p1;
3174 int hscroll = XINT (w->hscroll);
3175 int tab_width = XINT (XBUFFER (w->buffer)->tab_width);
3176 register GLYPH *start;
3177 register GLYPH *end;
3178 FRAME_PTR f = XFRAME (WINDOW_FRAME (w));
3179 struct frame_glyphs *desired_glyphs = FRAME_DESIRED_GLYPHS (f);
3180 GLYPH *p1start = desired_glyphs->glyphs[vpos] + hpos;
3181 int window_width = XFASTINT (w->width);
3183 /* Use the standard display table, not the window's display table.
3184 We don't want the mode line in rot13. */
3185 register struct Lisp_Vector *dp = 0;
3186 int i;
3188 if (XTYPE (Vstandard_display_table) == Lisp_Vector
3189 && XVECTOR (Vstandard_display_table)->size == DISP_TABLE_SIZE)
3190 dp = XVECTOR (Vstandard_display_table);
3192 if (tab_width <= 0 || tab_width > 1000) tab_width = 8;
3194 p1 = p1start;
3195 start = desired_glyphs->glyphs[vpos] + XFASTINT (w->left);
3197 if (obey_window_width)
3199 end = start + window_width - (truncate != 0);
3201 if ((window_width + XFASTINT (w->left)) != FRAME_WIDTH (f))
3203 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
3205 int i;
3207 for (i = 0; i < VERTICAL_SCROLL_BAR_WIDTH; i++)
3208 *end-- = ' ';
3210 else
3211 *end-- = '|';
3215 if (! obey_window_width
3216 || (maxcol >= 0 && end - desired_glyphs->glyphs[vpos] > maxcol))
3217 end = desired_glyphs->glyphs[vpos] + maxcol;
3219 /* Store 0 in charstart for these columns. */
3220 for (i = (hpos >= 0 ? hpos : 0); i < end - p1start + hpos; i++)
3221 desired_glyphs->charstarts[vpos][i] = 0;
3223 if (maxcol >= 0 && mincol > maxcol)
3224 mincol = maxcol;
3226 while (p1 < end)
3228 if (length == 0)
3229 break;
3230 c = *string++;
3231 /* Specified length. */
3232 if (length >= 0)
3233 length--;
3234 /* Unspecified length (null-terminated string). */
3235 else if (c == 0)
3236 break;
3238 if (c >= 040 && c < 0177
3239 && (dp == 0 || XTYPE (DISP_CHAR_VECTOR (dp, c)) != Lisp_Vector))
3241 if (p1 >= start)
3242 *p1 = c;
3243 p1++;
3245 else if (c == '\t')
3249 if (p1 >= start && p1 < end)
3250 *p1 = SPACEGLYPH;
3251 p1++;
3253 while ((p1 - start + hscroll - (hscroll > 0)) % tab_width);
3255 else if (dp != 0 && XTYPE (DISP_CHAR_VECTOR (dp, c)) == Lisp_Vector)
3257 p1 = copy_part_of_rope (f, p1, start,
3258 XVECTOR (DISP_CHAR_VECTOR (dp, c))->contents,
3259 XVECTOR (DISP_CHAR_VECTOR (dp, c))->size,
3262 else if (c < 0200 && ! NILP (buffer_defaults.ctl_arrow))
3264 if (p1 >= start)
3265 *p1 = fix_glyph (f, (dp && XTYPE (DISP_CTRL_GLYPH (dp)) == Lisp_Int
3266 ? XINT (DISP_CTRL_GLYPH (dp)) : '^'),
3268 p1++;
3269 if (p1 >= start && p1 < end)
3270 *p1 = c ^ 0100;
3271 p1++;
3273 else
3275 if (p1 >= start)
3276 *p1 = fix_glyph (f, (dp && XTYPE (DISP_ESCAPE_GLYPH (dp)) == Lisp_Int
3277 ? XINT (DISP_ESCAPE_GLYPH (dp)) : '\\'),
3279 p1++;
3280 if (p1 >= start && p1 < end)
3281 *p1 = (c >> 6) + '0';
3282 p1++;
3283 if (p1 >= start && p1 < end)
3284 *p1 = (7 & (c >> 3)) + '0';
3285 p1++;
3286 if (p1 >= start && p1 < end)
3287 *p1 = (7 & c) + '0';
3288 p1++;
3292 if (c && length > 0)
3294 p1 = end;
3295 if (truncate) *p1++ = fix_glyph (f, truncate, 0);
3297 else if (mincol >= 0)
3299 end = desired_glyphs->glyphs[vpos] + mincol;
3300 while (p1 < end)
3301 *p1++ = SPACEGLYPH;
3305 register int len = p1 - desired_glyphs->glyphs[vpos];
3307 if (len > desired_glyphs->used[vpos])
3308 desired_glyphs->used[vpos] = len;
3309 desired_glyphs->glyphs[vpos][desired_glyphs->used[vpos]] = 0;
3311 return len;
3315 void
3316 syms_of_xdisp ()
3318 staticpro (&last_arrow_position);
3319 staticpro (&last_arrow_string);
3320 last_arrow_position = Qnil;
3321 last_arrow_string = Qnil;
3323 DEFVAR_LISP ("global-mode-string", &Vglobal_mode_string,
3324 "String (or mode line construct) included (normally) in `mode-line-format'.");
3325 Vglobal_mode_string = Qnil;
3327 DEFVAR_LISP ("overlay-arrow-position", &Voverlay_arrow_position,
3328 "Marker for where to display an arrow on top of the buffer text.\n\
3329 This must be the beginning of a line in order to work.\n\
3330 See also `overlay-arrow-string'.");
3331 Voverlay_arrow_position = Qnil;
3333 DEFVAR_LISP ("overlay-arrow-string", &Voverlay_arrow_string,
3334 "String to display as an arrow. See also `overlay-arrow-position'.");
3335 Voverlay_arrow_string = Qnil;
3337 DEFVAR_INT ("scroll-step", &scroll_step,
3338 "*The number of lines to try scrolling a window by when point moves out.\n\
3339 If that fails to bring point back on frame, point is centered instead.\n\
3340 If this is zero, point is always centered after it moves off frame.");
3342 DEFVAR_INT ("debug-end-pos", &debug_end_pos, "Don't ask");
3344 DEFVAR_BOOL ("truncate-partial-width-windows",
3345 &truncate_partial_width_windows,
3346 "*Non-nil means truncate lines in all windows less than full frame wide.");
3347 truncate_partial_width_windows = 1;
3349 DEFVAR_BOOL ("mode-line-inverse-video", &mode_line_inverse_video,
3350 "*Non-nil means use inverse video for the mode line.");
3351 mode_line_inverse_video = 1;
3353 DEFVAR_INT ("line-number-display-limit", &line_number_display_limit,
3354 "*Maximum buffer size for which line number should be displayed.");
3355 line_number_display_limit = 1000000;
3357 DEFVAR_BOOL ("highlight-nonselected-windows", &highlight_nonselected_windows,
3358 "*Non-nil means highlight region even in nonselected windows.");
3359 highlight_nonselected_windows = 1;
3362 /* initialize the window system */
3363 init_xdisp ()
3365 Lisp_Object root_window;
3366 #ifndef COMPILER_REGISTER_BUG
3367 register
3368 #endif /* COMPILER_REGISTER_BUG */
3369 struct window *mini_w;
3371 this_line_bufpos = 0;
3373 mini_w = XWINDOW (minibuf_window);
3374 root_window = FRAME_ROOT_WINDOW (XFRAME (WINDOW_FRAME (mini_w)));
3376 echo_area_glyphs = 0;
3377 previous_echo_glyphs = 0;
3379 if (!noninteractive)
3381 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (root_window)));
3382 XFASTINT (XWINDOW (root_window)->top) = 0;
3383 set_window_height (root_window, FRAME_HEIGHT (f) - 1, 0);
3384 XFASTINT (mini_w->top) = FRAME_HEIGHT (f) - 1;
3385 set_window_height (minibuf_window, 1, 0);
3387 XFASTINT (XWINDOW (root_window)->width) = FRAME_WIDTH (f);
3388 XFASTINT (mini_w->width) = FRAME_WIDTH (f);