1 /* Display generation from window structure and buffer text.
2 Copyright (C) 1985, 86, 87, 88, 93, 94, 95 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 extern Lisp_Object Qface
;
47 /* Nonzero means print newline to stdout before next minibuffer message. */
49 int noninteractive_need_newline
;
51 /* Nonzero means print newline to message log before next message. */
53 static int message_log_need_newline
;
55 #define min(a, b) ((a) < (b) ? (a) : (b))
56 #define max(a, b) ((a) > (b) ? (a) : (b))
58 /* The buffer position of the first character appearing
59 entirely or partially on the current frame line.
60 Or zero, which disables the optimization for the current frame line. */
61 static int this_line_bufpos
;
63 /* Number of characters past the end of this line,
64 including the terminating newline */
65 static int this_line_endpos
;
67 /* The vertical position of this frame line. */
68 static int this_line_vpos
;
70 /* Hpos value for start of display on this frame line.
71 Usually zero, but negative if first character really began
73 static int this_line_start_hpos
;
75 /* Buffer that this_line variables are describing. */
76 static struct buffer
*this_line_buffer
;
78 /* Set by try_window_id to the vpos of first of any lines
79 scrolled on to the bottom of the frame. These lines should
80 not be included in any general scroll computation. */
81 static int scroll_bottom_vpos
;
83 /* Value of echo_area_glyphs when it was last acted on.
84 If this is nonzero, there is a message on the frame
85 in the minibuffer and it should be erased as soon
86 as it is no longer requested to appear. */
87 char *previous_echo_glyphs
;
89 /* Nonzero means truncate lines in all windows less wide than the frame */
90 int truncate_partial_width_windows
;
92 /* Nonzero means we have more than one non-minibuffer-only frame.
93 Not guaranteed to be accurate except while parsing frame-title-format. */
96 Lisp_Object Vglobal_mode_string
;
98 /* Marker for where to display an arrow on top of the buffer text. */
99 Lisp_Object Voverlay_arrow_position
;
101 /* String to display for the arrow. */
102 Lisp_Object Voverlay_arrow_string
;
104 /* Like mode-line-format, but for the titlebar on a visible frame. */
105 Lisp_Object Vframe_title_format
;
107 /* Like mode-line-format, but for the titlebar on an iconified frame. */
108 Lisp_Object Vicon_title_format
;
110 /* List of functions to call when a window's size changes. These
111 functions get one arg, a frame on which one or more windows' sizes
113 static Lisp_Object Vwindow_size_change_functions
;
115 /* Values of those variables at last redisplay. */
116 static Lisp_Object last_arrow_position
, last_arrow_string
;
118 Lisp_Object Qmenu_bar_update_hook
;
120 /* Nonzero if overlay arrow has been displayed once in this window. */
121 static int overlay_arrow_seen
;
123 /* Nonzero means highlight the region even in nonselected windows. */
124 static int highlight_nonselected_windows
;
126 /* If cursor motion alone moves point off frame,
127 Try scrolling this many lines up or down if that will bring it back. */
130 /* Nonzero if try_window_id has made blank lines at window bottom
131 since the last redisplay that paused */
132 static int blank_end_of_window
;
134 /* Number of windows showing the buffer of the selected window
135 (or another buffer with the same base buffer).
136 keyboard.c refers to this. */
139 /* display_text_line sets these to the frame position (origin 0) of point,
140 whether the window is selected or not.
141 Set one to -1 first to determine whether point was found afterwards. */
143 static int cursor_vpos
;
144 static int cursor_hpos
;
148 /* Nonzero means display mode line highlighted */
149 int mode_line_inverse_video
;
151 static int message_log_check_duplicate ();
152 static void echo_area_display ();
153 void mark_window_display_accurate ();
154 static void redisplay_windows ();
155 static void redisplay_window ();
156 static void update_menu_bars ();
157 static void update_menu_bar ();
158 static void try_window ();
159 static int try_window_id ();
160 static struct position
*display_text_line ();
161 static void display_mode_line ();
162 static int display_mode_element ();
163 static char *fmodetrunc ();
164 static char *decode_mode_spec ();
165 static int display_string ();
166 static void display_menu_bar ();
167 static int display_count_lines ();
169 /* Prompt to display in front of the minibuffer contents */
170 Lisp_Object minibuf_prompt
;
172 /* Width in columns of current minibuffer prompt. */
173 int minibuf_prompt_width
;
175 /* Message to display instead of minibuffer contents
176 This is what the functions error and message make,
177 and command echoing uses it as well.
178 It overrides the minibuf_prompt as well as the buffer. */
179 char *echo_area_glyphs
;
181 /* This is the length of the message in echo_area_glyphs. */
182 int echo_area_glyphs_length
;
184 /* true iff we should redraw the mode lines on the next redisplay */
185 int update_mode_lines
;
187 /* Smallest number of characters before the gap
188 at any time since last redisplay that finished.
189 Valid for current buffer when try_window_id can be called. */
192 /* Smallest number of characters after the gap
193 at any time since last redisplay that finished.
194 Valid for current buffer when try_window_id can be called. */
197 /* MODIFF as of last redisplay that finished;
198 if it matches MODIFF, beg_unchanged and end_unchanged
199 contain no useful information */
200 int unchanged_modified
;
202 /* Nonzero if head_clip or tail_clip of current buffer has changed
203 since last redisplay that finished */
206 /* Nonzero if window sizes or contents have changed
207 since last redisplay that finished */
208 int windows_or_buffers_changed
;
210 /* Nonzero after display_mode_line if %l was used
211 and it displayed a line number. */
212 int line_number_displayed
;
214 /* Maximum buffer size for which to display line numbers. */
215 int line_number_display_limit
;
217 /* Number of lines to keep in the message log buffer.
218 t means infinite. nil means don't log at all. */
219 Lisp_Object Vmessage_log_max
;
222 message_log_maybe_newline ()
224 if (message_log_need_newline
)
225 message_dolog ("", 0, 1);
229 /* Add a string to the message log, optionally terminated with a newline.
230 This function calls low-level routines in order to bypass text property
231 hooks, etc. which might not be safe to run. */
234 message_dolog (m
, len
, nlflag
)
238 if (!NILP (Vmessage_log_max
))
240 struct buffer
*oldbuf
;
241 int oldpoint
, oldbegv
, oldzv
;
243 oldbuf
= current_buffer
;
244 Fset_buffer (Fget_buffer_create (build_string ("*Messages*")));
251 oldpoint
+= len
+ nlflag
;
253 oldzv
+= len
+ nlflag
;
256 insert_1 (m
, len
, 1, 0);
259 int this_bol
, prev_bol
, dup
;
260 insert_1 ("\n", 1, 1, 0);
262 this_bol
= scan_buffer ('\n', Z
, 0, -2, 0, 0);
265 prev_bol
= scan_buffer ('\n', this_bol
, 0, -2, 0, 0);
266 dup
= message_log_check_duplicate (prev_bol
, this_bol
);
269 if (oldpoint
> prev_bol
)
270 oldpoint
-= min (this_bol
, oldpoint
) - prev_bol
;
271 if (oldbegv
> prev_bol
)
272 oldbegv
-= min (this_bol
, oldbegv
) - prev_bol
;
273 if (oldzv
> prev_bol
)
274 oldzv
-= min (this_bol
, oldzv
) - prev_bol
;
275 del_range_1 (prev_bol
, this_bol
, 0);
281 /* If you change this format, don't forget to also
282 change message_log_check_duplicate. */
283 sprintf (dupstr
, " [%d times]", dup
);
284 duplen
= strlen (dupstr
);
290 insert_1 (dupstr
, duplen
, 1, 0);
295 if (NATNUMP (Vmessage_log_max
))
297 int pos
= scan_buffer ('\n', Z
, 0,
298 -XFASTINT (Vmessage_log_max
) - 1, 0, 0);
299 oldpoint
-= min (pos
, oldpoint
) - BEG
;
300 oldbegv
-= min (pos
, oldbegv
) - BEG
;
301 oldzv
-= min (pos
, oldzv
) - BEG
;
302 del_range_1 (BEG
, pos
, 0);
307 TEMP_SET_PT (oldpoint
);
308 set_buffer_internal (oldbuf
);
309 message_log_need_newline
= !nlflag
;
314 /* We are at the end of the buffer after just having inserted a newline.
315 (Note: We depend on the fact we won't be crossing the gap.)
316 Check to see if the most recent message looks a lot like the previous one.
317 Return 0 if different, 1 if the new one should just replace it, or a
318 value N > 1 if we should also append " [N times]". */
320 message_log_check_duplicate (prev_bol
, this_bol
)
321 int prev_bol
, this_bol
;
324 int len
= Z
- 1 - this_bol
;
326 char *p1
= BUF_CHAR_ADDRESS (current_buffer
, prev_bol
);
327 char *p2
= BUF_CHAR_ADDRESS (current_buffer
, this_bol
);
329 for (i
= 0; i
< len
; i
++)
331 if (i
>= 3 && p1
[i
-3] == '.' && p1
[i
-2] == '.' && p1
[i
-1] == '.'
340 if (*p1
++ == ' ' && *p1
++ == '[')
343 while (*p1
>= '0' && *p1
<= '9')
344 n
= n
* 10 + *p1
++ - '0';
345 if (strncmp (p1
, " times]\n", 8) == 0)
351 /* Display an echo area message M with a specified length of LEN chars.
352 The string may include null characters. If m is 0, clear out any
353 existing message, and let the minibuffer text show through.
354 Do not pass text that is stored in a Lisp string. */
361 /* First flush out any partial line written with print. */
362 message_log_maybe_newline ();
364 message_dolog (m
, len
, 1);
365 message2_nolog (m
, len
);
369 /* The non-logging part of that function. */
372 message2_nolog (m
, len
)
378 if (noninteractive_need_newline
)
380 noninteractive_need_newline
= 0;
381 fwrite (m
, len
, 1, stderr
);
382 if (cursor_in_echo_area
== 0)
383 fprintf (stderr
, "\n");
386 /* A null message buffer means that the frame hasn't really been
387 initialized yet. Error messages get reported properly by
388 cmd_error, so this must be just an informative message; toss it. */
389 else if (INTERACTIVE
&& FRAME_MESSAGE_BUF (selected_frame
))
392 Lisp_Object minibuf_frame
;
394 choose_minibuf_frame ();
395 minibuf_frame
= WINDOW_FRAME (XWINDOW (minibuf_window
));
396 FRAME_SAMPLE_VISIBILITY (XFRAME (minibuf_frame
));
397 if (FRAME_VISIBLE_P (selected_frame
)
398 && ! FRAME_VISIBLE_P (XFRAME (minibuf_frame
)))
399 Fmake_frame_visible (WINDOW_FRAME (XWINDOW (minibuf_window
)));
404 echo_area_glyphs
= m
;
405 echo_area_glyphs_length
= len
;
408 echo_area_glyphs
= previous_echo_glyphs
= 0;
410 do_pending_window_change ();
411 echo_area_display ();
412 update_frame (XFRAME (XWINDOW (minibuf_window
)->frame
), 1, 1);
413 do_pending_window_change ();
414 if (frame_up_to_date_hook
!= 0 && ! gc_in_progress
)
415 (*frame_up_to_date_hook
) (XFRAME (XWINDOW (minibuf_window
)->frame
));
423 message2 (m
, (m
? strlen (m
) : 0));
430 message2_nolog (m
, (m
? strlen (m
) : 0));
433 /* Truncate what will be displayed in the echo area
434 the next time we display it--but don't redisplay it now. */
437 truncate_echo_area (len
)
440 /* A null message buffer means that the frame hasn't really been
441 initialized yet. Error messages get reported properly by
442 cmd_error, so this must be just an informative message; toss it. */
443 if (!noninteractive
&& INTERACTIVE
&& FRAME_MESSAGE_BUF (selected_frame
))
444 echo_area_glyphs_length
= len
;
447 /* Nonzero if FRAME_MESSAGE_BUF (selected_frame) is being used by print;
448 zero if being used by message. */
449 int message_buf_print
;
451 /* Dump an informative message to the minibuf. If m is 0, clear out
452 any existing message, and let the minibuffer text show through. */
455 message (m
, a1
, a2
, a3
)
457 EMACS_INT a1
, a2
, a3
;
463 if (noninteractive_need_newline
)
465 noninteractive_need_newline
= 0;
466 fprintf (stderr
, m
, a1
, a2
, a3
);
467 if (cursor_in_echo_area
== 0)
468 fprintf (stderr
, "\n");
472 else if (INTERACTIVE
)
474 /* The frame whose minibuffer we're going to display the message on.
475 It may be larger than the selected frame, so we need
476 to use its buffer, not the selected frame's buffer. */
477 FRAME_PTR echo_frame
;
479 choose_minibuf_frame ();
480 echo_frame
= XFRAME (WINDOW_FRAME (XWINDOW (minibuf_window
)));
482 echo_frame
= selected_frame
;
485 /* A null message buffer means that the frame hasn't really been
486 initialized yet. Error messages get reported properly by
487 cmd_error, so this must be just an informative message; toss it. */
488 if (FRAME_MESSAGE_BUF (echo_frame
))
499 len
= doprnt (FRAME_MESSAGE_BUF (echo_frame
),
500 FRAME_WIDTH (echo_frame
), m
, 0, 3, a
);
502 len
= doprnt (FRAME_MESSAGE_BUF (echo_frame
),
503 FRAME_WIDTH (echo_frame
), m
, 0, 3, &a1
);
504 #endif /* NO_ARG_ARRAY */
506 message2 (FRAME_MESSAGE_BUF (echo_frame
), len
);
511 /* Print should start at the beginning of the message
513 message_buf_print
= 0;
521 message2 (echo_area_glyphs
, echo_area_glyphs_length
);
531 choose_minibuf_frame ();
534 f
= XFRAME (WINDOW_FRAME (XWINDOW (minibuf_window
)));
536 if (! FRAME_VISIBLE_P (f
))
541 redraw_garbaged_frames ();
545 if (echo_area_glyphs
|| minibuf_level
== 0)
547 vpos
= XFASTINT (XWINDOW (minibuf_window
)->top
);
548 get_display_line (f
, vpos
, 0);
549 display_string (XWINDOW (minibuf_window
), vpos
,
550 echo_area_glyphs
? echo_area_glyphs
: "",
551 echo_area_glyphs
? echo_area_glyphs_length
: -1,
552 0, 0, 0, 0, FRAME_WIDTH (f
));
554 /* If desired cursor location is on this line, put it at end of text */
555 if (FRAME_CURSOR_Y (f
) == vpos
)
556 FRAME_CURSOR_X (f
) = FRAME_DESIRED_GLYPHS (f
)->used
[vpos
];
558 /* Fill the rest of the minibuffer window with blank lines. */
563 i
< vpos
+ XFASTINT (XWINDOW (minibuf_window
)->height
); i
++)
565 get_display_line (f
, i
, 0);
566 display_string (XWINDOW (minibuf_window
), vpos
,
567 "", 0, 0, 0, 0, 0, FRAME_WIDTH (f
));
571 else if (!EQ (minibuf_window
, selected_window
))
572 windows_or_buffers_changed
++;
574 if (EQ (minibuf_window
, selected_window
))
575 this_line_bufpos
= 0;
577 previous_echo_glyphs
= echo_area_glyphs
;
580 #ifdef HAVE_X_WINDOWS
581 static char frame_title_buf
[512];
582 static char *frame_title_ptr
;
585 store_frame_title (str
, mincol
, maxcol
)
590 if (maxcol
< 0 || maxcol
>= sizeof(frame_title_buf
))
591 maxcol
= sizeof (frame_title_buf
);
592 limit
= &frame_title_buf
[maxcol
];
593 while (*str
!= '\0' && frame_title_ptr
< limit
)
594 *frame_title_ptr
++ = *str
++;
595 while (frame_title_ptr
< &frame_title_buf
[mincol
])
596 *frame_title_ptr
++ = ' ';
597 return frame_title_ptr
- frame_title_buf
;
601 x_consider_frame_title (frame
)
607 FRAME_PTR f
= XFRAME (frame
);
609 if (!FRAME_X_P (f
) || FRAME_MINIBUF_ONLY_P (f
) || f
->explicit_name
)
611 multiple_frames
= !EQ (Fnext_frame (frame
, Qnil
), frame
);
612 obuf
= current_buffer
;
613 Fset_buffer (XWINDOW (f
->selected_window
)->buffer
);
614 fmt
= (FRAME_ICONIFIED_P (f
) ? Vicon_title_format
: Vframe_title_format
);
615 frame_title_ptr
= frame_title_buf
;
616 len
= display_mode_element (XWINDOW (f
->selected_window
), 0, 0, 0,
617 0, sizeof (frame_title_buf
), fmt
);
619 set_buffer_internal (obuf
);
620 /* Set the name only if it's changed. This avoids consing
621 in the common case where it hasn't. (If it turns out that we've
622 already wasted too much time by walking through the list with
623 display_mode_element, then we might need to optimize at a higher
625 if (! STRINGP (f
->name
) || XSTRING (f
->name
)->size
!= len
626 || bcmp (frame_title_buf
, XSTRING (f
->name
)->data
, len
) != 0)
627 x_implicitly_set_name (f
, make_string (frame_title_buf
, len
), Qnil
);
630 #define frame_title_ptr ((char *)0)
631 #define store_frame_title(str, mincol, maxcol) 0
634 /* Prepare for redisplay by updating menu-bar item lists when appropriate.
635 This can't be done in `redisplay' itself because it can call eval. */
640 register struct window
*w
= XWINDOW (selected_window
);
642 struct gcpro gcpro1
, gcpro2
;
647 /* Set the visible flags for all frames.
648 Do this before checking for resized or garbaged frames; they want
649 to know if their frames are visible.
650 See the comment in frame.h for FRAME_SAMPLE_VISIBILITY. */
652 Lisp_Object tail
, frame
;
654 FOR_EACH_FRAME (tail
, frame
)
655 FRAME_SAMPLE_VISIBILITY (XFRAME (frame
));
658 /* Notice any pending interrupt request to change frame size. */
659 do_pending_window_change ();
663 redraw_garbaged_frames ();
667 all_windows
= (update_mode_lines
|| buffer_shared
> 1
668 || clip_changed
|| windows_or_buffers_changed
);
670 #ifdef HAVE_X_WINDOWS
671 if (windows_or_buffers_changed
)
673 Lisp_Object tail
, frame
;
675 FOR_EACH_FRAME (tail
, frame
)
676 if (FRAME_VISIBLE_P (XFRAME (frame
))
677 || FRAME_ICONIFIED_P (XFRAME (frame
)))
678 x_consider_frame_title (frame
);
682 /* Update the menu bar item lists, if appropriate.
683 This has to be done before any actual redisplay
684 or generation of display lines. */
687 Lisp_Object tail
, frame
;
689 FOR_EACH_FRAME (tail
, frame
)
691 /* If a window on this frame changed size,
692 report that to the user and clear the size-change flag. */
693 if (FRAME_WINDOW_SIZES_CHANGED (XFRAME (frame
)))
695 Lisp_Object functions
;
696 functions
= Vwindow_size_change_functions
;
697 GCPRO2 (tail
, functions
);
698 while (CONSP (functions
))
700 call1 (XCONS (functions
)->car
, frame
);
701 functions
= XCONS (functions
)->cdr
;
704 FRAME_WINDOW_SIZES_CHANGED (XFRAME (frame
)) = 0;
707 update_menu_bar (XFRAME (frame
));
712 update_menu_bar (selected_frame
);
715 /* Do a frame update, taking possible shortcuts into account.
716 This is the main external entry point for redisplay.
718 If the last redisplay displayed an echo area message and that
719 message is no longer requested, we clear the echo area
720 or bring back the minibuffer if that is in use.
722 Do not call eval from within this function.
723 Calls to eval after the call to echo_area_display would confuse
724 the display_line mechanism and would cause a crash.
725 Calls to eval before that point will work most of the time,
726 but can still lose, because this function
727 can be called from signal handlers; with alarms set up;
728 or with synchronous processes running.
730 See Fcall_process; if you called it from here, it could be
731 entered recursively. */
733 static int do_verify_charstarts
;
735 /* Counter is used to clear the face cache
736 no more than once ever 1000 redisplays. */
737 static int clear_face_cache_count
;
742 register struct window
*w
= XWINDOW (selected_window
);
746 register int tlbufpos
, tlendpos
;
748 extern int input_pending
;
753 /* Set the visible flags for all frames.
754 Do this before checking for resized or garbaged frames; they want
755 to know if their frames are visible.
756 See the comment in frame.h for FRAME_SAMPLE_VISIBILITY. */
758 Lisp_Object tail
, frame
;
760 FOR_EACH_FRAME (tail
, frame
)
761 FRAME_SAMPLE_VISIBILITY (XFRAME (frame
));
764 /* Notice any pending interrupt request to change frame size. */
765 do_pending_window_change ();
769 redraw_garbaged_frames ();
773 if (clip_changed
|| windows_or_buffers_changed
774 || (!NILP (w
->column_number_displayed
)
775 && XFASTINT (w
->column_number_displayed
) != current_column ()))
778 /* Detect case that we need to write a star in the mode line. */
779 if (XFASTINT (w
->last_modified
) < MODIFF
780 && XFASTINT (w
->last_modified
) <= SAVE_MODIFF
)
782 w
->update_mode_line
= Qt
;
783 if (buffer_shared
> 1)
787 FRAME_SCROLL_BOTTOM_VPOS (XFRAME (w
->frame
)) = -1;
789 all_windows
= update_mode_lines
|| buffer_shared
> 1;
791 /* If specs for an arrow have changed, do thorough redisplay
792 to ensure we remove any arrow that should no longer exist. */
793 if (! EQ (Voverlay_arrow_position
, last_arrow_position
)
794 || ! EQ (Voverlay_arrow_string
, last_arrow_string
))
795 all_windows
= 1, clip_changed
= 1;
797 /* Normally the message* functions will have already displayed and
798 updated the echo area, but the frame may have been trashed, or
799 the update may have been preempted, so display the echo area
801 if (echo_area_glyphs
|| previous_echo_glyphs
)
803 echo_area_display ();
807 /* If showing region, and mark has changed, must redisplay whole window. */
808 if (((!NILP (Vtransient_mark_mode
)
809 && !NILP (XBUFFER (w
->buffer
)->mark_active
))
810 != !NILP (w
->region_showing
))
811 || (!NILP (w
->region_showing
)
812 && !EQ (w
->region_showing
,
813 Fmarker_position (XBUFFER (w
->buffer
)->mark
))))
814 this_line_bufpos
= -1;
816 tlbufpos
= this_line_bufpos
;
817 tlendpos
= this_line_endpos
;
818 if (!all_windows
&& tlbufpos
> 0 && NILP (w
->update_mode_line
)
819 && FRAME_VISIBLE_P (XFRAME (w
->frame
))
820 /* Make sure recorded data applies to current buffer, etc */
821 && this_line_buffer
== current_buffer
822 && current_buffer
== XBUFFER (w
->buffer
)
823 && NILP (w
->force_start
)
824 /* Point must be on the line that we have info recorded about */
826 && PT
<= Z
- tlendpos
827 /* All text outside that line, including its final newline,
829 && (XFASTINT (w
->last_modified
) >= MODIFF
830 || (beg_unchanged
>= tlbufpos
- 1
832 /* If selective display, can't optimize
833 if the changes start at the beginning of the line. */
834 && ((INTEGERP (current_buffer
->selective_display
)
835 && XINT (current_buffer
->selective_display
) > 0
836 ? (beg_unchanged
>= tlbufpos
839 && end_unchanged
>= tlendpos
840 && Z
- GPT
>= tlendpos
)))
842 if (tlbufpos
> BEGV
&& FETCH_CHAR (tlbufpos
- 1) != '\n'
844 || FETCH_CHAR (tlbufpos
) == '\n'))
845 /* Former continuation line has disappeared by becoming empty */
847 else if (XFASTINT (w
->last_modified
) < MODIFF
848 || MINI_WINDOW_P (w
))
851 overlay_arrow_seen
= 0;
852 display_text_line (w
, tlbufpos
, this_line_vpos
, this_line_start_hpos
,
853 pos_tab_offset (w
, tlbufpos
));
854 /* If line contains point, is not continued,
855 and ends at same distance from eob as before, we win */
856 if (cursor_vpos
>= 0 && this_line_bufpos
857 && this_line_endpos
== tlendpos
)
859 /* If this is not the window's last line,
860 we must adjust the charstarts of the lines below. */
861 if (this_line_vpos
+ 1
862 < XFASTINT (w
->top
) + window_internal_height (w
))
864 int left
= XFASTINT (w
->left
);
865 int *charstart_next_line
866 = FRAME_CURRENT_GLYPHS (XFRAME (WINDOW_FRAME (w
)))->charstarts
[this_line_vpos
+ 1];
870 if (Z
- tlendpos
== ZV
)
871 /* This line ends at end of (accessible part of) buffer.
872 There is no newline to count. */
873 adjust
= Z
- tlendpos
- charstart_next_line
[left
];
875 /* This line ends in a newline.
876 Must take account of the newline and the rest of the
877 text that follows. */
878 adjust
= Z
- tlendpos
+ 1 - charstart_next_line
[left
];
880 adjust_window_charstarts (w
, this_line_vpos
, adjust
);
883 if (XFASTINT (w
->width
) != FRAME_WIDTH (XFRAME (WINDOW_FRAME (w
))))
884 preserve_other_columns (w
);
890 else if (PT
== XFASTINT (w
->last_point
))
894 do_pending_window_change ();
899 /* If highlighting the region, we can't just move the cursor. */
900 else if (! (!NILP (Vtransient_mark_mode
)
901 && !NILP (current_buffer
->mark_active
))
902 && NILP (w
->region_showing
))
904 pos
= *compute_motion (tlbufpos
, 0,
905 XINT (w
->hscroll
) ? 1 - XINT (w
->hscroll
) : 0,
906 PT
, 2, - (1 << (SHORTBITS
- 1)),
907 window_internal_width (w
) - 1,
909 pos_tab_offset (w
, tlbufpos
), w
);
912 FRAME_CURSOR_X (selected_frame
)
913 = XFASTINT (w
->left
) + max (pos
.hpos
, 0);
914 FRAME_CURSOR_Y (selected_frame
) = this_line_vpos
;
921 /* Text changed drastically or point moved off of line */
922 cancel_line (this_line_vpos
, selected_frame
);
925 this_line_bufpos
= 0;
926 all_windows
|= buffer_shared
> 1;
928 clear_face_cache_count
++;
932 Lisp_Object tail
, frame
;
935 /* Clear the face cache, only when we do a full redisplay
936 and not too often either. */
937 if (clear_face_cache_count
> 1000)
940 clear_face_cache_count
= 0;
944 /* Recompute # windows showing selected buffer.
945 This will be incremented each time such a window is displayed. */
948 FOR_EACH_FRAME (tail
, frame
)
950 FRAME_PTR f
= XFRAME (frame
);
952 /* Mark all the scroll bars to be removed; we'll redeem the ones
953 we want when we redisplay their windows. */
954 if (condemn_scroll_bars_hook
)
955 (*condemn_scroll_bars_hook
) (f
);
957 if (FRAME_VISIBLE_P (f
))
958 redisplay_windows (FRAME_ROOT_WINDOW (f
));
960 /* Any scroll bars which redisplay_windows should have nuked
961 should now go away. */
962 if (judge_scroll_bars_hook
)
963 (*judge_scroll_bars_hook
) (f
);
966 else if (FRAME_VISIBLE_P (selected_frame
))
968 redisplay_window (selected_window
, 1);
969 if (XFASTINT (w
->width
) != FRAME_WIDTH (selected_frame
))
970 preserve_other_columns (w
);
974 /* Prevent various kinds of signals during display update.
975 stdio is not robust about handling signals,
976 which can cause an apparent I/O error. */
988 for (tail
= Vframe_list
; CONSP (tail
); tail
= XCONS (tail
)->cdr
)
992 if (!FRAMEP (XCONS (tail
)->car
))
995 f
= XFRAME (XCONS (tail
)->car
);
996 if (FRAME_VISIBLE_P (f
))
998 pause
|= update_frame (f
, 0, 0);
1001 mark_window_display_accurate (f
->root_window
, 1);
1002 if (frame_up_to_date_hook
!= 0)
1003 (*frame_up_to_date_hook
) (f
);
1009 #endif /* MULTI_FRAME */
1011 if (FRAME_VISIBLE_P (selected_frame
))
1012 pause
= update_frame (selected_frame
, 0, 0);
1014 /* We may have called echo_area_display at the top of this
1015 function. If the echo area is on another frame, that may
1016 have put text on a frame other than the selected one, so the
1017 above call to update_frame would not have caught it. Catch
1020 FRAME_PTR mini_frame
1021 = XFRAME (WINDOW_FRAME (XWINDOW (minibuf_window
)));
1023 if (mini_frame
!= selected_frame
)
1024 pause
|= update_frame (mini_frame
, 0, 0);
1028 /* If frame does not match, prevent doing single-line-update next time.
1029 Also, don't forget to check every line to update the arrow. */
1032 this_line_bufpos
= 0;
1033 if (!NILP (last_arrow_position
))
1035 last_arrow_position
= Qt
;
1036 last_arrow_string
= Qt
;
1038 /* If we pause after scrolling, some lines in current_frame
1039 may be null, so preserve_other_columns won't be able to
1040 preserve all the vertical-bar separators. So, avoid using it
1042 if (XFASTINT (w
->width
) != FRAME_WIDTH (selected_frame
))
1043 update_mode_lines
= 1;
1046 /* Now text on frame agrees with windows, so
1047 put info into the windows for partial redisplay to follow */
1051 register struct buffer
*b
= XBUFFER (w
->buffer
);
1053 blank_end_of_window
= 0;
1055 unchanged_modified
= BUF_MODIFF (b
);
1056 beg_unchanged
= BUF_GPT (b
) - BUF_BEG (b
);
1057 end_unchanged
= BUF_Z (b
) - BUF_GPT (b
);
1059 XSETFASTINT (w
->last_point
, BUF_PT (b
));
1060 XSETFASTINT (w
->last_point_x
, FRAME_CURSOR_X (selected_frame
));
1061 XSETFASTINT (w
->last_point_y
, FRAME_CURSOR_Y (selected_frame
));
1064 mark_window_display_accurate (FRAME_ROOT_WINDOW (selected_frame
), 1);
1067 w
->update_mode_line
= Qnil
;
1068 XSETFASTINT (w
->last_modified
, BUF_MODIFF (b
));
1069 w
->window_end_valid
= w
->buffer
;
1070 last_arrow_position
= Voverlay_arrow_position
;
1071 last_arrow_string
= Voverlay_arrow_string
;
1072 if (do_verify_charstarts
)
1073 verify_charstarts (w
);
1074 if (frame_up_to_date_hook
!= 0)
1075 (*frame_up_to_date_hook
) (selected_frame
);
1077 update_mode_lines
= 0;
1078 windows_or_buffers_changed
= 0;
1081 /* Start SIGIO interrupts coming again.
1082 Having them off during the code above
1083 makes it less likely one will discard output,
1084 but not impossible, since there might be stuff
1085 in the system buffer here.
1086 But it is much hairier to try to do anything about that. */
1088 if (interrupt_input
)
1092 /* Change frame size now if a change is pending. */
1093 do_pending_window_change ();
1095 /* If we just did a pending size change, redisplay again
1096 for the new size. */
1097 if (windows_or_buffers_changed
&& !pause
)
1101 /* Redisplay, but leave alone any recent echo area message
1102 unless another message has been requested in its place.
1104 This is useful in situations where you need to redisplay but no
1105 user action has occurred, making it inappropriate for the message
1106 area to be cleared. See tracking_off and
1107 wait_reading_process_input for examples of these situations. */
1109 redisplay_preserve_echo_area ()
1111 if (echo_area_glyphs
== 0 && previous_echo_glyphs
!= 0)
1113 echo_area_glyphs
= previous_echo_glyphs
;
1115 echo_area_glyphs
= 0;
1122 mark_window_display_accurate (window
, flag
)
1126 register struct window
*w
;
1128 for (;!NILP (window
); window
= w
->next
)
1130 if (!WINDOWP (window
)) abort ();
1131 w
= XWINDOW (window
);
1133 if (!NILP (w
->buffer
))
1135 XSETFASTINT (w
->last_modified
,
1136 !flag
? 0 : BUF_MODIFF (XBUFFER (w
->buffer
)));
1138 /* Record if we are showing a region, so can make sure to
1139 update it fully at next redisplay. */
1140 w
->region_showing
= (!NILP (Vtransient_mark_mode
)
1141 && !NILP (XBUFFER (w
->buffer
)->mark_active
)
1142 ? Fmarker_position (XBUFFER (w
->buffer
)->mark
)
1146 w
->window_end_valid
= w
->buffer
;
1147 w
->update_mode_line
= Qnil
;
1149 if (!NILP (w
->vchild
))
1150 mark_window_display_accurate (w
->vchild
, flag
);
1151 if (!NILP (w
->hchild
))
1152 mark_window_display_accurate (w
->hchild
, flag
);
1157 last_arrow_position
= Voverlay_arrow_position
;
1158 last_arrow_string
= Voverlay_arrow_string
;
1162 /* t is unequal to any useful value of Voverlay_arrow_... */
1163 last_arrow_position
= Qt
;
1164 last_arrow_string
= Qt
;
1168 /* Update the menu bar item list for frame F.
1169 This has to be done before we start to fill in any display lines,
1170 because it can call eval. */
1176 struct buffer
*old
= current_buffer
;
1178 register struct window
*w
;
1179 window
= FRAME_SELECTED_WINDOW (f
);
1180 w
= XWINDOW (window
);
1182 if (update_mode_lines
)
1183 w
->update_mode_line
= Qt
;
1186 #ifdef USE_X_TOOLKIT
1187 FRAME_EXTERNAL_MENU_BAR (f
)
1189 FRAME_MENU_BAR_LINES (f
) > 0
1193 /* If the user has switched buffers or windows, we need to
1194 recompute to reflect the new bindings. But we'll
1195 recompute when update_mode_lines is set too; that means
1196 that people can use force-mode-line-update to request
1197 that the menu bar be recomputed. The adverse effect on
1198 the rest of the redisplay algorithm is about the same as
1199 windows_or_buffers_changed anyway. */
1200 if (windows_or_buffers_changed
1201 || !NILP (w
->update_mode_line
)
1202 || (XFASTINT (w
->last_modified
) < MODIFF
1203 && (XFASTINT (w
->last_modified
)
1204 <= BUF_SAVE_MODIFF (XBUFFER (w
->buffer
)))))
1206 struct buffer
*prev
= current_buffer
;
1207 call1 (Vrun_hooks
, Qmenu_bar_update_hook
);
1208 current_buffer
= XBUFFER (w
->buffer
);
1209 FRAME_MENU_BAR_ITEMS (f
) = menu_bar_items (FRAME_MENU_BAR_ITEMS (f
));
1210 current_buffer
= prev
;
1211 #ifdef USE_X_TOOLKIT
1212 set_frame_menubar (f
, 0);
1213 #endif /* USE_X_TOOLKIT */
1220 /* Redisplay WINDOW and its subwindows and siblings. */
1223 redisplay_windows (window
)
1226 for (; !NILP (window
); window
= XWINDOW (window
)->next
)
1227 redisplay_window (window
, 0);
1230 /* Redisplay window WINDOW and its subwindows. */
1233 redisplay_window (window
, just_this_one
)
1237 register struct window
*w
= XWINDOW (window
);
1238 FRAME_PTR f
= XFRAME (WINDOW_FRAME (w
));
1240 register int lpoint
= PT
;
1241 struct buffer
*old
= current_buffer
;
1242 register int width
= window_internal_width (w
) - 1;
1243 register int startp
;
1244 register int hscroll
= XINT (w
->hscroll
);
1245 struct position pos
;
1248 int window_needs_modeline
;
1250 if (FRAME_HEIGHT (f
) == 0) abort (); /* Some bug zeros some core */
1252 /* If this is a combination window, do its children; that's all. */
1254 if (!NILP (w
->vchild
))
1256 redisplay_windows (w
->vchild
);
1259 if (!NILP (w
->hchild
))
1261 redisplay_windows (w
->hchild
);
1264 if (NILP (w
->buffer
))
1267 height
= window_internal_height (w
);
1269 if (MINI_WINDOW_P (w
))
1271 if (w
== XWINDOW (minibuf_window
))
1273 if (echo_area_glyphs
)
1274 /* We've already displayed the echo area glyphs, if any. */
1275 goto finish_scroll_bars
;
1279 /* This is a minibuffer, but it's not the currently active one, so
1281 int vpos
= XFASTINT (XWINDOW (FRAME_MINIBUF_WINDOW (f
))->top
);
1284 for (i
= 0; i
< height
; i
++)
1286 get_display_line (f
, vpos
+ i
, 0);
1287 display_string (w
, vpos
+ i
, "", 0, 0, 0, 1, 0, width
);
1290 goto finish_scroll_bars
;
1294 if (update_mode_lines
)
1295 w
->update_mode_line
= Qt
;
1297 /* Otherwise set up data on this window; select its buffer and point value */
1299 set_buffer_temp (XBUFFER (w
->buffer
));
1302 /* Count number of windows showing the selected buffer.
1303 An indirect buffer counts as its base buffer. */
1307 struct buffer
*current_base
, *window_base
;
1308 current_base
= current_buffer
;
1309 window_base
= XBUFFER (XWINDOW (selected_window
)->buffer
);
1310 if (current_base
->base_buffer
)
1311 current_base
= current_base
->base_buffer
;
1312 if (window_base
->base_buffer
)
1313 window_base
= window_base
->base_buffer
;
1314 if (current_base
== window_base
)
1318 /* POINT refers normally to the selected window.
1319 For any other window, set up appropriate value. */
1321 if (!EQ (window
, selected_window
))
1323 int new_pt
= marker_position (w
->pointm
);
1327 Fset_marker (w
->pointm
, make_number (new_pt
), Qnil
);
1329 else if (new_pt
> (ZV
- 1))
1332 Fset_marker (w
->pointm
, make_number (new_pt
), Qnil
);
1334 /* We don't use SET_PT so that the point-motion hooks don't run. */
1335 BUF_PT (current_buffer
) = new_pt
;
1338 /* If any of the character widths specified in the display table
1339 have changed, invalidate the width run cache. It's true that this
1340 may be a bit late to catch such changes, but the rest of
1341 redisplay goes (non-fatally) haywire when the display table is
1342 changed, so why should we worry about doing any better? */
1343 if (current_buffer
->width_run_cache
)
1345 struct Lisp_Vector
*disptab
= buffer_display_table ();
1347 if (! disptab_matches_widthtab (disptab
,
1348 XVECTOR (current_buffer
->width_table
)))
1350 invalidate_region_cache (current_buffer
,
1351 current_buffer
->width_run_cache
,
1353 recompute_width_table (current_buffer
, disptab
);
1357 /* If window-start is screwed up, choose a new one. */
1358 if (XMARKER (w
->start
)->buffer
!= current_buffer
)
1361 startp
= marker_position (w
->start
);
1363 /* Handle case where place to start displaying has been specified,
1364 unless the specified location is outside the accessible range. */
1365 if (!NILP (w
->force_start
))
1367 /* Forget any recorded base line for line number display. */
1368 w
->base_line_number
= Qnil
;
1369 w
->update_mode_line
= Qt
;
1370 w
->force_start
= Qnil
;
1371 XSETFASTINT (w
->last_modified
, 0);
1372 if (startp
< BEGV
) startp
= BEGV
;
1373 if (startp
> ZV
) startp
= ZV
;
1374 try_window (window
, startp
);
1375 if (cursor_vpos
< 0)
1377 /* If point does not appear, move point so it does appear */
1378 pos
= *compute_motion (startp
, 0,
1379 ((EQ (window
, minibuf_window
) && startp
== 1)
1380 ? minibuf_prompt_width
: 0)
1382 (hscroll
? 1 - hscroll
: 0),
1384 - (1 << (SHORTBITS
- 1)),
1385 width
, hscroll
, pos_tab_offset (w
, startp
), w
);
1386 BUF_PT (current_buffer
) = pos
.bufpos
;
1387 if (w
!= XWINDOW (selected_window
))
1388 Fset_marker (w
->pointm
, make_number (PT
), Qnil
);
1391 if (current_buffer
== old
)
1393 FRAME_CURSOR_X (f
) = max (0, pos
.hpos
) + XFASTINT (w
->left
);
1394 FRAME_CURSOR_Y (f
) = pos
.vpos
+ XFASTINT (w
->top
);
1396 /* If we are highlighting the region,
1397 then we just changed the region, so redisplay to show it. */
1398 if (!NILP (Vtransient_mark_mode
)
1399 && !NILP (current_buffer
->mark_active
))
1401 cancel_my_columns (XWINDOW (window
));
1402 try_window (window
, startp
);
1408 /* Handle case where text has not changed, only point,
1409 and it has not moved off the frame */
1411 /* This code is not used for minibuffer for the sake of
1412 the case of redisplaying to replace an echo area message;
1413 since in that case the minibuffer contents per se are usually unchanged.
1414 This code is of no real use in the minibuffer since
1415 the handling of this_line_bufpos, etc.,
1416 in redisplay handles the same cases. */
1418 if (XFASTINT (w
->last_modified
) >= MODIFF
1419 && PT
>= startp
&& !clip_changed
1420 && (just_this_one
|| XFASTINT (w
->width
) == FRAME_WIDTH (f
))
1421 /* Can't use this case if highlighting a region. */
1422 && !(!NILP (Vtransient_mark_mode
) && !NILP (current_buffer
->mark_active
))
1423 && NILP (w
->region_showing
)
1424 /* If end pos is out of date, scroll bar and percentage will be wrong */
1425 && INTEGERP (w
->window_end_vpos
)
1426 && XFASTINT (w
->window_end_vpos
) < XFASTINT (w
->height
)
1427 && !EQ (window
, minibuf_window
))
1429 pos
= *compute_motion (startp
, 0, (hscroll
? 1 - hscroll
: 0),
1430 PT
, height
+ 1, 10000, width
, hscroll
,
1431 pos_tab_offset (w
, startp
), w
);
1433 if (pos
.vpos
< height
)
1435 /* Ok, point is still on frame */
1436 if (w
== XWINDOW (FRAME_SELECTED_WINDOW (f
)))
1438 /* These variables are supposed to be origin 1 */
1439 FRAME_CURSOR_X (f
) = max (0, pos
.hpos
) + XFASTINT (w
->left
);
1440 FRAME_CURSOR_Y (f
) = pos
.vpos
+ XFASTINT (w
->top
);
1442 /* This doesn't do the trick, because if a window to the right of
1443 this one must be redisplayed, this does nothing because there
1444 is nothing in DesiredFrame yet, and then the other window is
1445 redisplayed, making likes that are empty in this window's columns.
1446 if (XFASTINT (w->width) != FRAME_WIDTH (f))
1447 preserve_my_columns (w);
1451 /* Don't bother trying redisplay with same start;
1452 we already know it will lose */
1454 /* If current starting point was originally the beginning of a line
1455 but no longer is, find a new starting point. */
1456 else if (!NILP (w
->start_at_line_beg
)
1458 || FETCH_CHAR (startp
- 1) == '\n'))
1462 else if (just_this_one
&& !MINI_WINDOW_P (w
)
1464 && XFASTINT (w
->last_modified
)
1465 /* or else vmotion on first line won't work. */
1466 && ! NILP (w
->start_at_line_beg
)
1467 && ! EQ (w
->window_end_valid
, Qnil
)
1468 && do_id
&& !clip_changed
1469 && !blank_end_of_window
1470 && XFASTINT (w
->width
) == FRAME_WIDTH (f
)
1471 /* Can't use this case if highlighting a region. */
1472 && !(!NILP (Vtransient_mark_mode
)
1473 && !NILP (current_buffer
->mark_active
))
1474 && NILP (w
->region_showing
)
1475 && EQ (last_arrow_position
, Voverlay_arrow_position
)
1476 && EQ (last_arrow_string
, Voverlay_arrow_string
)
1477 && (tem
= try_window_id (FRAME_SELECTED_WINDOW (f
)))
1480 /* tem > 0 means success. tem == -1 means choose new start.
1481 tem == -2 means try again with same start,
1482 and nothing but whitespace follows the changed stuff.
1483 tem == 0 means try again with same start. */
1487 else if (startp
>= BEGV
&& startp
<= ZV
1488 /* Avoid starting display at end of buffer! */
1489 && (startp
< ZV
|| startp
== BEGV
1490 || (XFASTINT (w
->last_modified
) >= MODIFF
)))
1492 /* Try to redisplay starting at same place as before */
1493 /* If point has not moved off frame, accept the results */
1494 try_window (window
, startp
);
1495 if (cursor_vpos
>= 0)
1497 if (!just_this_one
|| clip_changed
|| beg_unchanged
< startp
)
1498 /* Forget any recorded base line for line number display. */
1499 w
->base_line_number
= Qnil
;
1503 cancel_my_columns (w
);
1506 XSETFASTINT (w
->last_modified
, 0);
1507 w
->update_mode_line
= Qt
;
1509 /* Try to scroll by specified few lines */
1511 if (scroll_step
&& !clip_changed
)
1515 pos
= *vmotion (Z
- XFASTINT (w
->window_end_pos
),
1516 scroll_step
, width
, hscroll
, window
);
1517 if (pos
.vpos
>= height
)
1521 pos
= *vmotion (startp
, PT
< startp
? - scroll_step
: scroll_step
,
1522 width
, hscroll
, window
);
1524 if (PT
>= pos
.bufpos
)
1526 try_window (window
, pos
.bufpos
);
1527 if (cursor_vpos
>= 0)
1529 if (!just_this_one
|| clip_changed
|| beg_unchanged
< startp
)
1530 /* Forget any recorded base line for line number display. */
1531 w
->base_line_number
= Qnil
;
1535 cancel_my_columns (w
);
1540 /* Finally, just choose place to start which centers point */
1543 /* Forget any previously recorded base line for line number display. */
1544 w
->base_line_number
= Qnil
;
1546 pos
= *vmotion (PT
, - (height
/ 2), width
, hscroll
, window
);
1547 try_window (window
, pos
.bufpos
);
1549 startp
= marker_position (w
->start
);
1550 w
->start_at_line_beg
1551 = (startp
== BEGV
|| FETCH_CHAR (startp
- 1) == '\n') ? Qt
: Qnil
;
1554 if ((!NILP (w
->update_mode_line
)
1555 /* If window not full width, must redo its mode line
1556 if the window to its side is being redone */
1557 || (!just_this_one
&& width
< FRAME_WIDTH (f
) - 1)
1558 || INTEGERP (w
->base_line_pos
)
1559 || (!NILP (w
->column_number_displayed
)
1560 && XFASTINT (w
->column_number_displayed
) != current_column ()))
1561 && height
!= XFASTINT (w
->height
))
1562 display_mode_line (w
);
1563 if (! line_number_displayed
1564 && ! BUFFERP (w
->base_line_pos
))
1566 w
->base_line_pos
= Qnil
;
1567 w
->base_line_number
= Qnil
;
1570 /* When we reach a frame's selected window, redo the frame's menu bar. */
1571 if (!NILP (w
->update_mode_line
)
1572 #ifdef USE_X_TOOLKIT
1573 && FRAME_EXTERNAL_MENU_BAR (f
)
1575 && FRAME_MENU_BAR_LINES (f
) > 0
1577 && EQ (FRAME_SELECTED_WINDOW (f
), window
))
1578 display_menu_bar (w
);
1581 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f
))
1583 int start
, end
, whole
;
1585 /* Calculate the start and end positions for the current window.
1586 At some point, it would be nice to choose between scrollbars
1587 which reflect the whole buffer size, with special markers
1588 indicating narrowing, and scrollbars which reflect only the
1591 Note that minibuffers sometimes aren't displaying any text. */
1592 if (! MINI_WINDOW_P (w
)
1593 || (w
== XWINDOW (minibuf_window
) && ! echo_area_glyphs
))
1596 start
= startp
- BEGV
;
1597 /* I don't think this is guaranteed to be right. For the
1598 moment, we'll pretend it is. */
1599 end
= (Z
- XINT (w
->window_end_pos
)) - BEGV
;
1601 if (end
< start
) end
= start
;
1602 if (whole
< (end
- start
)) whole
= end
- start
;
1605 start
= end
= whole
= 0;
1607 /* Indicate what this scroll bar ought to be displaying now. */
1608 (*set_vertical_scroll_bar_hook
) (w
, end
- start
, whole
, start
);
1610 /* Note that we actually used the scroll bar attached to this window,
1611 so it shouldn't be deleted at the end of redisplay. */
1612 (*redeem_scroll_bar_hook
) (w
);
1615 BUF_PT (current_buffer
) = opoint
;
1616 set_buffer_temp (old
);
1617 BUF_PT (current_buffer
) = lpoint
;
1620 /* Do full redisplay on one window, starting at position `pos'. */
1623 try_window (window
, pos
)
1627 register struct window
*w
= XWINDOW (window
);
1628 register int height
= window_internal_height (w
);
1629 register int vpos
= XFASTINT (w
->top
);
1630 register int last_text_vpos
= vpos
;
1631 int tab_offset
= pos_tab_offset (w
, pos
);
1632 FRAME_PTR f
= XFRAME (w
->frame
);
1633 int width
= window_internal_width (w
) - 1;
1634 struct position val
;
1636 Fset_marker (w
->start
, make_number (pos
), Qnil
);
1638 overlay_arrow_seen
= 0;
1639 val
.hpos
= XINT (w
->hscroll
) ? 1 - XINT (w
->hscroll
) : 0;
1641 while (--height
>= 0)
1643 val
= *display_text_line (w
, pos
, vpos
, val
.hpos
, tab_offset
);
1644 tab_offset
+= width
;
1645 /* For the first line displayed, display_text_line
1646 subtracts the prompt width from the tab offset.
1647 But it does not affect the value of our variable tab_offset.
1648 So we do the subtraction again,
1649 for the sake of continuation lines of that first line. */
1650 if (MINI_WINDOW_P (w
) && vpos
== XFASTINT (w
->top
))
1651 tab_offset
-= minibuf_prompt_width
;
1653 if (val
.vpos
) tab_offset
= 0;
1655 if (pos
!= val
.bufpos
)
1657 /* Next line, unless prev line ended in end of buffer with no cr */
1658 = vpos
- (val
.vpos
&& (FETCH_CHAR (val
.bufpos
- 1) != '\n'
1659 #ifdef USE_TEXT_PROPERTIES
1660 || ! NILP (Fget_char_property (val
.bufpos
-1,
1668 /* If last line is continued in middle of character,
1669 include the split character in the text considered on the frame */
1670 if (val
.hpos
< (XINT (w
->hscroll
) ? 1 - XINT (w
->hscroll
) : 0))
1673 /* If bottom just moved off end of frame, change mode line percentage. */
1674 if (XFASTINT (w
->window_end_pos
) == 0
1676 w
->update_mode_line
= Qt
;
1678 /* Say where last char on frame will be, once redisplay is finished. */
1679 XSETFASTINT (w
->window_end_pos
, Z
- pos
);
1680 XSETFASTINT (w
->window_end_vpos
, last_text_vpos
- XFASTINT (w
->top
));
1681 /* But that is not valid info until redisplay finishes. */
1682 w
->window_end_valid
= Qnil
;
1685 /* Try to redisplay when buffer is modified locally,
1686 computing insert/delete line to preserve text outside
1687 the bounds of the changes.
1688 Return 1 if successful, 0 if if cannot tell what to do,
1689 or -1 to tell caller to find a new window start,
1690 or -2 to tell caller to do normal redisplay with same window start. */
1693 try_window_id (window
)
1697 register struct window
*w
= XWINDOW (window
);
1698 register int height
= window_internal_height (w
);
1699 FRAME_PTR f
= XFRAME (w
->frame
);
1700 int top
= XFASTINT (w
->top
);
1701 int start
= marker_position (w
->start
);
1702 int width
= window_internal_width (w
) - 1;
1703 int hscroll
= XINT (w
->hscroll
);
1704 int lmargin
= hscroll
> 0 ? 1 - hscroll
: 0;
1706 register int i
, tem
;
1707 int last_text_vpos
= 0;
1709 int selective
= (INTEGERP (current_buffer
->selective_display
)
1710 ? XINT (current_buffer
->selective_display
)
1711 : !NILP (current_buffer
->selective_display
) ? -1 : 0);
1713 struct position val
, bp
, ep
, xp
, pp
;
1714 int scroll_amount
= 0;
1716 int tab_offset
, epto
;
1718 if (GPT
- BEG
< beg_unchanged
)
1719 beg_unchanged
= GPT
- BEG
;
1720 if (Z
- GPT
< end_unchanged
)
1721 end_unchanged
= Z
- GPT
;
1723 if (beg_unchanged
+ BEG
< start
)
1724 return 0; /* Give up if changes go above top of window */
1726 /* Find position before which nothing is changed. */
1727 bp
= *compute_motion (start
, 0, lmargin
,
1728 min (ZV
, beg_unchanged
+ BEG
), height
+ 1, 0,
1729 width
, hscroll
, pos_tab_offset (w
, start
), w
);
1730 if (bp
.vpos
>= height
)
1732 if (PT
< bp
.bufpos
&& !bp
.contin
)
1734 /* All changes are below the frame, and point is on the frame.
1735 We don't need to change the frame at all.
1736 But we need to update window_end_pos to account for
1737 any change in buffer size. */
1738 bp
= *compute_motion (start
, 0, lmargin
,
1740 width
, hscroll
, pos_tab_offset (w
, start
), w
);
1741 XSETFASTINT (w
->window_end_vpos
, height
);
1742 XSETFASTINT (w
->window_end_pos
, Z
- bp
.bufpos
);
1750 /* Find beginning of that frame line. Must display from there. */
1751 bp
= *vmotion (bp
.bufpos
, 0, width
, hscroll
, window
);
1758 /* If about to start displaying at the beginning of a continuation line,
1759 really start with previous frame line, in case it was not
1760 continued when last redisplayed */
1761 if ((bp
.contin
&& bp
.bufpos
- 1 == beg_unchanged
&& vpos
> 0)
1763 /* Likewise if we have to worry about selective display. */
1764 (selective
> 0 && bp
.bufpos
- 1 == beg_unchanged
&& vpos
> 0))
1766 bp
= *vmotion (bp
.bufpos
, -1, width
, hscroll
, window
);
1771 if (bp
.contin
&& bp
.hpos
!= lmargin
)
1773 val
.hpos
= bp
.prevhpos
- width
+ lmargin
;
1779 /* Find first visible newline after which no more is changed. */
1780 tem
= find_next_newline (Z
- max (end_unchanged
, Z
- ZV
), 1);
1782 while (tem
< ZV
- 1 && (indented_beyond_p (tem
, selective
)))
1783 tem
= find_next_newline (tem
, 1);
1785 /* Compute the cursor position after that newline. */
1786 ep
= *compute_motion (pos
, vpos
, val
.hpos
, tem
,
1787 height
, - (1 << (SHORTBITS
- 1)),
1788 width
, hscroll
, pos_tab_offset (w
, bp
.bufpos
), w
);
1790 /* If changes reach past the text available on the frame,
1791 just display rest of frame. */
1792 if (ep
.bufpos
> Z
- XFASTINT (w
->window_end_pos
))
1795 stop_vpos
= ep
.vpos
;
1797 /* If no newline before ep, the line ep is on includes some changes
1798 that must be displayed. Make sure we don't stop before it. */
1799 /* Also, if changes reach all the way until ep.bufpos,
1800 it is possible that something was deleted after the
1801 newline before it, so the following line must be redrawn. */
1802 if (stop_vpos
== ep
.vpos
1803 && (ep
.bufpos
== BEGV
1804 || FETCH_CHAR (ep
.bufpos
- 1) != '\n'
1805 || ep
.bufpos
== Z
- end_unchanged
))
1806 stop_vpos
= ep
.vpos
+ 1;
1809 overlay_arrow_seen
= 0;
1811 /* If changes do not reach to bottom of window,
1812 figure out how much to scroll the rest of the window */
1813 if (stop_vpos
< height
)
1815 /* Now determine how far up or down the rest of the window has moved */
1816 epto
= pos_tab_offset (w
, ep
.bufpos
);
1817 xp
= *compute_motion (ep
.bufpos
, ep
.vpos
, ep
.hpos
,
1818 Z
- XFASTINT (w
->window_end_pos
),
1819 10000, 0, width
, hscroll
, epto
, w
);
1820 scroll_amount
= xp
.vpos
- XFASTINT (w
->window_end_vpos
);
1822 /* Is everything on frame below the changes whitespace?
1823 If so, no scrolling is really necessary. */
1824 for (i
= ep
.bufpos
; i
< xp
.bufpos
; i
++)
1826 tem
= FETCH_CHAR (i
);
1827 if (tem
!= ' ' && tem
!= '\n' && tem
!= '\t')
1833 XSETFASTINT (w
->window_end_vpos
,
1834 XFASTINT (w
->window_end_vpos
) + scroll_amount
);
1836 /* Before doing any scrolling, verify that point will be on frame. */
1837 if (PT
> ep
.bufpos
&& !(PT
<= xp
.bufpos
&& xp
.bufpos
< height
))
1839 if (PT
<= xp
.bufpos
)
1841 pp
= *compute_motion (ep
.bufpos
, ep
.vpos
, ep
.hpos
,
1842 PT
, height
, - (1 << (SHORTBITS
- 1)),
1843 width
, hscroll
, epto
, w
);
1847 pp
= *compute_motion (xp
.bufpos
, xp
.vpos
, xp
.hpos
,
1848 PT
, height
, - (1 << (SHORTBITS
- 1)),
1850 pos_tab_offset (w
, xp
.bufpos
), w
);
1852 if (pp
.bufpos
< PT
|| pp
.vpos
== height
)
1854 cursor_vpos
= pp
.vpos
+ top
;
1855 cursor_hpos
= pp
.hpos
+ XFASTINT (w
->left
);
1858 if (stop_vpos
- scroll_amount
>= height
1859 || ep
.bufpos
== xp
.bufpos
)
1861 if (scroll_amount
< 0)
1862 stop_vpos
-= scroll_amount
;
1864 /* In this path, we have altered window_end_vpos
1865 and not left it negative.
1866 We must make sure that, in case display is preempted
1867 before the frame changes to reflect what we do here,
1868 further updates will not come to try_window_id
1869 and assume the frame and window_end_vpos match. */
1870 blank_end_of_window
= 1;
1872 else if (!scroll_amount
)
1874 /* Even if we don't need to scroll, we must adjust the
1875 charstarts of subsequent lines (that we won't redisplay)
1876 according to the amount of text inserted or deleted. */
1877 int oldpos
= FRAME_CURRENT_GLYPHS (f
)->charstarts
[ep
.vpos
+ top
][0];
1878 int adjust
= ep
.bufpos
- oldpos
;
1879 adjust_window_charstarts (w
, ep
.vpos
+ top
- 1, adjust
);
1881 else if (bp
.bufpos
== Z
- end_unchanged
)
1883 /* If reprinting everything is nearly as fast as scrolling,
1884 don't bother scrolling. Can happen if lines are short. */
1885 if (scroll_cost (f
, bp
.vpos
+ top
- scroll_amount
,
1886 top
+ height
- max (0, scroll_amount
),
1888 > xp
.bufpos
- bp
.bufpos
- 20)
1889 /* Return "try normal display with same window-start."
1890 Too bad we can't prevent further scroll-thinking. */
1892 /* If pure deletion, scroll up as many lines as possible.
1893 In common case of killing a line, this can save the
1894 following line from being overwritten by scrolling
1895 and therefore having to be redrawn. */
1896 tem
= scroll_frame_lines (f
, bp
.vpos
+ top
- scroll_amount
,
1897 top
+ height
- max (0, scroll_amount
),
1898 scroll_amount
, bp
.bufpos
);
1903 /* scroll_frame_lines did not properly adjust subsequent
1904 lines' charstarts in the case where the text of the
1905 screen line at bp.vpos has changed.
1906 (This can happen in a deletion that ends in mid-line.)
1907 To adjust properly, we need to make things constent at
1909 So do a second adjust to make that happen.
1910 Note that stop_vpos >= ep.vpos, so it is sufficient
1911 to update the charstarts for lines at ep.vpos and below. */
1913 = FRAME_CURRENT_GLYPHS (f
)->charstarts
[ep
.vpos
+ top
][0];
1914 adjust_window_charstarts (w
, ep
.vpos
+ top
- 1,
1915 ep
.bufpos
- oldstart
);
1918 else if (scroll_amount
)
1920 /* If reprinting everything is nearly as fast as scrolling,
1921 don't bother scrolling. Can happen if lines are short. */
1922 /* Note that if scroll_amount > 0, xp.bufpos - bp.bufpos is an
1923 overestimate of cost of reprinting, since xp.bufpos
1924 would end up below the bottom of the window. */
1925 if (scroll_cost (f
, ep
.vpos
+ top
- scroll_amount
,
1926 top
+ height
- max (0, scroll_amount
),
1928 > xp
.bufpos
- ep
.bufpos
- 20)
1929 /* Return "try normal display with same window-start."
1930 Too bad we can't prevent further scroll-thinking. */
1932 tem
= scroll_frame_lines (f
, ep
.vpos
+ top
- scroll_amount
,
1933 top
+ height
- max (0, scroll_amount
),
1934 scroll_amount
, ep
.bufpos
);
1935 if (!tem
) stop_vpos
= height
;
1939 /* In any case, do not display past bottom of window */
1940 if (stop_vpos
>= height
)
1946 /* Handle case where pos is before w->start --
1947 can happen if part of line had been clipped and is not clipped now */
1948 if (vpos
== 0 && pos
< marker_position (w
->start
))
1949 Fset_marker (w
->start
, make_number (pos
), Qnil
);
1951 /* Redisplay the lines where the text was changed */
1952 last_text_vpos
= vpos
;
1953 tab_offset
= pos_tab_offset (w
, pos
);
1954 /* If we are starting display in mid-character, correct tab_offset
1955 to account for passing the line that that character really starts in. */
1956 if (val
.hpos
< lmargin
)
1957 tab_offset
+= width
;
1958 while (vpos
< stop_vpos
)
1960 val
= *display_text_line (w
, pos
, top
+ vpos
++, val
.hpos
, tab_offset
);
1961 tab_offset
+= width
;
1962 if (val
.vpos
) tab_offset
= 0;
1963 if (pos
!= val
.bufpos
)
1965 /* Next line, unless prev line ended in end of buffer with no cr */
1966 = vpos
- (val
.vpos
&& FETCH_CHAR (val
.bufpos
- 1) != '\n');
1970 /* There are two cases:
1971 1) we have displayed down to the bottom of the window
1972 2) we have scrolled lines below stop_vpos by scroll_amount */
1976 /* If last line is continued in middle of character,
1977 include the split character in the text considered on the frame */
1978 if (val
.hpos
< lmargin
)
1980 XSETFASTINT (w
->window_end_vpos
, last_text_vpos
);
1981 XSETFASTINT (w
->window_end_pos
, Z
- val
.bufpos
);
1984 /* If scrolling made blank lines at window bottom,
1985 redisplay to fill those lines */
1986 if (scroll_amount
< 0)
1988 /* Don't consider these lines for general-purpose scrolling.
1989 That will save time in the scrolling computation. */
1990 FRAME_SCROLL_BOTTOM_VPOS (f
) = xp
.vpos
;
1995 vpos
= height
+ scroll_amount
;
1996 else if (xp
.contin
&& xp
.hpos
!= lmargin
)
1998 val
.hpos
= xp
.prevhpos
- width
+ lmargin
;
2002 blank_end_of_window
= 1;
2003 tab_offset
= pos_tab_offset (w
, pos
);
2004 /* If we are starting display in mid-character, correct tab_offset
2005 to account for passing the line that that character starts in. */
2006 if (val
.hpos
< lmargin
)
2007 tab_offset
+= width
;
2009 while (vpos
< height
)
2011 val
= *display_text_line (w
, pos
, top
+ vpos
++, val
.hpos
, tab_offset
);
2012 tab_offset
+= width
;
2013 if (val
.vpos
) tab_offset
= 0;
2017 /* Here is a case where display_text_line sets cursor_vpos wrong.
2018 Make it be fixed up, below. */
2024 /* If bottom just moved off end of frame, change mode line percentage. */
2025 if (XFASTINT (w
->window_end_pos
) == 0
2027 w
->update_mode_line
= Qt
;
2029 /* Attempt to adjust end-of-text positions to new bottom line */
2032 delta
= height
- xp
.vpos
;
2034 || (delta
> 0 && xp
.bufpos
<= ZV
)
2035 || (delta
== 0 && xp
.hpos
))
2037 val
= *vmotion (Z
- XFASTINT (w
->window_end_pos
),
2038 delta
, width
, hscroll
, window
);
2039 XSETFASTINT (w
->window_end_pos
, Z
- val
.bufpos
);
2040 XSETFASTINT (w
->window_end_vpos
,
2041 XFASTINT (w
->window_end_vpos
) + val
.vpos
);
2045 w
->window_end_valid
= Qnil
;
2047 /* If point was not in a line that was displayed, find it */
2048 if (cursor_vpos
< 0)
2050 val
= *compute_motion (start
, 0, lmargin
, PT
, 10000, 10000,
2051 width
, hscroll
, pos_tab_offset (w
, start
), w
);
2052 /* Admit failure if point is off frame now */
2053 if (val
.vpos
>= height
)
2055 for (vpos
= 0; vpos
< height
; vpos
++)
2056 cancel_line (vpos
+ top
, f
);
2059 cursor_vpos
= val
.vpos
+ top
;
2060 cursor_hpos
= val
.hpos
+ XFASTINT (w
->left
);
2063 FRAME_CURSOR_X (f
) = max (0, cursor_hpos
);
2064 FRAME_CURSOR_Y (f
) = cursor_vpos
;
2068 val
= *compute_motion (start
, 0, lmargin
, ZV
,
2069 height
, - (1 << (SHORTBITS
- 1)),
2070 width
, hscroll
, pos_tab_offset (w
, start
), w
);
2071 if (val
.vpos
!= XFASTINT (w
->window_end_vpos
))
2073 if (XFASTINT (w
->window_end_pos
)
2081 /* Mark a section of BUF as modified, but only for the sake of redisplay.
2082 This is useful for recording changes to overlays.
2084 We increment the buffer's modification timestamp and set the
2085 redisplay caches (windows_or_buffers_changed, beg_unchanged, etc)
2086 as if the region of text between START and END had been modified;
2087 the redisplay code will check this against the windows' timestamps,
2088 and redraw the appropriate area of the buffer.
2090 However, if the buffer is unmodified, we bump the last-save
2091 timestamp as well, so that incrementing the timestamp doesn't fool
2092 Emacs into thinking that the buffer's text has been modified.
2094 Tweaking the timestamps shouldn't hurt the first-modification
2095 timestamps recorded in the undo records; those values aren't
2096 written until just before a real text modification is made, so they
2097 will never catch the timestamp value just before this function gets
2101 redisplay_region (buf
, start
, end
)
2111 start
= end
; end
= temp
;
2114 /* If this is a buffer not in the selected window,
2115 we must do other windows. */
2116 if (buf
!= XBUFFER (XWINDOW (selected_window
)->buffer
))
2117 windows_or_buffers_changed
= 1;
2118 /* If it's not current, we can't use beg_unchanged, end_unchanged for it. */
2119 else if (buf
!= current_buffer
)
2120 windows_or_buffers_changed
= 1;
2121 /* If multiple windows show this buffer, we must do other windows. */
2122 else if (buffer_shared
> 1)
2123 windows_or_buffers_changed
= 1;
2126 if (unchanged_modified
== MODIFF
)
2128 beg_unchanged
= start
- BEG
;
2129 end_unchanged
= Z
- end
;
2133 if (Z
- end
< end_unchanged
)
2134 end_unchanged
= Z
- end
;
2135 if (start
- BEG
< beg_unchanged
)
2136 beg_unchanged
= start
- BEG
;
2140 /* Increment the buffer's time stamp, but also increment the save
2141 and autosave timestamps, so as not to screw up that timekeeping. */
2142 if (BUF_MODIFF (buf
) == BUF_SAVE_MODIFF (buf
))
2143 BUF_SAVE_MODIFF (buf
)++;
2144 if (BUF_MODIFF (buf
) == buf
->auto_save_modified
)
2145 buf
->auto_save_modified
++;
2147 BUF_MODIFF (buf
) ++;
2151 /* Copy LEN glyphs starting address FROM to the rope TO.
2152 But don't actually copy the parts that would come in before S.
2153 Value is TO, advanced past the copied data.
2154 F is the frame we are displaying in. */
2157 copy_part_of_rope (f
, to
, s
, from
, len
, face
)
2159 register GLYPH
*to
; /* Copy to here. */
2160 register GLYPH
*s
; /* Starting point. */
2161 Lisp_Object
*from
; /* Data to copy. */
2163 int face
; /* Face to apply to glyphs which don't specify one. */
2166 register Lisp_Object
*fp
= from
;
2167 /* These cache the results of the last call to compute_glyph_face. */
2169 int last_merged
= 0;
2172 if (! FRAME_TERMCAP_P (f
))
2175 int glyph
= (INTEGERP (*fp
) ? XFASTINT (*fp
) : 0);
2178 if (FAST_GLYPH_FACE (glyph
) == 0)
2179 /* If GLYPH has no face code, use FACE. */
2181 else if (FAST_GLYPH_FACE (glyph
) == last_code
)
2182 /* If it's same as previous glyph, use same result. */
2183 facecode
= last_merged
;
2186 /* Merge this glyph's face and remember the result. */
2187 last_code
= FAST_GLYPH_FACE (glyph
);
2188 last_merged
= facecode
= compute_glyph_face (f
, last_code
, face
);
2192 *to
= FAST_MAKE_GLYPH (FAST_GLYPH_CHAR (glyph
), facecode
);
2200 if (to
>= s
) *to
= (INTEGERP (*fp
) ? XFASTINT (*fp
) : 0);
2207 /* Correct a glyph by replacing its specified user-level face code
2208 with a displayable computed face code. */
2211 fix_glyph (f
, glyph
, cface
)
2217 if (! FRAME_TERMCAP_P (f
))
2219 if (FAST_GLYPH_FACE (glyph
) != 0)
2220 cface
= compute_glyph_face (f
, FAST_GLYPH_FACE (glyph
), cface
);
2221 glyph
= FAST_MAKE_GLYPH (FAST_GLYPH_CHAR (glyph
), cface
);
2227 /* Display one line of window W, starting at position START in W's buffer.
2229 Display starting at horizontal position HPOS, expressed relative to
2230 W's left edge. In situations where the text at START shouldn't
2231 start at the left margin (i.e. when the window is hscrolled, or
2232 we're continuing a line which left off in the midst of a
2233 multi-column character), HPOS should be negative; we throw away
2234 characters up 'til hpos = 0. So, HPOS must take hscrolling into
2237 TABOFFSET is an offset for ostensible hpos, used in tab stop calculations.
2239 Display on position VPOS on the frame. It is origin 0, relative to
2240 the top of the frame, not W.
2242 Returns a STRUCT POSITION giving character to start next line with
2243 and where to display it, including a zero or negative hpos.
2244 The vpos field is not really a vpos; it is 1 unless the line is continued */
2246 struct position val_display_text_line
;
2248 static struct position
*
2249 display_text_line (w
, start
, vpos
, hpos
, taboffset
)
2256 register int pos
= start
;
2261 register unsigned char *p
;
2263 register GLYPH
*leftmargin
;
2264 register GLYPH
*p1prev
= 0;
2265 register GLYPH
*p1start
;
2267 FRAME_PTR f
= XFRAME (w
->frame
);
2268 int tab_width
= XINT (current_buffer
->tab_width
);
2269 int ctl_arrow
= !NILP (current_buffer
->ctl_arrow
);
2270 int width
= window_internal_width (w
) - 1;
2271 struct position val
;
2274 int hscroll
= XINT (w
->hscroll
);
2275 int truncate
= (hscroll
2276 || (truncate_partial_width_windows
2277 && XFASTINT (w
->width
) < FRAME_WIDTH (f
))
2278 || !NILP (current_buffer
->truncate_lines
));
2280 /* 1 if we should highlight the region. */
2281 int highlight_region
2282 = !NILP (Vtransient_mark_mode
) && !NILP (current_buffer
->mark_active
);
2283 int region_beg
, region_end
;
2285 int selective
= (INTEGERP (current_buffer
->selective_display
)
2286 ? XINT (current_buffer
->selective_display
)
2287 : !NILP (current_buffer
->selective_display
) ? -1 : 0);
2288 register struct frame_glyphs
*desired_glyphs
= FRAME_DESIRED_GLYPHS (f
);
2289 register struct Lisp_Vector
*dp
= window_display_table (w
);
2291 Lisp_Object default_invis_vector
[3];
2292 /* Nonzero means display something where there are invisible lines.
2293 The precise value is the number of glyphs to display. */
2295 = (selective
&& dp
&& VECTORP (DISP_INVIS_VECTOR (dp
))
2296 ? XVECTOR (DISP_INVIS_VECTOR (dp
))->size
2297 : selective
&& !NILP (current_buffer
->selective_display_ellipses
)
2299 /* This is the sequence of Lisp objects to display
2300 when there are invisible lines. */
2301 Lisp_Object
*invis_vector_contents
2302 = (dp
&& VECTORP (DISP_INVIS_VECTOR (dp
))
2303 ? XVECTOR (DISP_INVIS_VECTOR (dp
))->contents
2304 : default_invis_vector
);
2306 GLYPH truncator
= (dp
== 0 || !INTEGERP (DISP_TRUNC_GLYPH (dp
))
2307 ? '$' : XINT (DISP_TRUNC_GLYPH (dp
)));
2308 GLYPH continuer
= (dp
== 0 || !INTEGERP (DISP_CONTINUE_GLYPH (dp
))
2309 ? '\\' : XINT (DISP_CONTINUE_GLYPH (dp
)));
2311 /* The next buffer location at which the face should change, due
2312 to overlays or text property changes. */
2313 int next_face_change
;
2315 #ifdef USE_TEXT_PROPERTIES
2316 /* The next location where the `invisible' property changes */
2320 /* The face we're currently using. */
2321 int current_face
= 0;
2324 XSETFASTINT (default_invis_vector
[2], '.');
2325 default_invis_vector
[0] = default_invis_vector
[1] = default_invis_vector
[2];
2327 hpos
+= XFASTINT (w
->left
);
2328 get_display_line (f
, vpos
, XFASTINT (w
->left
));
2329 if (tab_width
<= 0 || tab_width
> 1000) tab_width
= 8;
2331 /* Show where to highlight the region. */
2332 if (highlight_region
&& XMARKER (current_buffer
->mark
)->buffer
!= 0
2333 /* Maybe highlight only in selected window. */
2334 && (highlight_nonselected_windows
2335 || w
== XWINDOW (selected_window
)))
2337 region_beg
= marker_position (current_buffer
->mark
);
2338 if (PT
< region_beg
)
2340 region_end
= region_beg
;
2345 w
->region_showing
= Qt
;
2348 region_beg
= region_end
= -1;
2350 if (MINI_WINDOW_P (w
)
2352 && vpos
== XFASTINT (w
->top
))
2354 if (! NILP (minibuf_prompt
))
2356 minibuf_prompt_width
2357 = (display_string (w
, vpos
, XSTRING (minibuf_prompt
)->data
,
2358 XSTRING (minibuf_prompt
)->size
, hpos
,
2359 /* Display a space if we truncate. */
2362 /* Truncate the prompt a little before the
2363 margin, so user input can at least start
2364 on the first line. */
2365 w
->width
> 10 ? w
->width
- 4 : -1)
2367 hpos
+= minibuf_prompt_width
;
2368 taboffset
-= minibuf_prompt_width
;
2371 minibuf_prompt_width
= 0;
2376 /* If we're hscrolled at all, use compute_motion to skip over any
2377 text off the left edge of the window. compute_motion may know
2378 tricks to do this faster than we can. */
2381 struct position
*left_edge
2382 = compute_motion (pos
, vpos
, hpos
,
2384 width
, hscroll
, taboffset
, w
);
2386 /* Retrieve the buffer position and column provided by
2387 compute_motion. We can't assume that the column will be
2388 zero, because you may have multi-column characters crossing
2391 compute_motion may have moved us past the screen position we
2392 requested, if we hit a multi-column character, or the end of
2393 the line. If so, back up. */
2394 if (left_edge
->vpos
> vpos
2395 || left_edge
->hpos
> 0)
2397 pos
= left_edge
->bufpos
- 1;
2398 hpos
= left_edge
->prevhpos
;
2402 pos
= left_edge
->bufpos
;
2403 hpos
= left_edge
->hpos
;
2407 desired_glyphs
->bufp
[vpos
] = start
;
2408 p1
= desired_glyphs
->glyphs
[vpos
] + hpos
;
2410 charstart
= desired_glyphs
->charstarts
[vpos
] + hpos
;
2411 /* In case we don't ever write anything into it... */
2412 desired_glyphs
->charstarts
[vpos
][XFASTINT (w
->left
)] = -1;
2413 leftmargin
= desired_glyphs
->glyphs
[vpos
] + XFASTINT (w
->left
);
2414 endp
= leftmargin
+ width
;
2416 /* Arrange the overlays nicely for our purposes. Usually, we call
2417 display_text_line on only one line at a time, in which case this
2418 can't really hurt too much, or we call it on lines which appear
2419 one after another in the buffer, in which case all calls to
2420 recenter_overlay_lists but the first will be pretty cheap. */
2421 recenter_overlay_lists (current_buffer
, pos
);
2423 /* Loop generating characters.
2424 Stop at end of buffer, before newline,
2425 if reach or pass continuation column,
2426 or at face change. */
2428 next_face_change
= pos
;
2429 #ifdef USE_TEXT_PROPERTIES
2430 next_invisible
= pos
;
2434 /* Record which glyph starts a character,
2435 and the character position of that character. */
2436 if (p1
>= leftmargin
)
2437 charstart
[p1
- p1start
] = pos
;
2445 /* Did we hit the end of the visible region of the buffer?
2450 /* Did we reach point? Record the cursor location. */
2451 if (pos
== PT
&& cursor_vpos
< 0)
2454 cursor_hpos
= p1
- leftmargin
;
2457 #ifdef USE_TEXT_PROPERTIES
2458 /* if the `invisible' property is set to t, we can skip to
2459 the next property change */
2460 while (pos
== next_invisible
&& pos
< end
)
2462 Lisp_Object position
, limit
, endpos
, prop
, ww
;
2463 XSETFASTINT (position
, pos
);
2465 prop
= Fget_char_property (position
, Qinvisible
, ww
);
2466 /* This is just an estimate to give reasonable
2467 performance; nothing should go wrong if it is too small. */
2468 limit
= Fnext_overlay_change (position
);
2469 if (XFASTINT (limit
) > pos
+ 50)
2470 XSETFASTINT (limit
, pos
+ 50);
2471 endpos
= Fnext_single_property_change (position
, Qinvisible
,
2472 Fcurrent_buffer (), limit
);
2473 if (INTEGERP (endpos
))
2474 next_invisible
= XINT (endpos
);
2476 next_invisible
= end
;
2479 if (pos
< PT
&& next_invisible
>= PT
)
2482 cursor_hpos
= p1
- leftmargin
;
2484 pos
= next_invisible
;
2492 /* Did we hit a face change? Figure out what face we should
2493 use now. We also hit this the first time through the
2494 loop, to see what face we should start with. */
2495 if (pos
>= next_face_change
&& FRAME_X_P (f
))
2496 current_face
= compute_char_face (f
, w
, pos
,
2497 region_beg
, region_end
,
2498 &next_face_change
, pos
+ 50, 0);
2503 #ifdef USE_TEXT_PROPERTIES
2504 if (pos
< next_invisible
&& next_invisible
< pause
)
2505 pause
= next_invisible
;
2507 if (pos
< next_face_change
&& next_face_change
< pause
)
2508 pause
= next_face_change
;
2510 /* Wouldn't you hate to read the next line to someone over
2512 if (pos
< PT
&& PT
< pause
)
2514 if (pos
< GPT
&& GPT
< pause
)
2517 p
= &FETCH_CHAR (pos
);
2520 if (c
>= 040 && c
< 0177
2521 && (dp
== 0 || !VECTORP (DISP_CHAR_VECTOR (dp
, c
))))
2523 if (p1
>= leftmargin
)
2524 *p1
= MAKE_GLYPH (f
, c
, current_face
);
2530 while (pos
+ 1 < end
2532 && indented_beyond_p (pos
+ 1, selective
))
2535 pos
= find_next_newline (pos
+ 1, 1);
2536 if (FETCH_CHAR (pos
- 1) == '\n')
2539 if (invis
&& selective_rlen
> 0 && p1
>= leftmargin
)
2541 p1
+= selective_rlen
;
2542 if (p1
- leftmargin
> width
)
2544 copy_part_of_rope (f
, p1prev
, p1prev
, invis_vector_contents
,
2545 (p1
- p1prev
), current_face
);
2548 /* Draw the face of the newline character as extending all the
2549 way to the end of the frame line. */
2552 if (p1
< leftmargin
)
2555 *p1
++ = FAST_MAKE_GLYPH (' ', current_face
);
2564 if (p1
>= leftmargin
&& p1
< endp
)
2565 *p1
= MAKE_GLYPH (f
, ' ', current_face
);
2568 while ((p1
- leftmargin
+ taboffset
+ hscroll
- (hscroll
> 0))
2571 else if (c
== Ctl ('M') && selective
== -1)
2573 pos
= find_next_newline (pos
, 1);
2574 if (FETCH_CHAR (pos
- 1) == '\n')
2576 if (selective_rlen
> 0)
2578 p1
+= selective_rlen
;
2579 if (p1
- leftmargin
> width
)
2581 copy_part_of_rope (f
, p1prev
, p1prev
, invis_vector_contents
,
2582 (p1
- p1prev
), current_face
);
2585 /* Draw the face of the newline character as extending all the
2586 way to the end of the frame line. */
2589 if (p1
< leftmargin
)
2592 *p1
++ = FAST_MAKE_GLYPH (' ', current_face
);
2597 else if (dp
!= 0 && VECTORP (DISP_CHAR_VECTOR (dp
, c
)))
2599 p1
= copy_part_of_rope (f
, p1
, leftmargin
,
2600 XVECTOR (DISP_CHAR_VECTOR (dp
, c
))->contents
,
2601 XVECTOR (DISP_CHAR_VECTOR (dp
, c
))->size
,
2604 else if (c
< 0200 && ctl_arrow
)
2606 if (p1
>= leftmargin
)
2607 *p1
= fix_glyph (f
, (dp
&& INTEGERP (DISP_CTRL_GLYPH (dp
))
2608 ? XINT (DISP_CTRL_GLYPH (dp
)) : '^'),
2611 if (p1
>= leftmargin
&& p1
< endp
)
2612 *p1
= MAKE_GLYPH (f
, c
^ 0100, current_face
);
2617 if (p1
>= leftmargin
)
2618 *p1
= fix_glyph (f
, (dp
&& INTEGERP (DISP_ESCAPE_GLYPH (dp
))
2619 ? XINT (DISP_ESCAPE_GLYPH (dp
)) : '\\'),
2622 if (p1
>= leftmargin
&& p1
< endp
)
2623 *p1
= MAKE_GLYPH (f
, (c
>> 6) + '0', current_face
);
2625 if (p1
>= leftmargin
&& p1
< endp
)
2626 *p1
= MAKE_GLYPH (f
, (7 & (c
>> 3)) + '0', current_face
);
2628 if (p1
>= leftmargin
&& p1
< endp
)
2629 *p1
= MAKE_GLYPH (f
, (7 & c
) + '0', current_face
);
2633 /* Do nothing here for a char that's entirely off the left edge. */
2634 if (p1
>= leftmargin
)
2636 /* For all the glyphs occupied by this character, except for the
2637 first, store -1 in charstarts. */
2640 int *p2x
= &charstart
[p1prev
- p1start
];
2641 int *p2
= &charstart
[(p1
< endp
? p1
: endp
) - p1start
];
2643 /* The window's left column should always
2644 contain a character position.
2645 And don't clobber anything to the left of that. */
2646 if (p1prev
< leftmargin
)
2648 p2x
= charstart
+ (leftmargin
- p1start
);
2652 /* This loop skips over the char p2x initially points to. */
2661 val
.hpos
= - XINT (w
->hscroll
);
2669 /* Store 0 in this charstart line for the positions where
2670 there is no character. But do leave what was recorded
2671 for the character that ended the line. */
2672 /* Add 1 in the endtest to compensate for the fact that ENDP was
2673 made from WIDTH, which is 1 less than the window's actual
2675 i
= p1
- p1start
+ 1;
2676 if (p1
< leftmargin
)
2677 i
+= leftmargin
- p1
;
2678 for (; i
< endp
- p1start
+ 1; i
++)
2681 /* Handle continuation in middle of a character */
2682 /* by backing up over it */
2685 /* Don't back up if we never actually displayed any text.
2686 This occurs when the minibuffer prompt takes up the whole line. */
2689 /* Start the next line with that same character */
2691 /* but at negative hpos, to skip the columns output on this line. */
2692 val
.hpos
+= p1prev
- endp
;
2695 /* Keep in this line everything up to the continuation column. */
2699 /* Finish deciding which character to start the next line on,
2700 and what hpos to start it at.
2701 Also set `lastpos' to the last position which counts as "on this line"
2702 for cursor-positioning. */
2706 if (FETCH_CHAR (pos
) == '\n')
2708 /* If stopped due to a newline, start next line after it */
2710 /* Check again for hidden lines, in case the newline occurred exactly
2711 at the right margin. */
2712 while (pos
< ZV
&& selective
> 0
2713 && indented_beyond_p (pos
, selective
))
2714 pos
= find_next_newline (pos
, 1);
2717 /* Stopped due to right margin of window */
2721 *p1
++ = fix_glyph (f
, truncator
, 0);
2722 /* Truncating => start next line after next newline,
2723 and point is on this line if it is before the newline,
2724 and skip none of first char of next line */
2726 pos
= find_next_newline (pos
, 1);
2727 while (pos
< ZV
&& selective
> 0
2728 && indented_beyond_p (pos
, selective
));
2729 val
.hpos
= XINT (w
->hscroll
) ? 1 - XINT (w
->hscroll
) : 0;
2731 lastpos
= pos
- (FETCH_CHAR (pos
- 1) == '\n');
2735 *p1
++ = fix_glyph (f
, continuer
, 0);
2742 /* If point is at eol or in invisible text at eol,
2743 record its frame location now. */
2745 if (start
<= PT
&& PT
<= lastpos
&& cursor_vpos
< 0)
2748 cursor_hpos
= p1
- leftmargin
;
2751 if (cursor_vpos
== vpos
)
2753 if (cursor_hpos
< 0) cursor_hpos
= 0;
2754 if (cursor_hpos
> width
) cursor_hpos
= width
;
2755 cursor_hpos
+= XFASTINT (w
->left
);
2756 if (w
== XWINDOW (FRAME_SELECTED_WINDOW (f
)))
2758 FRAME_CURSOR_Y (f
) = cursor_vpos
;
2759 FRAME_CURSOR_X (f
) = cursor_hpos
;
2761 if (w
== XWINDOW (selected_window
))
2763 /* Line is not continued and did not start
2764 in middle of character */
2765 if ((hpos
- XFASTINT (w
->left
)
2766 == (XINT (w
->hscroll
) ? 1 - XINT (w
->hscroll
) : 0))
2769 this_line_bufpos
= start
;
2770 this_line_buffer
= current_buffer
;
2771 this_line_vpos
= cursor_vpos
;
2772 this_line_start_hpos
= hpos
;
2773 this_line_endpos
= Z
- lastpos
;
2776 this_line_bufpos
= 0;
2781 /* If hscroll and line not empty, insert truncation-at-left marker */
2782 if (hscroll
&& lastpos
!= start
)
2784 *leftmargin
= fix_glyph (f
, truncator
, 0);
2785 if (p1
<= leftmargin
)
2786 p1
= leftmargin
+ 1;
2789 if (XFASTINT (w
->width
) + XFASTINT (w
->left
) != FRAME_WIDTH (f
))
2792 if (p1
< leftmargin
) p1
= leftmargin
;
2793 while (p1
< endp
) *p1
++ = SPACEGLYPH
;
2795 /* Don't draw vertical bars if we're using scroll bars. They're
2796 covered up by the scroll bars, and it's distracting to see
2797 them when the scroll bar windows are flickering around to be
2799 *p1
++ = (FRAME_HAS_VERTICAL_SCROLL_BARS (f
)
2801 : (dp
&& INTEGERP (DISP_BORDER_GLYPH (dp
))
2802 ? DISP_BORDER_GLYPH (dp
)
2805 desired_glyphs
->used
[vpos
] = max (desired_glyphs
->used
[vpos
],
2806 p1
- desired_glyphs
->glyphs
[vpos
]);
2807 desired_glyphs
->glyphs
[vpos
][desired_glyphs
->used
[vpos
]] = 0;
2809 /* If the start of this line is the overlay arrow-position,
2810 then put the arrow string into the display-line. */
2812 if (MARKERP (Voverlay_arrow_position
)
2813 && current_buffer
== XMARKER (Voverlay_arrow_position
)->buffer
2814 && start
== marker_position (Voverlay_arrow_position
)
2815 && STRINGP (Voverlay_arrow_string
)
2816 && ! overlay_arrow_seen
)
2818 unsigned char *p
= XSTRING (Voverlay_arrow_string
)->data
;
2820 int len
= XSTRING (Voverlay_arrow_string
)->size
;
2826 if (!NULL_INTERVAL_P (XSTRING (Voverlay_arrow_string
)->intervals
))
2828 /* If the arrow string has text props, obey them when displaying. */
2829 for (i
= 0; i
< len
; i
++)
2832 Lisp_Object face
, ilisp
;
2835 XSETFASTINT (ilisp
, i
);
2836 face
= Fget_text_property (ilisp
, Qface
, Voverlay_arrow_string
);
2837 newface
= compute_glyph_face_1 (f
, face
, 0);
2838 leftmargin
[i
] = FAST_MAKE_GLYPH (c
, newface
);
2842 #endif /* HAVE_FACES */
2844 for (i
= 0; i
< len
; i
++)
2845 leftmargin
[i
] = p
[i
];
2848 /* Bug in SunOS 4.1.1 compiler requires this intermediate variable. */
2849 arrow_end
= (leftmargin
- desired_glyphs
->glyphs
[vpos
]) + len
;
2850 if (desired_glyphs
->used
[vpos
] < arrow_end
)
2851 desired_glyphs
->used
[vpos
] = arrow_end
;
2853 overlay_arrow_seen
= 1;
2857 val_display_text_line
= val
;
2858 return &val_display_text_line
;
2861 /* Redisplay the menu bar in the frame for window W. */
2864 display_menu_bar (w
)
2867 Lisp_Object items
, tail
;
2868 register int vpos
= 0;
2869 register FRAME_PTR f
= XFRAME (WINDOW_FRAME (w
));
2870 int maxendcol
= FRAME_WIDTH (f
);
2874 #ifndef USE_X_TOOLKIT
2875 if (FRAME_MENU_BAR_LINES (f
) <= 0)
2878 get_display_line (f
, vpos
, 0);
2880 items
= FRAME_MENU_BAR_ITEMS (f
);
2881 for (i
= 0; i
< XVECTOR (items
)->size
; i
+= 3)
2883 Lisp_Object pos
, string
;
2884 string
= XVECTOR (items
)->contents
[i
+ 1];
2888 XSETFASTINT (XVECTOR (items
)->contents
[i
+ 2], hpos
);
2890 if (hpos
< maxendcol
)
2891 hpos
= display_string (XWINDOW (FRAME_ROOT_WINDOW (f
)), vpos
,
2892 XSTRING (string
)->data
,
2893 XSTRING (string
)->size
,
2894 hpos
, 0, 0, hpos
, maxendcol
);
2895 /* Put a gap of 3 spaces between items. */
2896 if (hpos
< maxendcol
)
2898 int hpos1
= hpos
+ 3;
2899 hpos
= display_string (w
, vpos
, "", 0, hpos
, 0, 0,
2900 min (hpos1
, maxendcol
), maxendcol
);
2904 FRAME_DESIRED_GLYPHS (f
)->bufp
[vpos
] = 0;
2905 FRAME_DESIRED_GLYPHS (f
)->highlight
[vpos
] = mode_line_inverse_video
;
2907 /* Fill out the line with spaces. */
2908 if (maxendcol
> hpos
)
2909 hpos
= display_string (w
, vpos
, "", 0, hpos
, 0, 0, maxendcol
, maxendcol
);
2911 /* Clear the rest of the lines allocated to the menu bar. */
2913 while (vpos
< FRAME_MENU_BAR_LINES (f
))
2914 get_display_line (f
, vpos
++, 0);
2915 #endif /* not USE_X_TOOLKIT */
2918 /* Display the mode line for window w */
2921 display_mode_line (w
)
2924 register int vpos
= XFASTINT (w
->height
) + XFASTINT (w
->top
) - 1;
2925 register int left
= XFASTINT (w
->left
);
2926 register int right
= XFASTINT (w
->width
) + left
;
2927 register FRAME_PTR f
= XFRAME (WINDOW_FRAME (w
));
2929 line_number_displayed
= 0;
2930 w
->column_number_displayed
= Qnil
;
2932 get_display_line (f
, vpos
, left
);
2933 display_mode_element (w
, vpos
, left
, 0, right
, right
,
2934 current_buffer
->mode_line_format
);
2935 FRAME_DESIRED_GLYPHS (f
)->bufp
[vpos
] = 0;
2937 /* Make the mode line inverse video if the entire line
2938 is made of mode lines.
2939 I.e. if this window is full width,
2940 or if it is the child of a full width window
2941 (which implies that that window is split side-by-side
2942 and the rest of this line is mode lines of the sibling windows). */
2943 if (XFASTINT (w
->width
) == FRAME_WIDTH (f
)
2944 || XFASTINT (XWINDOW (w
->parent
)->width
) == FRAME_WIDTH (f
))
2945 FRAME_DESIRED_GLYPHS (f
)->highlight
[vpos
] = mode_line_inverse_video
;
2947 else if (! FRAME_TERMCAP_P (f
))
2949 /* For a partial width window, explicitly set face of each glyph. */
2951 GLYPH
*ptr
= FRAME_DESIRED_GLYPHS (f
)->glyphs
[vpos
];
2952 for (i
= left
; i
< right
; ++i
)
2953 ptr
[i
] = FAST_MAKE_GLYPH (FAST_GLYPH_CHAR (ptr
[i
]), 1);
2958 /* Contribute ELT to the mode line for window W.
2959 How it translates into text depends on its data type.
2961 VPOS is the position of the mode line being displayed.
2963 HPOS is the position (absolute on frame) where this element's text
2964 should start. The output is truncated automatically at the right
2967 DEPTH is the depth in recursion. It is used to prevent
2968 infinite recursion here.
2970 MINENDCOL is the hpos before which the element may not end.
2971 The element is padded at the right with spaces if nec
2972 to reach this column.
2974 MAXENDCOL is the hpos past which this element may not extend.
2975 If MINENDCOL is > MAXENDCOL, MINENDCOL takes priority.
2976 (This is necessary to make nested padding and truncation work.)
2978 Returns the hpos of the end of the text generated by ELT.
2979 The next element will receive that value as its HPOS arg,
2980 so as to concatenate the elements. */
2983 display_mode_element (w
, vpos
, hpos
, depth
, minendcol
, maxendcol
, elt
)
2985 register int vpos
, hpos
;
2988 register int maxendcol
;
2989 register Lisp_Object elt
;
2997 switch (SWITCH_ENUM_CAST (XTYPE (elt
)))
3001 /* A string: output it and check for %-constructs within it. */
3002 register unsigned char c
;
3003 register unsigned char *this = XSTRING (elt
)->data
;
3005 while (hpos
< maxendcol
&& *this)
3007 unsigned char *last
= this;
3008 while ((c
= *this++) != '\0' && c
!= '%')
3010 if (this - 1 != last
)
3012 register int lim
= --this - last
+ hpos
;
3013 if (frame_title_ptr
)
3014 hpos
= store_frame_title (last
, hpos
, min (lim
, maxendcol
));
3016 hpos
= display_string (w
, vpos
, last
, -1, hpos
, 0, 1,
3017 hpos
, min (lim
, maxendcol
));
3021 register int spec_width
= 0;
3023 /* We can't allow -ve args due to the "%-" construct */
3024 /* Argument specifies minwidth but not maxwidth
3025 (maxwidth can be specified by
3026 (<negative-number> . <stuff>) mode-line elements) */
3028 while ((c
= *this++) >= '0' && c
<= '9')
3030 spec_width
= spec_width
* 10 + (c
- '0');
3034 if (spec_width
> maxendcol
)
3035 spec_width
= maxendcol
;
3038 hpos
= display_mode_element (w
, vpos
, hpos
, depth
,
3039 spec_width
, maxendcol
,
3040 Vglobal_mode_string
);
3043 char *spec
= decode_mode_spec (w
, c
, maxendcol
- hpos
);
3044 if (frame_title_ptr
)
3045 hpos
= store_frame_title (spec
, spec_width
, maxendcol
);
3047 hpos
= display_string (w
, vpos
, spec
, -1,
3049 spec_width
, maxendcol
);
3057 /* A symbol: process the value of the symbol recursively
3058 as if it appeared here directly. Avoid error if symbol void.
3059 Special case: if value of symbol is a string, output the string
3062 register Lisp_Object tem
;
3063 tem
= Fboundp (elt
);
3066 tem
= Fsymbol_value (elt
);
3067 /* If value is a string, output that string literally:
3068 don't check for % within it. */
3071 if (frame_title_ptr
)
3072 hpos
= store_frame_title (XSTRING (tem
)->data
,
3073 minendcol
, maxendcol
);
3075 hpos
= display_string (w
, vpos
, XSTRING (tem
)->data
,
3076 XSTRING (tem
)->size
,
3077 hpos
, 0, 1, minendcol
, maxendcol
);
3079 /* Give up right away for nil or t. */
3080 else if (!EQ (tem
, elt
))
3081 { elt
= tem
; goto tail_recurse
; }
3088 register Lisp_Object car
, tem
;
3090 /* A cons cell: three distinct cases.
3091 If first element is a string or a cons, process all the elements
3092 and effectively concatenate them.
3093 If first element is a negative number, truncate displaying cdr to
3094 at most that many characters. If positive, pad (with spaces)
3095 to at least that many characters.
3096 If first element is a symbol, process the cadr or caddr recursively
3097 according to whether the symbol's value is non-nil or nil. */
3098 car
= XCONS (elt
)->car
;
3101 tem
= Fboundp (car
);
3102 elt
= XCONS (elt
)->cdr
;
3105 /* elt is now the cdr, and we know it is a cons cell.
3106 Use its car if CAR has a non-nil value. */
3109 tem
= Fsymbol_value (car
);
3111 { elt
= XCONS (elt
)->car
; goto tail_recurse
; }
3113 /* Symbol's value is nil (or symbol is unbound)
3114 Get the cddr of the original list
3115 and if possible find the caddr and use that. */
3116 elt
= XCONS (elt
)->cdr
;
3119 else if (!CONSP (elt
))
3121 elt
= XCONS (elt
)->car
;
3124 else if (INTEGERP (car
))
3126 register int lim
= XINT (car
);
3127 elt
= XCONS (elt
)->cdr
;
3129 /* Negative int means reduce maximum width.
3130 DO NOT change MINENDCOL here!
3131 (20 -10 . foo) should truncate foo to 10 col
3132 and then pad to 20. */
3133 maxendcol
= min (maxendcol
, hpos
- lim
);
3136 /* Padding specified. Don't let it be more than
3139 if (lim
> maxendcol
)
3141 /* If that's more padding than already wanted, queue it.
3142 But don't reduce padding already specified even if
3143 that is beyond the current truncation point. */
3144 if (lim
> minendcol
)
3149 else if (STRINGP (car
) || CONSP (car
))
3151 register int limit
= 50;
3152 /* LIMIT is to protect against circular lists. */
3153 while (CONSP (elt
) && --limit
> 0
3154 && hpos
< maxendcol
)
3156 hpos
= display_mode_element (w
, vpos
, hpos
, depth
,
3159 elt
= XCONS (elt
)->cdr
;
3167 if (frame_title_ptr
)
3168 hpos
= store_frame_title ("*invalid*", minendcol
, maxendcol
);
3170 hpos
= display_string (w
, vpos
, "*invalid*", -1, hpos
, 0, 1,
3171 minendcol
, maxendcol
);
3175 if (minendcol
> hpos
)
3176 if (frame_title_ptr
)
3177 hpos
= store_frame_title ("", minendcol
, maxendcol
);
3179 hpos
= display_string (w
, vpos
, "", 0, hpos
, 0, 1, minendcol
, maxendcol
);
3183 /* Return a string for the output of a mode line %-spec for window W,
3184 generated by character C and width MAXWIDTH. */
3186 static char lots_of_dashes
[] = "--------------------------------------------------------------------------------------------------------------------------------------------";
3189 decode_mode_spec (w
, c
, maxwidth
)
3192 register int maxwidth
;
3195 FRAME_PTR f
= XFRAME (WINDOW_FRAME (w
));
3196 char *decode_mode_spec_buf
= (char *) FRAME_TEMP_GLYPHS (f
)->total_contents
;
3197 struct buffer
*b
= XBUFFER (w
->buffer
);
3200 if (maxwidth
> FRAME_WIDTH (f
))
3201 maxwidth
= FRAME_WIDTH (f
);
3208 if (maxwidth
>= 3 && XSTRING (obj
)->size
> maxwidth
)
3210 bcopy (XSTRING (obj
)->data
, decode_mode_spec_buf
, maxwidth
- 1);
3211 decode_mode_spec_buf
[maxwidth
- 1] = '\\';
3212 decode_mode_spec_buf
[maxwidth
] = '\0';
3213 return decode_mode_spec_buf
;
3223 else if (STRINGP (obj
) && XSTRING (obj
)->size
> maxwidth
)
3225 bcopy ("...", decode_mode_spec_buf
, 3);
3226 bcopy (XSTRING (obj
)->data
+ XSTRING (obj
)->size
- maxwidth
+ 3,
3227 decode_mode_spec_buf
+ 3, maxwidth
- 3);
3228 return decode_mode_spec_buf
;
3235 int col
= current_column ();
3236 XSETFASTINT (w
->column_number_displayed
, col
);
3237 sprintf (decode_mode_spec_buf
, "%d", col
);
3238 return decode_mode_spec_buf
;
3243 int startpos
= marker_position (w
->start
);
3244 int line
, linepos
, topline
;
3247 int height
= XFASTINT (w
->height
);
3249 /* If we decided that this buffer isn't suitable for line numbers,
3250 don't forget that too fast. */
3251 if (EQ (w
->base_line_pos
, w
->buffer
))
3254 /* If the buffer is very big, don't waste time. */
3255 if (BUF_ZV (b
) - BUF_BEGV (b
) > line_number_display_limit
)
3257 w
->base_line_pos
= Qnil
;
3258 w
->base_line_number
= Qnil
;
3262 if (!NILP (w
->base_line_number
)
3263 && !NILP (w
->base_line_pos
)
3264 && XFASTINT (w
->base_line_pos
) <= marker_position (w
->start
))
3266 line
= XFASTINT (w
->base_line_number
);
3267 linepos
= XFASTINT (w
->base_line_pos
);
3272 linepos
= BUF_BEGV (b
);
3275 /* Count lines from base line to window start position. */
3276 nlines
= display_count_lines (linepos
, startpos
, startpos
, &junk
);
3278 topline
= nlines
+ line
;
3280 /* Determine a new base line, if the old one is too close
3281 or too far away, or if we did not have one.
3282 "Too close" means it's plausible a scroll-down would
3284 if (startpos
== BUF_BEGV (b
))
3286 XSETFASTINT (w
->base_line_number
, topline
);
3287 XSETFASTINT (w
->base_line_pos
, BUF_BEGV (b
));
3289 else if (nlines
< height
+ 25 || nlines
> height
* 3 + 50
3290 || linepos
== BUF_BEGV (b
))
3292 int limit
= BUF_BEGV (b
);
3294 int distance
= (height
* 2 + 30) * 200;
3296 if (startpos
- distance
> limit
)
3297 limit
= startpos
- distance
;
3299 nlines
= display_count_lines (startpos
, limit
,
3302 /* If we couldn't find the lines we wanted within
3304 give up on line numbers for this window. */
3305 if (position
== startpos
- distance
)
3307 w
->base_line_pos
= w
->buffer
;
3308 w
->base_line_number
= Qnil
;
3312 XSETFASTINT (w
->base_line_number
, topline
- nlines
);
3313 XSETFASTINT (w
->base_line_pos
, position
);
3316 /* Now count lines from the start pos to point. */
3317 nlines
= display_count_lines (startpos
, PT
, PT
, &junk
);
3319 /* Record that we did display the line number. */
3320 line_number_displayed
= 1;
3322 /* Make the string to show. */
3323 sprintf (decode_mode_spec_buf
, "%d", topline
+ nlines
);
3324 return decode_mode_spec_buf
;
3333 if (BUF_BEGV (b
) > BUF_BEG (b
) || BUF_ZV (b
) < BUF_Z (b
))
3338 if (!NILP (b
->read_only
))
3340 if (BUF_MODIFF (b
) > BUF_SAVE_MODIFF (b
))
3345 /* This differs from %* only for a modified read-only buffer. */
3346 if (BUF_MODIFF (b
) > BUF_SAVE_MODIFF (b
))
3348 if (!NILP (b
->read_only
))
3353 /* This differs from %* in ignoring read-only-ness. */
3354 if (BUF_MODIFF (b
) > BUF_SAVE_MODIFF (b
))
3359 /* status of process */
3360 obj
= Fget_buffer_process (w
->buffer
);
3362 return "no process";
3364 obj
= Fsymbol_name (Fprocess_status (obj
));
3368 case 't': /* indicate TEXT or BINARY */
3369 #ifdef MODE_LINE_BINARY_TEXT
3370 return MODE_LINE_BINARY_TEXT (b
);
3377 int pos
= marker_position (w
->start
);
3378 int total
= BUF_ZV (b
) - BUF_BEGV (b
);
3380 if (XFASTINT (w
->window_end_pos
) <= BUF_Z (b
) - BUF_ZV (b
))
3382 if (pos
<= BUF_BEGV (b
))
3387 else if (pos
<= BUF_BEGV (b
))
3391 total
= ((pos
- BUF_BEGV (b
)) * 100 + total
- 1) / total
;
3392 /* We can't normally display a 3-digit number,
3393 so get us a 2-digit number that is close. */
3396 sprintf (decode_mode_spec_buf
, "%2d%%", total
);
3397 return decode_mode_spec_buf
;
3401 /* Display percentage of size above the bottom of the screen. */
3404 int toppos
= marker_position (w
->start
);
3405 int botpos
= BUF_Z (b
) - XFASTINT (w
->window_end_pos
);
3406 int total
= BUF_ZV (b
) - BUF_BEGV (b
);
3408 if (botpos
>= BUF_ZV (b
))
3410 if (toppos
<= BUF_BEGV (b
))
3417 total
= ((botpos
- BUF_BEGV (b
)) * 100 + total
- 1) / total
;
3418 /* We can't normally display a 3-digit number,
3419 so get us a 2-digit number that is close. */
3422 if (toppos
<= BUF_BEGV (b
))
3423 sprintf (decode_mode_spec_buf
, "Top%2d%%", total
);
3425 sprintf (decode_mode_spec_buf
, "%2d%%", total
);
3426 return decode_mode_spec_buf
;
3438 if (command_loop_level
> 5)
3440 p
= decode_mode_spec_buf
;
3441 for (i
= 0; i
< command_loop_level
; i
++)
3444 return decode_mode_spec_buf
;
3452 if (command_loop_level
> 5)
3454 p
= decode_mode_spec_buf
;
3455 for (i
= 0; i
< command_loop_level
; i
++)
3458 return decode_mode_spec_buf
;
3466 if (maxwidth
< sizeof (lots_of_dashes
))
3467 return lots_of_dashes
;
3470 for (p
= decode_mode_spec_buf
, i
= maxwidth
; i
> 0; i
--)
3474 return decode_mode_spec_buf
;
3479 return (char *) XSTRING (obj
)->data
;
3484 /* Search for COUNT instances of a line boundary, which means either a
3485 newline or (if selective display enabled) a carriage return.
3486 Start at START. If COUNT is negative, search backwards.
3488 If we find COUNT instances, set *SHORTAGE to zero, and return the
3489 position after the COUNTth match. Note that for reverse motion
3490 this is not the same as the usual convention for Emacs motion commands.
3492 If we don't find COUNT instances before reaching the end of the
3493 buffer (or the beginning, if scanning backwards), set *SHORTAGE to
3494 the number of line boundaries left unfound, and return the end of the
3495 buffer we bumped up against. */
3498 display_scan_buffer (start
, count
, shortage
)
3499 int *shortage
, start
;
3502 int limit
= ((count
> 0) ? ZV
- 1 : BEGV
);
3503 int direction
= ((count
> 0) ? 1 : -1);
3505 register unsigned char *cursor
;
3506 unsigned char *base
;
3508 register int ceiling
;
3509 register unsigned char *ceiling_addr
;
3511 /* If we are not in selective display mode,
3512 check only for newlines. */
3513 if (! (!NILP (current_buffer
->selective_display
)
3514 && !INTEGERP (current_buffer
->selective_display
)))
3515 return scan_buffer ('\n', start
, 0, count
, shortage
, 0);
3517 /* The code that follows is like scan_buffer
3518 but checks for either newline or carriage return. */
3524 while (start
!= limit
+ 1)
3526 ceiling
= BUFFER_CEILING_OF (start
);
3527 ceiling
= min (limit
, ceiling
);
3528 ceiling_addr
= &FETCH_CHAR (ceiling
) + 1;
3529 base
= (cursor
= &FETCH_CHAR (start
));
3532 while (*cursor
!= '\n' && *cursor
!= 015 && ++cursor
!= ceiling_addr
)
3534 if (cursor
!= ceiling_addr
)
3539 return (start
+ cursor
- base
+ 1);
3542 if (++cursor
== ceiling_addr
)
3548 start
+= cursor
- base
;
3552 start
--; /* first character we scan */
3553 while (start
> limit
- 1)
3554 { /* we WILL scan under start */
3555 ceiling
= BUFFER_FLOOR_OF (start
);
3556 ceiling
= max (limit
, ceiling
);
3557 ceiling_addr
= &FETCH_CHAR (ceiling
) - 1;
3558 base
= (cursor
= &FETCH_CHAR (start
));
3562 while (--cursor
!= ceiling_addr
3563 && *cursor
!= '\n' && *cursor
!= 015)
3565 if (cursor
!= ceiling_addr
)
3570 return (start
+ cursor
- base
+ 1);
3576 start
+= cursor
- base
;
3581 *shortage
= count
* direction
;
3582 return (start
+ ((direction
== 1 ? 0 : 1)));
3585 /* Count up to N lines starting from FROM.
3586 But don't go beyond LIMIT.
3587 Return the number of lines thus found (always positive).
3588 Store the position after what was found into *POS_PTR. */
3591 display_count_lines (from
, limit
, n
, pos_ptr
)
3604 *pos_ptr
= display_scan_buffer (from
, n
, &shortage
);
3610 /* When scanning backwards, scan_buffer stops *after* the last newline
3611 it finds, but does count it. Compensate for that. */
3612 return - n
- shortage
- (*pos_ptr
!= limit
);
3613 return n
- shortage
;
3616 /* Display STRING on one line of window W, starting at HPOS.
3617 Display at position VPOS. Caller should have done get_display_line.
3618 If VPOS == -1, display it as the current frame's title.
3619 LENGTH is the length of STRING, or -1 meaning STRING is null-terminated.
3621 TRUNCATE is GLYPH to display at end if truncated. Zero for none.
3623 MINCOL is the first column ok to end at. (Pad with spaces to this col.)
3624 MAXCOL is the last column ok to end at. Truncate here.
3625 -1 for MINCOL or MAXCOL means no explicit minimum or maximum.
3626 Both count from the left edge of the frame, as does HPOS.
3627 The right edge of W is an implicit maximum.
3628 If TRUNCATE is nonzero, the implicit maximum is one column before the edge.
3630 OBEY_WINDOW_WIDTH says to put spaces or vertical bars
3631 at the place where the current window ends in this line
3632 and not display anything beyond there. Otherwise, only MAXCOL
3633 controls where to stop output.
3635 Returns ending hpos. */
3638 display_string (w
, vpos
, string
, length
, hpos
, truncate
,
3639 obey_window_width
, mincol
, maxcol
)
3641 unsigned char *string
;
3645 int obey_window_width
;
3650 int hscroll
= XINT (w
->hscroll
);
3651 int tab_width
= XINT (XBUFFER (w
->buffer
)->tab_width
);
3652 register GLYPH
*start
;
3653 register GLYPH
*end
;
3654 FRAME_PTR f
= XFRAME (WINDOW_FRAME (w
));
3655 struct frame_glyphs
*desired_glyphs
= FRAME_DESIRED_GLYPHS (f
);
3656 GLYPH
*p1start
= desired_glyphs
->glyphs
[vpos
] + hpos
;
3657 int window_width
= XFASTINT (w
->width
);
3659 /* Use the standard display table, not the window's display table.
3660 We don't want the mode line in rot13. */
3661 register struct Lisp_Vector
*dp
= 0;
3664 if (VECTORP (Vstandard_display_table
)
3665 && XVECTOR (Vstandard_display_table
)->size
== DISP_TABLE_SIZE
)
3666 dp
= XVECTOR (Vstandard_display_table
);
3668 if (tab_width
<= 0 || tab_width
> 1000) tab_width
= 8;
3671 start
= desired_glyphs
->glyphs
[vpos
] + XFASTINT (w
->left
);
3673 if (obey_window_width
)
3675 end
= start
+ window_width
- (truncate
!= 0);
3677 if ((window_width
+ XFASTINT (w
->left
)) != FRAME_WIDTH (f
))
3679 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f
))
3683 for (i
= 0; i
< FRAME_SCROLL_BAR_COLS (f
); i
++)
3691 if (! obey_window_width
3692 || (maxcol
>= 0 && end
- desired_glyphs
->glyphs
[vpos
] > maxcol
))
3693 end
= desired_glyphs
->glyphs
[vpos
] + maxcol
;
3695 /* Store 0 in charstart for these columns. */
3696 for (i
= (hpos
>= 0 ? hpos
: 0); i
< end
- p1start
+ hpos
; i
++)
3697 desired_glyphs
->charstarts
[vpos
][i
] = 0;
3699 if (maxcol
>= 0 && mincol
> maxcol
)
3707 /* Specified length. */
3710 /* Unspecified length (null-terminated string). */
3714 if (c
>= 040 && c
< 0177
3715 && (dp
== 0 || !VECTORP (DISP_CHAR_VECTOR (dp
, c
))))
3725 if (p1
>= start
&& p1
< end
)
3729 while ((p1
- start
+ hscroll
- (hscroll
> 0)) % tab_width
);
3731 else if (dp
!= 0 && VECTORP (DISP_CHAR_VECTOR (dp
, c
)))
3733 p1
= copy_part_of_rope (f
, p1
, start
,
3734 XVECTOR (DISP_CHAR_VECTOR (dp
, c
))->contents
,
3735 XVECTOR (DISP_CHAR_VECTOR (dp
, c
))->size
,
3738 else if (c
< 0200 && ! NILP (buffer_defaults
.ctl_arrow
))
3741 *p1
= fix_glyph (f
, (dp
&& INTEGERP (DISP_CTRL_GLYPH (dp
))
3742 ? XINT (DISP_CTRL_GLYPH (dp
)) : '^'),
3745 if (p1
>= start
&& p1
< end
)
3752 *p1
= fix_glyph (f
, (dp
&& INTEGERP (DISP_ESCAPE_GLYPH (dp
))
3753 ? XINT (DISP_ESCAPE_GLYPH (dp
)) : '\\'),
3756 if (p1
>= start
&& p1
< end
)
3757 *p1
= (c
>> 6) + '0';
3759 if (p1
>= start
&& p1
< end
)
3760 *p1
= (7 & (c
>> 3)) + '0';
3762 if (p1
>= start
&& p1
< end
)
3763 *p1
= (7 & c
) + '0';
3768 if (c
&& length
> 0)
3771 if (truncate
) *p1
++ = fix_glyph (f
, truncate
, 0);
3773 else if (mincol
>= 0)
3775 end
= desired_glyphs
->glyphs
[vpos
] + mincol
;
3781 register int len
= p1
- desired_glyphs
->glyphs
[vpos
];
3783 if (len
> desired_glyphs
->used
[vpos
])
3784 desired_glyphs
->used
[vpos
] = len
;
3785 desired_glyphs
->glyphs
[vpos
][desired_glyphs
->used
[vpos
]] = 0;
3794 staticpro (&Qmenu_bar_update_hook
);
3795 Qmenu_bar_update_hook
= intern ("menu-bar-update-hook");
3797 staticpro (&last_arrow_position
);
3798 staticpro (&last_arrow_string
);
3799 last_arrow_position
= Qnil
;
3800 last_arrow_string
= Qnil
;
3802 DEFVAR_LISP ("global-mode-string", &Vglobal_mode_string
,
3803 "String (or mode line construct) included (normally) in `mode-line-format'.");
3804 Vglobal_mode_string
= Qnil
;
3806 DEFVAR_LISP ("overlay-arrow-position", &Voverlay_arrow_position
,
3807 "Marker for where to display an arrow on top of the buffer text.\n\
3808 This must be the beginning of a line in order to work.\n\
3809 See also `overlay-arrow-string'.");
3810 Voverlay_arrow_position
= Qnil
;
3812 DEFVAR_LISP ("overlay-arrow-string", &Voverlay_arrow_string
,
3813 "String to display as an arrow. See also `overlay-arrow-position'.");
3814 Voverlay_arrow_string
= Qnil
;
3816 DEFVAR_INT ("scroll-step", &scroll_step
,
3817 "*The number of lines to try scrolling a window by when point moves out.\n\
3818 If that fails to bring point back on frame, point is centered instead.\n\
3819 If this is zero, point is always centered after it moves off frame.");
3821 DEFVAR_INT ("debug-end-pos", &debug_end_pos
, "Don't ask");
3823 DEFVAR_BOOL ("truncate-partial-width-windows",
3824 &truncate_partial_width_windows
,
3825 "*Non-nil means truncate lines in all windows less than full frame wide.");
3826 truncate_partial_width_windows
= 1;
3828 DEFVAR_BOOL ("mode-line-inverse-video", &mode_line_inverse_video
,
3829 "*Non-nil means use inverse video for the mode line.");
3830 mode_line_inverse_video
= 1;
3832 DEFVAR_INT ("line-number-display-limit", &line_number_display_limit
,
3833 "*Maximum buffer size for which line number should be displayed.");
3834 line_number_display_limit
= 1000000;
3836 DEFVAR_BOOL ("highlight-nonselected-windows", &highlight_nonselected_windows
,
3837 "*Non-nil means highlight region even in nonselected windows.");
3838 highlight_nonselected_windows
= 1;
3840 DEFVAR_BOOL ("multiple-frames", &multiple_frames
,
3841 "Non-nil means more than one frame is in use, not counting minibuffer frames.\n\
3842 Not guaranteed to be accurate except while parsing frame-title-format.");
3844 DEFVAR_LISP ("frame-title-format", &Vframe_title_format
,
3845 "Template for displaying the titlebar of visible frames.\n\
3846 \(Assuming the window manager supports this feature.)\n\
3847 This variable has the same structure as `mode-line-format' (which see),\n\
3848 and is used only on frames for which no explicit name has been set\n\
3849 \(see `modify-frame-parameters').");
3850 DEFVAR_LISP ("icon-title-format", &Vicon_title_format
,
3851 "Template for displaying the titlebar of an iconified frame.\n\
3852 \(Assuming the window manager supports this feature.)\n\
3853 This variable has the same structure as `mode-line-format' (which see),\n\
3854 and is used only on frames for which no explicit name has been set\n\
3855 \(see `modify-frame-parameters').");
3857 = Vframe_title_format
3858 = Fcons (intern ("multiple-frames"),
3859 Fcons (build_string ("%b"),
3860 Fcons (Fcons (build_string (""),
3861 Fcons (intern ("invocation-name"),
3862 Fcons (build_string ("@"),
3863 Fcons (intern ("system-name"),
3867 DEFVAR_LISP ("message-log-max", &Vmessage_log_max
,
3868 "Maximum number of lines to keep in the message log buffer.\n\
3869 If nil, disable message logging. If t, log messages but don't truncate\n\
3870 the buffer when it becomes large.");
3871 XSETFASTINT (Vmessage_log_max
, 50);
3873 DEFVAR_LISP ("window-size-change-functions", &Vwindow_size_change_functions
,
3874 "Functions called before redisplay, if window sizes have changed.\n\
3875 The value should be a list of functions that take one argument.\n\
3876 Just before redisplay, for each frame, if any of its windows have changed\n\
3877 size since the last redisplay, or have been split or deleted,\n\
3878 all the functions in the list are called, with the frame as argument.");
3879 Vwindow_size_change_functions
= Qnil
;
3882 /* initialize the window system */
3885 Lisp_Object root_window
;
3886 #ifndef COMPILER_REGISTER_BUG
3888 #endif /* COMPILER_REGISTER_BUG */
3889 struct window
*mini_w
;
3891 this_line_bufpos
= 0;
3893 mini_w
= XWINDOW (minibuf_window
);
3894 root_window
= FRAME_ROOT_WINDOW (XFRAME (WINDOW_FRAME (mini_w
)));
3896 echo_area_glyphs
= 0;
3897 previous_echo_glyphs
= 0;
3899 if (!noninteractive
)
3901 FRAME_PTR f
= XFRAME (WINDOW_FRAME (XWINDOW (root_window
)));
3902 XSETFASTINT (XWINDOW (root_window
)->top
, 0);
3903 set_window_height (root_window
, FRAME_HEIGHT (f
) - 1, 0);
3904 XSETFASTINT (mini_w
->top
, FRAME_HEIGHT (f
) - 1);
3905 set_window_height (minibuf_window
, 1, 0);
3907 XSETFASTINT (XWINDOW (root_window
)->width
, FRAME_WIDTH (f
));
3908 XSETFASTINT (mini_w
->width
, FRAME_WIDTH (f
));