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 ();
240 if (frame_up_to_date_hook
!= 0 && ! gc_in_progress
)
241 (*frame_up_to_date_hook
) (XFRAME (XWINDOW (minibuf_window
)->frame
));
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. */
256 truncate_echo_area (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. */
274 message (m
, a1
, a2
, a3
)
281 if (noninteractive_need_newline
)
283 noninteractive_need_newline
= 0;
284 fprintf (stderr
, m
, a1
, a2
, a3
);
285 if (cursor_in_echo_area
== 0)
286 fprintf (stderr
, "\n");
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
;
297 choose_minibuf_frame ();
298 echo_frame
= XFRAME (WINDOW_FRAME (XWINDOW (minibuf_window
)));
300 echo_frame
= selected_frame
;
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
))
317 len
= doprnt (FRAME_MESSAGE_BUF (echo_frame
),
318 FRAME_WIDTH (echo_frame
), m
, 0, 3, a
);
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
);
329 /* Print should start at the beginning of the message
331 message_buf_print
= 0;
343 choose_minibuf_frame ();
346 f
= XFRAME (WINDOW_FRAME (XWINDOW (minibuf_window
)));
348 if (! FRAME_VISIBLE_P (f
))
353 redraw_garbaged_frames ();
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. */
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. */
403 x_consider_frame_title (frame
)
406 FRAME_PTR f
= XFRAME (frame
);
408 if (FRAME_X_P (f
) && ! FRAME_MINIBUF_ONLY_P (f
))
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
);
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. */
427 register struct window
*w
= XWINDOW (selected_window
);
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 ();
449 redraw_garbaged_frames ();
453 all_windows
= (update_mode_lines
|| buffer_shared
> 1
454 || clip_changed
|| windows_or_buffers_changed
);
456 /* Update the menu bar item lists, if appropriate.
457 This has to be done before any actual redisplay
458 or generation of display lines. */
461 Lisp_Object tail
, frame
;
463 FOR_EACH_FRAME (tail
, frame
)
464 update_menu_bar (XFRAME (frame
));
467 update_menu_bar (selected_frame
);
470 /* Do a frame update, taking possible shortcuts into account.
471 This is the main external entry point for redisplay.
473 If the last redisplay displayed an echo area message and that
474 message is no longer requested, we clear the echo area
475 or bring back the minibuffer if that is in use.
477 Do not call eval from within this function.
478 Calls to eval after the call to echo_area_display would confuse
479 the display_line mechanism and would cause a crash.
480 Calls to eval before that point will work most of the time,
481 but can still lose, because this function
482 can be called from signal handlers; with alarms set up;
483 or with synchronous processes running.
485 See Fcall_process; if you called it from here, it could be
486 entered recursively. */
488 static int do_verify_charstarts
;
493 register struct window
*w
= XWINDOW (selected_window
);
497 register int tlbufpos
, tlendpos
;
499 extern int input_pending
;
504 /* Set the visible flags for all frames.
505 Do this before checking for resized or garbaged frames; they want
506 to know if their frames are visible.
507 See the comment in frame.h for FRAME_SAMPLE_VISIBILITY. */
509 Lisp_Object tail
, frame
;
511 FOR_EACH_FRAME (tail
, frame
)
512 FRAME_SAMPLE_VISIBILITY (XFRAME (frame
));
515 /* Notice any pending interrupt request to change frame size. */
516 do_pending_window_change ();
520 redraw_garbaged_frames ();
524 if (clip_changed
|| windows_or_buffers_changed
)
527 /* Detect case that we need to write a star in the mode line. */
528 if (XFASTINT (w
->last_modified
) < MODIFF
529 && XFASTINT (w
->last_modified
) <= current_buffer
->save_modified
)
531 w
->update_mode_line
= Qt
;
532 if (buffer_shared
> 1)
536 FRAME_SCROLL_BOTTOM_VPOS (XFRAME (w
->frame
)) = -1;
538 all_windows
= update_mode_lines
|| buffer_shared
> 1;
540 /* If specs for an arrow have changed, do thorough redisplay
541 to ensure we remove any arrow that should no longer exist. */
542 if (! EQ (Voverlay_arrow_position
, last_arrow_position
)
543 || ! EQ (Voverlay_arrow_string
, last_arrow_string
))
544 all_windows
= 1, clip_changed
= 1;
546 /* Normally the message* functions will have already displayed and
547 updated the echo area, but the frame may have been trashed, or
548 the update may have been preempted, so display the echo area
550 if (echo_area_glyphs
|| previous_echo_glyphs
)
552 echo_area_display ();
556 /* If showing region, and mark has changed, must redisplay whole window. */
557 if (((!NILP (Vtransient_mark_mode
)
558 && !NILP (XBUFFER (w
->buffer
)->mark_active
))
559 != !NILP (w
->region_showing
))
560 || (!NILP (w
->region_showing
)
561 && !EQ (w
->region_showing
,
562 Fmarker_position (XBUFFER (w
->buffer
)->mark
))))
563 this_line_bufpos
= -1;
565 tlbufpos
= this_line_bufpos
;
566 tlendpos
= this_line_endpos
;
567 if (!all_windows
&& tlbufpos
> 0 && NILP (w
->update_mode_line
)
568 && FRAME_VISIBLE_P (XFRAME (w
->frame
))
569 /* Make sure recorded data applies to current buffer, etc */
570 && this_line_buffer
== current_buffer
571 && current_buffer
== XBUFFER (w
->buffer
)
572 && NILP (w
->force_start
)
573 /* Point must be on the line that we have info recorded about */
575 && PT
<= Z
- tlendpos
576 /* All text outside that line, including its final newline,
578 && (XFASTINT (w
->last_modified
) >= MODIFF
579 || (beg_unchanged
>= tlbufpos
- 1
581 /* If selective display, can't optimize
582 if the changes start at the beginning of the line. */
583 && ((XTYPE (current_buffer
->selective_display
) == Lisp_Int
584 && XINT (current_buffer
->selective_display
) > 0
585 ? (beg_unchanged
>= tlbufpos
588 && end_unchanged
>= tlendpos
589 && Z
- GPT
>= tlendpos
)))
591 if (tlbufpos
> BEGV
&& FETCH_CHAR (tlbufpos
- 1) != '\n'
593 || FETCH_CHAR (tlbufpos
) == '\n'))
594 /* Former continuation line has disappeared by becoming empty */
596 else if (XFASTINT (w
->last_modified
) < MODIFF
597 || MINI_WINDOW_P (w
))
600 overlay_arrow_seen
= 0;
601 display_text_line (w
, tlbufpos
, this_line_vpos
, this_line_start_hpos
,
602 pos_tab_offset (w
, tlbufpos
));
603 /* If line contains point, is not continued,
604 and ends at same distance from eob as before, we win */
605 if (cursor_vpos
>= 0 && this_line_bufpos
606 && this_line_endpos
== tlendpos
)
608 /* If this is not the window's last line,
609 we must adjust the charstarts of the lines below. */
610 if (this_line_vpos
+ 1
611 < XFASTINT (w
->top
) + window_internal_height (w
))
613 int left
= XFASTINT (w
->left
);
614 int *charstart_next_line
615 = FRAME_CURRENT_GLYPHS (XFRAME (WINDOW_FRAME (w
)))->charstarts
[this_line_vpos
+ 1];
619 if (Z
- tlendpos
== ZV
)
620 /* This line ends at end of (accessible part of) buffer.
621 There is no newline to count. */
622 adjust
= Z
- tlendpos
- charstart_next_line
[left
];
624 /* This line ends in a newline.
625 Must take account of the newline and the rest of the
626 text that follows. */
627 adjust
= Z
- tlendpos
+ 1 - charstart_next_line
[left
];
629 adjust_window_charstarts (w
, this_line_vpos
, adjust
);
632 if (XFASTINT (w
->width
) != FRAME_WIDTH (XFRAME (WINDOW_FRAME (w
))))
633 preserve_other_columns (w
);
639 else if (PT
== XFASTINT (w
->last_point
))
643 do_pending_window_change ();
648 /* If highlighting the region, we can't just move the cursor. */
649 else if (! (!NILP (Vtransient_mark_mode
)
650 && !NILP (current_buffer
->mark_active
))
651 && NILP (w
->region_showing
))
653 pos
= *compute_motion (tlbufpos
, 0,
654 XINT (w
->hscroll
) ? 1 - XINT (w
->hscroll
) : 0,
655 PT
, 2, - (1 << (SHORTBITS
- 1)),
656 window_internal_width (w
) - 1,
658 pos_tab_offset (w
, tlbufpos
), w
);
661 FRAME_CURSOR_X (selected_frame
)
662 = XFASTINT (w
->left
) + max (pos
.hpos
, 0);
663 FRAME_CURSOR_Y (selected_frame
) = this_line_vpos
;
670 /* Text changed drastically or point moved off of line */
671 cancel_line (this_line_vpos
, selected_frame
);
674 this_line_bufpos
= 0;
675 all_windows
|= buffer_shared
> 1;
679 Lisp_Object tail
, frame
;
681 #ifdef HAVE_X_WINDOWS
682 /* Since we're doing a thorough redisplay, we might as well
683 recompute all our display faces. */
684 clear_face_vector ();
687 /* Recompute # windows showing selected buffer.
688 This will be incremented each time such a window is displayed. */
691 FOR_EACH_FRAME (tail
, frame
)
693 FRAME_PTR f
= XFRAME (frame
);
695 /* Mark all the scroll bars to be removed; we'll redeem the ones
696 we want when we redisplay their windows. */
697 if (condemn_scroll_bars_hook
)
698 (*condemn_scroll_bars_hook
) (f
);
700 if (FRAME_VISIBLE_P (f
))
701 redisplay_windows (FRAME_ROOT_WINDOW (f
));
702 #ifdef HAVE_X_WINDOWS
703 else if (FRAME_ICONIFIED_P (f
)
704 && ! MINI_WINDOW_P (XWINDOW (f
->selected_window
)))
705 x_consider_frame_title (frame
);
708 /* Any scroll bars which redisplay_windows should have nuked
709 should now go away. */
710 if (judge_scroll_bars_hook
)
711 (*judge_scroll_bars_hook
) (f
);
714 else if (FRAME_VISIBLE_P (selected_frame
))
716 redisplay_window (selected_window
, 1);
717 if (XFASTINT (w
->width
) != FRAME_WIDTH (selected_frame
))
718 preserve_other_columns (w
);
722 /* Prevent various kinds of signals during display update.
723 stdio is not robust about handling signals,
724 which can cause an apparent I/O error. */
736 for (tail
= Vframe_list
; CONSP (tail
); tail
= XCONS (tail
)->cdr
)
740 if (XTYPE (XCONS (tail
)->car
) != Lisp_Frame
)
743 f
= XFRAME (XCONS (tail
)->car
);
744 if (FRAME_VISIBLE_P (f
))
746 pause
|= update_frame (f
, 0, 0);
749 mark_window_display_accurate (f
->root_window
, 1);
750 if (frame_up_to_date_hook
!= 0)
751 (*frame_up_to_date_hook
) (f
);
757 #endif /* MULTI_FRAME */
759 if (FRAME_VISIBLE_P (selected_frame
))
760 pause
= update_frame (selected_frame
, 0, 0);
762 /* We may have called echo_area_display at the top of this
763 function. If the echo area is on another frame, that may
764 have put text on a frame other than the selected one, so the
765 above call to update_frame would not have caught it. Catch
769 = XFRAME (WINDOW_FRAME (XWINDOW (minibuf_window
)));
771 if (mini_frame
!= selected_frame
)
772 pause
|= update_frame (mini_frame
, 0, 0);
776 /* If frame does not match, prevent doing single-line-update next time.
777 Also, don't forget to check every line to update the arrow. */
780 this_line_bufpos
= 0;
781 if (!NILP (last_arrow_position
))
783 last_arrow_position
= Qt
;
784 last_arrow_string
= Qt
;
786 /* If we pause after scrolling, some lines in current_frame
787 may be null, so preserve_other_columns won't be able to
788 preserve all the vertical-bar separators. So, avoid using it
790 if (XFASTINT (w
->width
) != FRAME_WIDTH (selected_frame
))
791 update_mode_lines
= 1;
794 /* Now text on frame agrees with windows, so
795 put info into the windows for partial redisplay to follow */
799 register struct buffer
*b
= XBUFFER (w
->buffer
);
801 blank_end_of_window
= 0;
803 unchanged_modified
= BUF_MODIFF (b
);
804 beg_unchanged
= BUF_GPT (b
) - BUF_BEG (b
);
805 end_unchanged
= BUF_Z (b
) - BUF_GPT (b
);
807 XFASTINT (w
->last_point
) = BUF_PT (b
);
808 XFASTINT (w
->last_point_x
) = FRAME_CURSOR_X (selected_frame
);
809 XFASTINT (w
->last_point_y
) = FRAME_CURSOR_Y (selected_frame
);
812 mark_window_display_accurate (FRAME_ROOT_WINDOW (selected_frame
), 1);
815 w
->update_mode_line
= Qnil
;
816 XFASTINT (w
->last_modified
) = BUF_MODIFF (b
);
817 w
->window_end_valid
= w
->buffer
;
818 last_arrow_position
= Voverlay_arrow_position
;
819 last_arrow_string
= Voverlay_arrow_string
;
820 if (do_verify_charstarts
)
821 verify_charstarts (w
);
822 if (frame_up_to_date_hook
!= 0)
823 (*frame_up_to_date_hook
) (selected_frame
);
825 update_mode_lines
= 0;
826 windows_or_buffers_changed
= 0;
829 /* Start SIGIO interrupts coming again.
830 Having them off during the code above
831 makes it less likely one will discard output,
832 but not impossible, since there might be stuff
833 in the system buffer here.
834 But it is much hairier to try to do anything about that. */
840 /* Change frame size now if a change is pending. */
841 do_pending_window_change ();
844 /* Redisplay, but leave alone any recent echo area message
845 unless another message has been requested in its place.
847 This is useful in situations where you need to redisplay but no
848 user action has occurred, making it inappropriate for the message
849 area to be cleared. See tracking_off and
850 wait_reading_process_input for examples of these situations. */
852 redisplay_preserve_echo_area ()
854 if (echo_area_glyphs
== 0 && previous_echo_glyphs
!= 0)
856 echo_area_glyphs
= previous_echo_glyphs
;
858 echo_area_glyphs
= 0;
865 mark_window_display_accurate (window
, flag
)
869 register struct window
*w
;
871 for (;!NILP (window
); window
= w
->next
)
873 if (XTYPE (window
) != Lisp_Window
) abort ();
874 w
= XWINDOW (window
);
876 if (!NILP (w
->buffer
))
878 XFASTINT (w
->last_modified
)
880 : XBUFFER (w
->buffer
) == current_buffer
881 ? MODIFF
: BUF_MODIFF (XBUFFER (w
->buffer
));
883 /* Record if we are showing a region, so can make sure to
884 update it fully at next redisplay. */
885 w
->region_showing
= (!NILP (Vtransient_mark_mode
)
886 && !NILP (XBUFFER (w
->buffer
)->mark_active
)
887 ? Fmarker_position (XBUFFER (w
->buffer
)->mark
)
891 w
->window_end_valid
= w
->buffer
;
892 w
->update_mode_line
= Qnil
;
894 if (!NILP (w
->vchild
))
895 mark_window_display_accurate (w
->vchild
, flag
);
896 if (!NILP (w
->hchild
))
897 mark_window_display_accurate (w
->hchild
, flag
);
902 last_arrow_position
= Voverlay_arrow_position
;
903 last_arrow_string
= Voverlay_arrow_string
;
907 /* t is unequal to any useful value of Voverlay_arrow_... */
908 last_arrow_position
= Qt
;
909 last_arrow_string
= Qt
;
913 /* Update the menu bar item list for frame F.
914 This has to be done before we start to fill in any display lines,
915 because it can call eval. */
921 struct buffer
*old
= current_buffer
;
923 register struct window
*w
;
924 window
= FRAME_SELECTED_WINDOW (f
);
925 w
= XWINDOW (window
);
927 if (update_mode_lines
)
928 w
->update_mode_line
= Qt
;
930 /* When we reach a frame's selected window, redo the frame's menu bar. */
931 if (!NILP (w
->update_mode_line
)
933 && FRAME_EXTERNAL_MENU_BAR (f
)
935 && FRAME_MENU_BAR_LINES (f
) > 0
939 /* If the user has switched buffers or windows, we need to
940 recompute to reflect the new bindings. But we'll
941 recompute when update_mode_lines is set too; that means
942 that people can use force-mode-line-update to request
943 that the menu bar be recomputed. The adverse effect on
944 the rest of the redisplay algorithm is about the same as
945 windows_or_buffers_changed anyway. */
946 if (windows_or_buffers_changed
948 || (XFASTINT (w
->last_modified
) < MODIFF
949 && (XFASTINT (w
->last_modified
)
950 <= XBUFFER (w
->buffer
)->save_modified
)))
952 struct buffer
*prev
= current_buffer
;
953 current_buffer
= XBUFFER (w
->buffer
);
954 FRAME_MENU_BAR_ITEMS (f
) = menu_bar_items (FRAME_MENU_BAR_ITEMS (f
));
955 current_buffer
= prev
;
957 set_frame_menubar (f
, 0);
958 #endif /* USE_X_TOOLKIT */
965 /* Redisplay WINDOW and its subwindows and siblings. */
968 redisplay_windows (window
)
971 for (; !NILP (window
); window
= XWINDOW (window
)->next
)
972 redisplay_window (window
, 0);
975 /* Redisplay window WINDOW and its subwindows. */
978 redisplay_window (window
, just_this_one
)
982 register struct window
*w
= XWINDOW (window
);
983 FRAME_PTR f
= XFRAME (WINDOW_FRAME (w
));
985 register int lpoint
= PT
;
986 struct buffer
*old
= current_buffer
;
987 register int width
= window_internal_width (w
) - 1;
989 register int hscroll
= XINT (w
->hscroll
);
993 int window_needs_modeline
;
995 if (FRAME_HEIGHT (f
) == 0) abort (); /* Some bug zeros some core */
997 /* If this is a combination window, do its children; that's all. */
999 if (!NILP (w
->vchild
))
1001 redisplay_windows (w
->vchild
);
1004 if (!NILP (w
->hchild
))
1006 redisplay_windows (w
->hchild
);
1009 if (NILP (w
->buffer
))
1012 height
= window_internal_height (w
);
1014 if (MINI_WINDOW_P (w
))
1016 if (w
== XWINDOW (minibuf_window
))
1018 if (echo_area_glyphs
)
1019 /* We've already displayed the echo area glyphs, if any. */
1020 goto finish_scroll_bars
;
1024 /* This is a minibuffer, but it's not the currently active one, so
1026 int vpos
= XFASTINT (XWINDOW (FRAME_MINIBUF_WINDOW (f
))->top
);
1029 for (i
= 0; i
< height
; i
++)
1031 get_display_line (f
, vpos
+ i
, 0);
1032 display_string (w
, vpos
+ i
, "", 0, 0, 0, 1, 0, width
);
1035 goto finish_scroll_bars
;
1039 if (update_mode_lines
)
1040 w
->update_mode_line
= Qt
;
1042 /* Otherwise set up data on this window; select its buffer and point value */
1044 current_buffer
= XBUFFER (w
->buffer
);
1047 /* Count number of windows showing the selected buffer. */
1050 && current_buffer
== XBUFFER (XWINDOW (selected_window
)->buffer
))
1053 /* POINT refers normally to the selected window.
1054 For any other window, set up appropriate value. */
1056 if (!EQ (window
, selected_window
))
1058 SET_PT (marker_position (w
->pointm
));
1062 Fset_marker (w
->pointm
, make_number (PT
), Qnil
);
1064 else if (PT
> (ZV
- 1))
1067 Fset_marker (w
->pointm
, make_number (PT
), Qnil
);
1071 /* If window-start is screwed up, choose a new one. */
1072 if (XMARKER (w
->start
)->buffer
!= current_buffer
)
1075 startp
= marker_position (w
->start
);
1077 /* Handle case where place to start displaying has been specified,
1078 unless the specified location is outside the accessible range. */
1079 if (!NILP (w
->force_start
))
1081 /* Forget any recorded base line for line number display. */
1082 w
->base_line_number
= Qnil
;
1083 w
->update_mode_line
= Qt
;
1084 w
->force_start
= Qnil
;
1085 XFASTINT (w
->last_modified
) = 0;
1086 if (startp
< BEGV
) startp
= BEGV
;
1087 if (startp
> ZV
) startp
= ZV
;
1088 try_window (window
, startp
);
1089 if (cursor_vpos
< 0)
1091 /* ??? What should happen here if highlighting a region? */
1092 /* If point does not appear, move point so it does appear */
1093 pos
= *compute_motion (startp
, 0,
1094 ((EQ (window
, minibuf_window
) && startp
== 1)
1095 ? minibuf_prompt_width
: 0)
1097 (hscroll
? 1 - hscroll
: 0),
1099 - (1 << (SHORTBITS
- 1)),
1100 width
, hscroll
, pos_tab_offset (w
, startp
), w
);
1101 SET_PT (pos
.bufpos
);
1102 if (w
!= XWINDOW (selected_window
))
1103 Fset_marker (w
->pointm
, make_number (PT
), Qnil
);
1106 if (current_buffer
== old
)
1108 FRAME_CURSOR_X (f
) = max (0, pos
.hpos
) + XFASTINT (w
->left
);
1109 FRAME_CURSOR_Y (f
) = pos
.vpos
+ XFASTINT (w
->top
);
1115 /* Handle case where text has not changed, only point,
1116 and it has not moved off the frame */
1118 /* This code is not used for minibuffer for the sake of
1119 the case of redisplaying to replace an echo area message;
1120 since in that case the minibuffer contents per se are usually unchanged.
1121 This code is of no real use in the minibuffer since
1122 the handling of this_line_bufpos, etc.,
1123 in redisplay handles the same cases. */
1125 if (XFASTINT (w
->last_modified
) >= MODIFF
1126 && PT
>= startp
&& !clip_changed
1127 && (just_this_one
|| XFASTINT (w
->width
) == FRAME_WIDTH (f
))
1128 /* Can't use this case if highlighting a region. */
1129 && !(!NILP (Vtransient_mark_mode
) && !NILP (current_buffer
->mark_active
))
1130 && NILP (w
->region_showing
)
1131 && !EQ (window
, minibuf_window
))
1133 pos
= *compute_motion (startp
, 0, (hscroll
? 1 - hscroll
: 0),
1134 PT
, height
+ 1, 10000, width
, hscroll
,
1135 pos_tab_offset (w
, startp
), w
);
1137 if (pos
.vpos
< height
)
1139 /* Ok, point is still on frame */
1140 if (w
== XWINDOW (FRAME_SELECTED_WINDOW (f
)))
1142 /* These variables are supposed to be origin 1 */
1143 FRAME_CURSOR_X (f
) = max (0, pos
.hpos
) + XFASTINT (w
->left
);
1144 FRAME_CURSOR_Y (f
) = pos
.vpos
+ XFASTINT (w
->top
);
1146 /* This doesn't do the trick, because if a window to the right of
1147 this one must be redisplayed, this does nothing because there
1148 is nothing in DesiredFrame yet, and then the other window is
1149 redisplayed, making likes that are empty in this window's columns.
1150 if (XFASTINT (w->width) != FRAME_WIDTH (f))
1151 preserve_my_columns (w);
1155 /* Don't bother trying redisplay with same start;
1156 we already know it will lose */
1158 /* If current starting point was originally the beginning of a line
1159 but no longer is, find a new starting point. */
1160 else if (!NILP (w
->start_at_line_beg
)
1162 || FETCH_CHAR (startp
- 1) == '\n'))
1166 else if (just_this_one
&& !MINI_WINDOW_P (w
)
1168 && XFASTINT (w
->last_modified
)
1169 /* or else vmotion on first line won't work. */
1170 && ! NILP (w
->start_at_line_beg
)
1171 && ! EQ (w
->window_end_valid
, Qnil
)
1172 && do_id
&& !clip_changed
1173 && !blank_end_of_window
1174 && XFASTINT (w
->width
) == FRAME_WIDTH (f
)
1175 /* Can't use this case if highlighting a region. */
1176 && !(!NILP (Vtransient_mark_mode
)
1177 && !NILP (current_buffer
->mark_active
))
1178 && NILP (w
->region_showing
)
1179 && EQ (last_arrow_position
, Voverlay_arrow_position
)
1180 && EQ (last_arrow_string
, Voverlay_arrow_string
)
1181 && (tem
= try_window_id (FRAME_SELECTED_WINDOW (f
)))
1184 /* tem > 0 means success. tem == -1 means choose new start.
1185 tem == -2 means try again with same start,
1186 and nothing but whitespace follows the changed stuff.
1187 tem == 0 means try again with same start. */
1191 else if (startp
>= BEGV
&& startp
<= ZV
1192 /* Avoid starting display at end of buffer! */
1193 && (startp
< ZV
|| startp
== BEGV
1194 || (XFASTINT (w
->last_modified
) >= MODIFF
)))
1196 /* Try to redisplay starting at same place as before */
1197 /* If point has not moved off frame, accept the results */
1198 try_window (window
, startp
);
1199 if (cursor_vpos
>= 0)
1201 if (!just_this_one
|| clip_changed
|| beg_unchanged
< startp
)
1202 /* Forget any recorded base line for line number display. */
1203 w
->base_line_number
= Qnil
;
1207 cancel_my_columns (w
);
1210 XFASTINT (w
->last_modified
) = 0;
1211 w
->update_mode_line
= Qt
;
1213 /* Try to scroll by specified few lines */
1215 if (scroll_step
&& !clip_changed
)
1219 pos
= *vmotion (Z
- XFASTINT (w
->window_end_pos
),
1220 scroll_step
, width
, hscroll
, window
);
1221 if (pos
.vpos
>= height
)
1225 pos
= *vmotion (startp
, PT
< startp
? - scroll_step
: scroll_step
,
1226 width
, hscroll
, window
);
1228 if (PT
>= pos
.bufpos
)
1230 try_window (window
, pos
.bufpos
);
1231 if (cursor_vpos
>= 0)
1233 if (!just_this_one
|| clip_changed
|| beg_unchanged
< startp
)
1234 /* Forget any recorded base line for line number display. */
1235 w
->base_line_number
= Qnil
;
1239 cancel_my_columns (w
);
1244 /* Finally, just choose place to start which centers point */
1247 /* Forget any previously recorded base line for line number display. */
1248 w
->base_line_number
= Qnil
;
1250 pos
= *vmotion (PT
, - (height
/ 2), width
, hscroll
, window
);
1251 try_window (window
, pos
.bufpos
);
1253 startp
= marker_position (w
->start
);
1254 w
->start_at_line_beg
=
1255 (startp
== BEGV
|| FETCH_CHAR (startp
- 1) == '\n') ? Qt
: Qnil
;
1258 if ((!NILP (w
->update_mode_line
)
1259 /* If window not full width, must redo its mode line
1260 if the window to its side is being redone */
1261 || (!just_this_one
&& width
< FRAME_WIDTH (f
) - 1)
1262 || INTEGERP (w
->base_line_pos
))
1263 && height
!= XFASTINT (w
->height
))
1264 display_mode_line (w
);
1265 if (! line_number_displayed
1266 && ! BUFFERP (w
->base_line_pos
))
1268 w
->base_line_pos
= Qnil
;
1269 w
->base_line_number
= Qnil
;
1272 /* When we reach a frame's selected window, redo the frame's menu bar. */
1273 if (!NILP (w
->update_mode_line
)
1274 #ifdef USE_X_TOOLKIT
1275 && FRAME_EXTERNAL_MENU_BAR (f
)
1277 && FRAME_MENU_BAR_LINES (f
) > 0
1279 && EQ (FRAME_SELECTED_WINDOW (f
), window
))
1280 display_menu_bar (w
);
1283 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f
))
1285 int start
, end
, whole
;
1287 /* Calculate the start and end positions for the current window.
1288 At some point, it would be nice to choose between scrollbars
1289 which reflect the whole buffer size, with special markers
1290 indicating narrowing, and scrollbars which reflect only the
1293 Note that minibuffers sometimes aren't displaying any text. */
1294 if (! MINI_WINDOW_P (w
)
1295 || (w
== XWINDOW (minibuf_window
) && ! echo_area_glyphs
))
1298 start
= startp
- BEGV
;
1299 /* I don't think this is guaranteed to be right. For the
1300 moment, we'll pretend it is. */
1301 end
= (Z
- XINT (w
->window_end_pos
)) - BEGV
;
1303 if (end
< start
) end
= start
;
1304 if (whole
< (end
- start
)) whole
= end
- start
;
1307 start
= end
= whole
= 0;
1309 /* Indicate what this scroll bar ought to be displaying now. */
1310 (*set_vertical_scroll_bar_hook
) (w
, end
- start
, whole
, start
);
1312 /* Note that we actually used the scroll bar attached to this window,
1313 so it shouldn't be deleted at the end of redisplay. */
1314 (*redeem_scroll_bar_hook
) (w
);
1318 current_buffer
= old
;
1322 /* Do full redisplay on one window, starting at position `pos'. */
1325 try_window (window
, pos
)
1329 register struct window
*w
= XWINDOW (window
);
1330 register int height
= window_internal_height (w
);
1331 register int vpos
= XFASTINT (w
->top
);
1332 register int last_text_vpos
= vpos
;
1333 int tab_offset
= pos_tab_offset (w
, pos
);
1334 FRAME_PTR f
= XFRAME (w
->frame
);
1335 int width
= window_internal_width (w
) - 1;
1336 struct position val
;
1338 Fset_marker (w
->start
, make_number (pos
), Qnil
);
1340 overlay_arrow_seen
= 0;
1341 val
.hpos
= XINT (w
->hscroll
) ? 1 - XINT (w
->hscroll
) : 0;
1343 while (--height
>= 0)
1345 val
= *display_text_line (w
, pos
, vpos
, val
.hpos
, tab_offset
);
1346 tab_offset
+= width
;
1347 if (val
.vpos
) tab_offset
= 0;
1349 if (pos
!= val
.bufpos
)
1351 /* Next line, unless prev line ended in end of buffer with no cr */
1352 = vpos
- (val
.vpos
&& (FETCH_CHAR (val
.bufpos
- 1) != '\n'
1353 #ifdef USE_TEXT_PROPERTIES
1354 || ! NILP (Fget_char_property (val
.bufpos
-1,
1362 /* If last line is continued in middle of character,
1363 include the split character in the text considered on the frame */
1364 if (val
.hpos
< (XINT (w
->hscroll
) ? 1 - XINT (w
->hscroll
) : 0))
1367 /* If bottom just moved off end of frame, change mode line percentage. */
1368 if (XFASTINT (w
->window_end_pos
) == 0
1370 w
->update_mode_line
= Qt
;
1372 /* Say where last char on frame will be, once redisplay is finished. */
1373 XFASTINT (w
->window_end_pos
) = Z
- pos
;
1374 XFASTINT (w
->window_end_vpos
) = last_text_vpos
- XFASTINT (w
->top
);
1375 /* But that is not valid info until redisplay finishes. */
1376 w
->window_end_valid
= Qnil
;
1379 /* Try to redisplay when buffer is modified locally,
1380 computing insert/delete line to preserve text outside
1381 the bounds of the changes.
1382 Return 1 if successful, 0 if if cannot tell what to do,
1383 or -1 to tell caller to find a new window start,
1384 or -2 to tell caller to do normal redisplay with same window start. */
1387 try_window_id (window
)
1391 register struct window
*w
= XWINDOW (window
);
1392 register int height
= window_internal_height (w
);
1393 FRAME_PTR f
= XFRAME (w
->frame
);
1394 int top
= XFASTINT (w
->top
);
1395 int start
= marker_position (w
->start
);
1396 int width
= window_internal_width (w
) - 1;
1397 int hscroll
= XINT (w
->hscroll
);
1398 int lmargin
= hscroll
> 0 ? 1 - hscroll
: 0;
1400 register int i
, tem
;
1401 int last_text_vpos
= 0;
1404 = XTYPE (current_buffer
->selective_display
) == Lisp_Int
1405 ? XINT (current_buffer
->selective_display
)
1406 : !NILP (current_buffer
->selective_display
) ? -1 : 0;
1408 struct position val
, bp
, ep
, xp
, pp
;
1409 int scroll_amount
= 0;
1411 int tab_offset
, epto
;
1413 if (GPT
- BEG
< beg_unchanged
)
1414 beg_unchanged
= GPT
- BEG
;
1415 if (Z
- GPT
< end_unchanged
)
1416 end_unchanged
= Z
- GPT
;
1418 if (beg_unchanged
+ BEG
< start
)
1419 return 0; /* Give up if changes go above top of window */
1421 /* Find position before which nothing is changed. */
1422 bp
= *compute_motion (start
, 0, lmargin
,
1423 min (ZV
, beg_unchanged
+ BEG
), height
+ 1, 0,
1424 width
, hscroll
, pos_tab_offset (w
, start
), w
);
1425 if (bp
.vpos
>= height
)
1427 if (PT
< bp
.bufpos
&& !bp
.contin
)
1429 /* All changes are below the frame, and point is on the frame.
1430 We don't need to change the frame at all.
1431 But we need to update window_end_pos to account for
1432 any change in buffer size. */
1433 bp
= *compute_motion (start
, 0, lmargin
,
1435 width
, hscroll
, pos_tab_offset (w
, start
), w
);
1436 XFASTINT (w
->window_end_vpos
) = height
;
1437 XFASTINT (w
->window_end_pos
) = Z
- bp
.bufpos
;
1445 /* Find beginning of that frame line. Must display from there. */
1446 bp
= *vmotion (bp
.bufpos
, 0, width
, hscroll
, window
);
1453 /* If about to start displaying at the beginning of a continuation line,
1454 really start with previous frame line, in case it was not
1455 continued when last redisplayed */
1456 if ((bp
.contin
&& bp
.bufpos
- 1 == beg_unchanged
&& vpos
> 0)
1458 /* Likewise if we have to worry about selective display. */
1459 (selective
> 0 && bp
.bufpos
- 1 == beg_unchanged
&& vpos
> 0))
1461 bp
= *vmotion (bp
.bufpos
, -1, width
, hscroll
, window
);
1466 if (bp
.contin
&& bp
.hpos
!= lmargin
)
1468 val
.hpos
= bp
.prevhpos
- width
+ lmargin
;
1474 /* Find first visible newline after which no more is changed. */
1475 tem
= find_next_newline (Z
- max (end_unchanged
, Z
- ZV
), 1);
1477 while (tem
< ZV
- 1 && (indented_beyond_p (tem
, selective
)))
1478 tem
= find_next_newline (tem
, 1);
1480 /* Compute the cursor position after that newline. */
1481 ep
= *compute_motion (pos
, vpos
, val
.hpos
, tem
,
1482 height
, - (1 << (SHORTBITS
- 1)),
1483 width
, hscroll
, pos_tab_offset (w
, bp
.bufpos
), w
);
1485 /* If changes reach past the text available on the frame,
1486 just display rest of frame. */
1487 if (ep
.bufpos
> Z
- XFASTINT (w
->window_end_pos
))
1490 stop_vpos
= ep
.vpos
;
1492 /* If no newline before ep, the line ep is on includes some changes
1493 that must be displayed. Make sure we don't stop before it. */
1494 /* Also, if changes reach all the way until ep.bufpos,
1495 it is possible that something was deleted after the
1496 newline before it, so the following line must be redrawn. */
1497 if (stop_vpos
== ep
.vpos
1498 && (ep
.bufpos
== BEGV
1499 || FETCH_CHAR (ep
.bufpos
- 1) != '\n'
1500 || ep
.bufpos
== Z
- end_unchanged
))
1501 stop_vpos
= ep
.vpos
+ 1;
1504 overlay_arrow_seen
= 0;
1506 /* If changes do not reach to bottom of window,
1507 figure out how much to scroll the rest of the window */
1508 if (stop_vpos
< height
)
1510 /* Now determine how far up or down the rest of the window has moved */
1511 epto
= pos_tab_offset (w
, ep
.bufpos
);
1512 xp
= *compute_motion (ep
.bufpos
, ep
.vpos
, ep
.hpos
,
1513 Z
- XFASTINT (w
->window_end_pos
),
1514 10000, 0, width
, hscroll
, epto
, w
);
1515 scroll_amount
= xp
.vpos
- XFASTINT (w
->window_end_vpos
);
1517 /* Is everything on frame below the changes whitespace?
1518 If so, no scrolling is really necessary. */
1519 for (i
= ep
.bufpos
; i
< xp
.bufpos
; i
++)
1521 tem
= FETCH_CHAR (i
);
1522 if (tem
!= ' ' && tem
!= '\n' && tem
!= '\t')
1528 XFASTINT (w
->window_end_vpos
) += scroll_amount
;
1530 /* Before doing any scrolling, verify that point will be on frame. */
1531 if (PT
> ep
.bufpos
&& !(PT
<= xp
.bufpos
&& xp
.bufpos
< height
))
1533 if (PT
<= xp
.bufpos
)
1535 pp
= *compute_motion (ep
.bufpos
, ep
.vpos
, ep
.hpos
,
1536 PT
, height
, - (1 << (SHORTBITS
- 1)),
1537 width
, hscroll
, epto
, w
);
1541 pp
= *compute_motion (xp
.bufpos
, xp
.vpos
, xp
.hpos
,
1542 PT
, height
, - (1 << (SHORTBITS
- 1)),
1544 pos_tab_offset (w
, xp
.bufpos
), w
);
1546 if (pp
.bufpos
< PT
|| pp
.vpos
== height
)
1548 cursor_vpos
= pp
.vpos
+ top
;
1549 cursor_hpos
= pp
.hpos
+ XFASTINT (w
->left
);
1552 if (stop_vpos
- scroll_amount
>= height
1553 || ep
.bufpos
== xp
.bufpos
)
1555 if (scroll_amount
< 0)
1556 stop_vpos
-= scroll_amount
;
1558 /* In this path, we have altered window_end_vpos
1559 and not left it negative.
1560 We must make sure that, in case display is preempted
1561 before the frame changes to reflect what we do here,
1562 further updates will not come to try_window_id
1563 and assume the frame and window_end_vpos match. */
1564 blank_end_of_window
= 1;
1566 else if (!scroll_amount
)
1568 /* Even if we don't need to scroll, we must adjust the
1569 charstarts of subsequent lines (that we won't redisplay)
1570 according to the amount of text inserted or deleted. */
1571 int oldpos
= FRAME_CURRENT_GLYPHS (f
)->charstarts
[ep
.vpos
+ top
][0];
1572 int adjust
= ep
.bufpos
- oldpos
;
1573 adjust_window_charstarts (w
, ep
.vpos
+ top
- 1, adjust
);
1575 else if (bp
.bufpos
== Z
- end_unchanged
)
1577 /* If reprinting everything is nearly as fast as scrolling,
1578 don't bother scrolling. Can happen if lines are short. */
1579 if (scroll_cost (f
, bp
.vpos
+ top
- scroll_amount
,
1580 top
+ height
- max (0, scroll_amount
),
1582 > xp
.bufpos
- bp
.bufpos
- 20)
1583 /* Return "try normal display with same window-start."
1584 Too bad we can't prevent further scroll-thinking. */
1586 /* If pure deletion, scroll up as many lines as possible.
1587 In common case of killing a line, this can save the
1588 following line from being overwritten by scrolling
1589 and therefore having to be redrawn. */
1590 tem
= scroll_frame_lines (f
, bp
.vpos
+ top
- scroll_amount
,
1591 top
+ height
- max (0, scroll_amount
),
1592 scroll_amount
, bp
.bufpos
);
1597 /* scroll_frame_lines did not properly adjust subsequent
1598 lines' charstarts in the case where the text of the
1599 screen line at bp.vpos has changed.
1600 (This can happen in a deletion that ends in mid-line.)
1601 To adjust properly, we need to make things constent at
1603 So do a second adjust to make that happen.
1604 Note that stop_vpos >= ep.vpos, so it is sufficient
1605 to update the charstarts for lines at ep.vpos and below. */
1607 = FRAME_CURRENT_GLYPHS (f
)->charstarts
[ep
.vpos
+ top
][0];
1608 adjust_window_charstarts (w
, ep
.vpos
+ top
- 1,
1609 ep
.bufpos
- oldstart
);
1612 else if (scroll_amount
)
1614 /* If reprinting everything is nearly as fast as scrolling,
1615 don't bother scrolling. Can happen if lines are short. */
1616 /* Note that if scroll_amount > 0, xp.bufpos - bp.bufpos is an
1617 overestimate of cost of reprinting, since xp.bufpos
1618 would end up below the bottom of the window. */
1619 if (scroll_cost (f
, ep
.vpos
+ top
- scroll_amount
,
1620 top
+ height
- max (0, scroll_amount
),
1622 > xp
.bufpos
- ep
.bufpos
- 20)
1623 /* Return "try normal display with same window-start."
1624 Too bad we can't prevent further scroll-thinking. */
1626 tem
= scroll_frame_lines (f
, ep
.vpos
+ top
- scroll_amount
,
1627 top
+ height
- max (0, scroll_amount
),
1628 scroll_amount
, ep
.bufpos
);
1629 if (!tem
) stop_vpos
= height
;
1633 /* In any case, do not display past bottom of window */
1634 if (stop_vpos
>= height
)
1640 /* Handle case where pos is before w->start --
1641 can happen if part of line had been clipped and is not clipped now */
1642 if (vpos
== 0 && pos
< marker_position (w
->start
))
1643 Fset_marker (w
->start
, make_number (pos
), Qnil
);
1645 /* Redisplay the lines where the text was changed */
1646 last_text_vpos
= vpos
;
1647 tab_offset
= pos_tab_offset (w
, pos
);
1648 /* If we are starting display in mid-character, correct tab_offset
1649 to account for passing the line that that character really starts in. */
1650 if (val
.hpos
< lmargin
)
1651 tab_offset
+= width
;
1652 while (vpos
< stop_vpos
)
1654 val
= *display_text_line (w
, pos
, top
+ vpos
++, val
.hpos
, tab_offset
);
1655 tab_offset
+= width
;
1656 if (val
.vpos
) tab_offset
= 0;
1657 if (pos
!= val
.bufpos
)
1659 /* Next line, unless prev line ended in end of buffer with no cr */
1660 = vpos
- (val
.vpos
&& FETCH_CHAR (val
.bufpos
- 1) != '\n');
1664 /* There are two cases:
1665 1) we have displayed down to the bottom of the window
1666 2) we have scrolled lines below stop_vpos by scroll_amount */
1670 /* If last line is continued in middle of character,
1671 include the split character in the text considered on the frame */
1672 if (val
.hpos
< lmargin
)
1674 XFASTINT (w
->window_end_vpos
) = last_text_vpos
;
1675 XFASTINT (w
->window_end_pos
) = Z
- val
.bufpos
;
1678 /* If scrolling made blank lines at window bottom,
1679 redisplay to fill those lines */
1680 if (scroll_amount
< 0)
1682 /* Don't consider these lines for general-purpose scrolling.
1683 That will save time in the scrolling computation. */
1684 FRAME_SCROLL_BOTTOM_VPOS (f
) = xp
.vpos
;
1689 vpos
= height
+ scroll_amount
;
1690 else if (xp
.contin
&& xp
.hpos
!= lmargin
)
1692 val
.hpos
= xp
.prevhpos
- width
+ lmargin
;
1696 blank_end_of_window
= 1;
1697 tab_offset
= pos_tab_offset (w
, pos
);
1698 /* If we are starting display in mid-character, correct tab_offset
1699 to account for passing the line that that character starts in. */
1700 if (val
.hpos
< lmargin
)
1701 tab_offset
+= width
;
1703 while (vpos
< height
)
1705 val
= *display_text_line (w
, pos
, top
+ vpos
++, val
.hpos
, tab_offset
);
1706 tab_offset
+= width
;
1707 if (val
.vpos
) tab_offset
= 0;
1711 /* Here is a case where display_text_line sets cursor_vpos wrong.
1712 Make it be fixed up, below. */
1718 /* If bottom just moved off end of frame, change mode line percentage. */
1719 if (XFASTINT (w
->window_end_pos
) == 0
1721 w
->update_mode_line
= Qt
;
1723 /* Attempt to adjust end-of-text positions to new bottom line */
1726 delta
= height
- xp
.vpos
;
1728 || (delta
> 0 && xp
.bufpos
<= ZV
)
1729 || (delta
== 0 && xp
.hpos
))
1731 val
= *vmotion (Z
- XFASTINT (w
->window_end_pos
),
1732 delta
, width
, hscroll
, window
);
1733 XFASTINT (w
->window_end_pos
) = Z
- val
.bufpos
;
1734 XFASTINT (w
->window_end_vpos
) += val
.vpos
;
1738 w
->window_end_valid
= Qnil
;
1740 /* If point was not in a line that was displayed, find it */
1741 if (cursor_vpos
< 0)
1743 val
= *compute_motion (start
, 0, lmargin
, PT
, 10000, 10000,
1744 width
, hscroll
, pos_tab_offset (w
, start
), w
);
1745 /* Admit failure if point is off frame now */
1746 if (val
.vpos
>= height
)
1748 for (vpos
= 0; vpos
< height
; vpos
++)
1749 cancel_line (vpos
+ top
, f
);
1752 cursor_vpos
= val
.vpos
+ top
;
1753 cursor_hpos
= val
.hpos
+ XFASTINT (w
->left
);
1756 FRAME_CURSOR_X (f
) = max (0, cursor_hpos
);
1757 FRAME_CURSOR_Y (f
) = cursor_vpos
;
1761 val
= *compute_motion (start
, 0, lmargin
, ZV
,
1762 height
, - (1 << (SHORTBITS
- 1)),
1763 width
, hscroll
, pos_tab_offset (w
, start
), w
);
1764 if (val
.vpos
!= XFASTINT (w
->window_end_vpos
))
1766 if (XFASTINT (w
->window_end_pos
)
1774 /* Mark a section of BUF as modified, but only for the sake of redisplay.
1775 This is useful for recording changes to overlays.
1777 We increment the buffer's modification timestamp and set the
1778 redisplay caches (windows_or_buffers_changed, beg_unchanged, etc)
1779 as if the region of text between START and END had been modified;
1780 the redisplay code will check this against the windows' timestamps,
1781 and redraw the appropriate area of the buffer.
1783 However, if the buffer is unmodified, we bump the last-save
1784 timestamp as well, so that incrementing the timestamp doesn't fool
1785 Emacs into thinking that the buffer's text has been modified.
1787 Tweaking the timestamps shouldn't hurt the first-modification
1788 timestamps recorded in the undo records; those values aren't
1789 written until just before a real text modification is made, so they
1790 will never catch the timestamp value just before this function gets
1794 redisplay_region (buf
, start
, end
)
1804 start
= end
; end
= temp
;
1807 if (buf
!= current_buffer
)
1808 windows_or_buffers_changed
= 1;
1811 if (unchanged_modified
== MODIFF
)
1813 beg_unchanged
= start
- BEG
;
1814 end_unchanged
= Z
- end
;
1818 if (Z
- end
< end_unchanged
)
1819 end_unchanged
= Z
- end
;
1820 if (start
- BEG
< beg_unchanged
)
1821 beg_unchanged
= start
- BEG
;
1825 /* Increment the buffer's time stamp, but also increment the save
1826 and autosave timestamps, so as not to screw up that timekeeping. */
1827 if (BUF_MODIFF (buf
) == buf
->save_modified
)
1828 buf
->save_modified
++;
1829 if (BUF_MODIFF (buf
) == buf
->auto_save_modified
)
1830 buf
->auto_save_modified
++;
1832 BUF_MODIFF (buf
) ++;
1836 /* Copy LEN glyphs starting address FROM to the rope TO.
1837 But don't actually copy the parts that would come in before S.
1838 Value is TO, advanced past the copied data.
1839 F is the frame we are displaying in. */
1842 copy_part_of_rope (f
, to
, s
, from
, len
, face
)
1844 register GLYPH
*to
; /* Copy to here. */
1845 register GLYPH
*s
; /* Starting point. */
1846 Lisp_Object
*from
; /* Data to copy. */
1848 int face
; /* Face to apply to glyphs which don't specify one. */
1851 register Lisp_Object
*fp
= from
;
1852 /* These cache the results of the last call to compute_glyph_face. */
1854 int last_merged
= 0;
1856 #ifdef HAVE_X_WINDOWS
1857 if (! FRAME_TERMCAP_P (f
))
1860 int glyph
= (INTEGERP (*fp
) ? XFASTINT (*fp
) : 0);
1863 if (FAST_GLYPH_FACE (glyph
) == 0)
1864 /* If GLYPH has no face code, use FACE. */
1866 else if (FAST_GLYPH_FACE (glyph
) == last_code
)
1867 /* If it's same as previous glyph, use same result. */
1868 facecode
= last_merged
;
1871 /* Merge this glyph's face and remember the result. */
1872 last_code
= FAST_GLYPH_FACE (glyph
);
1873 last_merged
= facecode
= compute_glyph_face (f
, last_code
, face
);
1877 *to
= FAST_MAKE_GLYPH (FAST_GLYPH_CHAR (glyph
), facecode
);
1885 if (to
>= s
) *to
= (INTEGERP (*fp
) ? XFASTINT (*fp
) : 0);
1892 /* Correct a glyph by replacing its specified user-level face code
1893 with a displayable computed face code. */
1896 fix_glyph (f
, glyph
, cface
)
1901 #ifdef HAVE_X_WINDOWS
1902 if (! FRAME_TERMCAP_P (f
))
1904 if (FAST_GLYPH_FACE (glyph
) != 0)
1905 cface
= compute_glyph_face (f
, FAST_GLYPH_FACE (glyph
), cface
);
1906 glyph
= FAST_MAKE_GLYPH (FAST_GLYPH_CHAR (glyph
), cface
);
1912 /* Display one line of window w, starting at position START in W's buffer.
1913 Display starting at horizontal position HPOS, which is normally zero
1914 or negative. A negative value causes output up to hpos = 0 to be discarded.
1915 This is done for negative hscroll, or when this is a continuation line
1916 and the continuation occurred in the middle of a multi-column character.
1918 TABOFFSET is an offset for ostensible hpos, used in tab stop calculations.
1920 Display on position VPOS on the frame. (origin 0).
1922 Returns a STRUCT POSITION giving character to start next line with
1923 and where to display it, including a zero or negative hpos.
1924 The vpos field is not really a vpos; it is 1 unless the line is continued */
1926 struct position val_display_text_line
;
1928 static struct position
*
1929 display_text_line (w
, start
, vpos
, hpos
, taboffset
)
1936 register int pos
= start
;
1941 register unsigned char *p
;
1943 register GLYPH
*leftmargin
;
1944 register GLYPH
*p1prev
= 0;
1945 register GLYPH
*p1start
;
1947 FRAME_PTR f
= XFRAME (w
->frame
);
1948 int tab_width
= XINT (current_buffer
->tab_width
);
1949 int ctl_arrow
= !NILP (current_buffer
->ctl_arrow
);
1950 int width
= window_internal_width (w
) - 1;
1951 struct position val
;
1954 int hscroll
= XINT (w
->hscroll
);
1955 int truncate
= (hscroll
1956 || (truncate_partial_width_windows
1957 && XFASTINT (w
->width
) < FRAME_WIDTH (f
))
1958 || !NILP (current_buffer
->truncate_lines
));
1960 /* 1 if we should highlight the region. */
1961 int highlight_region
1962 = !NILP (Vtransient_mark_mode
) && !NILP (current_buffer
->mark_active
);
1963 int region_beg
, region_end
;
1966 = XTYPE (current_buffer
->selective_display
) == Lisp_Int
1967 ? XINT (current_buffer
->selective_display
)
1968 : !NILP (current_buffer
->selective_display
) ? -1 : 0;
1969 register struct frame_glyphs
*desired_glyphs
= FRAME_DESIRED_GLYPHS (f
);
1970 register struct Lisp_Vector
*dp
= window_display_table (w
);
1972 Lisp_Object default_invis_vector
[3];
1973 /* Nonzero means display something where there are invisible lines.
1974 The precise value is the number of glyphs to display. */
1976 = (selective
&& dp
&& XTYPE (DISP_INVIS_VECTOR (dp
)) == Lisp_Vector
1977 ? XVECTOR (DISP_INVIS_VECTOR (dp
))->size
1978 : selective
&& !NILP (current_buffer
->selective_display_ellipses
)
1980 /* This is the sequence of Lisp objects to display
1981 when there are invisible lines. */
1982 Lisp_Object
*invis_vector_contents
1983 = (dp
&& XTYPE (DISP_INVIS_VECTOR (dp
)) == Lisp_Vector
1984 ? XVECTOR (DISP_INVIS_VECTOR (dp
))->contents
1985 : default_invis_vector
);
1987 GLYPH truncator
= (dp
== 0 || XTYPE (DISP_TRUNC_GLYPH (dp
)) != Lisp_Int
1988 ? '$' : XINT (DISP_TRUNC_GLYPH (dp
)));
1989 GLYPH continuer
= (dp
== 0 || XTYPE (DISP_CONTINUE_GLYPH (dp
)) != Lisp_Int
1990 ? '\\' : XINT (DISP_CONTINUE_GLYPH (dp
)));
1992 /* The next buffer location at which the face should change, due
1993 to overlays or text property changes. */
1994 int next_face_change
;
1996 #ifdef USE_TEXT_PROPERTIES
1997 /* The next location where the `invisible' property changes */
2001 /* The face we're currently using. */
2002 int current_face
= 0;
2005 XFASTINT (default_invis_vector
[2]) = '.';
2006 default_invis_vector
[0] = default_invis_vector
[1] = default_invis_vector
[2];
2008 hpos
+= XFASTINT (w
->left
);
2009 get_display_line (f
, vpos
, XFASTINT (w
->left
));
2010 if (tab_width
<= 0 || tab_width
> 1000) tab_width
= 8;
2012 /* Show where to highlight the region. */
2013 if (highlight_region
&& XMARKER (current_buffer
->mark
)->buffer
!= 0
2014 /* Maybe highlight only in selected window. */
2015 && (highlight_nonselected_windows
2016 || w
== XWINDOW (selected_window
)))
2018 region_beg
= marker_position (current_buffer
->mark
);
2019 if (PT
< region_beg
)
2021 region_end
= region_beg
;
2026 w
->region_showing
= Qt
;
2029 region_beg
= region_end
= -1;
2031 if (MINI_WINDOW_P (w
) && start
== 1
2032 && vpos
== XFASTINT (w
->top
))
2036 minibuf_prompt_width
2037 = (display_string (w
, vpos
, minibuf_prompt
, -1, hpos
,
2038 (!truncate
? continuer
: truncator
),
2041 hpos
+= minibuf_prompt_width
;
2044 minibuf_prompt_width
= 0;
2047 desired_glyphs
->bufp
[vpos
] = pos
;
2048 p1
= desired_glyphs
->glyphs
[vpos
] + hpos
;
2050 charstart
= desired_glyphs
->charstarts
[vpos
] + hpos
;
2051 /* In case we don't ever write anything into it... */
2054 leftmargin
= desired_glyphs
->glyphs
[vpos
] + XFASTINT (w
->left
);
2055 endp
= leftmargin
+ width
;
2057 /* Arrange the overlays nicely for our purposes. Usually, we call
2058 display_text_line on only one line at a time, in which case this
2059 can't really hurt too much, or we call it on lines which appear
2060 one after another in the buffer, in which case all calls to
2061 recenter_overlay_lists but the first will be pretty cheap. */
2062 recenter_overlay_lists (current_buffer
, pos
);
2064 /* Loop generating characters.
2065 Stop at end of buffer, before newline,
2066 if reach or pass continuation column,
2067 or at face change. */
2069 next_face_change
= pos
;
2070 #ifdef USE_TEXT_PROPERTIES
2071 next_invisible
= pos
;
2075 /* Record which glyph starts a character,
2076 and the character position of that character. */
2077 if (p1
>= leftmargin
)
2078 charstart
[p1
- p1start
] = pos
;
2086 /* Did we hit the end of the visible region of the buffer?
2091 /* Did we reach point? Record the cursor location. */
2092 if (pos
== PT
&& cursor_vpos
< 0)
2095 cursor_hpos
= p1
- leftmargin
;
2098 #ifdef USE_TEXT_PROPERTIES
2099 /* if the `invisible' property is set to t, we can skip to
2100 the next property change */
2101 while (pos
== next_invisible
&& pos
< end
)
2103 Lisp_Object position
, limit
, endpos
, prop
, ww
;
2104 XFASTINT (position
) = pos
;
2105 XSET (ww
, Lisp_Window
, w
);
2106 prop
= Fget_char_property (position
, Qinvisible
, ww
);
2107 /* This is just an estimate to give reasonable
2108 performance; nothing should go wrong if it is too small. */
2109 limit
= Fnext_overlay_change (position
);
2110 if (XFASTINT (limit
) > pos
+ 50)
2111 XFASTINT (limit
) = pos
+ 50;
2112 endpos
= Fnext_single_property_change (position
, Qinvisible
,
2113 Fcurrent_buffer (), limit
);
2114 if (INTEGERP (endpos
))
2115 next_invisible
= XINT (endpos
);
2117 next_invisible
= end
;
2120 if (pos
< PT
&& next_invisible
>= PT
)
2123 cursor_hpos
= p1
- leftmargin
;
2125 pos
= next_invisible
;
2132 #ifdef HAVE_X_WINDOWS
2133 /* Did we hit a face change? Figure out what face we should
2134 use now. We also hit this the first time through the
2135 loop, to see what face we should start with. */
2136 if (pos
>= next_face_change
&& FRAME_X_P (f
))
2137 current_face
= compute_char_face (f
, w
, pos
,
2138 region_beg
, region_end
,
2139 &next_face_change
, pos
+ 50, 0);
2144 #ifdef USE_TEXT_PROPERTIES
2145 if (pos
< next_invisible
&& next_invisible
< pause
)
2146 pause
= next_invisible
;
2148 if (pos
< next_face_change
&& next_face_change
< pause
)
2149 pause
= next_face_change
;
2151 /* Wouldn't you hate to read the next line to someone over
2153 if (pos
< PT
&& PT
< pause
)
2155 if (pos
< GPT
&& GPT
< pause
)
2158 p
= &FETCH_CHAR (pos
);
2161 if (c
>= 040 && c
< 0177
2162 && (dp
== 0 || XTYPE (DISP_CHAR_VECTOR (dp
, c
)) != Lisp_Vector
))
2164 if (p1
>= leftmargin
)
2165 *p1
= MAKE_GLYPH (f
, c
, current_face
);
2173 && indented_beyond_p (pos
+ 1, selective
))
2176 pos
= find_next_newline (pos
+ 1, 1);
2177 if (FETCH_CHAR (pos
- 1) == '\n')
2180 if (invis
&& selective_rlen
> 0 && p1
>= leftmargin
)
2182 p1
+= selective_rlen
;
2183 if (p1
- leftmargin
> width
)
2185 copy_part_of_rope (f
, p1prev
, p1prev
, invis_vector_contents
,
2186 (p1
- p1prev
), current_face
);
2188 #ifdef HAVE_X_WINDOWS
2189 /* Draw the face of the newline character as extending all the
2190 way to the end of the frame line. */
2193 *p1
++ = FAST_MAKE_GLYPH (' ', current_face
);
2201 if (p1
>= leftmargin
&& p1
< endp
)
2202 *p1
= MAKE_GLYPH (f
, ' ', current_face
);
2205 while ((p1
- leftmargin
+ taboffset
+ hscroll
- (hscroll
> 0))
2208 else if (c
== Ctl ('M') && selective
== -1)
2210 pos
= find_next_newline (pos
, 1);
2211 if (FETCH_CHAR (pos
- 1) == '\n')
2213 if (selective_rlen
> 0)
2215 p1
+= selective_rlen
;
2216 if (p1
- leftmargin
> width
)
2218 copy_part_of_rope (f
, p1prev
, p1prev
, invis_vector_contents
,
2219 (p1
- p1prev
), current_face
);
2221 #ifdef HAVE_X_WINDOWS
2222 /* Draw the face of the newline character as extending all the
2223 way to the end of the frame line. */
2226 *p1
++ = FAST_MAKE_GLYPH (' ', current_face
);
2230 else if (dp
!= 0 && XTYPE (DISP_CHAR_VECTOR (dp
, c
)) == Lisp_Vector
)
2232 p1
= copy_part_of_rope (f
, p1
, leftmargin
,
2233 XVECTOR (DISP_CHAR_VECTOR (dp
, c
))->contents
,
2234 XVECTOR (DISP_CHAR_VECTOR (dp
, c
))->size
,
2237 else if (c
< 0200 && ctl_arrow
)
2239 if (p1
>= leftmargin
)
2240 *p1
= fix_glyph (f
, (dp
&& XTYPE (DISP_CTRL_GLYPH (dp
)) == Lisp_Int
2241 ? XINT (DISP_CTRL_GLYPH (dp
)) : '^'),
2244 if (p1
>= leftmargin
&& p1
< endp
)
2245 *p1
= MAKE_GLYPH (f
, c
^ 0100, current_face
);
2250 if (p1
>= leftmargin
)
2251 *p1
= fix_glyph (f
, (dp
&& XTYPE (DISP_ESCAPE_GLYPH (dp
)) == Lisp_Int
2252 ? XINT (DISP_ESCAPE_GLYPH (dp
)) : '\\'),
2255 if (p1
>= leftmargin
&& p1
< endp
)
2256 *p1
= MAKE_GLYPH (f
, (c
>> 6) + '0', current_face
);
2258 if (p1
>= leftmargin
&& p1
< endp
)
2259 *p1
= MAKE_GLYPH (f
, (7 & (c
>> 3)) + '0', current_face
);
2261 if (p1
>= leftmargin
&& p1
< endp
)
2262 *p1
= MAKE_GLYPH (f
, (7 & c
) + '0', current_face
);
2266 /* Do nothing here for a char that's entirely off the left edge. */
2267 if (p1
>= leftmargin
)
2269 /* For all the glyphs occupied by this character, except for the
2270 first, store -1 in charstarts. */
2273 int *p2x
= &charstart
[p1prev
- p1start
];
2274 int *p2
= &charstart
[p1
- p1start
];
2276 /* The window's left column should always
2277 contain a character position.
2278 And don't clobber anything to the left of that. */
2279 if (p1prev
< leftmargin
)
2285 /* This loop skips over the char p2x initially points to. */
2294 val
.hpos
= - XINT (w
->hscroll
);
2302 /* Store 0 in this charstart line for the positions where
2303 there is no character. But do leave what was recorded
2304 for the character that ended the line. */
2305 /* Add 1 in the endtest to compensate for the fact that ENDP was
2306 made from WIDTH, which is 1 less than the window's actual
2308 for (i
= p1
- p1start
+ 1; i
< endp
- p1start
+ 1; i
++)
2311 /* Handle continuation in middle of a character */
2312 /* by backing up over it */
2315 /* Don't back up if we never actually displayed any text.
2316 This occurs when the minibuffer prompt takes up the whole line. */
2319 /* Start the next line with that same character */
2321 /* but at negative hpos, to skip the columns output on this line. */
2322 val
.hpos
+= p1prev
- endp
;
2325 /* Keep in this line everything up to the continuation column. */
2329 /* Finish deciding which character to start the next line on,
2330 and what hpos to start it at.
2331 Also set `lastpos' to the last position which counts as "on this line"
2332 for cursor-positioning. */
2336 if (FETCH_CHAR (pos
) == '\n')
2338 /* If stopped due to a newline, start next line after it */
2340 /* Check again for hidden lines, in case the newline occurred exactly
2341 at the right margin. */
2342 while (pos
< ZV
&& selective
> 0
2343 && indented_beyond_p (pos
, selective
))
2344 pos
= find_next_newline (pos
, 1);
2347 /* Stopped due to right margin of window */
2351 *p1
++ = fix_glyph (f
, truncator
, 0);
2352 /* Truncating => start next line after next newline,
2353 and point is on this line if it is before the newline,
2354 and skip none of first char of next line */
2356 pos
= find_next_newline (pos
, 1);
2357 while (pos
< ZV
&& selective
> 0
2358 && indented_beyond_p (pos
, selective
));
2359 val
.hpos
= XINT (w
->hscroll
) ? 1 - XINT (w
->hscroll
) : 0;
2361 lastpos
= pos
- (FETCH_CHAR (pos
- 1) == '\n');
2365 *p1
++ = fix_glyph (f
, continuer
, 0);
2372 /* If point is at eol or in invisible text at eol,
2373 record its frame location now. */
2375 if (start
<= PT
&& PT
<= lastpos
&& cursor_vpos
< 0)
2378 cursor_hpos
= p1
- leftmargin
;
2381 if (cursor_vpos
== vpos
)
2383 if (cursor_hpos
< 0) cursor_hpos
= 0;
2384 if (cursor_hpos
> width
) cursor_hpos
= width
;
2385 cursor_hpos
+= XFASTINT (w
->left
);
2386 if (w
== XWINDOW (FRAME_SELECTED_WINDOW (f
)))
2388 FRAME_CURSOR_Y (f
) = cursor_vpos
;
2389 FRAME_CURSOR_X (f
) = cursor_hpos
;
2391 if (w
== XWINDOW (selected_window
))
2393 /* Line is not continued and did not start
2394 in middle of character */
2395 if ((hpos
- XFASTINT (w
->left
)
2396 == (XINT (w
->hscroll
) ? 1 - XINT (w
->hscroll
) : 0))
2399 this_line_bufpos
= start
;
2400 this_line_buffer
= current_buffer
;
2401 this_line_vpos
= cursor_vpos
;
2402 this_line_start_hpos
= hpos
;
2403 this_line_endpos
= Z
- lastpos
;
2406 this_line_bufpos
= 0;
2411 /* If hscroll and line not empty, insert truncation-at-left marker */
2412 if (hscroll
&& lastpos
!= start
)
2414 *leftmargin
= fix_glyph (f
, truncator
, 0);
2415 if (p1
<= leftmargin
)
2416 p1
= leftmargin
+ 1;
2419 if (XFASTINT (w
->width
) + XFASTINT (w
->left
) != FRAME_WIDTH (f
))
2422 if (p1
< leftmargin
) p1
= leftmargin
;
2423 while (p1
< endp
) *p1
++ = SPACEGLYPH
;
2425 /* Don't draw vertical bars if we're using scroll bars. They're
2426 covered up by the scroll bars, and it's distracting to see
2427 them when the scroll bar windows are flickering around to be
2429 *p1
++ = (FRAME_HAS_VERTICAL_SCROLL_BARS (f
)
2432 desired_glyphs
->used
[vpos
] = max (desired_glyphs
->used
[vpos
],
2433 p1
- desired_glyphs
->glyphs
[vpos
]);
2434 desired_glyphs
->glyphs
[vpos
][desired_glyphs
->used
[vpos
]] = 0;
2436 /* If the start of this line is the overlay arrow-position,
2437 then put the arrow string into the display-line. */
2439 if (XTYPE (Voverlay_arrow_position
) == Lisp_Marker
2440 && current_buffer
== XMARKER (Voverlay_arrow_position
)->buffer
2441 && start
== marker_position (Voverlay_arrow_position
)
2442 && XTYPE (Voverlay_arrow_string
) == Lisp_String
2443 && ! overlay_arrow_seen
)
2445 unsigned char *p
= XSTRING (Voverlay_arrow_string
)->data
;
2447 int len
= XSTRING (Voverlay_arrow_string
)->size
;
2452 for (i
= 0; i
< len
; i
++)
2453 leftmargin
[i
] = p
[i
];
2455 /* Bug in SunOS 4.1.1 compiler requires this intermediate variable. */
2456 arrow_end
= (leftmargin
- desired_glyphs
->glyphs
[vpos
]) + len
;
2457 if (desired_glyphs
->used
[vpos
] < arrow_end
)
2458 desired_glyphs
->used
[vpos
] = arrow_end
;
2460 overlay_arrow_seen
= 1;
2464 val_display_text_line
= val
;
2465 return &val_display_text_line
;
2468 /* Redisplay the menu bar in the frame for window W. */
2471 display_menu_bar (w
)
2474 Lisp_Object items
, tail
;
2475 register int vpos
= 0;
2476 register FRAME_PTR f
= XFRAME (WINDOW_FRAME (w
));
2477 int maxendcol
= FRAME_WIDTH (f
);
2481 #ifndef USE_X_TOOLKIT
2482 if (FRAME_MENU_BAR_LINES (f
) <= 0)
2485 get_display_line (f
, vpos
, 0);
2487 items
= FRAME_MENU_BAR_ITEMS (f
);
2488 for (i
= 0; i
< XVECTOR (items
)->size
; i
+= 3)
2490 Lisp_Object pos
, string
;
2491 string
= XVECTOR (items
)->contents
[i
+ 1];
2495 XFASTINT (XVECTOR (items
)->contents
[i
+ 2]) = hpos
;
2497 if (hpos
< maxendcol
)
2498 hpos
= display_string (XWINDOW (FRAME_ROOT_WINDOW (f
)), vpos
,
2499 XSTRING (string
)->data
,
2500 XSTRING (string
)->size
,
2501 hpos
, 0, 0, hpos
, maxendcol
);
2502 /* Put a gap of 3 spaces between items. */
2503 if (hpos
< maxendcol
)
2505 int hpos1
= hpos
+ 3;
2506 hpos
= display_string (w
, vpos
, "", 0, hpos
, 0, 0,
2507 min (hpos1
, maxendcol
), maxendcol
);
2511 FRAME_DESIRED_GLYPHS (f
)->bufp
[vpos
] = 0;
2512 FRAME_DESIRED_GLYPHS (f
)->highlight
[vpos
] = mode_line_inverse_video
;
2514 /* Fill out the line with spaces. */
2515 if (maxendcol
> hpos
)
2516 hpos
= display_string (w
, vpos
, "", 0, hpos
, 0, 0, maxendcol
, maxendcol
);
2518 /* Clear the rest of the lines allocated to the menu bar. */
2520 while (vpos
< FRAME_MENU_BAR_LINES (f
))
2521 get_display_line (f
, vpos
++, 0);
2522 #endif /* not USE_X_TOOLKIT */
2525 /* Display the mode line for window w */
2528 display_mode_line (w
)
2531 register int vpos
= XFASTINT (w
->height
) + XFASTINT (w
->top
) - 1;
2532 register int left
= XFASTINT (w
->left
);
2533 register int right
= XFASTINT (w
->width
) + left
;
2534 register FRAME_PTR f
= XFRAME (WINDOW_FRAME (w
));
2536 line_number_displayed
= 0;
2538 get_display_line (f
, vpos
, left
);
2539 display_mode_element (w
, vpos
, left
, 0, right
, right
,
2540 current_buffer
->mode_line_format
);
2541 FRAME_DESIRED_GLYPHS (f
)->bufp
[vpos
] = 0;
2543 /* Make the mode line inverse video if the entire line
2544 is made of mode lines.
2545 I.e. if this window is full width,
2546 or if it is the child of a full width window
2547 (which implies that that window is split side-by-side
2548 and the rest of this line is mode lines of the sibling windows). */
2549 if (XFASTINT (w
->width
) == FRAME_WIDTH (f
)
2550 || XFASTINT (XWINDOW (w
->parent
)->width
) == FRAME_WIDTH (f
))
2551 FRAME_DESIRED_GLYPHS (f
)->highlight
[vpos
] = mode_line_inverse_video
;
2552 #ifdef HAVE_X_WINDOWS
2553 else if (! FRAME_TERMCAP_P (f
))
2555 /* For a partial width window, explicitly set face of each glyph. */
2557 GLYPH
*ptr
= FRAME_DESIRED_GLYPHS (f
)->glyphs
[vpos
];
2558 for (i
= left
; i
< right
; ++i
)
2559 ptr
[i
] = FAST_MAKE_GLYPH (FAST_GLYPH_CHAR (ptr
[i
]), 1);
2563 #ifdef HAVE_X_WINDOWS
2564 if (w
== XWINDOW (f
->selected_window
))
2565 x_consider_frame_title (WINDOW_FRAME (w
));
2569 /* Contribute ELT to the mode line for window W.
2570 How it translates into text depends on its data type.
2572 VPOS is the position of the mode line being displayed.
2574 HPOS is the position (absolute on frame) where this element's text
2575 should start. The output is truncated automatically at the right
2578 DEPTH is the depth in recursion. It is used to prevent
2579 infinite recursion here.
2581 MINENDCOL is the hpos before which the element may not end.
2582 The element is padded at the right with spaces if nec
2583 to reach this column.
2585 MAXENDCOL is the hpos past which this element may not extend.
2586 If MINENDCOL is > MAXENDCOL, MINENDCOL takes priority.
2587 (This is necessary to make nested padding and truncation work.)
2589 Returns the hpos of the end of the text generated by ELT.
2590 The next element will receive that value as its HPOS arg,
2591 so as to concatenate the elements. */
2594 display_mode_element (w
, vpos
, hpos
, depth
, minendcol
, maxendcol
, elt
)
2596 register int vpos
, hpos
;
2599 register int maxendcol
;
2600 register Lisp_Object elt
;
2608 #ifdef SWITCH_ENUM_BUG
2609 switch ((int) XTYPE (elt
))
2611 switch (XTYPE (elt
))
2616 /* A string: output it and check for %-constructs within it. */
2617 register unsigned char c
;
2618 register unsigned char *this = XSTRING (elt
)->data
;
2620 while (hpos
< maxendcol
&& *this)
2622 unsigned char *last
= this;
2623 while ((c
= *this++) != '\0' && c
!= '%')
2625 if (this - 1 != last
)
2627 register int lim
= --this - last
+ hpos
;
2628 hpos
= display_string (w
, vpos
, last
, -1, hpos
, 0, 1,
2629 hpos
, min (lim
, maxendcol
));
2633 register int spec_width
= 0;
2635 /* We can't allow -ve args due to the "%-" construct */
2636 /* Argument specifies minwidth but not maxwidth
2637 (maxwidth can be specified by
2638 (<negative-number> . <stuff>) mode-line elements) */
2640 while ((c
= *this++) >= '0' && c
<= '9')
2642 spec_width
= spec_width
* 10 + (c
- '0');
2646 if (spec_width
> maxendcol
)
2647 spec_width
= maxendcol
;
2650 hpos
= display_mode_element (w
, vpos
, hpos
, depth
,
2651 spec_width
, maxendcol
,
2652 Vglobal_mode_string
);
2654 hpos
= display_string (w
, vpos
,
2655 decode_mode_spec (w
, c
,
2658 hpos
, 0, 1, spec_width
, maxendcol
);
2665 /* A symbol: process the value of the symbol recursively
2666 as if it appeared here directly. Avoid error if symbol void.
2667 Special case: if value of symbol is a string, output the string
2670 register Lisp_Object tem
;
2671 tem
= Fboundp (elt
);
2674 tem
= Fsymbol_value (elt
);
2675 /* If value is a string, output that string literally:
2676 don't check for % within it. */
2677 if (XTYPE (tem
) == Lisp_String
)
2678 hpos
= display_string (w
, vpos
, XSTRING (tem
)->data
,
2679 XSTRING (tem
)->size
,
2680 hpos
, 0, 1, minendcol
, maxendcol
);
2681 /* Give up right away for nil or t. */
2682 else if (!EQ (tem
, elt
))
2683 { elt
= tem
; goto tail_recurse
; }
2690 register Lisp_Object car
, tem
;
2692 /* A cons cell: three distinct cases.
2693 If first element is a string or a cons, process all the elements
2694 and effectively concatenate them.
2695 If first element is a negative number, truncate displaying cdr to
2696 at most that many characters. If positive, pad (with spaces)
2697 to at least that many characters.
2698 If first element is a symbol, process the cadr or caddr recursively
2699 according to whether the symbol's value is non-nil or nil. */
2700 car
= XCONS (elt
)->car
;
2701 if (XTYPE (car
) == Lisp_Symbol
)
2703 tem
= Fboundp (car
);
2704 elt
= XCONS (elt
)->cdr
;
2705 if (XTYPE (elt
) != Lisp_Cons
)
2707 /* elt is now the cdr, and we know it is a cons cell.
2708 Use its car if CAR has a non-nil value. */
2711 tem
= Fsymbol_value (car
);
2713 { elt
= XCONS (elt
)->car
; goto tail_recurse
; }
2715 /* Symbol's value is nil (or symbol is unbound)
2716 Get the cddr of the original list
2717 and if possible find the caddr and use that. */
2718 elt
= XCONS (elt
)->cdr
;
2721 else if (XTYPE (elt
) != Lisp_Cons
)
2723 elt
= XCONS (elt
)->car
;
2726 else if (XTYPE (car
) == Lisp_Int
)
2728 register int lim
= XINT (car
);
2729 elt
= XCONS (elt
)->cdr
;
2731 /* Negative int means reduce maximum width.
2732 DO NOT change MINENDCOL here!
2733 (20 -10 . foo) should truncate foo to 10 col
2734 and then pad to 20. */
2735 maxendcol
= min (maxendcol
, hpos
- lim
);
2738 /* Padding specified. Don't let it be more than
2741 if (lim
> maxendcol
)
2743 /* If that's more padding than already wanted, queue it.
2744 But don't reduce padding already specified even if
2745 that is beyond the current truncation point. */
2746 if (lim
> minendcol
)
2751 else if (XTYPE (car
) == Lisp_String
|| XTYPE (car
) == Lisp_Cons
)
2753 register int limit
= 50;
2754 /* LIMIT is to protect against circular lists. */
2755 while (XTYPE (elt
) == Lisp_Cons
&& --limit
> 0
2756 && hpos
< maxendcol
)
2758 hpos
= display_mode_element (w
, vpos
, hpos
, depth
,
2761 elt
= XCONS (elt
)->cdr
;
2769 return (display_string (w
, vpos
, "*invalid*", -1, hpos
, 0, 1,
2770 minendcol
, maxendcol
));
2774 if (minendcol
> hpos
)
2775 hpos
= display_string (w
, vpos
, "", 0, hpos
, 0, 1, minendcol
, maxendcol
);
2779 /* Return a string for the output of a mode line %-spec for window W,
2780 generated by character C and width MAXWIDTH. */
2782 static char lots_of_dashes
[] = "--------------------------------------------------------------------------------------------------------------------------------------------";
2785 decode_mode_spec (w
, c
, maxwidth
)
2788 register int maxwidth
;
2791 FRAME_PTR f
= XFRAME (WINDOW_FRAME (w
));
2792 char *decode_mode_spec_buf
= (char *) FRAME_TEMP_GLYPHS (f
)->total_contents
;
2795 if (maxwidth
> FRAME_WIDTH (f
))
2796 maxwidth
= FRAME_WIDTH (f
);
2801 obj
= current_buffer
->name
;
2803 if (maxwidth
>= 3 && XSTRING (obj
)->size
> maxwidth
)
2805 bcopy (XSTRING (obj
)->data
, decode_mode_spec_buf
, maxwidth
- 1);
2806 decode_mode_spec_buf
[maxwidth
- 1] = '\\';
2807 decode_mode_spec_buf
[maxwidth
] = '\0';
2808 return decode_mode_spec_buf
;
2814 obj
= current_buffer
->filename
;
2818 else if (XTYPE (obj
) == Lisp_String
&& XSTRING (obj
)->size
> maxwidth
)
2820 bcopy ("...", decode_mode_spec_buf
, 3);
2821 bcopy (XSTRING (obj
)->data
+ XSTRING (obj
)->size
- maxwidth
+ 3,
2822 decode_mode_spec_buf
+ 3, maxwidth
- 3);
2823 return decode_mode_spec_buf
;
2830 int startpos
= marker_position (w
->start
);
2831 int line
, linepos
, topline
;
2834 int height
= XFASTINT (w
->height
);
2836 /* If we decided that this buffer isn't suitable for line numbers,
2837 don't forget that too fast. */
2838 if (EQ (w
->base_line_pos
, w
->buffer
))
2841 /* If the buffer is very big, don't waste time. */
2842 if (ZV
- BEGV
> line_number_display_limit
)
2844 w
->base_line_pos
= Qnil
;
2845 w
->base_line_number
= Qnil
;
2849 if (!NILP (w
->base_line_number
)
2850 && !NILP (w
->base_line_pos
)
2851 && XFASTINT (w
->base_line_pos
) <= marker_position (w
->start
))
2853 line
= XFASTINT (w
->base_line_number
);
2854 linepos
= XFASTINT (w
->base_line_pos
);
2862 /* Count lines from base line to window start position. */
2863 nlines
= display_count_lines (linepos
, startpos
, startpos
, &junk
);
2865 topline
= nlines
+ line
;
2867 /* Determine a new base line, if the old one is too close
2868 or too far away, or if we did not have one.
2869 "Too close" means it's plausible a scroll-down would
2871 if (startpos
== BEGV
)
2873 XFASTINT (w
->base_line_number
) = topline
;
2874 XFASTINT (w
->base_line_pos
) = BEGV
;
2876 else if (nlines
< height
+ 25 || nlines
> height
* 3 + 50
2881 int distance
= (height
* 2 + 30) * 200;
2883 if (startpos
- distance
> limit
)
2884 limit
= startpos
- distance
;
2886 nlines
= display_count_lines (startpos
, limit
,
2889 /* If we couldn't find the lines we wanted within
2891 give up on line numbers for this window. */
2892 if (position
== startpos
- distance
)
2894 w
->base_line_pos
= w
->buffer
;
2895 w
->base_line_number
= Qnil
;
2899 XFASTINT (w
->base_line_number
) = topline
- nlines
;
2900 XFASTINT (w
->base_line_pos
) = position
;
2903 /* Now count lines from the start pos to point. */
2904 nlines
= display_count_lines (startpos
, PT
, PT
, &junk
);
2906 /* Record that we did display the line number. */
2907 line_number_displayed
= 1;
2909 /* Make the string to show. */
2910 sprintf (decode_mode_spec_buf
, "%d", topline
+ nlines
);
2911 return decode_mode_spec_buf
;
2916 obj
= current_buffer
->mode_name
;
2920 if (BEGV
> BEG
|| ZV
< Z
)
2925 if (!NILP (current_buffer
->read_only
))
2927 if (MODIFF
> current_buffer
->save_modified
)
2932 if (MODIFF
> current_buffer
->save_modified
)
2937 /* status of process */
2938 obj
= Fget_buffer_process (Fcurrent_buffer ());
2940 return "no process";
2942 obj
= Fsymbol_name (Fprocess_status (obj
));
2946 case 't': /* indicate TEXT or BINARY */
2948 decode_mode_spec_buf
[0]
2949 = NILP (current_buffer
->buffer_file_type
) ? "T" : "B";
2950 decode_mode_spec_buf
[1] = 0;
2951 return decode_mode_spec_buf
;
2952 #else /* not MSDOS */
2954 #endif /* not MSDOS */
2958 int pos
= marker_position (w
->start
);
2959 int total
= ZV
- BEGV
;
2961 if (XFASTINT (w
->window_end_pos
) <= Z
- ZV
)
2968 else if (pos
<= BEGV
)
2972 total
= ((pos
- BEGV
) * 100 + total
- 1) / total
;
2973 /* We can't normally display a 3-digit number,
2974 so get us a 2-digit number that is close. */
2977 sprintf (decode_mode_spec_buf
, "%2d%%", total
);
2978 return decode_mode_spec_buf
;
2982 /* Display percentage of size above the bottom of the screen. */
2985 int toppos
= marker_position (w
->start
);
2986 int botpos
= Z
- XFASTINT (w
->window_end_pos
);
2987 int total
= ZV
- BEGV
;
2998 total
= ((botpos
- BEGV
) * 100 + total
- 1) / total
;
2999 /* We can't normally display a 3-digit number,
3000 so get us a 2-digit number that is close. */
3004 sprintf (decode_mode_spec_buf
, "Top%2d%%", total
);
3006 sprintf (decode_mode_spec_buf
, "%2d%%", total
);
3007 return decode_mode_spec_buf
;
3019 if (command_loop_level
> 5)
3021 p
= decode_mode_spec_buf
;
3022 for (i
= 0; i
< command_loop_level
; i
++)
3025 return decode_mode_spec_buf
;
3033 if (command_loop_level
> 5)
3035 p
= decode_mode_spec_buf
;
3036 for (i
= 0; i
< command_loop_level
; i
++)
3039 return decode_mode_spec_buf
;
3047 if (maxwidth
< sizeof (lots_of_dashes
))
3048 return lots_of_dashes
;
3051 for (p
= decode_mode_spec_buf
, i
= maxwidth
; i
> 0; i
--)
3055 return decode_mode_spec_buf
;
3059 if (XTYPE (obj
) == Lisp_String
)
3060 return (char *) XSTRING (obj
)->data
;
3065 /* Count up to N lines starting from FROM.
3066 But don't go beyond LIMIT.
3067 Return the number of lines thus found (always positive).
3068 Store the position after what was found into *POS_PTR. */
3071 display_count_lines (from
, limit
, n
, pos_ptr
)
3084 *pos_ptr
= scan_buffer ('\n', from
, n
, &shortage
, 0);
3090 /* When scanning backwards, scan_buffer stops *after* the last newline
3091 it finds, but does count it. Compensate for that. */
3092 return - n
- shortage
- (*pos_ptr
!= limit
);
3093 return n
- shortage
;
3096 /* Display STRING on one line of window W, starting at HPOS.
3097 Display at position VPOS. Caller should have done get_display_line.
3098 If VPOS == -1, display it as the current frame's title.
3099 LENGTH is the length of STRING, or -1 meaning STRING is null-terminated.
3101 TRUNCATE is GLYPH to display at end if truncated. Zero for none.
3103 MINCOL is the first column ok to end at. (Pad with spaces to this col.)
3104 MAXCOL is the last column ok to end at. Truncate here.
3105 -1 for MINCOL or MAXCOL means no explicit minimum or maximum.
3106 Both count from the left edge of the frame, as does HPOS.
3107 The right edge of W is an implicit maximum.
3108 If TRUNCATE is nonzero, the implicit maximum is one column before the edge.
3110 OBEY_WINDOW_WIDTH says to put spaces or vertical bars
3111 at the place where the current window ends in this line
3112 and not display anything beyond there. Otherwise, only MAXCOL
3113 controls where to stop output.
3115 Returns ending hpos. */
3118 display_string (w
, vpos
, string
, length
, hpos
, truncate
,
3119 obey_window_width
, mincol
, maxcol
)
3121 unsigned char *string
;
3125 int obey_window_width
;
3130 int hscroll
= XINT (w
->hscroll
);
3131 int tab_width
= XINT (XBUFFER (w
->buffer
)->tab_width
);
3132 register GLYPH
*start
;
3133 register GLYPH
*end
;
3134 FRAME_PTR f
= XFRAME (WINDOW_FRAME (w
));
3135 struct frame_glyphs
*desired_glyphs
= FRAME_DESIRED_GLYPHS (f
);
3136 GLYPH
*p1start
= desired_glyphs
->glyphs
[vpos
] + hpos
;
3137 int window_width
= XFASTINT (w
->width
);
3139 /* Use the standard display table, not the window's display table.
3140 We don't want the mode line in rot13. */
3141 register struct Lisp_Vector
*dp
= 0;
3144 if (XTYPE (Vstandard_display_table
) == Lisp_Vector
3145 && XVECTOR (Vstandard_display_table
)->size
== DISP_TABLE_SIZE
)
3146 dp
= XVECTOR (Vstandard_display_table
);
3148 if (tab_width
<= 0 || tab_width
> 1000) tab_width
= 8;
3151 start
= desired_glyphs
->glyphs
[vpos
] + XFASTINT (w
->left
);
3153 if (obey_window_width
)
3155 end
= start
+ window_width
- (truncate
!= 0);
3157 if ((window_width
+ XFASTINT (w
->left
)) != FRAME_WIDTH (f
))
3159 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f
))
3163 for (i
= 0; i
< VERTICAL_SCROLL_BAR_WIDTH
; i
++)
3171 if (! obey_window_width
3172 || (maxcol
>= 0 && end
- desired_glyphs
->glyphs
[vpos
] > maxcol
))
3173 end
= desired_glyphs
->glyphs
[vpos
] + maxcol
;
3175 /* Store 0 in charstart for these columns. */
3176 for (i
= (hpos
>= 0 ? hpos
: 0); i
< end
- p1start
+ hpos
; i
++)
3177 desired_glyphs
->charstarts
[vpos
][i
] = 0;
3179 if (maxcol
>= 0 && mincol
> maxcol
)
3187 /* Specified length. */
3190 /* Unspecified length (null-terminated string). */
3194 if (c
>= 040 && c
< 0177
3195 && (dp
== 0 || XTYPE (DISP_CHAR_VECTOR (dp
, c
)) != Lisp_Vector
))
3205 if (p1
>= start
&& p1
< end
)
3209 while ((p1
- start
+ hscroll
- (hscroll
> 0)) % tab_width
);
3211 else if (dp
!= 0 && XTYPE (DISP_CHAR_VECTOR (dp
, c
)) == Lisp_Vector
)
3213 p1
= copy_part_of_rope (f
, p1
, start
,
3214 XVECTOR (DISP_CHAR_VECTOR (dp
, c
))->contents
,
3215 XVECTOR (DISP_CHAR_VECTOR (dp
, c
))->size
,
3218 else if (c
< 0200 && ! NILP (buffer_defaults
.ctl_arrow
))
3221 *p1
= fix_glyph (f
, (dp
&& XTYPE (DISP_CTRL_GLYPH (dp
)) == Lisp_Int
3222 ? XINT (DISP_CTRL_GLYPH (dp
)) : '^'),
3225 if (p1
>= start
&& p1
< end
)
3232 *p1
= fix_glyph (f
, (dp
&& XTYPE (DISP_ESCAPE_GLYPH (dp
)) == Lisp_Int
3233 ? XINT (DISP_ESCAPE_GLYPH (dp
)) : '\\'),
3236 if (p1
>= start
&& p1
< end
)
3237 *p1
= (c
>> 6) + '0';
3239 if (p1
>= start
&& p1
< end
)
3240 *p1
= (7 & (c
>> 3)) + '0';
3242 if (p1
>= start
&& p1
< end
)
3243 *p1
= (7 & c
) + '0';
3248 if (c
&& length
> 0)
3251 if (truncate
) *p1
++ = fix_glyph (f
, truncate
, 0);
3253 else if (mincol
>= 0)
3255 end
= desired_glyphs
->glyphs
[vpos
] + mincol
;
3261 register int len
= p1
- desired_glyphs
->glyphs
[vpos
];
3263 if (len
> desired_glyphs
->used
[vpos
])
3264 desired_glyphs
->used
[vpos
] = len
;
3265 desired_glyphs
->glyphs
[vpos
][desired_glyphs
->used
[vpos
]] = 0;
3274 staticpro (&last_arrow_position
);
3275 staticpro (&last_arrow_string
);
3276 last_arrow_position
= Qnil
;
3277 last_arrow_string
= Qnil
;
3279 DEFVAR_LISP ("global-mode-string", &Vglobal_mode_string
,
3280 "String (or mode line construct) included (normally) in `mode-line-format'.");
3281 Vglobal_mode_string
= Qnil
;
3283 DEFVAR_LISP ("overlay-arrow-position", &Voverlay_arrow_position
,
3284 "Marker for where to display an arrow on top of the buffer text.\n\
3285 This must be the beginning of a line in order to work.\n\
3286 See also `overlay-arrow-string'.");
3287 Voverlay_arrow_position
= Qnil
;
3289 DEFVAR_LISP ("overlay-arrow-string", &Voverlay_arrow_string
,
3290 "String to display as an arrow. See also `overlay-arrow-position'.");
3291 Voverlay_arrow_string
= Qnil
;
3293 DEFVAR_INT ("scroll-step", &scroll_step
,
3294 "*The number of lines to try scrolling a window by when point moves out.\n\
3295 If that fails to bring point back on frame, point is centered instead.\n\
3296 If this is zero, point is always centered after it moves off frame.");
3298 DEFVAR_INT ("debug-end-pos", &debug_end_pos
, "Don't ask");
3300 DEFVAR_BOOL ("truncate-partial-width-windows",
3301 &truncate_partial_width_windows
,
3302 "*Non-nil means truncate lines in all windows less than full frame wide.");
3303 truncate_partial_width_windows
= 1;
3305 DEFVAR_BOOL ("mode-line-inverse-video", &mode_line_inverse_video
,
3306 "*Non-nil means use inverse video for the mode line.");
3307 mode_line_inverse_video
= 1;
3309 DEFVAR_INT ("line-number-display-limit", &line_number_display_limit
,
3310 "*Maximum buffer size for which line number should be displayed.");
3311 line_number_display_limit
= 1000000;
3313 DEFVAR_BOOL ("highlight-nonselected-windows", &highlight_nonselected_windows
,
3314 "*Non-nil means highlight region even in nonselected windows.");
3315 highlight_nonselected_windows
= 1;
3318 /* initialize the window system */
3321 Lisp_Object root_window
;
3322 #ifndef COMPILER_REGISTER_BUG
3324 #endif /* COMPILER_REGISTER_BUG */
3325 struct window
*mini_w
;
3327 this_line_bufpos
= 0;
3329 mini_w
= XWINDOW (minibuf_window
);
3330 root_window
= FRAME_ROOT_WINDOW (XFRAME (WINDOW_FRAME (mini_w
)));
3332 echo_area_glyphs
= 0;
3333 previous_echo_glyphs
= 0;
3335 if (!noninteractive
)
3337 FRAME_PTR f
= XFRAME (WINDOW_FRAME (XWINDOW (root_window
)));
3338 XFASTINT (XWINDOW (root_window
)->top
) = 0;
3339 set_window_height (root_window
, FRAME_HEIGHT (f
) - 1, 0);
3340 XFASTINT (mini_w
->top
) = FRAME_HEIGHT (f
) - 1;
3341 set_window_height (minibuf_window
, 1, 0);
3343 XFASTINT (XWINDOW (root_window
)->width
) = FRAME_WIDTH (f
);
3344 XFASTINT (mini_w
->width
) = FRAME_WIDTH (f
);