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)
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. */
23 /*#include <ctype.h>*/
29 #include "dispextern.h"
35 #include "termhooks.h"
36 #include "intervals.h"
39 extern void set_frame_menubar ();
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
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. */
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. */
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
;
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. */
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. */
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 */
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. */
204 if (noninteractive_need_newline
)
206 noninteractive_need_newline
= 0;
207 fwrite (m
, len
, 1, stderr
);
208 if (cursor_in_echo_area
== 0)
209 fprintf (stderr
, "\n");
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
))
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
)));
230 echo_area_glyphs
= m
;
231 echo_area_glyphs_length
= len
;
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 ();
247 message2 (m
, (m
? strlen (m
) : 0));
250 /* Truncate what will be displayed in the echo area
251 the next time we display it--but don't redisplay it now. */
254 truncate_echo_area (len
)
257 /* A null message buffer means that the frame hasn't really been
258 initialized yet. Error messages get reported properly by
259 cmd_error, so this must be just an informative message; toss it. */
260 if (!noninteractive
&& INTERACTIVE
&& FRAME_MESSAGE_BUF (selected_frame
))
261 echo_area_glyphs_length
= len
;
264 /* Nonzero if FRAME_MESSAGE_BUF (selected_frame) is being used by print;
265 zero if being used by message. */
266 int message_buf_print
;
268 /* Dump an informative message to the minibuf. If m is 0, clear out
269 any existing message, and let the minibuffer text show through. */
272 message (m
, a1
, a2
, a3
)
279 if (noninteractive_need_newline
)
281 noninteractive_need_newline
= 0;
282 fprintf (stderr
, m
, a1
, a2
, a3
);
283 if (cursor_in_echo_area
== 0)
284 fprintf (stderr
, "\n");
288 else if (INTERACTIVE
)
290 /* The frame whose minibuffer we're going to display the message on.
291 It may be larger than the selected frame, so we need
292 to use its buffer, not the selected frame's buffer. */
293 FRAME_PTR echo_frame
;
295 choose_minibuf_frame ();
296 echo_frame
= XFRAME (WINDOW_FRAME (XWINDOW (minibuf_window
)));
298 echo_frame
= selected_frame
;
301 /* A null message buffer means that the frame hasn't really been
302 initialized yet. Error messages get reported properly by
303 cmd_error, so this must be just an informative message; toss it. */
304 if (FRAME_MESSAGE_BUF (echo_frame
))
315 len
= doprnt (FRAME_MESSAGE_BUF (echo_frame
),
316 FRAME_WIDTH (echo_frame
), m
, 0, 3, a
);
318 len
= doprnt (FRAME_MESSAGE_BUF (echo_frame
),
319 FRAME_WIDTH (echo_frame
), m
, 0, 3, &a1
);
320 #endif /* NO_ARG_ARRAY */
322 message2 (FRAME_MESSAGE_BUF (echo_frame
), len
);
327 /* Print should start at the beginning of the message
329 message_buf_print
= 0;
341 choose_minibuf_frame ();
344 f
= XFRAME (WINDOW_FRAME (XWINDOW (minibuf_window
)));
346 if (! FRAME_VISIBLE_P (f
))
351 redraw_garbaged_frames ();
355 if (echo_area_glyphs
|| minibuf_level
== 0)
357 vpos
= XFASTINT (XWINDOW (minibuf_window
)->top
);
358 get_display_line (f
, vpos
, 0);
359 display_string (XWINDOW (minibuf_window
), vpos
,
360 echo_area_glyphs
? echo_area_glyphs
: "",
361 echo_area_glyphs
? echo_area_glyphs_length
: -1,
362 0, 0, 0, 0, FRAME_WIDTH (f
));
364 /* If desired cursor location is on this line, put it at end of text */
365 if (FRAME_CURSOR_Y (f
) == vpos
)
366 FRAME_CURSOR_X (f
) = FRAME_DESIRED_GLYPHS (f
)->used
[vpos
];
368 /* Fill the rest of the minibuffer window with blank lines. */
373 i
< vpos
+ XFASTINT (XWINDOW (minibuf_window
)->height
); i
++)
375 get_display_line (f
, i
, 0);
376 display_string (XWINDOW (minibuf_window
), vpos
,
377 "", 0, 0, 0, 0, 0, FRAME_WIDTH (f
));
381 else if (!EQ (minibuf_window
, selected_window
))
382 windows_or_buffers_changed
++;
384 if (EQ (minibuf_window
, selected_window
))
385 this_line_bufpos
= 0;
387 previous_echo_glyphs
= echo_area_glyphs
;
390 #ifdef HAVE_X_WINDOWS
391 /* I'm trying this out because I saw Unimpress use it, but it's
392 possible that this may mess adversely with some window managers. -jla
394 Wouldn't it be nice to use something like mode-line-format to
395 describe frame titles? -JimB */
397 /* Change the title of the frame to the name of the buffer displayed
398 in the currently selected window. Don't do this for minibuffer frames,
399 and don't do it when there's only one non-minibuffer frame. */
401 x_consider_frame_title (frame
)
404 FRAME_PTR f
= XFRAME (frame
);
406 if (FRAME_X_P (f
) && ! FRAME_MINIBUF_ONLY_P (f
))
411 if (! EQ (Fnext_frame (frame
, Qnil
), frame
))
412 title
= XBUFFER (XWINDOW (f
->selected_window
)->buffer
)->name
;
414 x_implicitly_set_name (f
, title
, Qnil
);
419 /* Prepare for redisplay by updating menu-bar item lists when appropriate.
420 This can't be done in `redisplay' itself because it can call eval. */
425 register struct window
*w
= XWINDOW (selected_window
);
431 /* Set the visible flags for all frames.
432 Do this before checking for resized or garbaged frames; they want
433 to know if their frames are visible.
434 See the comment in frame.h for FRAME_SAMPLE_VISIBILITY. */
436 Lisp_Object tail
, frame
;
438 FOR_EACH_FRAME (tail
, frame
)
439 FRAME_SAMPLE_VISIBILITY (XFRAME (frame
));
442 /* Notice any pending interrupt request to change frame size. */
443 do_pending_window_change ();
447 redraw_garbaged_frames ();
451 if (clip_changed
|| windows_or_buffers_changed
)
454 /* Detect case that we need to write a star in the mode line. */
455 if (XFASTINT (w
->last_modified
) < MODIFF
456 && XFASTINT (w
->last_modified
) <= current_buffer
->save_modified
)
458 w
->update_mode_line
= Qt
;
459 if (buffer_shared
> 1)
463 all_windows
= update_mode_lines
|| buffer_shared
> 1;
465 /* If specs for an arrow have changed, do thorough redisplay
466 to ensure we remove any arrow that should no longer exist. */
467 if (! EQ (Voverlay_arrow_position
, last_arrow_position
)
468 || ! EQ (Voverlay_arrow_string
, last_arrow_string
))
469 all_windows
= 1, clip_changed
= 1;
471 /* Update the menu bar item lists, if appropriate.
472 This has to be done before any actual redisplay
473 or generation of display lines. */
476 Lisp_Object tail
, frame
;
478 FOR_EACH_FRAME (tail
, frame
)
480 FRAME_PTR f
= XFRAME (frame
);
482 if (FRAME_VISIBLE_P (f
))
483 update_menu_bars (FRAME_ROOT_WINDOW (f
));
486 else if (FRAME_VISIBLE_P (selected_frame
))
487 update_menu_bar (selected_window
);
490 /* Do a frame update, taking possible shortcuts into account.
491 This is the main external entry point for redisplay.
493 If the last redisplay displayed an echo area message and that
494 message is no longer requested, we clear the echo area
495 or bring back the minibuffer if that is in use.
497 Do not call eval from within this function.
498 Calls to eval after the call to echo_area_display would confuse
499 the display_line mechanism and would cause a crash.
500 Calls to eval before that point will work most of the time,
501 but can still lose, because this function
502 can be called from signal handlers; with alarms set up;
503 or with synchronous processes running.
505 See Fcall_process; if you called it from here, it could be
506 entered recursively. */
511 register struct window
*w
= XWINDOW (selected_window
);
515 register int tlbufpos
, tlendpos
;
517 extern int input_pending
;
522 /* Set the visible flags for all frames.
523 Do this before checking for resized or garbaged frames; they want
524 to know if their frames are visible.
525 See the comment in frame.h for FRAME_SAMPLE_VISIBILITY. */
527 Lisp_Object tail
, frame
;
529 FOR_EACH_FRAME (tail
, frame
)
530 FRAME_SAMPLE_VISIBILITY (XFRAME (frame
));
533 /* Notice any pending interrupt request to change frame size. */
534 do_pending_window_change ();
538 redraw_garbaged_frames ();
542 if (clip_changed
|| windows_or_buffers_changed
)
545 /* Detect case that we need to write a star in the mode line. */
546 if (XFASTINT (w
->last_modified
) < MODIFF
547 && XFASTINT (w
->last_modified
) <= current_buffer
->save_modified
)
549 w
->update_mode_line
= Qt
;
550 if (buffer_shared
> 1)
554 FRAME_SCROLL_BOTTOM_VPOS (XFRAME (w
->frame
)) = -1;
556 all_windows
= update_mode_lines
|| buffer_shared
> 1;
558 /* If specs for an arrow have changed, do thorough redisplay
559 to ensure we remove any arrow that should no longer exist. */
560 if (! EQ (Voverlay_arrow_position
, last_arrow_position
)
561 || ! EQ (Voverlay_arrow_string
, last_arrow_string
))
562 all_windows
= 1, clip_changed
= 1;
564 /* Normally the message* functions will have already displayed and
565 updated the echo area, but the frame may have been trashed, or
566 the update may have been preempted, so display the echo area
568 if (echo_area_glyphs
|| previous_echo_glyphs
)
570 echo_area_display ();
574 /* If showing region, and mark has changed, must redisplay whole window. */
575 if (((!NILP (Vtransient_mark_mode
)
576 && !NILP (XBUFFER (w
->buffer
)->mark_active
))
577 != !NILP (w
->region_showing
))
578 || (!NILP (w
->region_showing
)
579 && !EQ (w
->region_showing
,
580 Fmarker_position (XBUFFER (w
->buffer
)->mark
))))
581 this_line_bufpos
= -1;
583 tlbufpos
= this_line_bufpos
;
584 tlendpos
= this_line_endpos
;
585 if (!all_windows
&& tlbufpos
> 0 && NILP (w
->update_mode_line
)
586 && FRAME_VISIBLE_P (XFRAME (w
->frame
))
587 /* Make sure recorded data applies to current buffer, etc */
588 && this_line_buffer
== current_buffer
589 && current_buffer
== XBUFFER (w
->buffer
)
590 && NILP (w
->force_start
)
591 /* Point must be on the line that we have info recorded about */
593 && point
<= Z
- tlendpos
594 /* All text outside that line, including its final newline,
596 && (XFASTINT (w
->last_modified
) >= MODIFF
597 || (beg_unchanged
>= tlbufpos
- 1
599 /* If selective display, can't optimize
600 if the changes start at the beginning of the line. */
601 && ((XTYPE (current_buffer
->selective_display
) == Lisp_Int
602 && XINT (current_buffer
->selective_display
) > 0
603 ? (beg_unchanged
>= tlbufpos
606 && end_unchanged
>= tlendpos
607 && Z
- GPT
>= tlendpos
)))
609 if (tlbufpos
> BEGV
&& FETCH_CHAR (tlbufpos
- 1) != '\n'
611 || FETCH_CHAR (tlbufpos
) == '\n'))
612 /* Former continuation line has disappeared by becoming empty */
614 else if (XFASTINT (w
->last_modified
) < MODIFF
615 || MINI_WINDOW_P (w
))
618 overlay_arrow_seen
= 0;
619 display_text_line (w
, tlbufpos
, this_line_vpos
, this_line_start_hpos
,
620 pos_tab_offset (w
, tlbufpos
));
621 /* If line contains point, is not continued,
622 and ends at same distance from eob as before, we win */
623 if (cursor_vpos
>= 0 && this_line_bufpos
624 && this_line_endpos
== tlendpos
)
626 if (XFASTINT (w
->width
) != FRAME_WIDTH (XFRAME (WINDOW_FRAME (w
))))
627 preserve_other_columns (w
);
633 else if (point
== XFASTINT (w
->last_point
))
637 do_pending_window_change ();
642 /* If highlighting the region, we can't just move the cursor. */
643 else if (! (!NILP (Vtransient_mark_mode
)
644 && !NILP (current_buffer
->mark_active
))
645 && NILP (w
->region_showing
))
647 pos
= *compute_motion (tlbufpos
, 0,
648 XINT (w
->hscroll
) ? 1 - XINT (w
->hscroll
) : 0,
649 point
, 2, - (1 << (SHORTBITS
- 1)),
650 window_internal_width (w
) - 1,
652 pos_tab_offset (w
, tlbufpos
));
655 FRAME_CURSOR_X (selected_frame
)
656 = XFASTINT (w
->left
) + max (pos
.hpos
, 0);
657 FRAME_CURSOR_Y (selected_frame
) = this_line_vpos
;
664 /* Text changed drastically or point moved off of line */
665 cancel_line (this_line_vpos
, selected_frame
);
668 this_line_bufpos
= 0;
669 all_windows
|= buffer_shared
> 1;
673 Lisp_Object tail
, frame
;
675 #ifdef HAVE_X_WINDOWS
676 /* Since we're doing a thorough redisplay, we might as well
677 recompute all our display faces. */
678 clear_face_vector ();
681 /* Recompute # windows showing selected buffer.
682 This will be incremented each time such a window is displayed. */
685 FOR_EACH_FRAME (tail
, frame
)
687 FRAME_PTR f
= XFRAME (frame
);
689 /* Mark all the scroll bars to be removed; we'll redeem the ones
690 we want when we redisplay their windows. */
691 if (condemn_scroll_bars_hook
)
692 (*condemn_scroll_bars_hook
) (f
);
694 if (FRAME_VISIBLE_P (f
))
695 redisplay_windows (FRAME_ROOT_WINDOW (f
));
696 #ifdef HAVE_X_WINDOWS
697 else if (FRAME_ICONIFIED_P (f
)
698 && ! MINI_WINDOW_P (XWINDOW (f
->selected_window
)))
699 x_consider_frame_title (frame
);
702 /* Any scroll bars which redisplay_windows should have nuked
703 should now go away. */
704 if (judge_scroll_bars_hook
)
705 (*judge_scroll_bars_hook
) (f
);
708 else if (FRAME_VISIBLE_P (selected_frame
))
710 redisplay_window (selected_window
, 1);
711 if (XFASTINT (w
->width
) != FRAME_WIDTH (selected_frame
))
712 preserve_other_columns (w
);
716 /* Prevent various kinds of signals during display update.
717 stdio is not robust about handling signals,
718 which can cause an apparent I/O error. */
730 for (tail
= Vframe_list
; CONSP (tail
); tail
= XCONS (tail
)->cdr
)
734 if (XTYPE (XCONS (tail
)->car
) != Lisp_Frame
)
737 f
= XFRAME (XCONS (tail
)->car
);
738 if (FRAME_VISIBLE_P (f
))
740 pause
|= update_frame (f
, 0, 0);
742 mark_window_display_accurate (f
->root_window
, 1);
747 #endif /* MULTI_FRAME */
749 if (FRAME_VISIBLE_P (selected_frame
))
750 pause
= update_frame (selected_frame
, 0, 0);
752 /* We may have called echo_area_display at the top of this
753 function. If the echo area is on another frame, that may
754 have put text on a frame other than the selected one, so the
755 above call to update_frame would not have caught it. Catch
758 FRAME_PTR mini_frame
=
759 XFRAME (WINDOW_FRAME (XWINDOW (minibuf_window
)));
761 if (mini_frame
!= selected_frame
)
762 pause
|= update_frame (mini_frame
, 0, 0);
766 /* If frame does not match, prevent doing single-line-update next time.
767 Also, don't forget to check every line to update the arrow. */
770 this_line_bufpos
= 0;
771 if (!NILP (last_arrow_position
))
773 last_arrow_position
= Qt
;
774 last_arrow_string
= Qt
;
776 /* If we pause after scrolling, some lines in current_frame
777 may be null, so preserve_other_columns won't be able to
778 preserve all the vertical-bar separators. So, avoid using it
780 if (XFASTINT (w
->width
) != FRAME_WIDTH (selected_frame
))
781 update_mode_lines
= 1;
784 /* Now text on frame agrees with windows, so
785 put info into the windows for partial redisplay to follow */
789 register struct buffer
*b
= XBUFFER (w
->buffer
);
791 blank_end_of_window
= 0;
793 unchanged_modified
= BUF_MODIFF (b
);
794 beg_unchanged
= BUF_GPT (b
) - BUF_BEG (b
);
795 end_unchanged
= BUF_Z (b
) - BUF_GPT (b
);
797 XFASTINT (w
->last_point
) = BUF_PT (b
);
798 XFASTINT (w
->last_point_x
) = FRAME_CURSOR_X (selected_frame
);
799 XFASTINT (w
->last_point_y
) = FRAME_CURSOR_Y (selected_frame
);
802 mark_window_display_accurate (FRAME_ROOT_WINDOW (selected_frame
), 1);
805 w
->update_mode_line
= Qnil
;
806 XFASTINT (w
->last_modified
) = BUF_MODIFF (b
);
807 w
->window_end_valid
= Qt
;
808 last_arrow_position
= Voverlay_arrow_position
;
809 last_arrow_string
= Voverlay_arrow_string
;
811 update_mode_lines
= 0;
812 windows_or_buffers_changed
= 0;
815 /* Start SIGIO interrupts coming again.
816 Having them off during the code above
817 makes it less likely one will discard output,
818 but not impossible, since there might be stuff
819 in the system buffer here.
820 But it is much hairier to try to do anything about that. */
826 /* Change frame size now if a change is pending. */
827 do_pending_window_change ();
830 /* Redisplay, but leave alone any recent echo area message
831 unless another message has been requested in its place.
833 This is useful in situations where you need to redisplay but no
834 user action has occurred, making it inappropriate for the message
835 area to be cleared. See tracking_off and
836 wait_reading_process_input for examples of these situations. */
838 redisplay_preserve_echo_area ()
840 if (echo_area_glyphs
== 0 && previous_echo_glyphs
!= 0)
842 echo_area_glyphs
= previous_echo_glyphs
;
844 echo_area_glyphs
= 0;
851 mark_window_display_accurate (window
, flag
)
855 register struct window
*w
;
857 for (;!NILP (window
); window
= w
->next
)
859 if (XTYPE (window
) != Lisp_Window
) abort ();
860 w
= XWINDOW (window
);
862 if (!NILP (w
->buffer
))
864 XFASTINT (w
->last_modified
)
866 : XBUFFER (w
->buffer
) == current_buffer
867 ? MODIFF
: BUF_MODIFF (XBUFFER (w
->buffer
));
869 /* Record if we are showing a region, so can make sure to
870 update it fully at next redisplay. */
871 w
->region_showing
= (!NILP (Vtransient_mark_mode
)
872 && !NILP (XBUFFER (w
->buffer
)->mark_active
)
873 ? Fmarker_position (XBUFFER (w
->buffer
)->mark
)
877 w
->window_end_valid
= Qt
;
878 w
->update_mode_line
= Qnil
;
880 if (!NILP (w
->vchild
))
881 mark_window_display_accurate (w
->vchild
, flag
);
882 if (!NILP (w
->hchild
))
883 mark_window_display_accurate (w
->hchild
, flag
);
888 last_arrow_position
= Voverlay_arrow_position
;
889 last_arrow_string
= Voverlay_arrow_string
;
893 /* t is unequal to any useful value of Voverlay_arrow_... */
894 last_arrow_position
= Qt
;
895 last_arrow_string
= Qt
;
899 /* Update the menu bar item lists for WINDOW
900 and its subwindows and siblings.
901 This has to be done before we start to fill in any display lines,
902 because it can call eval. */
905 update_menu_bars (window
)
908 for (; !NILP (window
); window
= XWINDOW (window
)->next
)
909 update_menu_bar (window
);
912 /* Update the menu bar item list for window WINDOW and its subwindows. */
915 update_menu_bar (window
)
918 register struct window
*w
= XWINDOW (window
);
919 struct buffer
*old
= current_buffer
;
920 FRAME_PTR f
= XFRAME (WINDOW_FRAME (w
));
922 /* If this is a combination window, do its children; that's all. */
924 if (!NILP (w
->vchild
))
926 update_menu_bars (w
->vchild
);
929 if (!NILP (w
->hchild
))
931 update_menu_bars (w
->hchild
);
934 if (NILP (w
->buffer
))
937 if (update_mode_lines
)
938 w
->update_mode_line
= Qt
;
940 /* When we reach a frame's selected window, redo the frame's menu bar. */
941 if (!NILP (w
->update_mode_line
)
943 && FRAME_EXTERNAL_MENU_BAR (f
)
945 && FRAME_MENU_BAR_LINES (f
) > 0
947 && EQ (FRAME_SELECTED_WINDOW (f
), window
))
949 /* If the user has switched buffers or windows, we need to
950 recompute to reflect the new bindings. But we'll
951 recompute when update_mode_lines is set too; that means
952 that people can use force-mode-line-update to request
953 that the menu bar be recomputed. The adverse effect on
954 the rest of the redisplay algorithm is about the same as
955 windows_or_buffers_changed anyway. */
956 if (windows_or_buffers_changed
958 || (XFASTINT (w
->last_modified
) < MODIFF
959 && (XFASTINT (w
->last_modified
)
960 <= XBUFFER (w
->buffer
)->save_modified
)))
962 struct buffer
*prev
= current_buffer
;
963 current_buffer
= XBUFFER (w
->buffer
);
964 FRAME_MENU_BAR_ITEMS (f
) = menu_bar_items (FRAME_MENU_BAR_ITEMS (f
));
965 current_buffer
= prev
;
967 set_frame_menubar (f
);
968 #endif /* USE_X_TOOLKIT */
975 /* Redisplay WINDOW and its subwindows and siblings. */
978 redisplay_windows (window
)
981 for (; !NILP (window
); window
= XWINDOW (window
)->next
)
982 redisplay_window (window
, 0);
985 /* Redisplay window WINDOW and its subwindows. */
988 redisplay_window (window
, just_this_one
)
992 register struct window
*w
= XWINDOW (window
);
993 FRAME_PTR f
= XFRAME (WINDOW_FRAME (w
));
995 register int lpoint
= point
;
996 struct buffer
*old
= current_buffer
;
997 register int width
= window_internal_width (w
) - 1;
999 register int hscroll
= XINT (w
->hscroll
);
1000 struct position pos
;
1003 int window_needs_modeline
;
1005 if (FRAME_HEIGHT (f
) == 0) abort (); /* Some bug zeros some core */
1007 /* If this is a combination window, do its children; that's all. */
1009 if (!NILP (w
->vchild
))
1011 redisplay_windows (w
->vchild
);
1014 if (!NILP (w
->hchild
))
1016 redisplay_windows (w
->hchild
);
1019 if (NILP (w
->buffer
))
1022 height
= window_internal_height (w
);
1024 if (MINI_WINDOW_P (w
))
1026 if (w
== XWINDOW (minibuf_window
))
1028 if (echo_area_glyphs
)
1029 /* We've already displayed the echo area glyphs, if any. */
1030 goto finish_scroll_bars
;
1034 /* This is a minibuffer, but it's not the currently active one, so
1036 int vpos
= XFASTINT (XWINDOW (FRAME_MINIBUF_WINDOW (f
))->top
);
1039 for (i
= 0; i
< height
; i
++)
1041 get_display_line (f
, vpos
+ i
, 0);
1042 display_string (w
, vpos
+ i
, "", 0, 0, 0, 1, 0, width
);
1045 goto finish_scroll_bars
;
1049 if (update_mode_lines
)
1050 w
->update_mode_line
= Qt
;
1052 /* Otherwise set up data on this window; select its buffer and point value */
1054 current_buffer
= XBUFFER (w
->buffer
);
1057 /* Count number of windows showing the selected buffer. */
1060 && current_buffer
== XBUFFER (XWINDOW (selected_window
)->buffer
))
1063 /* POINT refers normally to the selected window.
1064 For any other window, set up appropriate value. */
1066 if (!EQ (window
, selected_window
))
1068 SET_PT (marker_position (w
->pointm
));
1072 Fset_marker (w
->pointm
, make_number (point
), Qnil
);
1074 else if (point
> (ZV
- 1))
1077 Fset_marker (w
->pointm
, make_number (point
), Qnil
);
1081 /* If window-start is screwed up, choose a new one. */
1082 if (XMARKER (w
->start
)->buffer
!= current_buffer
)
1085 startp
= marker_position (w
->start
);
1087 /* Handle case where place to start displaying has been specified,
1088 unless the specified location is outside the accessible range. */
1089 if (!NILP (w
->force_start
))
1091 /* Forget any recorded base line for line number display. */
1092 w
->base_line_number
= Qnil
;
1093 w
->update_mode_line
= Qt
;
1094 w
->force_start
= Qnil
;
1095 XFASTINT (w
->last_modified
) = 0;
1096 if (startp
< BEGV
) startp
= BEGV
;
1097 if (startp
> ZV
) startp
= ZV
;
1098 try_window (window
, startp
);
1099 if (cursor_vpos
< 0)
1101 /* ??? What should happen here if highlighting a region? */
1102 /* If point does not appear, move point so it does appear */
1103 pos
= *compute_motion (startp
, 0,
1104 ((EQ (window
, minibuf_window
) && startp
== 1)
1105 ? minibuf_prompt_width
: 0)
1107 (hscroll
? 1 - hscroll
: 0),
1109 - (1 << (SHORTBITS
- 1)),
1110 width
, hscroll
, pos_tab_offset (w
, startp
));
1111 SET_PT (pos
.bufpos
);
1112 if (w
!= XWINDOW (selected_window
))
1113 Fset_marker (w
->pointm
, make_number (point
), Qnil
);
1116 if (current_buffer
== old
)
1118 FRAME_CURSOR_X (f
) = max (0, pos
.hpos
) + XFASTINT (w
->left
);
1119 FRAME_CURSOR_Y (f
) = pos
.vpos
+ XFASTINT (w
->top
);
1125 /* Handle case where text has not changed, only point,
1126 and it has not moved off the frame */
1128 /* This code is not used for minibuffer for the sake of
1129 the case of redisplaying to replace an echo area message;
1130 since in that case the minibuffer contents per se are usually unchanged.
1131 This code is of no real use in the minibuffer since
1132 the handling of this_line_bufpos, etc.,
1133 in redisplay handles the same cases. */
1135 if (XFASTINT (w
->last_modified
) >= MODIFF
1136 && point
>= startp
&& !clip_changed
1137 && (just_this_one
|| XFASTINT (w
->width
) == FRAME_WIDTH (f
))
1138 /* Can't use this case if highlighting a region. */
1139 && !(!NILP (Vtransient_mark_mode
) && !NILP (current_buffer
->mark_active
))
1140 && NILP (w
->region_showing
)
1141 && !EQ (window
, minibuf_window
))
1143 pos
= *compute_motion (startp
, 0, (hscroll
? 1 - hscroll
: 0),
1144 point
, height
+ 1, 10000, width
, hscroll
,
1145 pos_tab_offset (w
, startp
));
1147 if (pos
.vpos
< height
)
1149 /* Ok, point is still on frame */
1150 if (w
== XWINDOW (FRAME_SELECTED_WINDOW (f
)))
1152 /* These variables are supposed to be origin 1 */
1153 FRAME_CURSOR_X (f
) = max (0, pos
.hpos
) + XFASTINT (w
->left
);
1154 FRAME_CURSOR_Y (f
) = pos
.vpos
+ XFASTINT (w
->top
);
1156 /* This doesn't do the trick, because if a window to the right of
1157 this one must be redisplayed, this does nothing because there
1158 is nothing in DesiredFrame yet, and then the other window is
1159 redisplayed, making likes that are empty in this window's columns.
1160 if (XFASTINT (w->width) != FRAME_WIDTH (f))
1161 preserve_my_columns (w);
1165 /* Don't bother trying redisplay with same start;
1166 we already know it will lose */
1168 /* If current starting point was originally the beginning of a line
1169 but no longer is, find a new starting point. */
1170 else if (!NILP (w
->start_at_line_beg
)
1172 || FETCH_CHAR (startp
- 1) == '\n'))
1176 else if (just_this_one
&& !MINI_WINDOW_P (w
)
1178 && XFASTINT (w
->last_modified
)
1179 /* or else vmotion on first line won't work. */
1180 && ! NILP (w
->start_at_line_beg
)
1181 && ! EQ (w
->window_end_valid
, Qnil
)
1182 && do_id
&& !clip_changed
1183 && !blank_end_of_window
1184 && XFASTINT (w
->width
) == FRAME_WIDTH (f
)
1185 /* Can't use this case if highlighting a region. */
1186 && !(!NILP (Vtransient_mark_mode
)
1187 && !NILP (current_buffer
->mark_active
))
1188 && NILP (w
->region_showing
)
1189 && EQ (last_arrow_position
, Voverlay_arrow_position
)
1190 && EQ (last_arrow_string
, Voverlay_arrow_string
)
1191 && (tem
= try_window_id (FRAME_SELECTED_WINDOW (f
)))
1194 /* tem > 0 means success. tem == -1 means choose new start.
1195 tem == -2 means try again with same start,
1196 and nothing but whitespace follows the changed stuff.
1197 tem == 0 means try again with same start. */
1201 else if (startp
>= BEGV
&& startp
<= ZV
1202 /* Avoid starting display at end of buffer! */
1203 && (startp
< ZV
|| startp
== BEGV
1204 || (XFASTINT (w
->last_modified
) >= MODIFF
)))
1206 /* Try to redisplay starting at same place as before */
1207 /* If point has not moved off frame, accept the results */
1208 try_window (window
, startp
);
1209 if (cursor_vpos
>= 0)
1211 if (!just_this_one
|| clip_changed
|| beg_unchanged
< startp
)
1212 /* Forget any recorded base line for line number display. */
1213 w
->base_line_number
= Qnil
;
1217 cancel_my_columns (w
);
1220 XFASTINT (w
->last_modified
) = 0;
1221 w
->update_mode_line
= Qt
;
1223 /* Try to scroll by specified few lines */
1225 if (scroll_step
&& !clip_changed
)
1229 pos
= *vmotion (Z
- XFASTINT (w
->window_end_pos
),
1230 scroll_step
, width
, hscroll
, window
);
1231 if (pos
.vpos
>= height
)
1235 pos
= *vmotion (startp
, point
< startp
? - scroll_step
: scroll_step
,
1236 width
, hscroll
, window
);
1238 if (point
>= pos
.bufpos
)
1240 try_window (window
, pos
.bufpos
);
1241 if (cursor_vpos
>= 0)
1243 if (!just_this_one
|| clip_changed
|| beg_unchanged
< startp
)
1244 /* Forget any recorded base line for line number display. */
1245 w
->base_line_number
= Qnil
;
1249 cancel_my_columns (w
);
1254 /* Finally, just choose place to start which centers point */
1257 /* Forget any previously recorded base line for line number display. */
1258 w
->base_line_number
= Qnil
;
1260 pos
= *vmotion (point
, - (height
/ 2), width
, hscroll
, window
);
1261 try_window (window
, pos
.bufpos
);
1263 startp
= marker_position (w
->start
);
1264 w
->start_at_line_beg
=
1265 (startp
== BEGV
|| FETCH_CHAR (startp
- 1) == '\n') ? Qt
: Qnil
;
1268 if ((!NILP (w
->update_mode_line
)
1269 /* If window not full width, must redo its mode line
1270 if the window to its side is being redone */
1271 || (!just_this_one
&& width
< FRAME_WIDTH (f
) - 1)
1272 || INTEGERP (w
->base_line_pos
))
1273 && height
!= XFASTINT (w
->height
))
1274 display_mode_line (w
);
1275 if (! line_number_displayed
1276 && ! BUFFERP (w
->base_line_pos
))
1278 w
->base_line_pos
= Qnil
;
1279 w
->base_line_number
= Qnil
;
1282 /* When we reach a frame's selected window, redo the frame's menu bar. */
1283 if (!NILP (w
->update_mode_line
)
1284 #ifdef USE_X_TOOLKIT
1285 && FRAME_EXTERNAL_MENU_BAR (f
)
1287 && FRAME_MENU_BAR_LINES (f
) > 0
1289 && EQ (FRAME_SELECTED_WINDOW (f
), window
))
1290 display_menu_bar (w
);
1293 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f
))
1295 int start
, end
, whole
;
1297 /* Calculate the start and end positions for the current window.
1298 At some point, it would be nice to choose between scrollbars
1299 which reflect the whole buffer size, with special markers
1300 indicating narrowing, and scrollbars which reflect only the
1303 Note that minibuffers sometimes aren't displaying any text. */
1304 if (! MINI_WINDOW_P (w
)
1305 || (w
== XWINDOW (minibuf_window
) && ! echo_area_glyphs
))
1308 start
= startp
- BEGV
;
1309 /* I don't think this is guaranteed to be right. For the
1310 moment, we'll pretend it is. */
1311 end
= (Z
- XINT (w
->window_end_pos
)) - BEGV
;
1313 if (end
< start
) end
= start
;
1314 if (whole
< (end
- start
)) whole
= end
- start
;
1317 start
= end
= whole
= 0;
1319 /* Indicate what this scroll bar ought to be displaying now. */
1320 (*set_vertical_scroll_bar_hook
) (w
, end
- start
, whole
, start
);
1322 /* Note that we actually used the scroll bar attached to this window,
1323 so it shouldn't be deleted at the end of redisplay. */
1324 (*redeem_scroll_bar_hook
) (w
);
1328 current_buffer
= old
;
1332 /* Do full redisplay on one window, starting at position `pos'. */
1335 try_window (window
, pos
)
1339 register struct window
*w
= XWINDOW (window
);
1340 register int height
= window_internal_height (w
);
1341 register int vpos
= XFASTINT (w
->top
);
1342 register int last_text_vpos
= vpos
;
1343 int tab_offset
= pos_tab_offset (w
, pos
);
1344 FRAME_PTR f
= XFRAME (w
->frame
);
1345 int width
= window_internal_width (w
) - 1;
1346 struct position val
;
1348 Fset_marker (w
->start
, make_number (pos
), Qnil
);
1350 overlay_arrow_seen
= 0;
1351 val
.hpos
= XINT (w
->hscroll
) ? 1 - XINT (w
->hscroll
) : 0;
1353 while (--height
>= 0)
1355 val
= *display_text_line (w
, pos
, vpos
, val
.hpos
, tab_offset
);
1356 tab_offset
+= width
;
1357 if (val
.vpos
) tab_offset
= 0;
1359 if (pos
!= val
.bufpos
)
1361 /* Next line, unless prev line ended in end of buffer with no cr */
1362 = vpos
- (val
.vpos
&& (FETCH_CHAR (val
.bufpos
- 1) != '\n'
1363 #ifdef USE_TEXT_PROPERTIES
1364 || ! NILP (Fget_char_property (val
.bufpos
-1,
1372 /* If last line is continued in middle of character,
1373 include the split character in the text considered on the frame */
1374 if (val
.hpos
< (XINT (w
->hscroll
) ? 1 - XINT (w
->hscroll
) : 0))
1377 /* If bottom just moved off end of frame, change mode line percentage. */
1378 if (XFASTINT (w
->window_end_pos
) == 0
1380 w
->update_mode_line
= Qt
;
1382 /* Say where last char on frame will be, once redisplay is finished. */
1383 XFASTINT (w
->window_end_pos
) = Z
- pos
;
1384 XFASTINT (w
->window_end_vpos
) = last_text_vpos
- XFASTINT (w
->top
);
1385 /* But that is not valid info until redisplay finishes. */
1386 w
->window_end_valid
= Qnil
;
1389 /* Try to redisplay when buffer is modified locally,
1390 computing insert/delete line to preserve text outside
1391 the bounds of the changes.
1392 Return 1 if successful, 0 if if cannot tell what to do,
1393 or -1 to tell caller to find a new window start,
1394 or -2 to tell caller to do normal redisplay with same window start. */
1397 try_window_id (window
)
1401 register struct window
*w
= XWINDOW (window
);
1402 register int height
= window_internal_height (w
);
1403 FRAME_PTR f
= XFRAME (w
->frame
);
1404 int top
= XFASTINT (w
->top
);
1405 int start
= marker_position (w
->start
);
1406 int width
= window_internal_width (w
) - 1;
1407 int hscroll
= XINT (w
->hscroll
);
1408 int lmargin
= hscroll
> 0 ? 1 - hscroll
: 0;
1410 register int i
, tem
;
1411 int last_text_vpos
= 0;
1414 = XTYPE (current_buffer
->selective_display
) == Lisp_Int
1415 ? XINT (current_buffer
->selective_display
)
1416 : !NILP (current_buffer
->selective_display
) ? -1 : 0;
1418 struct position val
, bp
, ep
, xp
, pp
;
1419 int scroll_amount
= 0;
1421 int tab_offset
, epto
;
1423 if (GPT
- BEG
< beg_unchanged
)
1424 beg_unchanged
= GPT
- BEG
;
1425 if (Z
- GPT
< end_unchanged
)
1426 end_unchanged
= Z
- GPT
;
1428 if (beg_unchanged
+ BEG
< start
)
1429 return 0; /* Give up if changes go above top of window */
1431 /* Find position before which nothing is changed. */
1432 bp
= *compute_motion (start
, 0, lmargin
,
1433 min (ZV
, beg_unchanged
+ BEG
), height
+ 1, 0,
1434 width
, hscroll
, pos_tab_offset (w
, start
));
1435 if (bp
.vpos
>= height
)
1437 if (point
< bp
.bufpos
&& !bp
.contin
)
1439 /* All changes are below the frame, and point is on the frame.
1440 We don't need to change the frame at all.
1441 But we need to update window_end_pos to account for
1442 any change in buffer size. */
1443 bp
= *compute_motion (start
, 0, lmargin
,
1445 width
, hscroll
, pos_tab_offset (w
, start
));
1446 XFASTINT (w
->window_end_vpos
) = height
;
1447 XFASTINT (w
->window_end_pos
) = Z
- bp
.bufpos
;
1455 /* Find beginning of that frame line. Must display from there. */
1456 bp
= *vmotion (bp
.bufpos
, 0, width
, hscroll
, window
);
1463 /* If about to start displaying at the beginning of a continuation line,
1464 really start with previous frame line, in case it was not
1465 continued when last redisplayed */
1466 if ((bp
.contin
&& bp
.bufpos
- 1 == beg_unchanged
&& vpos
> 0)
1468 /* Likewise if we have to worry about selective display. */
1469 (selective
> 0 && bp
.bufpos
- 1 == beg_unchanged
&& vpos
> 0))
1471 bp
= *vmotion (bp
.bufpos
, -1, width
, hscroll
, window
);
1476 if (bp
.contin
&& bp
.hpos
!= lmargin
)
1478 val
.hpos
= bp
.prevhpos
- width
+ lmargin
;
1484 /* Find first visible newline after which no more is changed. */
1485 tem
= find_next_newline (Z
- max (end_unchanged
, Z
- ZV
), 1);
1487 while (tem
< ZV
- 1 && (indented_beyond_p (tem
, selective
)))
1488 tem
= find_next_newline (tem
, 1);
1490 /* Compute the cursor position after that newline. */
1491 ep
= *compute_motion (pos
, vpos
, val
.hpos
, tem
,
1492 height
, - (1 << (SHORTBITS
- 1)),
1493 width
, hscroll
, pos_tab_offset (w
, bp
.bufpos
));
1495 /* If changes reach past the text available on the frame,
1496 just display rest of frame. */
1497 if (ep
.bufpos
> Z
- XFASTINT (w
->window_end_pos
))
1500 stop_vpos
= ep
.vpos
;
1502 /* If no newline before ep, the line ep is on includes some changes
1503 that must be displayed. Make sure we don't stop before it. */
1504 /* Also, if changes reach all the way until ep.bufpos,
1505 it is possible that something was deleted after the
1506 newline before it, so the following line must be redrawn. */
1507 if (stop_vpos
== ep
.vpos
1508 && (ep
.bufpos
== BEGV
1509 || FETCH_CHAR (ep
.bufpos
- 1) != '\n'
1510 || ep
.bufpos
== Z
- end_unchanged
))
1511 stop_vpos
= ep
.vpos
+ 1;
1514 overlay_arrow_seen
= 0;
1516 /* If changes do not reach to bottom of window,
1517 figure out how much to scroll the rest of the window */
1518 if (stop_vpos
< height
)
1520 /* Now determine how far up or down the rest of the window has moved */
1521 epto
= pos_tab_offset (w
, ep
.bufpos
);
1522 xp
= *compute_motion (ep
.bufpos
, ep
.vpos
, ep
.hpos
,
1523 Z
- XFASTINT (w
->window_end_pos
),
1524 10000, 0, width
, hscroll
, epto
);
1525 scroll_amount
= xp
.vpos
- XFASTINT (w
->window_end_vpos
);
1527 /* Is everything on frame below the changes whitespace?
1528 If so, no scrolling is really necessary. */
1529 for (i
= ep
.bufpos
; i
< xp
.bufpos
; i
++)
1531 tem
= FETCH_CHAR (i
);
1532 if (tem
!= ' ' && tem
!= '\n' && tem
!= '\t')
1538 XFASTINT (w
->window_end_vpos
) += scroll_amount
;
1540 /* Before doing any scrolling, verify that point will be on frame. */
1541 if (point
> ep
.bufpos
&& !(point
<= xp
.bufpos
&& xp
.bufpos
< height
))
1543 if (point
<= xp
.bufpos
)
1545 pp
= *compute_motion (ep
.bufpos
, ep
.vpos
, ep
.hpos
,
1546 point
, height
, - (1 << (SHORTBITS
- 1)),
1547 width
, hscroll
, epto
);
1551 pp
= *compute_motion (xp
.bufpos
, xp
.vpos
, xp
.hpos
,
1552 point
, height
, - (1 << (SHORTBITS
- 1)),
1553 width
, hscroll
, pos_tab_offset (w
, xp
.bufpos
));
1555 if (pp
.bufpos
< point
|| pp
.vpos
== height
)
1557 cursor_vpos
= pp
.vpos
+ top
;
1558 cursor_hpos
= pp
.hpos
+ XFASTINT (w
->left
);
1561 if (stop_vpos
- scroll_amount
>= height
1562 || ep
.bufpos
== xp
.bufpos
)
1564 if (scroll_amount
< 0)
1565 stop_vpos
-= scroll_amount
;
1567 /* In this path, we have altered window_end_vpos
1568 and not left it negative.
1569 We must make sure that, in case display is preempted
1570 before the frame changes to reflect what we do here,
1571 further updates will not come to try_window_id
1572 and assume the frame and window_end_vpos match. */
1573 blank_end_of_window
= 1;
1575 else if (!scroll_amount
)
1577 else if (bp
.bufpos
== Z
- end_unchanged
)
1579 /* If reprinting everything is nearly as fast as scrolling,
1580 don't bother scrolling. Can happen if lines are short. */
1581 if (scroll_cost (f
, bp
.vpos
+ top
- scroll_amount
,
1582 top
+ height
- max (0, scroll_amount
),
1584 > xp
.bufpos
- bp
.bufpos
- 20)
1585 /* Return "try normal display with same window-start."
1586 Too bad we can't prevent further scroll-thinking. */
1588 /* If pure deletion, scroll up as many lines as possible.
1589 In common case of killing a line, this can save the
1590 following line from being overwritten by scrolling
1591 and therefore having to be redrawn. */
1592 tem
= scroll_frame_lines (f
, bp
.vpos
+ top
- scroll_amount
,
1593 top
+ height
- max (0, scroll_amount
),
1595 if (!tem
) stop_vpos
= height
;
1597 else if (scroll_amount
)
1599 /* If reprinting everything is nearly as fast as scrolling,
1600 don't bother scrolling. Can happen if lines are short. */
1601 /* Note that if scroll_amount > 0, xp.bufpos - bp.bufpos is an
1602 overestimate of cost of reprinting, since xp.bufpos
1603 would end up below the bottom of the window. */
1604 if (scroll_cost (f
, ep
.vpos
+ top
- scroll_amount
,
1605 top
+ height
- max (0, scroll_amount
),
1607 > xp
.bufpos
- ep
.bufpos
- 20)
1608 /* Return "try normal display with same window-start."
1609 Too bad we can't prevent further scroll-thinking. */
1611 tem
= scroll_frame_lines (f
, ep
.vpos
+ top
- scroll_amount
,
1612 top
+ height
- max (0, scroll_amount
),
1614 if (!tem
) stop_vpos
= height
;
1618 /* In any case, do not display past bottom of window */
1619 if (stop_vpos
>= height
)
1625 /* Handle case where pos is before w->start --
1626 can happen if part of line had been clipped and is not clipped now */
1627 if (vpos
== 0 && pos
< marker_position (w
->start
))
1628 Fset_marker (w
->start
, make_number (pos
), Qnil
);
1630 /* Redisplay the lines where the text was changed */
1631 last_text_vpos
= vpos
;
1632 tab_offset
= pos_tab_offset (w
, pos
);
1633 /* If we are starting display in mid-character, correct tab_offset
1634 to account for passing the line that that character really starts in. */
1635 if (val
.hpos
< lmargin
)
1636 tab_offset
+= width
;
1637 while (vpos
< stop_vpos
)
1639 val
= *display_text_line (w
, pos
, top
+ vpos
++, val
.hpos
, tab_offset
);
1640 tab_offset
+= width
;
1641 if (val
.vpos
) tab_offset
= 0;
1642 if (pos
!= val
.bufpos
)
1644 /* Next line, unless prev line ended in end of buffer with no cr */
1645 = vpos
- (val
.vpos
&& FETCH_CHAR (val
.bufpos
- 1) != '\n');
1649 /* There are two cases:
1650 1) we have displayed down to the bottom of the window
1651 2) we have scrolled lines below stop_vpos by scroll_amount */
1655 /* If last line is continued in middle of character,
1656 include the split character in the text considered on the frame */
1657 if (val
.hpos
< lmargin
)
1659 XFASTINT (w
->window_end_vpos
) = last_text_vpos
;
1660 XFASTINT (w
->window_end_pos
) = Z
- val
.bufpos
;
1663 /* If scrolling made blank lines at window bottom,
1664 redisplay to fill those lines */
1665 if (scroll_amount
< 0)
1667 /* Don't consider these lines for general-purpose scrolling.
1668 That will save time in the scrolling computation. */
1669 FRAME_SCROLL_BOTTOM_VPOS (f
) = xp
.vpos
;
1674 vpos
= height
+ scroll_amount
;
1675 else if (xp
.contin
&& xp
.hpos
!= lmargin
)
1677 val
.hpos
= xp
.prevhpos
- width
+ lmargin
;
1681 blank_end_of_window
= 1;
1682 tab_offset
= pos_tab_offset (w
, pos
);
1683 /* If we are starting display in mid-character, correct tab_offset
1684 to account for passing the line that that character starts in. */
1685 if (val
.hpos
< lmargin
)
1686 tab_offset
+= width
;
1688 while (vpos
< height
)
1690 val
= *display_text_line (w
, pos
, top
+ vpos
++, val
.hpos
, tab_offset
);
1691 tab_offset
+= width
;
1692 if (val
.vpos
) tab_offset
= 0;
1696 /* Here is a case where display_text_line sets cursor_vpos wrong.
1697 Make it be fixed up, below. */
1699 && xp
.bufpos
== point
)
1703 /* If bottom just moved off end of frame, change mode line percentage. */
1704 if (XFASTINT (w
->window_end_pos
) == 0
1706 w
->update_mode_line
= Qt
;
1708 /* Attempt to adjust end-of-text positions to new bottom line */
1711 delta
= height
- xp
.vpos
;
1713 || (delta
> 0 && xp
.bufpos
<= ZV
)
1714 || (delta
== 0 && xp
.hpos
))
1716 val
= *vmotion (Z
- XFASTINT (w
->window_end_pos
),
1717 delta
, width
, hscroll
, window
);
1718 XFASTINT (w
->window_end_pos
) = Z
- val
.bufpos
;
1719 XFASTINT (w
->window_end_vpos
) += val
.vpos
;
1723 w
->window_end_valid
= Qnil
;
1725 /* If point was not in a line that was displayed, find it */
1726 if (cursor_vpos
< 0)
1728 val
= *compute_motion (start
, 0, lmargin
, point
, 10000, 10000,
1729 width
, hscroll
, pos_tab_offset (w
, start
));
1730 /* Admit failure if point is off frame now */
1731 if (val
.vpos
>= height
)
1733 for (vpos
= 0; vpos
< height
; vpos
++)
1734 cancel_line (vpos
+ top
, f
);
1737 cursor_vpos
= val
.vpos
+ top
;
1738 cursor_hpos
= val
.hpos
+ XFASTINT (w
->left
);
1741 FRAME_CURSOR_X (f
) = max (0, cursor_hpos
);
1742 FRAME_CURSOR_Y (f
) = cursor_vpos
;
1746 val
= *compute_motion (start
, 0, lmargin
, ZV
,
1747 height
, - (1 << (SHORTBITS
- 1)),
1748 width
, hscroll
, pos_tab_offset (w
, start
));
1749 if (val
.vpos
!= XFASTINT (w
->window_end_vpos
))
1751 if (XFASTINT (w
->window_end_pos
)
1759 /* Mark a section of BUF as modified, but only for the sake of redisplay.
1760 This is useful for recording changes to overlays.
1762 We increment the buffer's modification timestamp and set the
1763 redisplay caches (windows_or_buffers_changed, beg_unchanged, etc)
1764 as if the region of text between START and END had been modified;
1765 the redisplay code will check this against the windows' timestamps,
1766 and redraw the appropriate area of the buffer.
1768 However, if the buffer is unmodified, we bump the last-save
1769 timestamp as well, so that incrementing the timestamp doesn't fool
1770 Emacs into thinking that the buffer's text has been modified.
1772 Tweaking the timestamps shouldn't hurt the first-modification
1773 timestamps recorded in the undo records; those values aren't
1774 written until just before a real text modification is made, so they
1775 will never catch the timestamp value just before this function gets
1779 redisplay_region (buf
, start
, end
)
1789 start
= end
; end
= temp
;
1792 if (buf
!= current_buffer
)
1793 windows_or_buffers_changed
= 1;
1796 if (unchanged_modified
== MODIFF
)
1798 beg_unchanged
= start
- BEG
;
1799 end_unchanged
= Z
- end
;
1803 if (Z
- end
< end_unchanged
)
1804 end_unchanged
= Z
- end
;
1805 if (start
- BEG
< beg_unchanged
)
1806 beg_unchanged
= start
- BEG
;
1810 /* Increment the buffer's time stamp, but also increment the save
1811 and autosave timestamps, so as not to screw up that timekeeping. */
1812 if (BUF_MODIFF (buf
) == buf
->save_modified
)
1813 buf
->save_modified
++;
1814 if (BUF_MODIFF (buf
) == buf
->auto_save_modified
)
1815 buf
->auto_save_modified
++;
1817 BUF_MODIFF (buf
) ++;
1821 /* Copy LEN glyphs starting address FROM to the rope TO.
1822 But don't actually copy the parts that would come in before S.
1823 Value is TO, advanced past the copied data.
1824 F is the frame we are displaying in. */
1827 copy_part_of_rope (f
, to
, s
, from
, len
, face
)
1829 register GLYPH
*to
; /* Copy to here. */
1830 register GLYPH
*s
; /* Starting point. */
1831 Lisp_Object
*from
; /* Data to copy. */
1833 int face
; /* Face to apply to glyphs which don't specify one. */
1836 register Lisp_Object
*fp
= from
;
1837 /* These cache the results of the last call to compute_glyph_face. */
1839 int last_merged
= 0;
1841 #ifdef HAVE_X_WINDOWS
1842 if (! FRAME_TERMCAP_P (f
))
1845 int glyph
= XFASTINT (*fp
);
1848 if (FAST_GLYPH_FACE (glyph
) == 0)
1849 /* If GLYPH has no face code, use FACE. */
1851 else if (FAST_GLYPH_FACE (glyph
) == last_code
)
1852 /* If it's same as previous glyph, use same result. */
1853 facecode
= last_merged
;
1856 /* Merge this glyph's face and remember the result. */
1857 last_code
= FAST_GLYPH_FACE (glyph
);
1858 last_merged
= facecode
= compute_glyph_face (f
, last_code
, face
);
1862 *to
= FAST_MAKE_GLYPH (FAST_GLYPH_CHAR (glyph
), facecode
);
1870 if (to
>= s
) *to
= XFASTINT (*fp
);
1877 /* Correct a glyph by replacing its specified user-level face code
1878 with a displayable computed face code. */
1881 fix_glyph (f
, glyph
, current_face
)
1886 #ifdef HAVE_X_WINDOWS
1887 if (! FRAME_TERMCAP_P (f
) && FAST_GLYPH_FACE (glyph
) != 0)
1888 return FAST_MAKE_GLYPH (FAST_GLYPH_CHAR (glyph
),
1889 compute_glyph_face (f
, FAST_GLYPH_FACE (glyph
),
1895 /* Display one line of window w, starting at position START in W's buffer.
1896 Display starting at horizontal position HPOS, which is normally zero
1897 or negative. A negative value causes output up to hpos = 0 to be discarded.
1898 This is done for negative hscroll, or when this is a continuation line
1899 and the continuation occurred in the middle of a multi-column character.
1901 TABOFFSET is an offset for ostensible hpos, used in tab stop calculations.
1903 Display on position VPOS on the frame. (origin 0).
1905 Returns a STRUCT POSITION giving character to start next line with
1906 and where to display it, including a zero or negative hpos.
1907 The vpos field is not really a vpos; it is 1 unless the line is continued */
1909 struct position val_display_text_line
;
1911 static struct position
*
1912 display_text_line (w
, start
, vpos
, hpos
, taboffset
)
1919 register int pos
= start
;
1924 register unsigned char *p
;
1926 register GLYPH
*startp
;
1927 register GLYPH
*p1prev
= 0;
1928 FRAME_PTR f
= XFRAME (w
->frame
);
1929 int tab_width
= XINT (current_buffer
->tab_width
);
1930 int ctl_arrow
= !NILP (current_buffer
->ctl_arrow
);
1931 int width
= window_internal_width (w
) - 1;
1932 struct position val
;
1935 int hscroll
= XINT (w
->hscroll
);
1936 int truncate
= hscroll
1937 || (truncate_partial_width_windows
1938 && XFASTINT (w
->width
) < FRAME_WIDTH (f
))
1939 || !NILP (current_buffer
->truncate_lines
);
1941 /* 1 if we should highlight the region. */
1942 int highlight_region
1943 = !NILP (Vtransient_mark_mode
) && !NILP (current_buffer
->mark_active
);
1944 int region_beg
, region_end
;
1947 = XTYPE (current_buffer
->selective_display
) == Lisp_Int
1948 ? XINT (current_buffer
->selective_display
)
1949 : !NILP (current_buffer
->selective_display
) ? -1 : 0;
1950 register struct frame_glyphs
*desired_glyphs
= FRAME_DESIRED_GLYPHS (f
);
1951 register struct Lisp_Vector
*dp
= window_display_table (w
);
1953 Lisp_Object default_invis_vector
[3];
1954 /* Nonzero means display something where there are invisible lines.
1955 The precise value is the number of glyphs to display. */
1957 = (selective
&& dp
&& XTYPE (DISP_INVIS_VECTOR (dp
)) == Lisp_Vector
1958 ? XVECTOR (DISP_INVIS_VECTOR (dp
))->size
1959 : selective
&& !NILP (current_buffer
->selective_display_ellipses
)
1961 /* This is the sequence of Lisp objects to display
1962 when there are invisible lines. */
1963 Lisp_Object
*invis_vector_contents
1964 = (dp
&& XTYPE (DISP_INVIS_VECTOR (dp
)) == Lisp_Vector
1965 ? XVECTOR (DISP_INVIS_VECTOR (dp
))->contents
1966 : default_invis_vector
);
1968 GLYPH truncator
= (dp
== 0 || XTYPE (DISP_TRUNC_GLYPH (dp
)) != Lisp_Int
1969 ? '$' : XINT (DISP_TRUNC_GLYPH (dp
)));
1970 GLYPH continuer
= (dp
== 0 || XTYPE (DISP_CONTINUE_GLYPH (dp
)) != Lisp_Int
1971 ? '\\' : XINT (DISP_CONTINUE_GLYPH (dp
)));
1973 /* The next buffer location at which the face should change, due
1974 to overlays or text property changes. */
1975 int next_face_change
;
1977 #ifdef USE_TEXT_PROPERTIES
1978 /* The next location where the `invisible' property changes */
1982 /* The face we're currently using. */
1983 int current_face
= 0;
1985 XFASTINT (default_invis_vector
[2]) = '.';
1986 default_invis_vector
[0] = default_invis_vector
[1] = default_invis_vector
[2];
1988 hpos
+= XFASTINT (w
->left
);
1989 get_display_line (f
, vpos
, XFASTINT (w
->left
));
1990 if (tab_width
<= 0 || tab_width
> 1000) tab_width
= 8;
1992 /* Show where to highlight the region. */
1993 if (highlight_region
&& XMARKER (current_buffer
->mark
)->buffer
!= 0
1994 /* Maybe highlight only in selected window. */
1995 && (highlight_nonselected_windows
1996 || w
== XWINDOW (selected_window
)))
1998 region_beg
= marker_position (current_buffer
->mark
);
1999 if (PT
< region_beg
)
2001 region_end
= region_beg
;
2006 w
->region_showing
= Qt
;
2009 region_beg
= region_end
= -1;
2011 if (MINI_WINDOW_P (w
) && start
== 1
2012 && vpos
== XFASTINT (w
->top
))
2015 hpos
= display_string (w
, vpos
, minibuf_prompt
, -1, hpos
,
2016 (!truncate
? continuer
: truncator
),
2018 minibuf_prompt_width
= hpos
;
2021 desired_glyphs
->bufp
[vpos
] = pos
;
2022 p1
= desired_glyphs
->glyphs
[vpos
] + hpos
;
2024 startp
= desired_glyphs
->glyphs
[vpos
] + XFASTINT (w
->left
);
2025 endp
= startp
+ width
;
2027 /* Arrange the overlays nicely for our purposes. Usually, we call
2028 display_text_line on only one line at a time, in which case this
2029 can't really hurt too much, or we call it on lines which appear
2030 one after another in the buffer, in which case all calls to
2031 recenter_overlay_lists but the first will be pretty cheap. */
2032 recenter_overlay_lists (current_buffer
, pos
);
2034 /* Loop generating characters.
2035 Stop at end of buffer, before newline,
2036 if reach or pass continuation column,
2037 or at face change. */
2039 next_face_change
= pos
;
2040 #ifdef USE_TEXT_PROPERTIES
2041 next_invisible
= pos
;
2048 /* Did we hit the end of the visible region of the buffer?
2053 /* Did we reach point? Record the cursor location. */
2054 if (pos
== point
&& cursor_vpos
< 0)
2057 cursor_hpos
= p1
- startp
;
2060 #ifdef USE_TEXT_PROPERTIES
2061 /* if the `invisible' property is set to t, we can skip to
2062 the next property change */
2063 while (pos
== next_invisible
&& pos
< end
)
2065 Lisp_Object position
, limit
, endpos
, prop
, ww
;
2066 XFASTINT (position
) = pos
;
2067 XSET (ww
, Lisp_Window
, w
);
2068 prop
= Fget_char_property (position
, Qinvisible
, ww
);
2069 /* This is just an estimate to give reasonable
2070 performance; nothing should go wrong if it is too small. */
2071 limit
= Fnext_overlay_change (position
);
2072 if (XFASTINT (limit
) > pos
+ 50)
2073 XFASTINT (limit
) = pos
+ 50;
2074 endpos
= Fnext_single_property_change (position
, Qinvisible
,
2075 Fcurrent_buffer (), limit
);
2076 if (INTEGERP (endpos
))
2077 next_invisible
= XINT (endpos
);
2079 next_invisible
= end
;
2082 if (pos
< point
&& next_invisible
>= point
)
2085 cursor_hpos
= p1
- startp
;
2087 pos
= next_invisible
;
2094 #ifdef HAVE_X_WINDOWS
2095 /* Did we hit a face change? Figure out what face we should
2096 use now. We also hit this the first time through the
2097 loop, to see what face we should start with. */
2098 if (pos
>= next_face_change
&& FRAME_X_P (f
))
2099 current_face
= compute_char_face (f
, w
, pos
,
2100 region_beg
, region_end
,
2101 &next_face_change
, pos
+ 50);
2106 #ifdef USE_TEXT_PROPERTIES
2107 if (pos
< next_invisible
&& next_invisible
< pause
)
2108 pause
= next_invisible
;
2110 if (pos
< next_face_change
&& next_face_change
< pause
)
2111 pause
= next_face_change
;
2113 /* Wouldn't you hate to read the next line to someone over
2115 if (pos
< point
&& point
< pause
)
2117 if (pos
< GPT
&& GPT
< pause
)
2120 p
= &FETCH_CHAR (pos
);
2123 if (c
>= 040 && c
< 0177
2124 && (dp
== 0 || XTYPE (DISP_CHAR_VECTOR (dp
, c
)) != Lisp_Vector
))
2127 *p1
= MAKE_GLYPH (f
, c
, current_face
);
2135 && indented_beyond_p (pos
+ 1, selective
))
2138 pos
= find_next_newline (pos
+ 1, 1);
2139 if (FETCH_CHAR (pos
- 1) == '\n')
2142 if (invis
&& selective_rlen
> 0 && p1
>= startp
)
2144 p1
+= selective_rlen
;
2145 if (p1
- startp
> width
)
2147 copy_part_of_rope (f
, p1prev
, p1prev
, invis_vector_contents
,
2148 (p1
- p1prev
), current_face
);
2150 #ifdef HAVE_X_WINDOWS
2151 /* Draw the face of the newline character as extending all the
2152 way to the end of the frame line. */
2155 *p1
++ = FAST_MAKE_GLYPH (' ', current_face
);
2163 if (p1
>= startp
&& p1
< endp
)
2164 *p1
= MAKE_GLYPH (f
, ' ', current_face
);
2167 while ((p1
- startp
+ taboffset
+ hscroll
- (hscroll
> 0))
2170 else if (c
== Ctl ('M') && selective
== -1)
2172 pos
= find_next_newline (pos
, 1);
2173 if (FETCH_CHAR (pos
- 1) == '\n')
2175 if (selective_rlen
> 0)
2177 p1
+= selective_rlen
;
2178 if (p1
- startp
> width
)
2180 copy_part_of_rope (f
, p1prev
, p1prev
, invis_vector_contents
,
2181 (p1
- p1prev
), current_face
);
2183 #ifdef HAVE_X_WINDOWS
2184 /* Draw the face of the newline character as extending all the
2185 way to the end of the frame line. */
2188 *p1
++ = FAST_MAKE_GLYPH (' ', current_face
);
2192 else if (dp
!= 0 && XTYPE (DISP_CHAR_VECTOR (dp
, c
)) == Lisp_Vector
)
2194 p1
= copy_part_of_rope (f
, p1
, startp
,
2195 XVECTOR (DISP_CHAR_VECTOR (dp
, c
))->contents
,
2196 XVECTOR (DISP_CHAR_VECTOR (dp
, c
))->size
,
2199 else if (c
< 0200 && ctl_arrow
)
2202 *p1
= fix_glyph (f
, (dp
&& XTYPE (DISP_CTRL_GLYPH (dp
)) == Lisp_Int
2203 ? XINT (DISP_CTRL_GLYPH (dp
)) : '^'),
2206 if (p1
>= startp
&& p1
< endp
)
2207 *p1
= MAKE_GLYPH (f
, c
^ 0100, current_face
);
2213 *p1
= fix_glyph (f
, (dp
&& XTYPE (DISP_ESCAPE_GLYPH (dp
)) == Lisp_Int
2214 ? XINT (DISP_ESCAPE_GLYPH (dp
)) : '\\'),
2217 if (p1
>= startp
&& p1
< endp
)
2218 *p1
= MAKE_GLYPH (f
, (c
>> 6) + '0', current_face
);
2220 if (p1
>= startp
&& p1
< endp
)
2221 *p1
= MAKE_GLYPH (f
, (7 & (c
>> 3)) + '0', current_face
);
2223 if (p1
>= startp
&& p1
< endp
)
2224 *p1
= MAKE_GLYPH (f
, (7 & c
) + '0', current_face
);
2231 val
.hpos
= - XINT (w
->hscroll
);
2239 /* Handle continuation in middle of a character */
2240 /* by backing up over it */
2243 /* Don't back up if we never actually displayed any text.
2244 This occurs when the minibuffer prompt takes up the whole line. */
2247 /* Start the next line with that same character */
2249 /* but at negative hpos, to skip the columns output on this line. */
2250 val
.hpos
+= p1prev
- endp
;
2253 /* Keep in this line everything up to the continuation column. */
2257 /* Finish deciding which character to start the next line on,
2258 and what hpos to start it at.
2259 Also set `lastpos' to the last position which counts as "on this line"
2260 for cursor-positioning. */
2264 if (FETCH_CHAR (pos
) == '\n')
2265 /* If stopped due to a newline, start next line after it */
2268 /* Stopped due to right margin of window */
2272 *p1
++ = fix_glyph (f
, truncator
, 0);
2273 /* Truncating => start next line after next newline,
2274 and point is on this line if it is before the newline,
2275 and skip none of first char of next line */
2276 pos
= find_next_newline (pos
, 1);
2277 val
.hpos
= XINT (w
->hscroll
) ? 1 - XINT (w
->hscroll
) : 0;
2279 lastpos
= pos
- (FETCH_CHAR (pos
- 1) == '\n');
2283 *p1
++ = fix_glyph (f
, continuer
, 0);
2290 /* If point is at eol or in invisible text at eol,
2291 record its frame location now. */
2293 if (start
<= point
&& point
<= lastpos
&& cursor_vpos
< 0)
2296 cursor_hpos
= p1
- startp
;
2299 if (cursor_vpos
== vpos
)
2301 if (cursor_hpos
< 0) cursor_hpos
= 0;
2302 if (cursor_hpos
> width
) cursor_hpos
= width
;
2303 cursor_hpos
+= XFASTINT (w
->left
);
2304 if (w
== XWINDOW (FRAME_SELECTED_WINDOW (f
)))
2306 FRAME_CURSOR_Y (f
) = cursor_vpos
;
2307 FRAME_CURSOR_X (f
) = cursor_hpos
;
2309 if (w
== XWINDOW (selected_window
))
2311 /* Line is not continued and did not start
2312 in middle of character */
2313 if ((hpos
- XFASTINT (w
->left
)
2314 == (XINT (w
->hscroll
) ? 1 - XINT (w
->hscroll
) : 0))
2317 this_line_bufpos
= start
;
2318 this_line_buffer
= current_buffer
;
2319 this_line_vpos
= cursor_vpos
;
2320 this_line_start_hpos
= hpos
;
2321 this_line_endpos
= Z
- lastpos
;
2324 this_line_bufpos
= 0;
2329 /* If hscroll and line not empty, insert truncation-at-left marker */
2330 if (hscroll
&& lastpos
!= start
)
2332 *startp
= fix_glyph (f
, truncator
, 0);
2337 if (XFASTINT (w
->width
) + XFASTINT (w
->left
) != FRAME_WIDTH (f
))
2340 if (p1
< startp
) p1
= startp
;
2341 while (p1
< endp
) *p1
++ = SPACEGLYPH
;
2343 /* Don't draw vertical bars if we're using scroll bars. They're
2344 covered up by the scroll bars, and it's distracting to see
2345 them when the scroll bar windows are flickering around to be
2347 *p1
++ = (FRAME_HAS_VERTICAL_SCROLL_BARS (f
)
2350 desired_glyphs
->used
[vpos
] = max (desired_glyphs
->used
[vpos
],
2351 p1
- desired_glyphs
->glyphs
[vpos
]);
2352 desired_glyphs
->glyphs
[vpos
][desired_glyphs
->used
[vpos
]] = 0;
2354 /* If the start of this line is the overlay arrow-position,
2355 then put the arrow string into the display-line. */
2357 if (XTYPE (Voverlay_arrow_position
) == Lisp_Marker
2358 && current_buffer
== XMARKER (Voverlay_arrow_position
)->buffer
2359 && start
== marker_position (Voverlay_arrow_position
)
2360 && XTYPE (Voverlay_arrow_string
) == Lisp_String
2361 && ! overlay_arrow_seen
)
2363 unsigned char *p
= XSTRING (Voverlay_arrow_string
)->data
;
2365 int len
= XSTRING (Voverlay_arrow_string
)->size
;
2370 for (i
= 0; i
< len
; i
++)
2373 /* Bug in SunOS 4.1.1 compiler requires this intermediate variable. */
2374 arrow_end
= (startp
- desired_glyphs
->glyphs
[vpos
]) + len
;
2375 if (desired_glyphs
->used
[vpos
] < arrow_end
)
2376 desired_glyphs
->used
[vpos
] = arrow_end
;
2378 overlay_arrow_seen
= 1;
2382 val_display_text_line
= val
;
2383 return &val_display_text_line
;
2386 /* Redisplay the menu bar in the frame for window W. */
2389 display_menu_bar (w
)
2392 Lisp_Object items
, tail
;
2393 register int vpos
= 0;
2394 register FRAME_PTR f
= XFRAME (WINDOW_FRAME (w
));
2395 int maxendcol
= FRAME_WIDTH (f
);
2399 #ifndef USE_X_TOOLKIT
2400 if (FRAME_MENU_BAR_LINES (f
) <= 0)
2403 get_display_line (f
, vpos
, 0);
2405 items
= FRAME_MENU_BAR_ITEMS (f
);
2406 for (i
= 0; i
< XVECTOR (items
)->size
; i
+= 3)
2408 Lisp_Object pos
, string
;
2409 string
= XVECTOR (items
)->contents
[i
+ 1];
2413 XFASTINT (XVECTOR (items
)->contents
[i
+ 2]) = hpos
;
2415 if (hpos
< maxendcol
)
2416 hpos
= display_string (XWINDOW (FRAME_ROOT_WINDOW (f
)), vpos
,
2417 XSTRING (string
)->data
,
2418 XSTRING (string
)->size
,
2419 hpos
, 0, 0, hpos
, maxendcol
);
2420 /* Put a gap of 3 spaces between items. */
2421 if (hpos
< maxendcol
)
2423 int hpos1
= hpos
+ 3;
2424 hpos
= display_string (w
, vpos
, "", 0, hpos
, 0, 0,
2425 min (hpos1
, maxendcol
), maxendcol
);
2429 FRAME_DESIRED_GLYPHS (f
)->bufp
[vpos
] = 0;
2430 FRAME_DESIRED_GLYPHS (f
)->highlight
[vpos
] = mode_line_inverse_video
;
2432 /* Fill out the line with spaces. */
2433 if (maxendcol
> hpos
)
2434 hpos
= display_string (w
, vpos
, "", 0, hpos
, 0, 0, maxendcol
, maxendcol
);
2436 /* Clear the rest of the lines allocated to the menu bar. */
2438 while (vpos
< FRAME_MENU_BAR_LINES (f
))
2439 get_display_line (f
, vpos
++, 0);
2440 #endif /* not USE_X_TOOLKIT */
2443 /* Display the mode line for window w */
2446 display_mode_line (w
)
2449 register int vpos
= XFASTINT (w
->height
) + XFASTINT (w
->top
) - 1;
2450 register int left
= XFASTINT (w
->left
);
2451 register int right
= XFASTINT (w
->width
) + left
;
2452 register FRAME_PTR f
= XFRAME (WINDOW_FRAME (w
));
2454 line_number_displayed
= 0;
2456 get_display_line (f
, vpos
, left
);
2457 display_mode_element (w
, vpos
, left
, 0, right
, right
,
2458 current_buffer
->mode_line_format
);
2459 FRAME_DESIRED_GLYPHS (f
)->bufp
[vpos
] = 0;
2461 /* Make the mode line inverse video if the entire line
2462 is made of mode lines.
2463 I.e. if this window is full width,
2464 or if it is the child of a full width window
2465 (which implies that that window is split side-by-side
2466 and the rest of this line is mode lines of the sibling windows). */
2467 if (XFASTINT (w
->width
) == FRAME_WIDTH (f
)
2468 || XFASTINT (XWINDOW (w
->parent
)->width
) == FRAME_WIDTH (f
))
2469 FRAME_DESIRED_GLYPHS (f
)->highlight
[vpos
] = mode_line_inverse_video
;
2470 #ifdef HAVE_X_WINDOWS
2471 else if (! FRAME_TERMCAP_P (f
))
2473 /* For a partial width window, explicitly set face of each glyph. */
2475 GLYPH
*ptr
= FRAME_DESIRED_GLYPHS (f
)->glyphs
[vpos
];
2476 for (i
= left
; i
< right
; ++i
)
2477 ptr
[i
] = FAST_MAKE_GLYPH (FAST_GLYPH_CHAR (ptr
[i
]), 1);
2481 #ifdef HAVE_X_WINDOWS
2482 if (w
== XWINDOW (f
->selected_window
))
2483 x_consider_frame_title (WINDOW_FRAME (w
));
2487 /* Contribute ELT to the mode line for window W.
2488 How it translates into text depends on its data type.
2490 VPOS is the position of the mode line being displayed.
2492 HPOS is the position (absolute on frame) where this element's text
2493 should start. The output is truncated automatically at the right
2496 DEPTH is the depth in recursion. It is used to prevent
2497 infinite recursion here.
2499 MINENDCOL is the hpos before which the element may not end.
2500 The element is padded at the right with spaces if nec
2501 to reach this column.
2503 MAXENDCOL is the hpos past which this element may not extend.
2504 If MINENDCOL is > MAXENDCOL, MINENDCOL takes priority.
2505 (This is necessary to make nested padding and truncation work.)
2507 Returns the hpos of the end of the text generated by ELT.
2508 The next element will receive that value as its HPOS arg,
2509 so as to concatenate the elements. */
2512 display_mode_element (w
, vpos
, hpos
, depth
, minendcol
, maxendcol
, elt
)
2514 register int vpos
, hpos
;
2517 register int maxendcol
;
2518 register Lisp_Object elt
;
2526 #ifdef SWITCH_ENUM_BUG
2527 switch ((int) XTYPE (elt
))
2529 switch (XTYPE (elt
))
2534 /* A string: output it and check for %-constructs within it. */
2535 register unsigned char c
;
2536 register unsigned char *this = XSTRING (elt
)->data
;
2538 while (hpos
< maxendcol
&& *this)
2540 unsigned char *last
= this;
2541 while ((c
= *this++) != '\0' && c
!= '%')
2543 if (this - 1 != last
)
2545 register int lim
= --this - last
+ hpos
;
2546 hpos
= display_string (w
, vpos
, last
, -1, hpos
, 0, 1,
2547 hpos
, min (lim
, maxendcol
));
2551 register int spec_width
= 0;
2553 /* We can't allow -ve args due to the "%-" construct */
2554 /* Argument specifies minwidth but not maxwidth
2555 (maxwidth can be specified by
2556 (<negative-number> . <stuff>) mode-line elements) */
2558 while ((c
= *this++) >= '0' && c
<= '9')
2560 spec_width
= spec_width
* 10 + (c
- '0');
2564 if (spec_width
> maxendcol
)
2565 spec_width
= maxendcol
;
2568 hpos
= display_mode_element (w
, vpos
, hpos
, depth
,
2569 spec_width
, maxendcol
,
2570 Vglobal_mode_string
);
2572 hpos
= display_string (w
, vpos
,
2573 decode_mode_spec (w
, c
,
2576 hpos
, 0, 1, spec_width
, maxendcol
);
2583 /* A symbol: process the value of the symbol recursively
2584 as if it appeared here directly. Avoid error if symbol void.
2585 Special case: if value of symbol is a string, output the string
2588 register Lisp_Object tem
;
2589 tem
= Fboundp (elt
);
2592 tem
= Fsymbol_value (elt
);
2593 /* If value is a string, output that string literally:
2594 don't check for % within it. */
2595 if (XTYPE (tem
) == Lisp_String
)
2596 hpos
= display_string (w
, vpos
, XSTRING (tem
)->data
,
2597 XSTRING (tem
)->size
,
2598 hpos
, 0, 1, minendcol
, maxendcol
);
2599 /* Give up right away for nil or t. */
2600 else if (!EQ (tem
, elt
))
2601 { elt
= tem
; goto tail_recurse
; }
2608 register Lisp_Object car
, tem
;
2610 /* A cons cell: three distinct cases.
2611 If first element is a string or a cons, process all the elements
2612 and effectively concatenate them.
2613 If first element is a negative number, truncate displaying cdr to
2614 at most that many characters. If positive, pad (with spaces)
2615 to at least that many characters.
2616 If first element is a symbol, process the cadr or caddr recursively
2617 according to whether the symbol's value is non-nil or nil. */
2618 car
= XCONS (elt
)->car
;
2619 if (XTYPE (car
) == Lisp_Symbol
)
2621 tem
= Fboundp (car
);
2622 elt
= XCONS (elt
)->cdr
;
2623 if (XTYPE (elt
) != Lisp_Cons
)
2625 /* elt is now the cdr, and we know it is a cons cell.
2626 Use its car if CAR has a non-nil value. */
2629 tem
= Fsymbol_value (car
);
2631 { elt
= XCONS (elt
)->car
; goto tail_recurse
; }
2633 /* Symbol's value is nil (or symbol is unbound)
2634 Get the cddr of the original list
2635 and if possible find the caddr and use that. */
2636 elt
= XCONS (elt
)->cdr
;
2639 else if (XTYPE (elt
) != Lisp_Cons
)
2641 elt
= XCONS (elt
)->car
;
2644 else if (XTYPE (car
) == Lisp_Int
)
2646 register int lim
= XINT (car
);
2647 elt
= XCONS (elt
)->cdr
;
2649 /* Negative int means reduce maximum width.
2650 DO NOT change MINENDCOL here!
2651 (20 -10 . foo) should truncate foo to 10 col
2652 and then pad to 20. */
2653 maxendcol
= min (maxendcol
, hpos
- lim
);
2656 /* Padding specified. Don't let it be more than
2659 if (lim
> maxendcol
)
2661 /* If that's more padding than already wanted, queue it.
2662 But don't reduce padding already specified even if
2663 that is beyond the current truncation point. */
2664 if (lim
> minendcol
)
2669 else if (XTYPE (car
) == Lisp_String
|| XTYPE (car
) == Lisp_Cons
)
2671 register int limit
= 50;
2672 /* LIMIT is to protect against circular lists. */
2673 while (XTYPE (elt
) == Lisp_Cons
&& --limit
> 0
2674 && hpos
< maxendcol
)
2676 hpos
= display_mode_element (w
, vpos
, hpos
, depth
,
2679 elt
= XCONS (elt
)->cdr
;
2687 return (display_string (w
, vpos
, "*invalid*", -1, hpos
, 0, 1,
2688 minendcol
, maxendcol
));
2692 if (minendcol
> hpos
)
2693 hpos
= display_string (w
, vpos
, "", 0, hpos
, 0, 1, minendcol
, maxendcol
);
2697 /* Return a string for the output of a mode line %-spec for window W,
2698 generated by character C and width MAXWIDTH. */
2700 static char lots_of_dashes
[] = "--------------------------------------------------------------------------------------------------------------------------------------------";
2703 decode_mode_spec (w
, c
, maxwidth
)
2706 register int maxwidth
;
2709 FRAME_PTR f
= XFRAME (WINDOW_FRAME (w
));
2710 char *decode_mode_spec_buf
= (char *) FRAME_TEMP_GLYPHS (f
)->total_contents
;
2713 if (maxwidth
> FRAME_WIDTH (f
))
2714 maxwidth
= FRAME_WIDTH (f
);
2719 obj
= current_buffer
->name
;
2721 if (maxwidth
>= 3 && XSTRING (obj
)->size
> maxwidth
)
2723 bcopy (XSTRING (obj
)->data
, decode_mode_spec_buf
, maxwidth
- 1);
2724 decode_mode_spec_buf
[maxwidth
- 1] = '\\';
2725 decode_mode_spec_buf
[maxwidth
] = '\0';
2726 return decode_mode_spec_buf
;
2732 obj
= current_buffer
->filename
;
2736 else if (XTYPE (obj
) == Lisp_String
&& XSTRING (obj
)->size
> maxwidth
)
2738 bcopy ("...", decode_mode_spec_buf
, 3);
2739 bcopy (XSTRING (obj
)->data
+ XSTRING (obj
)->size
- maxwidth
+ 3,
2740 decode_mode_spec_buf
+ 3, maxwidth
- 3);
2741 return decode_mode_spec_buf
;
2748 int startpos
= marker_position (w
->start
);
2749 int line
, linepos
, topline
;
2752 int height
= XFASTINT (w
->height
);
2754 /* If we decided that this buffer isn't suitable for line numbers,
2755 don't forget that too fast. */
2756 if (EQ (w
->base_line_pos
, w
->buffer
))
2759 /* If the buffer is very big, don't waste time. */
2760 if (ZV
- BEGV
> line_number_display_limit
)
2762 w
->base_line_pos
= Qnil
;
2763 w
->base_line_number
= Qnil
;
2767 if (!NILP (w
->base_line_number
)
2768 && !NILP (w
->base_line_pos
)
2769 && XFASTINT (w
->base_line_pos
) <= marker_position (w
->start
))
2771 line
= XFASTINT (w
->base_line_number
);
2772 linepos
= XFASTINT (w
->base_line_pos
);
2780 /* Count lines from base line to window start position. */
2781 nlines
= display_count_lines (linepos
, startpos
, startpos
, &junk
);
2783 topline
= nlines
+ line
;
2785 /* Determine a new base line, if the old one is too close
2786 or too far away, or if we did not have one.
2787 "Too close" means it's plausible a scroll-down would
2789 if (startpos
== BEGV
)
2791 XFASTINT (w
->base_line_number
) = topline
;
2792 XFASTINT (w
->base_line_pos
) = BEGV
;
2794 else if (nlines
< height
+ 25 || nlines
> height
* 3 + 50
2799 int distance
= (height
* 2 + 30) * 200;
2801 if (startpos
- distance
> limit
)
2802 limit
= startpos
- distance
;
2804 nlines
= display_count_lines (startpos
, limit
,
2807 /* If we couldn't find the lines we wanted within
2809 give up on line numbers for this window. */
2810 if (position
== startpos
- distance
)
2812 w
->base_line_pos
= w
->buffer
;
2813 w
->base_line_number
= Qnil
;
2817 XFASTINT (w
->base_line_number
) = topline
- nlines
;
2818 XFASTINT (w
->base_line_pos
) = position
;
2821 /* Now count lines from the start pos to point. */
2822 nlines
= display_count_lines (startpos
, PT
, PT
, &junk
);
2824 /* Record that we did display the line number. */
2825 line_number_displayed
= 1;
2827 /* Make the string to show. */
2828 sprintf (decode_mode_spec_buf
, "%d", topline
+ nlines
);
2829 return decode_mode_spec_buf
;
2834 obj
= current_buffer
->mode_name
;
2838 if (BEGV
> BEG
|| ZV
< Z
)
2843 if (!NILP (current_buffer
->read_only
))
2845 if (MODIFF
> current_buffer
->save_modified
)
2850 if (MODIFF
> current_buffer
->save_modified
)
2855 /* status of process */
2856 obj
= Fget_buffer_process (Fcurrent_buffer ());
2858 return "no process";
2860 obj
= Fsymbol_name (Fprocess_status (obj
));
2864 case 't': /* indicate TEXT or BINARY */
2866 decode_mode_spec_buf
[0]
2867 = NILP (current_buffer
->buffer_file_type
) ? "T" : "B";
2868 decode_mode_spec_buf
[1] = 0;
2869 return decode_mode_spec_buf
;
2870 #else /* not MSDOS */
2872 #endif /* not MSDOS */
2876 int pos
= marker_position (w
->start
);
2877 int total
= ZV
- BEGV
;
2879 if (XFASTINT (w
->window_end_pos
) <= Z
- ZV
)
2886 else if (pos
<= BEGV
)
2890 total
= ((pos
- BEGV
) * 100 + total
- 1) / total
;
2891 /* We can't normally display a 3-digit number,
2892 so get us a 2-digit number that is close. */
2895 sprintf (decode_mode_spec_buf
, "%2d%%", total
);
2896 return decode_mode_spec_buf
;
2900 /* Display percentage of size above the bottom of the screen. */
2903 int toppos
= marker_position (w
->start
);
2904 int botpos
= Z
- XFASTINT (w
->window_end_pos
);
2905 int total
= ZV
- BEGV
;
2916 total
= ((botpos
- BEGV
) * 100 + total
- 1) / total
;
2917 /* We can't normally display a 3-digit number,
2918 so get us a 2-digit number that is close. */
2922 sprintf (decode_mode_spec_buf
, "Top%2d%%", total
);
2924 sprintf (decode_mode_spec_buf
, "%2d%%", total
);
2925 return decode_mode_spec_buf
;
2937 if (command_loop_level
> 5)
2939 p
= decode_mode_spec_buf
;
2940 for (i
= 0; i
< command_loop_level
; i
++)
2943 return decode_mode_spec_buf
;
2951 if (command_loop_level
> 5)
2953 p
= decode_mode_spec_buf
;
2954 for (i
= 0; i
< command_loop_level
; i
++)
2957 return decode_mode_spec_buf
;
2965 if (maxwidth
< sizeof (lots_of_dashes
))
2966 return lots_of_dashes
;
2969 for (p
= decode_mode_spec_buf
, i
= maxwidth
; i
> 0; i
--)
2973 return decode_mode_spec_buf
;
2977 if (XTYPE (obj
) == Lisp_String
)
2978 return (char *) XSTRING (obj
)->data
;
2983 /* Count up to N lines starting from FROM.
2984 But don't go beyond LIMIT.
2985 Return the number of lines thus found (always positive).
2986 Store the position after what was found into *POS_PTR. */
2989 display_count_lines (from
, limit
, n
, pos_ptr
)
3002 *pos_ptr
= scan_buffer ('\n', from
, n
, &shortage
, 0);
3008 /* When scanning backwards, scan_buffer stops *after* the last newline
3009 it finds, but does count it. Compensate for that. */
3010 return - n
- shortage
- (*pos_ptr
!= limit
);
3011 return n
- shortage
;
3014 /* Display STRING on one line of window W, starting at HPOS.
3015 Display at position VPOS. Caller should have done get_display_line.
3016 If VPOS == -1, display it as the current frame's title.
3017 LENGTH is the length of STRING, or -1 meaning STRING is null-terminated.
3019 TRUNCATE is GLYPH to display at end if truncated. Zero for none.
3021 MINCOL is the first column ok to end at. (Pad with spaces to this col.)
3022 MAXCOL is the last column ok to end at. Truncate here.
3023 -1 for MINCOL or MAXCOL means no explicit minimum or maximum.
3024 Both count from the left edge of the frame, as does HPOS.
3025 The right edge of W is an implicit maximum.
3026 If TRUNCATE is nonzero, the implicit maximum is one column before the edge.
3028 OBEY_WINDOW_WIDTH says to put spaces or vertical bars
3029 at the place where the current window ends in this line
3030 and not display anything beyond there. Otherwise, only MAXCOL
3031 controls where to stop output.
3033 Returns ending hpos. */
3036 display_string (w
, vpos
, string
, length
, hpos
, truncate
,
3037 obey_window_width
, mincol
, maxcol
)
3039 unsigned char *string
;
3043 int obey_window_width
;
3048 int hscroll
= XINT (w
->hscroll
);
3049 int tab_width
= XINT (XBUFFER (w
->buffer
)->tab_width
);
3050 register GLYPH
*start
;
3051 register GLYPH
*end
;
3052 FRAME_PTR f
= XFRAME (WINDOW_FRAME (w
));
3053 struct frame_glyphs
*desired_glyphs
= FRAME_DESIRED_GLYPHS (f
);
3054 GLYPH
*p1start
= desired_glyphs
->glyphs
[vpos
] + hpos
;
3055 int window_width
= XFASTINT (w
->width
);
3057 /* Use the standard display table, not the window's display table.
3058 We don't want the mode line in rot13. */
3059 register struct Lisp_Vector
*dp
= 0;
3061 if (XTYPE (Vstandard_display_table
) == Lisp_Vector
3062 && XVECTOR (Vstandard_display_table
)->size
== DISP_TABLE_SIZE
)
3063 dp
= XVECTOR (Vstandard_display_table
);
3065 if (tab_width
<= 0 || tab_width
> 1000) tab_width
= 8;
3068 start
= desired_glyphs
->glyphs
[vpos
] + XFASTINT (w
->left
);
3070 if (obey_window_width
)
3072 end
= start
+ window_width
- (truncate
!= 0);
3074 if ((window_width
+ XFASTINT (w
->left
)) != FRAME_WIDTH (f
))
3076 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f
))
3080 for (i
= 0; i
< VERTICAL_SCROLL_BAR_WIDTH
; i
++)
3088 if (! obey_window_width
3089 || (maxcol
>= 0 && end
- desired_glyphs
->glyphs
[vpos
] > maxcol
))
3090 end
= desired_glyphs
->glyphs
[vpos
] + maxcol
;
3092 if (maxcol
>= 0 && mincol
> maxcol
)
3100 /* Specified length. */
3103 /* Unspecified length (null-terminated string). */
3107 if (c
>= 040 && c
< 0177
3108 && (dp
== 0 || XTYPE (DISP_CHAR_VECTOR (dp
, c
)) != Lisp_Vector
))
3118 if (p1
>= start
&& p1
< end
)
3122 while ((p1
- start
+ hscroll
- (hscroll
> 0)) % tab_width
);
3124 else if (dp
!= 0 && XTYPE (DISP_CHAR_VECTOR (dp
, c
)) == Lisp_Vector
)
3126 p1
= copy_part_of_rope (f
, p1
, start
,
3127 XVECTOR (DISP_CHAR_VECTOR (dp
, c
))->contents
,
3128 XVECTOR (DISP_CHAR_VECTOR (dp
, c
))->size
,
3131 else if (c
< 0200 && ! NILP (buffer_defaults
.ctl_arrow
))
3134 *p1
= fix_glyph (f
, (dp
&& XTYPE (DISP_CTRL_GLYPH (dp
)) == Lisp_Int
3135 ? XINT (DISP_CTRL_GLYPH (dp
)) : '^'),
3138 if (p1
>= start
&& p1
< end
)
3145 *p1
= fix_glyph (f
, (dp
&& XTYPE (DISP_ESCAPE_GLYPH (dp
)) == Lisp_Int
3146 ? XINT (DISP_ESCAPE_GLYPH (dp
)) : '\\'),
3149 if (p1
>= start
&& p1
< end
)
3150 *p1
= (c
>> 6) + '0';
3152 if (p1
>= start
&& p1
< end
)
3153 *p1
= (7 & (c
>> 3)) + '0';
3155 if (p1
>= start
&& p1
< end
)
3156 *p1
= (7 & c
) + '0';
3161 if (c
&& length
> 0)
3164 if (truncate
) *p1
++ = fix_glyph (f
, truncate
, 0);
3166 else if (mincol
>= 0)
3168 end
= desired_glyphs
->glyphs
[vpos
] + mincol
;
3174 register int len
= p1
- desired_glyphs
->glyphs
[vpos
];
3176 if (len
> desired_glyphs
->used
[vpos
])
3177 desired_glyphs
->used
[vpos
] = len
;
3178 desired_glyphs
->glyphs
[vpos
][desired_glyphs
->used
[vpos
]] = 0;
3187 staticpro (&last_arrow_position
);
3188 staticpro (&last_arrow_string
);
3189 last_arrow_position
= Qnil
;
3190 last_arrow_string
= Qnil
;
3192 DEFVAR_LISP ("global-mode-string", &Vglobal_mode_string
,
3193 "String (or mode line construct) included (normally) in `mode-line-format'.");
3194 Vglobal_mode_string
= Qnil
;
3196 DEFVAR_LISP ("overlay-arrow-position", &Voverlay_arrow_position
,
3197 "Marker for where to display an arrow on top of the buffer text.\n\
3198 This must be the beginning of a line in order to work.\n\
3199 See also `overlay-arrow-string'.");
3200 Voverlay_arrow_position
= Qnil
;
3202 DEFVAR_LISP ("overlay-arrow-string", &Voverlay_arrow_string
,
3203 "String to display as an arrow. See also `overlay-arrow-position'.");
3204 Voverlay_arrow_string
= Qnil
;
3206 DEFVAR_INT ("scroll-step", &scroll_step
,
3207 "*The number of lines to try scrolling a window by when point moves out.\n\
3208 If that fails to bring point back on frame, point is centered instead.\n\
3209 If this is zero, point is always centered after it moves off frame.");
3211 DEFVAR_INT ("debug-end-pos", &debug_end_pos
, "Don't ask");
3213 DEFVAR_BOOL ("truncate-partial-width-windows",
3214 &truncate_partial_width_windows
,
3215 "*Non-nil means truncate lines in all windows less than full frame wide.");
3216 truncate_partial_width_windows
= 1;
3218 DEFVAR_BOOL ("mode-line-inverse-video", &mode_line_inverse_video
,
3219 "*Non-nil means use inverse video for the mode line.");
3220 mode_line_inverse_video
= 1;
3222 DEFVAR_INT ("line-number-display-limit", &line_number_display_limit
,
3223 "*Maximum buffer size for which line number should be displayed.");
3224 line_number_display_limit
= 1000000;
3226 DEFVAR_BOOL ("highlight-nonselected-windows", &highlight_nonselected_windows
,
3227 "*Non-nil means highlight region even in nonselected windows.");
3228 highlight_nonselected_windows
= 1;
3231 /* initialize the window system */
3234 Lisp_Object root_window
;
3235 #ifndef COMPILER_REGISTER_BUG
3237 #endif /* COMPILER_REGISTER_BUG */
3238 struct window
*mini_w
;
3240 this_line_bufpos
= 0;
3242 mini_w
= XWINDOW (minibuf_window
);
3243 root_window
= FRAME_ROOT_WINDOW (XFRAME (WINDOW_FRAME (mini_w
)));
3245 echo_area_glyphs
= 0;
3246 previous_echo_glyphs
= 0;
3248 if (!noninteractive
)
3250 FRAME_PTR f
= XFRAME (WINDOW_FRAME (XWINDOW (root_window
)));
3251 XFASTINT (XWINDOW (root_window
)->top
) = 0;
3252 set_window_height (root_window
, FRAME_HEIGHT (f
) - 1, 0);
3253 XFASTINT (mini_w
->top
) = FRAME_HEIGHT (f
) - 1;
3254 set_window_height (minibuf_window
, 1, 0);
3256 XFASTINT (XWINDOW (root_window
)->width
) = FRAME_WIDTH (f
);
3257 XFASTINT (mini_w
->width
) = FRAME_WIDTH (f
);