(fill-paragraph, justify-current-line) Now uses the skip-syntax-
[emacs.git] / src / xdisp.c
blobe4770e4068fe6589cba98befa01ad12d880930fa
1 /* Display generation from window structure and buffer text.
2 Copyright (C) 1985, 1986, 1987, 1988, 1993 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
21 #include "config.h"
22 #include <stdio.h>
23 /*#include <ctype.h>*/
24 #undef NULL
25 #include "lisp.h"
26 #include "frame.h"
27 #include "window.h"
28 #include "termchar.h"
29 #include "dispextern.h"
30 #include "buffer.h"
31 #include "indent.h"
32 #include "commands.h"
33 #include "macros.h"
34 #include "disptab.h"
35 #include "termhooks.h"
37 extern int interrupt_input;
38 extern int command_loop_level;
40 /* Nonzero means print newline before next minibuffer message. */
42 int noninteractive_need_newline;
44 #define min(a, b) ((a) < (b) ? (a) : (b))
45 #define max(a, b) ((a) > (b) ? (a) : (b))
47 /* The buffer position of the first character appearing
48 entirely or partially on the current frame line.
49 Or zero, which disables the optimization for the current frame line. */
50 static int this_line_bufpos;
52 /* Number of characters past the end of this line,
53 including the terminating newline */
54 static int this_line_endpos;
56 /* The vertical position of this frame line. */
57 static int this_line_vpos;
59 /* Hpos value for start of display on this frame line.
60 Usually zero, but negative if first character really began
61 on previous line */
62 static int this_line_start_hpos;
64 /* Buffer that this_line variables are describing. */
65 static struct buffer *this_line_buffer;
67 /* Set by try_window_id to the vpos of first of any lines
68 scrolled on to the bottom of the frame. These lines should
69 not be included in any general scroll computation. */
70 static int scroll_bottom_vpos;
72 /* Value of echo_area_glyphs when it was last acted on.
73 If this is nonzero, there is a message on the frame
74 in the minibuffer and it should be erased as soon
75 as it is no longer requested to appear. */
76 char *previous_echo_glyphs;
78 /* Nonzero means truncate lines in all windows less wide than the frame */
79 int truncate_partial_width_windows;
81 Lisp_Object Vglobal_mode_string;
83 /* Marker for where to display an arrow on top of the buffer text. */
84 Lisp_Object Voverlay_arrow_position;
86 /* String to display for the arrow. */
87 Lisp_Object Voverlay_arrow_string;
89 /* Values of those variables at last redisplay. */
90 static Lisp_Object last_arrow_position, last_arrow_string;
92 /* Nonzero if overlay arrow has been displayed once in this window. */
93 static int overlay_arrow_seen;
95 /* If cursor motion alone moves point off frame,
96 Try scrolling this many lines up or down if that will bring it back. */
97 int scroll_step;
99 /* Nonzero if try_window_id has made blank lines at window bottom
100 since the last redisplay that paused */
101 static int blank_end_of_window;
103 /* Number of windows showing the buffer of the selected window.
104 keyboard.c refers to this. */
105 int buffer_shared;
107 /* display_text_line sets these to the frame position (origin 0) of point,
108 whether the window is selected or not.
109 Set one to -1 first to determine whether point was found afterwards. */
111 static int cursor_vpos;
112 static int cursor_hpos;
114 int debug_end_pos;
116 /* Nonzero means display mode line highlighted */
117 int mode_line_inverse_video;
119 static void echo_area_display ();
120 void mark_window_display_accurate ();
121 static void redisplay_windows ();
122 static void redisplay_window ();
123 static void try_window ();
124 static int try_window_id ();
125 static struct position *display_text_line ();
126 static void display_mode_line ();
127 static int display_mode_element ();
128 static char *fmodetrunc ();
129 static char *decode_mode_spec ();
130 static int display_string ();
131 static void display_menu_bar ();
132 static int display_count_lines ();
134 /* Prompt to display in front of the minibuffer contents */
135 char *minibuf_prompt;
137 /* Width in columns of current minibuffer prompt. */
138 int minibuf_prompt_width;
140 /* Message to display instead of minibuffer contents
141 This is what the functions error and message make,
142 and command echoing uses it as well.
143 It overrides the minibuf_prompt as well as the buffer. */
144 char *echo_area_glyphs;
146 /* true iff we should redraw the mode lines on the next redisplay */
147 int update_mode_lines;
149 /* Smallest number of characters before the gap
150 at any time since last redisplay that finished.
151 Valid for current buffer when try_window_id can be called. */
152 int beg_unchanged;
154 /* Smallest number of characters after the gap
155 at any time since last redisplay that finished.
156 Valid for current buffer when try_window_id can be called. */
157 int end_unchanged;
159 /* MODIFF as of last redisplay that finished;
160 if it matches MODIFF, beg_unchanged and end_unchanged
161 contain no useful information */
162 int unchanged_modified;
164 /* Nonzero if head_clip or tail_clip of current buffer has changed
165 since last redisplay that finished */
166 int clip_changed;
168 /* Nonzero if window sizes or contents have changed
169 since last redisplay that finished */
170 int windows_or_buffers_changed;
172 /* Nonzero after display_mode_line if %l was used
173 and it displayed a line number. */
174 int line_number_displayed;
176 /* Maximum buffer size for which to display line numbers. */
177 int line_number_display_limit;
179 /* Specify m, a string, as a message in the minibuf. If m is 0, clear out
180 any existing message, and let the minibuffer text show through. */
181 void
182 message1 (m)
183 char *m;
185 if (noninteractive)
187 if (noninteractive_need_newline)
188 putc ('\n', stderr);
189 noninteractive_need_newline = 0;
190 fprintf (stderr, "%s\n", m);
191 fflush (stderr);
193 /* A null message buffer means that the frame hasn't really been
194 initialized yet. Error messages get reported properly by
195 cmd_error, so this must be just an informative message; toss it. */
196 else if (INTERACTIVE && FRAME_MESSAGE_BUF (selected_frame))
198 #ifdef MULTI_FRAME
199 Lisp_Object minibuf_frame;
201 choose_minibuf_frame ();
202 minibuf_frame = WINDOW_FRAME (XWINDOW (minibuf_window));
203 FRAME_SAMPLE_VISIBILITY (XFRAME (minibuf_frame));
204 if (FRAME_VISIBLE_P (selected_frame)
205 && ! FRAME_VISIBLE_P (XFRAME (minibuf_frame)))
206 Fmake_frame_visible (WINDOW_FRAME (XWINDOW (minibuf_window)));
207 #endif
209 if (m)
210 echo_area_glyphs = m;
211 else
212 echo_area_glyphs = previous_echo_glyphs = 0;
214 do_pending_window_change ();
215 echo_area_display ();
216 update_frame (XFRAME (XWINDOW (minibuf_window)->frame), 1, 1);
217 do_pending_window_change ();
221 /* Nonzero if FRAME_MESSAGE_BUF (selected_frame) is being used by print;
222 zero if being used by message. */
223 int message_buf_print;
225 /* Dump an informative message to the minibuf. If m is 0, clear out
226 any existing message, and let the minibuffer text show through. */
227 /* VARARGS 1 */
228 void
229 message (m, a1, a2, a3)
230 char *m;
232 if (noninteractive)
234 if (m)
236 if (noninteractive_need_newline)
237 putc ('\n', stderr);
238 noninteractive_need_newline = 0;
239 fprintf (stderr, m, a1, a2, a3);
240 fprintf (stderr, "\n");
241 fflush (stderr);
244 else if (INTERACTIVE)
246 /* The frame whose minibuffer we're going to display the message on.
247 It may be larger than the selected frame, so we need
248 to use its buffer, not the selected frame's buffer. */
249 FRAME_PTR echo_frame;
250 #ifdef MULTI_FRAME
251 choose_minibuf_frame ();
252 echo_frame = XFRAME (WINDOW_FRAME (XWINDOW (minibuf_window)));
253 #else
254 echo_frame = selected_frame;
255 #endif
257 /* A null message buffer means that the frame hasn't really been
258 initialized yet. Error messages get reported properly by
259 cmd_error, so this must be just an informative message; toss it. */
260 if (FRAME_MESSAGE_BUF (echo_frame))
262 if (m)
265 #ifdef NO_ARG_ARRAY
266 int a[3];
267 a[0] = a1;
268 a[1] = a2;
269 a[2] = a3;
271 doprnt (FRAME_MESSAGE_BUF (echo_frame),
272 FRAME_WIDTH (echo_frame), m, 0, 3, a);
273 #else
274 doprnt (FRAME_MESSAGE_BUF (echo_frame),
275 FRAME_WIDTH (echo_frame), m, 0, 3, &a1);
276 #endif /* NO_ARG_ARRAY */
279 message1 (FRAME_MESSAGE_BUF (echo_frame));
281 else
282 message1 (0);
284 /* Print should start at the beginning of the message
285 buffer next time. */
286 message_buf_print = 0;
291 static void
292 echo_area_display ()
294 register int vpos;
295 FRAME_PTR f;
297 #ifdef MULTI_FRAME
298 choose_minibuf_frame ();
299 #endif
301 f = XFRAME (WINDOW_FRAME (XWINDOW (minibuf_window)));
303 if (! FRAME_VISIBLE_P (f))
304 return;
306 if (frame_garbaged)
308 Fredraw_display ();
309 frame_garbaged = 0;
312 if (echo_area_glyphs || minibuf_level == 0)
314 vpos = XFASTINT (XWINDOW (minibuf_window)->top);
315 get_display_line (f, vpos, 0);
316 display_string (XWINDOW (minibuf_window), vpos,
317 echo_area_glyphs ? echo_area_glyphs : "",
318 0, 0, 0, FRAME_WIDTH (f));
320 /* If desired cursor location is on this line, put it at end of text */
321 if (FRAME_CURSOR_Y (f) == vpos)
322 FRAME_CURSOR_X (f) = FRAME_DESIRED_GLYPHS (f)->used[vpos];
324 /* Fill the rest of the minibuffer window with blank lines. */
326 int i;
328 for (i = vpos + 1; i < vpos + XWINDOW (minibuf_window)->height; i++)
330 get_display_line (f, i, 0);
331 display_string (XWINDOW (minibuf_window), vpos,
332 "", 0, 0, 0, FRAME_WIDTH (f));
336 else if (!EQ (minibuf_window, selected_window))
337 windows_or_buffers_changed++;
339 if (EQ (minibuf_window, selected_window))
340 this_line_bufpos = 0;
342 previous_echo_glyphs = echo_area_glyphs;
345 /* Do a frame update, taking possible shortcuts into account.
346 This is the main external entry point for redisplay.
348 If the last redisplay displayed an echo area message and that
349 message is no longer requested, we clear the echo area
350 or bring back the minibuffer if that is in use.
352 Everyone would like to have a hook here to call eval,
353 but that cannot be done safely without a lot of changes elsewhere.
354 This can be called from signal handlers; with alarms set up;
355 or with synchronous processes running.
356 See the function `echo' in keyboard.c.
357 See Fcall_process; if you called it from here, it could be
358 entered recursively. */
360 void
361 redisplay ()
363 register struct window *w = XWINDOW (selected_window);
364 register int pause;
365 int must_finish = 0;
366 int all_windows;
367 register int tlbufpos, tlendpos;
368 struct position pos;
369 extern int input_pending;
371 if (noninteractive)
372 return;
374 /* Set the visible flags for all frames.
375 Do this before checking for resized or garbaged frames; they want
376 to know if their frames are visible.
377 See the comment in frame.h for FRAME_SAMPLE_VISIBILITY. */
379 Lisp_Object tail, frame;
381 FOR_EACH_FRAME (tail, frame)
382 FRAME_SAMPLE_VISIBILITY (XFRAME (frame));
385 /* Notice any pending interrupt request to change frame size. */
386 do_pending_window_change ();
388 if (frame_garbaged)
390 Fredraw_display ();
391 frame_garbaged = 0;
394 /* Normally the message* functions will have already displayed and
395 updated the echo area, but the frame may have been trashed, or
396 the update may have been preempted, so display the echo area
397 again here. */
398 if (echo_area_glyphs || previous_echo_glyphs)
400 echo_area_display ();
401 must_finish = 1;
404 if (clip_changed || windows_or_buffers_changed)
405 update_mode_lines++;
407 /* Detect case that we need to write a star in the mode line. */
408 if (XFASTINT (w->last_modified) < MODIFF
409 && XFASTINT (w->last_modified) <= current_buffer->save_modified)
411 w->update_mode_line = Qt;
412 if (buffer_shared > 1)
413 update_mode_lines++;
416 FRAME_SCROLL_BOTTOM_VPOS (XFRAME (w->frame)) = -1;
418 all_windows = update_mode_lines || buffer_shared > 1;
420 /* If specs for an arrow have changed, do thorough redisplay
421 to ensure we remove any arrow that should no longer exist. */
422 if (! EQ (Voverlay_arrow_position, last_arrow_position)
423 || ! EQ (Voverlay_arrow_string, last_arrow_string))
424 all_windows = 1, clip_changed = 1;
426 tlbufpos = this_line_bufpos;
427 tlendpos = this_line_endpos;
428 if (!all_windows && tlbufpos > 0 && NILP (w->update_mode_line)
429 && FRAME_VISIBLE_P (XFRAME (w->frame))
430 /* Make sure recorded data applies to current buffer, etc */
431 && this_line_buffer == current_buffer
432 && current_buffer == XBUFFER (w->buffer)
433 && NILP (w->force_start)
434 /* Point must be on the line that we have info recorded about */
435 && point >= tlbufpos
436 && point <= Z - tlendpos
437 /* All text outside that line, including its final newline,
438 must be unchanged */
439 && (XFASTINT (w->last_modified) >= MODIFF
440 || (beg_unchanged >= tlbufpos - 1
441 && GPT >= tlbufpos
442 /* If selective display, can't optimize
443 if the changes start at the beginning of the line. */
444 && ((XTYPE (current_buffer->selective_display) == Lisp_Int
445 && XINT (current_buffer->selective_display) > 0
446 ? (beg_unchanged >= tlbufpos
447 && GPT > tlbufpos)
448 : 1))
449 && end_unchanged >= tlendpos
450 && Z - GPT >= tlendpos)))
452 if (tlbufpos > BEGV && FETCH_CHAR (tlbufpos - 1) != '\n'
453 && (tlbufpos == ZV
454 || FETCH_CHAR (tlbufpos) == '\n'))
455 /* Former continuation line has disappeared by becoming empty */
456 goto cancel;
457 else if (XFASTINT (w->last_modified) < MODIFF
458 || MINI_WINDOW_P (w))
460 cursor_vpos = -1;
461 overlay_arrow_seen = 0;
462 display_text_line (w, tlbufpos, this_line_vpos, this_line_start_hpos,
463 pos_tab_offset (w, tlbufpos));
464 /* If line contains point, is not continued,
465 and ends at same distance from eob as before, we win */
466 if (cursor_vpos >= 0 && this_line_bufpos
467 && this_line_endpos == tlendpos)
469 if (XFASTINT (w->width) != FRAME_WIDTH (XFRAME (WINDOW_FRAME (w))))
470 preserve_other_columns (w);
471 goto update;
473 else
474 goto cancel;
476 else if (point == XFASTINT (w->last_point))
478 if (!must_finish)
480 do_pending_window_change ();
481 return;
483 goto update;
485 else
487 pos = *compute_motion (tlbufpos, 0,
488 XINT (w->hscroll) ? 1 - XINT (w->hscroll) : 0,
489 point, 2, - (1 << (SHORTBITS - 1)),
490 window_internal_width (w) - 1,
491 XINT (w->hscroll),
492 pos_tab_offset (w, tlbufpos));
493 if (pos.vpos < 1)
495 FRAME_CURSOR_X (selected_frame)
496 = XFASTINT (w->left) + max (pos.hpos, 0);
497 FRAME_CURSOR_Y (selected_frame) = this_line_vpos;
498 goto update;
500 else
501 goto cancel;
503 cancel:
504 /* Text changed drastically or point moved off of line */
505 cancel_line (this_line_vpos, selected_frame);
508 this_line_bufpos = 0;
509 all_windows |= buffer_shared > 1;
511 if (all_windows)
513 Lisp_Object tail, frame;
515 /* Recompute # windows showing selected buffer.
516 This will be incremented each time such a window is displayed. */
517 buffer_shared = 0;
519 FOR_EACH_FRAME (tail, frame)
521 FRAME_PTR f = XFRAME (frame);
523 /* Mark all the scroll bars to be removed; we'll redeem the ones
524 we want when we redisplay their windows. */
525 if (condemn_scroll_bars_hook)
526 (*condemn_scroll_bars_hook) (f);
528 if (FRAME_VISIBLE_P (f))
529 redisplay_windows (FRAME_ROOT_WINDOW (f));
531 /* Any scroll bars which redisplay_windows should have nuked
532 should now go away. */
533 if (judge_scroll_bars_hook)
534 (*judge_scroll_bars_hook) (f);
537 else if (FRAME_VISIBLE_P (selected_frame))
539 redisplay_window (selected_window, 1);
540 if (XFASTINT (w->width) != FRAME_WIDTH (selected_frame))
541 preserve_other_columns (w);
544 update:
545 /* Prevent various kinds of signals during display update.
546 stdio is not robust about handling signals,
547 which can cause an apparent I/O error. */
548 if (interrupt_input)
549 unrequest_sigio ();
550 stop_polling ();
552 #ifdef MULTI_FRAME
553 if (all_windows)
555 Lisp_Object tail;
557 pause = 0;
559 for (tail = Vframe_list; CONSP (tail); tail = XCONS (tail)->cdr)
561 FRAME_PTR f;
563 if (XTYPE (XCONS (tail)->car) != Lisp_Frame)
564 continue;
566 f = XFRAME (XCONS (tail)->car);
567 if (FRAME_VISIBLE_P (f))
569 pause |= update_frame (f, 0, 0);
570 if (!pause)
571 mark_window_display_accurate (f->root_window, 1);
575 else
576 #endif /* MULTI_FRAME */
578 if (FRAME_VISIBLE_P (selected_frame))
579 pause = update_frame (selected_frame, 0, 0);
581 /* We may have called echo_area_display at the top of this
582 function. If the echo area is on another frame, that may
583 have put text on a frame other than the selected one, so the
584 above call to update_frame would not have caught it. Catch
585 it here. */
587 FRAME_PTR mini_frame =
588 XFRAME (WINDOW_FRAME (XWINDOW (minibuf_window)));
590 if (mini_frame != selected_frame)
591 pause |= update_frame (mini_frame, 0, 0);
595 /* If frame does not match, prevent doing single-line-update next time.
596 Also, don't forget to check every line to update the arrow. */
597 if (pause)
599 this_line_bufpos = 0;
600 if (!NILP (last_arrow_position))
602 last_arrow_position = Qt;
603 last_arrow_string = Qt;
605 /* If we pause after scrolling, some lines in current_frame
606 may be null, so preserve_other_columns won't be able to
607 preserve all the vertical-bar separators. So, avoid using it
608 in that case. */
609 if (XFASTINT (w->width) != FRAME_WIDTH (selected_frame))
610 update_mode_lines = 1;
613 /* Now text on frame agrees with windows, so
614 put info into the windows for partial redisplay to follow */
616 if (!pause)
618 register struct buffer *b = XBUFFER (w->buffer);
620 blank_end_of_window = 0;
621 clip_changed = 0;
622 unchanged_modified = BUF_MODIFF (b);
623 beg_unchanged = BUF_GPT (b) - BUF_BEG (b);
624 end_unchanged = BUF_Z (b) - BUF_GPT (b);
626 XFASTINT (w->last_point) = BUF_PT (b);
627 XFASTINT (w->last_point_x) = FRAME_CURSOR_X (selected_frame);
628 XFASTINT (w->last_point_y) = FRAME_CURSOR_Y (selected_frame);
630 if (all_windows)
631 mark_window_display_accurate (FRAME_ROOT_WINDOW (selected_frame), 1);
632 else
634 w->update_mode_line = Qnil;
635 XFASTINT (w->last_modified) = BUF_MODIFF (b);
636 w->window_end_valid = Qt;
637 last_arrow_position = Voverlay_arrow_position;
638 last_arrow_string = Voverlay_arrow_string;
640 update_mode_lines = 0;
641 windows_or_buffers_changed = 0;
644 /* Start SIGIO interrupts coming again.
645 Having them off during the code above
646 makes it less likely one will discard output,
647 but not impossible, since there might be stuff
648 in the system buffer here.
649 But it is much hairier to try to do anything about that. */
651 if (interrupt_input)
652 request_sigio ();
653 start_polling ();
655 /* Change frame size now if a change is pending. */
656 do_pending_window_change ();
659 /* Redisplay, but leave alone any recent echo area message
660 unless another message has been requested in its place.
662 This is useful in situations where you need to redisplay but no
663 user action has occurred, making it inappropriate for the message
664 area to be cleared. See tracking_off and
665 wait_reading_process_input for examples of these situations. */
667 redisplay_preserve_echo_area ()
669 if (echo_area_glyphs == 0 && previous_echo_glyphs != 0)
671 echo_area_glyphs = previous_echo_glyphs;
672 redisplay ();
673 echo_area_glyphs = 0;
675 else
676 redisplay ();
679 void
680 mark_window_display_accurate (window, flag)
681 Lisp_Object window;
682 int flag;
684 register struct window *w;
686 for (;!NILP (window); window = w->next)
688 if (XTYPE (window) != Lisp_Window) abort ();
689 w = XWINDOW (window);
691 if (!NILP (w->buffer))
692 XFASTINT (w->last_modified)
693 = !flag ? 0
694 : XBUFFER (w->buffer) == current_buffer
695 ? MODIFF : BUF_MODIFF (XBUFFER (w->buffer));
696 w->window_end_valid = Qt;
697 w->update_mode_line = Qnil;
699 if (!NILP (w->vchild))
700 mark_window_display_accurate (w->vchild, flag);
701 if (!NILP (w->hchild))
702 mark_window_display_accurate (w->hchild, flag);
705 if (flag)
707 last_arrow_position = Voverlay_arrow_position;
708 last_arrow_string = Voverlay_arrow_string;
710 else
712 /* t is unequal to any useful value of Voverlay_arrow_... */
713 last_arrow_position = Qt;
714 last_arrow_string = Qt;
718 int do_id = 1;
720 static void
721 redisplay_windows (window)
722 Lisp_Object window;
724 for (; !NILP (window); window = XWINDOW (window)->next)
725 redisplay_window (window, 0);
728 static void
729 redisplay_window (window, just_this_one)
730 Lisp_Object window;
731 int just_this_one;
733 register struct window *w = XWINDOW (window);
734 FRAME_PTR f = XFRAME (WINDOW_FRAME (w));
735 int height;
736 register int lpoint = point;
737 struct buffer *old = current_buffer;
738 register int width = window_internal_width (w) - 1;
739 register int startp;
740 register int hscroll = XINT (w->hscroll);
741 struct position pos;
742 int opoint = point;
743 int tem;
744 int window_needs_modeline;
746 if (FRAME_HEIGHT (f) == 0) abort (); /* Some bug zeros some core */
748 /* If this is a combination window, do its children; that's all. */
750 if (!NILP (w->vchild))
752 redisplay_windows (w->vchild);
753 return;
755 if (!NILP (w->hchild))
757 redisplay_windows (w->hchild);
758 return;
760 if (NILP (w->buffer))
761 abort ();
763 height = window_internal_height (w);
765 if (MINI_WINDOW_P (w))
767 if (w == XWINDOW (minibuf_window))
769 if (echo_area_glyphs)
770 /* We've already displayed the echo area glyphs, if any. */
771 goto finish_scroll_bars;
773 else
775 /* This is a minibuffer, but it's not the currently active one, so
776 clear it. */
777 int vpos = XFASTINT (XWINDOW (FRAME_MINIBUF_WINDOW (f))->top);
778 int i;
780 for (i = 0; i < height; i++)
782 get_display_line (f, vpos + i, 0);
783 display_string (w, vpos + i, "", 0, 0, 0, width);
786 goto finish_scroll_bars;
790 if (update_mode_lines)
791 w->update_mode_line = Qt;
793 /* Otherwise set up data on this window; select its buffer and point value */
795 current_buffer = XBUFFER (w->buffer);
796 opoint = point;
798 /* Count number of windows showing the selected buffer. */
800 if (!just_this_one
801 && current_buffer == XBUFFER (XWINDOW (selected_window)->buffer))
802 buffer_shared++;
804 /* POINT refers normally to the selected window.
805 For any other window, set up appropriate value. */
807 if (!EQ (window, selected_window))
809 SET_PT (marker_position (w->pointm));
810 if (point < BEGV)
812 SET_PT (BEGV);
813 Fset_marker (w->pointm, make_number (point), Qnil);
815 else if (point > (ZV - 1))
817 SET_PT (ZV);
818 Fset_marker (w->pointm, make_number (point), Qnil);
822 /* If window-start is screwed up, choose a new one. */
823 if (XMARKER (w->start)->buffer != current_buffer)
824 goto recenter;
826 startp = marker_position (w->start);
828 /* Handle case where place to start displaying has been specified,
829 unless the specified location is outside the accessible range. */
830 if (!NILP (w->force_start))
832 /* Forget any recorded base line for line number display. */
833 w->base_line_number = Qnil;
834 w->update_mode_line = Qt;
835 w->force_start = Qnil;
836 XFASTINT (w->last_modified) = 0;
837 if (startp < BEGV) startp = BEGV;
838 if (startp > ZV) startp = ZV;
839 try_window (window, startp);
840 if (cursor_vpos < 0)
842 /* If point does not appear, move point so it does appear */
843 pos = *compute_motion (startp, 0,
844 ((EQ (window, minibuf_window) && startp == 1)
845 ? minibuf_prompt_width : 0)
847 (hscroll ? 1 - hscroll : 0),
848 ZV, height / 2,
849 - (1 << (SHORTBITS - 1)),
850 width, hscroll, pos_tab_offset (w, startp));
851 SET_PT (pos.bufpos);
852 if (w != XWINDOW (FRAME_SELECTED_WINDOW (f)))
853 Fset_marker (w->pointm, make_number (point), Qnil);
854 else
856 lpoint = point;
857 FRAME_CURSOR_X (f) = max (0, pos.hpos) + XFASTINT (w->left);
858 FRAME_CURSOR_Y (f) = pos.vpos + XFASTINT (w->top);
861 goto done;
864 /* Handle case where text has not changed, only point,
865 and it has not moved off the frame */
867 /* This code is not used for minibuffer for the sake of
868 the case of redisplaying to replace an echo area message;
869 since in that case the minibuffer contents per se are usually unchanged.
870 This code is of no real use in the minibuffer since
871 the handling of this_line_bufpos, etc.,
872 in redisplay handles the same cases. */
874 if (XFASTINT (w->last_modified) >= MODIFF
875 && point >= startp && !clip_changed
876 && (just_this_one || XFASTINT (w->width) == FRAME_WIDTH (f))
877 && !EQ (window, minibuf_window))
879 pos = *compute_motion (startp, 0, (hscroll ? 1 - hscroll : 0),
880 point, height + 1, 10000, width, hscroll,
881 pos_tab_offset (w, startp));
883 if (pos.vpos < height)
885 /* Ok, point is still on frame */
886 if (w == XWINDOW (FRAME_SELECTED_WINDOW (f)))
888 /* These variables are supposed to be origin 1 */
889 FRAME_CURSOR_X (f) = max (0, pos.hpos) + XFASTINT (w->left);
890 FRAME_CURSOR_Y (f) = pos.vpos + XFASTINT (w->top);
892 /* This doesn't do the trick, because if a window to the right of
893 this one must be redisplayed, this does nothing because there
894 is nothing in DesiredFrame yet, and then the other window is
895 redisplayed, making likes that are empty in this window's columns.
896 if (XFASTINT (w->width) != FRAME_WIDTH (f))
897 preserve_my_columns (w);
899 goto done;
901 /* Don't bother trying redisplay with same start;
902 we already know it will lose */
904 /* If current starting point was originally the beginning of a line
905 but no longer is, find a new starting point. */
906 else if (!NILP (w->start_at_line_beg)
907 && !(startp == BEGV
908 || FETCH_CHAR (startp - 1) == '\n'))
910 goto recenter;
912 else if (just_this_one && !MINI_WINDOW_P (w)
913 && point >= startp
914 && XFASTINT (w->last_modified)
915 && ! EQ (w->window_end_valid, Qnil)
916 && do_id && !clip_changed
917 && !blank_end_of_window
918 && XFASTINT (w->width) == FRAME_WIDTH (f)
919 && EQ (last_arrow_position, Voverlay_arrow_position)
920 && EQ (last_arrow_string, Voverlay_arrow_string)
921 && (tem = try_window_id (FRAME_SELECTED_WINDOW (f)))
922 && tem != -2)
924 /* tem > 0 means success. tem == -1 means choose new start.
925 tem == -2 means try again with same start,
926 and nothing but whitespace follows the changed stuff.
927 tem == 0 means try again with same start. */
928 if (tem > 0)
929 goto done;
931 else if (startp >= BEGV && startp <= ZV
932 /* Avoid starting display at end of buffer! */
933 && (startp < ZV || startp == BEGV
934 || (XFASTINT (w->last_modified) >= MODIFF)))
936 /* Try to redisplay starting at same place as before */
937 /* If point has not moved off frame, accept the results */
938 try_window (window, startp);
939 if (cursor_vpos >= 0)
941 if (!just_this_one || clip_changed || beg_unchanged < startp)
942 /* Forget any recorded base line for line number display. */
943 w->base_line_number = Qnil;
944 goto done;
946 else
947 cancel_my_columns (w);
950 XFASTINT (w->last_modified) = 0;
951 w->update_mode_line = Qt;
953 /* Try to scroll by specified few lines */
955 if (scroll_step && !clip_changed)
957 if (point > startp)
959 pos = *vmotion (Z - XFASTINT (w->window_end_pos),
960 scroll_step, width, hscroll, window);
961 if (pos.vpos >= height)
962 goto scroll_fail;
965 pos = *vmotion (startp, point < startp ? - scroll_step : scroll_step,
966 width, hscroll, window);
968 if (point >= pos.bufpos)
970 try_window (window, pos.bufpos);
971 if (cursor_vpos >= 0)
973 if (!just_this_one || clip_changed || beg_unchanged < startp)
974 /* Forget any recorded base line for line number display. */
975 w->base_line_number = Qnil;
976 goto done;
978 else
979 cancel_my_columns (w);
981 scroll_fail: ;
984 /* Finally, just choose place to start which centers point */
986 recenter:
987 /* Forget any previously recorded base line for line number display. */
988 w->base_line_number = Qnil;
990 pos = *vmotion (point, - height / 2, width, hscroll, window);
991 try_window (window, pos.bufpos);
993 startp = marker_position (w->start);
994 w->start_at_line_beg =
995 (startp == BEGV || FETCH_CHAR (startp - 1) == '\n') ? Qt : Qnil;
997 done:
998 if ((!NILP (w->update_mode_line)
999 /* If window not full width, must redo its mode line
1000 if the window to its side is being redone */
1001 || (!just_this_one && width < FRAME_WIDTH (f) - 1)
1002 || INTEGERP (w->base_line_pos))
1003 && height != XFASTINT (w->height))
1004 display_mode_line (w);
1005 if (! line_number_displayed
1006 && ! BUFFERP (w->base_line_pos))
1008 w->base_line_pos = Qnil;
1009 w->base_line_number = Qnil;
1012 /* When we reach a frame's selected window, redo the frame's menu bar. */
1013 if (!NILP (w->update_mode_line)
1014 && FRAME_MENU_BAR_LINES (f) > 0
1015 && EQ (FRAME_SELECTED_WINDOW (f), window))
1016 display_menu_bar (w);
1018 finish_scroll_bars:
1019 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
1021 int start, end, whole;
1023 /* Calculate the start and end positions for the current window.
1024 Note that minibuffers sometimes aren't displaying any text. */
1025 if (! MINI_WINDOW_P (w)
1026 || (w == XWINDOW (minibuf_window) && ! echo_area_glyphs))
1028 start = startp;
1029 /* I don't think this is guaranteed to be right. For the
1030 moment, we'll pretend it is. */
1031 end = Z - XINT (w->window_end_pos);
1032 whole = Z - BEG;
1034 else
1035 start = end = whole = 0;
1037 /* Indicate what this scroll bar ought to be displaying now. */
1038 (*set_vertical_scroll_bar_hook) (w, end - start, whole, start - 1);
1040 /* Note that we actually used the scroll bar attached to this window,
1041 so it shouldn't be deleted at the end of redisplay. */
1042 (*redeem_scroll_bar_hook) (w);
1045 SET_PT (opoint);
1046 current_buffer = old;
1047 SET_PT (lpoint);
1050 /* Do full redisplay on one window, starting at position `pos'. */
1052 static void
1053 try_window (window, pos)
1054 Lisp_Object window;
1055 register int pos;
1057 register struct window *w = XWINDOW (window);
1058 register int height = window_internal_height (w);
1059 register int vpos = XFASTINT (w->top);
1060 register int last_text_vpos = vpos;
1061 int tab_offset = pos_tab_offset (w, pos);
1062 FRAME_PTR f = XFRAME (w->frame);
1063 int width = window_internal_width (w) - 1;
1064 struct position val;
1066 Fset_marker (w->start, make_number (pos), Qnil);
1067 cursor_vpos = -1;
1068 overlay_arrow_seen = 0;
1069 val.hpos = XINT (w->hscroll) ? 1 - XINT (w->hscroll) : 0;
1071 while (--height >= 0)
1073 val = *display_text_line (w, pos, vpos, val.hpos, tab_offset);
1074 tab_offset += width;
1075 if (val.vpos) tab_offset = 0;
1076 vpos++;
1077 if (pos != val.bufpos)
1078 last_text_vpos
1079 /* Next line, unless prev line ended in end of buffer with no cr */
1080 = vpos - (val.vpos && FETCH_CHAR (val.bufpos - 1) != '\n');
1081 pos = val.bufpos;
1084 /* If last line is continued in middle of character,
1085 include the split character in the text considered on the frame */
1086 if (val.hpos < (XINT (w->hscroll) ? 1 - XINT (w->hscroll) : 0))
1087 pos++;
1089 /* If bottom just moved off end of frame, change mode line percentage. */
1090 if (XFASTINT (w->window_end_pos) == 0
1091 && Z != pos)
1092 w->update_mode_line = Qt;
1094 /* Say where last char on frame will be, once redisplay is finished. */
1095 XFASTINT (w->window_end_pos) = Z - pos;
1096 XFASTINT (w->window_end_vpos) = last_text_vpos - XFASTINT (w->top);
1097 /* But that is not valid info until redisplay finishes. */
1098 w->window_end_valid = Qnil;
1101 /* Try to redisplay when buffer is modified locally,
1102 computing insert/delete line to preserve text outside
1103 the bounds of the changes.
1104 Return 1 if successful, 0 if if cannot tell what to do,
1105 or -1 to tell caller to find a new window start,
1106 or -2 to tell caller to do normal redisplay with same window start. */
1108 static int
1109 try_window_id (window)
1110 Lisp_Object window;
1112 int pos;
1113 register struct window *w = XWINDOW (window);
1114 register int height = window_internal_height (w);
1115 FRAME_PTR f = XFRAME (w->frame);
1116 int top = XFASTINT (w->top);
1117 int start = marker_position (w->start);
1118 int width = window_internal_width (w) - 1;
1119 int hscroll = XINT (w->hscroll);
1120 int lmargin = hscroll > 0 ? 1 - hscroll : 0;
1121 register int vpos;
1122 register int i, tem;
1123 int last_text_vpos = 0;
1124 int stop_vpos;
1126 struct position val, bp, ep, xp, pp;
1127 int scroll_amount = 0;
1128 int delta;
1129 int tab_offset, epto;
1131 if (GPT - BEG < beg_unchanged)
1132 beg_unchanged = GPT - BEG;
1133 if (Z - GPT < end_unchanged)
1134 end_unchanged = Z - GPT;
1136 if (beg_unchanged + 1 < start)
1137 return 0; /* Give up if changes go above top of window */
1139 /* Find position before which nothing is changed. */
1140 bp = *compute_motion (start, 0, lmargin,
1141 beg_unchanged + 1, height + 1, 0, width, hscroll,
1142 pos_tab_offset (w, start));
1143 if (bp.vpos >= height)
1145 if (point < bp.bufpos && !bp.contin)
1147 /* All changes are below the frame, and point is on the frame.
1148 We don't need to change the frame at all.
1149 But we need to update window_end_pos to account for
1150 any change in buffer size. */
1151 bp = *compute_motion (start, 0, lmargin,
1152 Z, height, 0,
1153 width, hscroll, pos_tab_offset (w, start));
1154 XFASTINT (w->window_end_vpos) = height;
1155 XFASTINT (w->window_end_pos) = Z - bp.bufpos;
1156 return 1;
1158 return 0;
1161 vpos = bp.vpos;
1163 /* Find beginning of that frame line. Must display from there. */
1164 bp = *vmotion (bp.bufpos, 0, width, hscroll, window);
1166 pos = bp.bufpos;
1167 val.hpos = lmargin;
1168 if (pos < start)
1169 return -1;
1171 /* If about to start displaying at the beginning of a continuation line,
1172 really start with previous frame line, in case it was not
1173 continued when last redisplayed */
1174 if ((bp.contin && bp.bufpos - 1 == beg_unchanged && vpos > 0)
1176 /* Likewise if we have to worry about selective display. */
1177 (XTYPE (current_buffer->selective_display) == Lisp_Int
1178 && XINT (current_buffer->selective_display) > 0
1179 && bp.bufpos - 1 == beg_unchanged && vpos > 0))
1181 bp = *vmotion (bp.bufpos, -1, width, hscroll, window);
1182 --vpos;
1183 pos = bp.bufpos;
1186 if (bp.contin && bp.hpos != lmargin)
1188 val.hpos = bp.prevhpos - width + lmargin;
1189 pos--;
1192 bp.vpos = vpos;
1194 /* Find first visible newline after which no more is changed. */
1195 tem = find_next_newline (Z - max (end_unchanged, Z - ZV), 1);
1196 if (XTYPE (current_buffer->selective_display) == Lisp_Int
1197 && XINT (current_buffer->selective_display) > 0)
1198 while (tem < ZV - 1
1199 && (position_indentation (tem)
1200 >= XINT (current_buffer->selective_display)))
1201 tem = find_next_newline (tem, 1);
1203 /* Compute the cursor position after that newline. */
1204 ep = *compute_motion (pos, vpos, val.hpos, tem,
1205 height, - (1 << (SHORTBITS - 1)),
1206 width, hscroll, pos_tab_offset (w, bp.bufpos));
1208 /* If changes reach past the text available on the frame,
1209 just display rest of frame. */
1210 if (ep.bufpos > Z - XFASTINT (w->window_end_pos))
1211 stop_vpos = height;
1212 else
1213 stop_vpos = ep.vpos;
1215 /* If no newline before ep, the line ep is on includes some changes
1216 that must be displayed. Make sure we don't stop before it. */
1217 /* Also, if changes reach all the way until ep.bufpos,
1218 it is possible that something was deleted after the
1219 newline before it, so the following line must be redrawn. */
1220 if (stop_vpos == ep.vpos
1221 && (ep.bufpos == BEGV
1222 || FETCH_CHAR (ep.bufpos - 1) != '\n'
1223 || ep.bufpos == Z - end_unchanged))
1224 stop_vpos = ep.vpos + 1;
1226 cursor_vpos = -1;
1227 overlay_arrow_seen = 0;
1229 /* If changes do not reach to bottom of window,
1230 figure out how much to scroll the rest of the window */
1231 if (stop_vpos < height)
1233 /* Now determine how far up or down the rest of the window has moved */
1234 epto = pos_tab_offset (w, ep.bufpos);
1235 xp = *compute_motion (ep.bufpos, ep.vpos, ep.hpos,
1236 Z - XFASTINT (w->window_end_pos),
1237 10000, 0, width, hscroll, epto);
1238 scroll_amount = xp.vpos - XFASTINT (w->window_end_vpos);
1240 /* Is everything on frame below the changes whitespace?
1241 If so, no scrolling is really necessary. */
1242 for (i = ep.bufpos; i < xp.bufpos; i++)
1244 tem = FETCH_CHAR (i);
1245 if (tem != ' ' && tem != '\n' && tem != '\t')
1246 break;
1248 if (i == xp.bufpos)
1249 return -2;
1251 XFASTINT (w->window_end_vpos) += scroll_amount;
1253 /* Before doing any scrolling, verify that point will be on frame. */
1254 if (point > ep.bufpos && !(point <= xp.bufpos && xp.bufpos < height))
1256 if (point <= xp.bufpos)
1258 pp = *compute_motion (ep.bufpos, ep.vpos, ep.hpos,
1259 point, height, - (1 << (SHORTBITS - 1)),
1260 width, hscroll, epto);
1262 else
1264 pp = *compute_motion (xp.bufpos, xp.vpos, xp.hpos,
1265 point, height, - (1 << (SHORTBITS - 1)),
1266 width, hscroll, pos_tab_offset (w, xp.bufpos));
1268 if (pp.bufpos < point || pp.vpos == height)
1269 return 0;
1270 cursor_vpos = pp.vpos + top;
1271 cursor_hpos = pp.hpos + XFASTINT (w->left);
1274 if (stop_vpos - scroll_amount >= height
1275 || ep.bufpos == xp.bufpos)
1277 if (scroll_amount < 0)
1278 stop_vpos -= scroll_amount;
1279 scroll_amount = 0;
1280 /* In this path, we have altered window_end_vpos
1281 and not left it negative.
1282 We must make sure that, in case display is preempted
1283 before the frame changes to reflect what we do here,
1284 further updates will not come to try_window_id
1285 and assume the frame and window_end_vpos match. */
1286 blank_end_of_window = 1;
1288 else if (!scroll_amount)
1290 else if (bp.bufpos == Z - end_unchanged)
1292 /* If reprinting everything is nearly as fast as scrolling,
1293 don't bother scrolling. Can happen if lines are short. */
1294 if (scroll_cost (f, bp.vpos + top - scroll_amount,
1295 top + height - max (0, scroll_amount),
1296 scroll_amount)
1297 > xp.bufpos - bp.bufpos - 20)
1298 /* Return "try normal display with same window-start."
1299 Too bad we can't prevent further scroll-thinking. */
1300 return -2;
1301 /* If pure deletion, scroll up as many lines as possible.
1302 In common case of killing a line, this can save the
1303 following line from being overwritten by scrolling
1304 and therefore having to be redrawn. */
1305 tem = scroll_frame_lines (f, bp.vpos + top - scroll_amount,
1306 top + height - max (0, scroll_amount),
1307 scroll_amount);
1308 if (!tem) stop_vpos = height;
1310 else if (scroll_amount)
1312 /* If reprinting everything is nearly as fast as scrolling,
1313 don't bother scrolling. Can happen if lines are short. */
1314 /* Note that if scroll_amount > 0, xp.bufpos - bp.bufpos is an
1315 overestimate of cost of reprinting, since xp.bufpos
1316 would end up below the bottom of the window. */
1317 if (scroll_cost (f, ep.vpos + top - scroll_amount,
1318 top + height - max (0, scroll_amount),
1319 scroll_amount)
1320 > xp.bufpos - ep.bufpos - 20)
1321 /* Return "try normal display with same window-start."
1322 Too bad we can't prevent further scroll-thinking. */
1323 return -2;
1324 tem = scroll_frame_lines (f, ep.vpos + top - scroll_amount,
1325 top + height - max (0, scroll_amount),
1326 scroll_amount);
1327 if (!tem) stop_vpos = height;
1331 /* In any case, do not display past bottom of window */
1332 if (stop_vpos >= height)
1334 stop_vpos = height;
1335 scroll_amount = 0;
1338 /* Handle case where pos is before w->start --
1339 can happen if part of line had been clipped and is not clipped now */
1340 if (vpos == 0 && pos < marker_position (w->start))
1341 Fset_marker (w->start, make_number (pos), Qnil);
1343 /* Redisplay the lines where the text was changed */
1344 last_text_vpos = vpos;
1345 tab_offset = pos_tab_offset (w, pos);
1346 /* If we are starting display in mid-character, correct tab_offset
1347 to account for passing the line that that character really starts in. */
1348 if (val.hpos < lmargin)
1349 tab_offset += width;
1350 while (vpos < stop_vpos)
1352 val = *display_text_line (w, pos, top + vpos++, val.hpos, tab_offset);
1353 tab_offset += width;
1354 if (val.vpos) tab_offset = 0;
1355 if (pos != val.bufpos)
1356 last_text_vpos
1357 /* Next line, unless prev line ended in end of buffer with no cr */
1358 = vpos - (val.vpos && FETCH_CHAR (val.bufpos - 1) != '\n');
1359 pos = val.bufpos;
1362 /* There are two cases:
1363 1) we have displayed down to the bottom of the window
1364 2) we have scrolled lines below stop_vpos by scroll_amount */
1366 if (vpos == height)
1368 /* If last line is continued in middle of character,
1369 include the split character in the text considered on the frame */
1370 if (val.hpos < lmargin)
1371 val.bufpos++;
1372 XFASTINT (w->window_end_vpos) = last_text_vpos;
1373 XFASTINT (w->window_end_pos) = Z - val.bufpos;
1376 /* If scrolling made blank lines at window bottom,
1377 redisplay to fill those lines */
1378 if (scroll_amount < 0)
1380 /* Don't consider these lines for general-purpose scrolling.
1381 That will save time in the scrolling computation. */
1382 FRAME_SCROLL_BOTTOM_VPOS (f) = xp.vpos;
1383 vpos = xp.vpos;
1384 pos = xp.bufpos;
1385 val.hpos = lmargin;
1386 if (pos == ZV)
1387 vpos = height + scroll_amount;
1388 else if (xp.contin && xp.hpos != lmargin)
1390 val.hpos = xp.prevhpos - width + lmargin;
1391 pos--;
1394 blank_end_of_window = 1;
1395 tab_offset = pos_tab_offset (w, pos);
1396 /* If we are starting display in mid-character, correct tab_offset
1397 to account for passing the line that that character starts in. */
1398 if (val.hpos < lmargin)
1399 tab_offset += width;
1401 while (vpos < height)
1403 val = *display_text_line (w, pos, top + vpos++, val.hpos, tab_offset);
1404 tab_offset += width;
1405 if (val.vpos) tab_offset = 0;
1406 pos = val.bufpos;
1409 /* Here is a case where display_text_line sets cursor_vpos wrong.
1410 Make it be fixed up, below. */
1411 if (xp.bufpos == ZV
1412 && xp.bufpos == point)
1413 cursor_vpos = -1;
1416 /* If bottom just moved off end of frame, change mode line percentage. */
1417 if (XFASTINT (w->window_end_pos) == 0
1418 && Z != val.bufpos)
1419 w->update_mode_line = Qt;
1421 /* Attempt to adjust end-of-text positions to new bottom line */
1422 if (scroll_amount)
1424 delta = height - xp.vpos;
1425 if (delta < 0
1426 || (delta > 0 && xp.bufpos <= ZV)
1427 || (delta == 0 && xp.hpos))
1429 val = *vmotion (Z - XFASTINT (w->window_end_pos),
1430 delta, width, hscroll, window);
1431 XFASTINT (w->window_end_pos) = Z - val.bufpos;
1432 XFASTINT (w->window_end_vpos) += val.vpos;
1436 w->window_end_valid = Qnil;
1438 /* If point was not in a line that was displayed, find it */
1439 if (cursor_vpos < 0)
1441 val = *compute_motion (start, 0, lmargin, point, 10000, 10000,
1442 width, hscroll, pos_tab_offset (w, start));
1443 /* Admit failure if point is off frame now */
1444 if (val.vpos >= height)
1446 for (vpos = 0; vpos < height; vpos++)
1447 cancel_line (vpos + top, f);
1448 return 0;
1450 cursor_vpos = val.vpos + top;
1451 cursor_hpos = val.hpos + XFASTINT (w->left);
1454 FRAME_CURSOR_X (f) = max (0, cursor_hpos);
1455 FRAME_CURSOR_Y (f) = cursor_vpos;
1457 if (debug_end_pos)
1459 val = *compute_motion (start, 0, lmargin, ZV,
1460 height, - (1 << (SHORTBITS - 1)),
1461 width, hscroll, pos_tab_offset (w, start));
1462 if (val.vpos != XFASTINT (w->window_end_vpos))
1463 abort ();
1464 if (XFASTINT (w->window_end_pos)
1465 != Z - val.bufpos)
1466 abort ();
1469 return 1;
1472 /* Copy glyphs from the vector FROM to the rope T.
1473 But don't actually copy the parts that would come in before S.
1474 Value is T, advanced past the copied data. */
1476 GLYPH *
1477 copy_rope (t, s, from)
1478 register GLYPH *t; /* Copy to here. */
1479 register GLYPH *s; /* Starting point. */
1480 Lisp_Object from; /* Data to copy; known to be a vector. */
1482 register int n = XVECTOR (from)->size;
1483 register Lisp_Object *f = XVECTOR (from)->contents;
1485 while (n--)
1487 if (t >= s) *t = *f;
1488 ++t;
1489 ++f;
1491 return t;
1494 /* Similar but copy at most LEN glyphs. */
1496 GLYPH *
1497 copy_part_of_rope (t, s, from, len)
1498 register GLYPH *t; /* Copy to here. */
1499 register GLYPH *s; /* Starting point. */
1500 Lisp_Object from; /* Data to copy; known to be a vector. */
1501 int len;
1503 register int n = XVECTOR (from)->size;
1504 register Lisp_Object *f = XVECTOR (from)->contents;
1506 if (n > len)
1507 n = len;
1509 while (n--)
1511 if (t >= s) *t = *f;
1512 ++t;
1513 ++f;
1515 return t;
1518 /* Display one line of window w, starting at position START in W's buffer.
1519 Display starting at horizontal position HPOS, which is normally zero
1520 or negative. A negative value causes output up to hpos = 0 to be discarded.
1521 This is done for negative hscroll, or when this is a continuation line
1522 and the continuation occurred in the middle of a multi-column character.
1524 TABOFFSET is an offset for ostensible hpos, used in tab stop calculations.
1526 Display on position VPOS on the frame. (origin 0).
1528 Returns a STRUCT POSITION giving character to start next line with
1529 and where to display it, including a zero or negative hpos.
1530 The vpos field is not really a vpos; it is 1 unless the line is continued */
1532 struct position val_display_text_line;
1534 static struct position *
1535 display_text_line (w, start, vpos, hpos, taboffset)
1536 struct window *w;
1537 int start;
1538 int vpos;
1539 int hpos;
1540 int taboffset;
1542 register int pos = start;
1543 register int c;
1544 register GLYPH *p1;
1545 int end;
1546 register int pause;
1547 register unsigned char *p;
1548 GLYPH *endp;
1549 register GLYPH *startp;
1550 register GLYPH *p1prev;
1551 FRAME_PTR f = XFRAME (w->frame);
1552 int tab_width = XINT (current_buffer->tab_width);
1553 int ctl_arrow = !NILP (current_buffer->ctl_arrow);
1554 int width = window_internal_width (w) - 1;
1555 struct position val;
1556 int lastpos;
1557 int invis;
1558 int hscroll = XINT (w->hscroll);
1559 int truncate = hscroll
1560 || (truncate_partial_width_windows
1561 && XFASTINT (w->width) < FRAME_WIDTH (f))
1562 || !NILP (current_buffer->truncate_lines);
1563 int selective
1564 = XTYPE (current_buffer->selective_display) == Lisp_Int
1565 ? XINT (current_buffer->selective_display)
1566 : !NILP (current_buffer->selective_display) ? -1 : 0;
1567 #ifndef old
1568 int selective_e = selective && !NILP (current_buffer->selective_display_ellipses);
1569 #endif
1570 register struct frame_glyphs *desired_glyphs = FRAME_DESIRED_GLYPHS (f);
1571 register struct Lisp_Vector *dp = window_display_table (w);
1572 int selective_rlen
1573 = (selective && dp && XTYPE (DISP_INVIS_VECTOR (dp)) == Lisp_Vector
1574 ? XVECTOR (DISP_INVIS_VECTOR (dp))->size : 0);
1575 GLYPH truncator = (dp == 0 || XTYPE (DISP_TRUNC_GLYPH (dp)) != Lisp_Int
1576 ? '$' : XINT (DISP_TRUNC_GLYPH (dp)));
1577 GLYPH continuer = (dp == 0 || XTYPE (DISP_CONTINUE_GLYPH (dp)) != Lisp_Int
1578 ? '\\' : XINT (DISP_CONTINUE_GLYPH (dp)));
1580 hpos += XFASTINT (w->left);
1581 get_display_line (f, vpos, XFASTINT (w->left));
1582 if (tab_width <= 0 || tab_width > 1000) tab_width = 8;
1584 if (MINI_WINDOW_P (w) && start == 1
1585 && vpos == XFASTINT (w->top))
1587 if (minibuf_prompt)
1588 hpos = display_string (w, vpos, minibuf_prompt, hpos,
1589 (!truncate ? continuer : truncator),
1590 -1, -1);
1591 minibuf_prompt_width = hpos;
1594 desired_glyphs->bufp[vpos] = pos;
1595 p1 = desired_glyphs->glyphs[vpos] + hpos;
1596 end = ZV;
1597 startp = desired_glyphs->glyphs[vpos] + XFASTINT (w->left);
1598 endp = startp + width;
1600 /* Loop generating characters.
1601 Stop at end of buffer, before newline,
1602 or if reach or pass continuation column. */
1604 pause = pos;
1605 while (p1 < endp)
1607 p1prev = p1;
1608 if (pos == pause)
1610 if (pos == end)
1611 break;
1612 if (pos == point && cursor_vpos < 0)
1614 cursor_vpos = vpos;
1615 cursor_hpos = p1 - startp;
1618 pause = end;
1619 if (pos < point && point < pause)
1620 pause = point;
1621 if (pos < GPT && GPT < pause)
1622 pause = GPT;
1624 p = &FETCH_CHAR (pos);
1626 c = *p++;
1627 if (c >= 040 && c < 0177
1628 && (dp == 0 || XTYPE (DISP_CHAR_VECTOR (dp, c)) != Lisp_Vector))
1630 if (p1 >= startp)
1631 *p1 = c;
1632 p1++;
1634 else if (c == '\n')
1636 invis = 0;
1637 while (pos < end
1638 && selective > 0
1639 && position_indentation (pos + 1) >= selective)
1641 invis = 1;
1642 pos = find_next_newline (pos + 1, 1);
1643 if (FETCH_CHAR (pos - 1) == '\n')
1644 pos--;
1646 if (invis && selective_rlen > 0 && p1 >= startp)
1648 p1 += selective_rlen;
1649 if (p1 - startp > width)
1650 p1 = endp;
1651 copy_part_of_rope (p1prev, p1prev,
1652 XVECTOR (DISP_INVIS_VECTOR (dp))->contents,
1653 (p1 - p1prev));
1655 break;
1657 else if (c == '\t')
1661 if (p1 >= startp && p1 < endp)
1662 *p1 = SPACEGLYPH;
1663 p1++;
1665 while ((p1 - startp + taboffset + hscroll - (hscroll > 0))
1666 % tab_width);
1668 else if (c == Ctl ('M') && selective == -1)
1670 pos = find_next_newline (pos, 1);
1671 if (FETCH_CHAR (pos - 1) == '\n')
1672 pos--;
1673 if (selective_rlen > 0)
1675 p1 += selective_rlen;
1676 if (p1 - startp > width)
1677 p1 = endp;
1678 copy_part_of_rope (p1prev, p1prev,
1679 XVECTOR(DISP_INVIS_VECTOR (dp))->contents,
1680 (p1 - p1prev));
1682 break;
1684 else if (dp != 0 && XTYPE (DISP_CHAR_VECTOR (dp, c)) == Lisp_Vector)
1686 p1 = copy_rope (p1, startp, DISP_CHAR_VECTOR (dp, c));
1688 else if (c < 0200 && ctl_arrow)
1690 if (p1 >= startp)
1691 *p1 = (dp && XTYPE (DISP_CTRL_GLYPH (dp)) == Lisp_Int
1692 ? XINT (DISP_CTRL_GLYPH (dp)) : '^');
1693 p1++;
1694 if (p1 >= startp && p1 < endp)
1695 *p1 = c ^ 0100;
1696 p1++;
1698 else
1700 if (p1 >= startp)
1701 *p1 = (dp && XTYPE (DISP_ESCAPE_GLYPH (dp)) == Lisp_Int
1702 ? XINT (DISP_ESCAPE_GLYPH (dp)) : '\\');
1703 p1++;
1704 if (p1 >= startp && p1 < endp)
1705 *p1 = (c >> 6) + '0';
1706 p1++;
1707 if (p1 >= startp && p1 < endp)
1708 *p1 = (7 & (c >> 3)) + '0';
1709 p1++;
1710 if (p1 >= startp && p1 < endp)
1711 *p1 = (7 & c) + '0';
1712 p1++;
1714 pos++;
1717 val.hpos = - XINT (w->hscroll);
1718 if (val.hpos)
1719 val.hpos++;
1721 val.vpos = 1;
1723 lastpos = pos;
1725 /* Handle continuation in middle of a character */
1726 /* by backing up over it */
1727 if (p1 > endp)
1729 /* Start the next line with that same character */
1730 pos--;
1731 /* but at a negative hpos, to skip the columns output on this line. */
1732 val.hpos += p1prev - endp;
1733 /* Keep in this line everything up to the continuation column. */
1734 p1 = endp;
1737 /* Finish deciding which character to start the next line on,
1738 and what hpos to start it at.
1739 Also set `lastpos' to the last position which counts as "on this line"
1740 for cursor-positioning. */
1742 if (pos < ZV)
1744 if (FETCH_CHAR (pos) == '\n')
1745 /* If stopped due to a newline, start next line after it */
1746 pos++;
1747 else
1748 /* Stopped due to right margin of window */
1750 if (truncate)
1752 *p1++ = truncator;
1753 /* Truncating => start next line after next newline,
1754 and point is on this line if it is before the newline,
1755 and skip none of first char of next line */
1756 pos = find_next_newline (pos, 1);
1757 val.hpos = XINT (w->hscroll) ? 1 - XINT (w->hscroll) : 0;
1759 lastpos = pos - (FETCH_CHAR (pos - 1) == '\n');
1761 else
1763 *p1++ = continuer;
1764 val.vpos = 0;
1765 lastpos--;
1770 /* If point is at eol or in invisible text at eol,
1771 record its frame location now. */
1773 if (start <= point && point <= lastpos && cursor_vpos < 0)
1775 cursor_vpos = vpos;
1776 cursor_hpos = p1 - startp;
1779 if (cursor_vpos == vpos)
1781 if (cursor_hpos < 0) cursor_hpos = 0;
1782 if (cursor_hpos > width) cursor_hpos = width;
1783 cursor_hpos += XFASTINT (w->left);
1784 if (w == XWINDOW (FRAME_SELECTED_WINDOW (f)))
1786 FRAME_CURSOR_Y (f) = cursor_vpos;
1787 FRAME_CURSOR_X (f) = cursor_hpos;
1789 if (w == XWINDOW (selected_window))
1791 /* Line is not continued and did not start
1792 in middle of character */
1793 if ((hpos - XFASTINT (w->left)
1794 == (XINT (w->hscroll) ? 1 - XINT (w->hscroll) : 0))
1795 && val.vpos)
1797 this_line_bufpos = start;
1798 this_line_buffer = current_buffer;
1799 this_line_vpos = cursor_vpos;
1800 this_line_start_hpos = hpos;
1801 this_line_endpos = Z - lastpos;
1803 else
1804 this_line_bufpos = 0;
1809 /* If hscroll and line not empty, insert truncation-at-left marker */
1810 if (hscroll && lastpos != start)
1812 *startp = truncator;
1813 if (p1 <= startp)
1814 p1 = startp + 1;
1817 if (XFASTINT (w->width) + XFASTINT (w->left) != FRAME_WIDTH (f))
1819 endp++;
1820 if (p1 < startp) p1 = startp;
1821 while (p1 < endp) *p1++ = SPACEGLYPH;
1823 /* Don't draw vertical bars if we're using scroll bars. They're
1824 covered up by the scroll bars, and it's distracting to see
1825 them when the scroll bar windows are flickering around to be
1826 reconfigured. */
1827 *p1++ = (FRAME_HAS_VERTICAL_SCROLL_BARS (f)
1828 ? ' ' : '|');
1830 desired_glyphs->used[vpos] = max (desired_glyphs->used[vpos],
1831 p1 - desired_glyphs->glyphs[vpos]);
1832 desired_glyphs->glyphs[vpos][desired_glyphs->used[vpos]] = 0;
1834 /* If the start of this line is the overlay arrow-position,
1835 then put the arrow string into the display-line. */
1837 if (XTYPE (Voverlay_arrow_position) == Lisp_Marker
1838 && current_buffer == XMARKER (Voverlay_arrow_position)->buffer
1839 && start == marker_position (Voverlay_arrow_position)
1840 && XTYPE (Voverlay_arrow_string) == Lisp_String
1841 && ! overlay_arrow_seen)
1843 unsigned char *p = XSTRING (Voverlay_arrow_string)->data;
1844 int i;
1845 int len = XSTRING (Voverlay_arrow_string)->size;
1847 if (len > width)
1848 len = width;
1849 for (i = 0; i < len; i++)
1850 startp[i] = p[i];
1851 if (desired_glyphs->used[vpos] <
1852 (len + startp - desired_glyphs->glyphs[vpos]))
1853 desired_glyphs->used[vpos] = len + startp - desired_glyphs->glyphs[vpos];
1855 overlay_arrow_seen = 1;
1858 val.bufpos = pos;
1859 val_display_text_line = val;
1860 return &val_display_text_line;
1863 /* Redisplay the menu bar in the frame for window W. */
1865 static void
1866 display_menu_bar (w)
1867 struct window *w;
1869 Lisp_Object items, tail;
1870 register int vpos = 0;
1871 register FRAME_PTR f = XFRAME (WINDOW_FRAME (w));
1872 int maxendcol = FRAME_WIDTH (f);
1873 int hpos = 0;
1875 if (FRAME_MENU_BAR_LINES (f) <= 0)
1876 return;
1878 get_display_line (f, vpos, 0);
1880 for (tail = FRAME_MENU_BAR_ITEMS (f); CONSP (tail); tail = XCONS (tail)->cdr)
1882 Lisp_Object string;
1884 string = XCONS (XCONS (XCONS (tail)->car)->cdr)->car;
1886 /* Record in each item its hpos. */
1887 XFASTINT (XCONS (XCONS (XCONS (tail)->car)->cdr)->cdr) = hpos;
1889 if (hpos < maxendcol)
1890 hpos = display_string (XWINDOW (FRAME_ROOT_WINDOW (f)), vpos,
1891 XSTRING (string)->data,
1892 hpos, 0, hpos, maxendcol);
1893 /* Put a gap of 3 spaces between items. */
1894 if (hpos < maxendcol)
1896 int hpos1 = hpos + 3;
1897 hpos = display_string (w, vpos, "", hpos, 0,
1898 min (hpos1, maxendcol), maxendcol);
1902 FRAME_DESIRED_GLYPHS (f)->bufp[vpos] = 0;
1903 FRAME_DESIRED_GLYPHS (f)->highlight[vpos] = mode_line_inverse_video;
1905 /* Fill out the line with spaces. */
1906 if (maxendcol > hpos)
1907 hpos = display_string (w, vpos, "", hpos, 0, maxendcol, -1);
1910 /* Display the mode line for window w */
1912 static void
1913 display_mode_line (w)
1914 struct window *w;
1916 register int vpos = XFASTINT (w->height) + XFASTINT (w->top) - 1;
1917 register int left = XFASTINT (w->left);
1918 register int right = XFASTINT (w->width) + left;
1919 register FRAME_PTR f = XFRAME (WINDOW_FRAME (w));
1921 line_number_displayed = 0;
1923 get_display_line (f, vpos, left);
1924 display_mode_element (w, vpos, left, 0, right, right,
1925 current_buffer->mode_line_format);
1926 FRAME_DESIRED_GLYPHS (f)->bufp[vpos] = 0;
1928 /* Make the mode line inverse video if the entire line
1929 is made of mode lines.
1930 I.e. if this window is full width,
1931 or if it is the child of a full width window
1932 (which implies that that window is split side-by-side
1933 and the rest of this line is mode lines of the sibling windows). */
1934 if (XFASTINT (w->width) == FRAME_WIDTH (f)
1935 || XFASTINT (XWINDOW (w->parent)->width) == FRAME_WIDTH (f))
1936 FRAME_DESIRED_GLYPHS (f)->highlight[vpos] = mode_line_inverse_video;
1938 #ifdef HAVE_X_WINDOWS
1939 /* I'm trying this out because I saw Unimpress use it, but it's
1940 possible that this may mess adversely with some window managers. -jla
1942 Wouldn't it be nice to use something like mode-line-format to
1943 describe frame titles? -JimB */
1945 /* Change the title of the frame to the name of the buffer displayed
1946 in the currently selected window. Don't do this for minibuffer frames,
1947 and don't do it when there's only one non-minibuffer frame. */
1948 if (FRAME_X_P (f)
1949 && ! FRAME_MINIBUF_ONLY_P (f)
1950 && w == XWINDOW (f->selected_window))
1951 x_implicitly_set_name (f, (EQ (Fnext_frame (WINDOW_FRAME (w), Qnil),
1952 WINDOW_FRAME (w))
1953 ? Qnil
1954 : XBUFFER (w->buffer)->name),
1955 Qnil);
1956 #endif
1959 /* Contribute ELT to the mode line for window W.
1960 How it translates into text depends on its data type.
1962 VPOS is the position of the mode line being displayed.
1964 HPOS is the position (absolute on frame) where this element's text
1965 should start. The output is truncated automatically at the right
1966 edge of window W.
1968 DEPTH is the depth in recursion. It is used to prevent
1969 infinite recursion here.
1971 MINENDCOL is the hpos before which the element may not end.
1972 The element is padded at the right with spaces if nec
1973 to reach this column.
1975 MAXENDCOL is the hpos past which this element may not extend.
1976 If MINENDCOL is > MAXENDCOL, MINENDCOL takes priority.
1977 (This is necessary to make nested padding and truncation work.)
1979 Returns the hpos of the end of the text generated by ELT.
1980 The next element will receive that value as its HPOS arg,
1981 so as to concatenate the elements. */
1983 static int
1984 display_mode_element (w, vpos, hpos, depth, minendcol, maxendcol, elt)
1985 struct window *w;
1986 register int vpos, hpos;
1987 int depth;
1988 int minendcol;
1989 register int maxendcol;
1990 register Lisp_Object elt;
1992 tail_recurse:
1993 if (depth > 10)
1994 goto invalid;
1996 depth++;
1998 #ifdef SWITCH_ENUM_BUG
1999 switch ((int) XTYPE (elt))
2000 #else
2001 switch (XTYPE (elt))
2002 #endif
2004 case Lisp_String:
2006 /* A string: output it and check for %-constructs within it. */
2007 register unsigned char c;
2008 register unsigned char *this = XSTRING (elt)->data;
2010 while (hpos < maxendcol && *this)
2012 unsigned char *last = this;
2013 while ((c = *this++) != '\0' && c != '%')
2015 if (this - 1 != last)
2017 register int lim = --this - last + hpos;
2018 hpos = display_string (w, vpos, last, hpos, 0, hpos,
2019 min (lim, maxendcol));
2021 else /* c == '%' */
2023 register int spec_width = 0;
2025 /* We can't allow -ve args due to the "%-" construct */
2026 /* Argument specifies minwidth but not maxwidth
2027 (maxwidth can be specified by
2028 (<negative-number> . <stuff>) mode-line elements) */
2030 while ((c = *this++) >= '0' && c <= '9')
2032 spec_width = spec_width * 10 + (c - '0');
2035 spec_width += hpos;
2036 if (spec_width > maxendcol)
2037 spec_width = maxendcol;
2039 if (c == 'M')
2040 hpos = display_mode_element (w, vpos, hpos, depth,
2041 spec_width, maxendcol,
2042 Vglobal_mode_string);
2043 else if (c != 0)
2044 hpos = display_string (w, vpos,
2045 decode_mode_spec (w, c,
2046 maxendcol - hpos),
2047 hpos, 0, spec_width, maxendcol);
2051 break;
2053 case Lisp_Symbol:
2054 /* A symbol: process the value of the symbol recursively
2055 as if it appeared here directly. Avoid error if symbol void.
2056 Special case: if value of symbol is a string, output the string
2057 literally. */
2059 register Lisp_Object tem;
2060 tem = Fboundp (elt);
2061 if (!NILP (tem))
2063 tem = Fsymbol_value (elt);
2064 /* If value is a string, output that string literally:
2065 don't check for % within it. */
2066 if (XTYPE (tem) == Lisp_String)
2067 hpos = display_string (w, vpos, XSTRING (tem)->data,
2068 hpos, 0, minendcol, maxendcol);
2069 /* Give up right away for nil or t. */
2070 else if (!EQ (tem, elt))
2071 { elt = tem; goto tail_recurse; }
2074 break;
2076 case Lisp_Cons:
2078 register Lisp_Object car, tem;
2080 /* A cons cell: three distinct cases.
2081 If first element is a string or a cons, process all the elements
2082 and effectively concatenate them.
2083 If first element is a negative number, truncate displaying cdr to
2084 at most that many characters. If positive, pad (with spaces)
2085 to at least that many characters.
2086 If first element is a symbol, process the cadr or caddr recursively
2087 according to whether the symbol's value is non-nil or nil. */
2088 car = XCONS (elt)->car;
2089 if (XTYPE (car) == Lisp_Symbol)
2091 tem = Fboundp (car);
2092 elt = XCONS (elt)->cdr;
2093 if (XTYPE (elt) != Lisp_Cons)
2094 goto invalid;
2095 /* elt is now the cdr, and we know it is a cons cell.
2096 Use its car if CAR has a non-nil value. */
2097 if (!NILP (tem))
2099 tem = Fsymbol_value (car);
2100 if (!NILP (tem))
2101 { elt = XCONS (elt)->car; goto tail_recurse; }
2103 /* Symbol's value is nil (or symbol is unbound)
2104 Get the cddr of the original list
2105 and if possible find the caddr and use that. */
2106 elt = XCONS (elt)->cdr;
2107 if (NILP (elt))
2108 break;
2109 else if (XTYPE (elt) != Lisp_Cons)
2110 goto invalid;
2111 elt = XCONS (elt)->car;
2112 goto tail_recurse;
2114 else if (XTYPE (car) == Lisp_Int)
2116 register int lim = XINT (car);
2117 elt = XCONS (elt)->cdr;
2118 if (lim < 0)
2119 /* Negative int means reduce maximum width.
2120 DO NOT change MINENDCOL here!
2121 (20 -10 . foo) should truncate foo to 10 col
2122 and then pad to 20. */
2123 maxendcol = min (maxendcol, hpos - lim);
2124 else if (lim > 0)
2126 /* Padding specified. Don't let it be more than
2127 current maximum. */
2128 lim += hpos;
2129 if (lim > maxendcol)
2130 lim = maxendcol;
2131 /* If that's more padding than already wanted, queue it.
2132 But don't reduce padding already specified even if
2133 that is beyond the current truncation point. */
2134 if (lim > minendcol)
2135 minendcol = lim;
2137 goto tail_recurse;
2139 else if (XTYPE (car) == Lisp_String || XTYPE (car) == Lisp_Cons)
2141 register int limit = 50;
2142 /* LIMIT is to protect against circular lists. */
2143 while (XTYPE (elt) == Lisp_Cons && --limit > 0
2144 && hpos < maxendcol)
2146 hpos = display_mode_element (w, vpos, hpos, depth,
2147 hpos, maxendcol,
2148 XCONS (elt)->car);
2149 elt = XCONS (elt)->cdr;
2153 break;
2155 default:
2156 invalid:
2157 return (display_string (w, vpos, "*invalid*", hpos, 0,
2158 minendcol, maxendcol));
2161 end:
2162 if (minendcol > hpos)
2163 hpos = display_string (w, vpos, "", hpos, 0, minendcol, -1);
2164 return hpos;
2167 /* Return a string for the output of a mode line %-spec for window W,
2168 generated by character C and width MAXWIDTH. */
2170 static char lots_of_dashes[] = "--------------------------------------------------------------------------------------------------------------------------------------------";
2172 static char *
2173 decode_mode_spec (w, c, maxwidth)
2174 struct window *w;
2175 register char c;
2176 register int maxwidth;
2178 Lisp_Object obj = Qnil;
2179 FRAME_PTR f = XFRAME (WINDOW_FRAME (w));
2180 char *decode_mode_spec_buf = (char *) FRAME_TEMP_GLYPHS (f)->total_contents;
2182 if (maxwidth > FRAME_WIDTH (f))
2183 maxwidth = FRAME_WIDTH (f);
2185 switch (c)
2187 case 'b':
2188 obj = current_buffer->name;
2189 #if 0
2190 if (maxwidth >= 3 && XSTRING (obj)->size > maxwidth)
2192 bcopy (XSTRING (obj)->data, decode_mode_spec_buf, maxwidth - 1);
2193 decode_mode_spec_buf[maxwidth - 1] = '\\';
2194 decode_mode_spec_buf[maxwidth] = '\0';
2195 return decode_mode_spec_buf;
2197 #endif
2198 break;
2200 case 'f':
2201 obj = current_buffer->filename;
2202 #if 0
2203 if (NILP (obj))
2204 return "[none]";
2205 else if (XTYPE (obj) == Lisp_String && XSTRING (obj)->size > maxwidth)
2207 bcopy ("...", decode_mode_spec_buf, 3);
2208 bcopy (XSTRING (obj)->data + XSTRING (obj)->size - maxwidth + 3,
2209 decode_mode_spec_buf + 3, maxwidth - 3);
2210 return decode_mode_spec_buf;
2212 #endif
2213 break;
2215 case 'l':
2217 int startpos = marker_position (w->start);
2218 int line, linepos, topline;
2219 int nlines, junk;
2220 Lisp_Object tem;
2221 int height = XFASTINT (w->height);
2223 /* If we decided that this buffer isn't suitable for line numbers,
2224 don't forget that too fast. */
2225 if (EQ (w->base_line_pos, w->buffer))
2226 return "??";
2228 /* If the buffer is very big, don't waste time. */
2229 if (ZV - BEGV > line_number_display_limit)
2231 w->base_line_pos = Qnil;
2232 w->base_line_number = Qnil;
2233 return "??";
2236 if (!NILP (w->base_line_number)
2237 && !NILP (w->base_line_pos)
2238 && XFASTINT (w->base_line_pos) <= marker_position (w->start))
2240 line = XFASTINT (w->base_line_number);
2241 linepos = XFASTINT (w->base_line_pos);
2243 else
2245 line = 1;
2246 linepos = BEGV;
2249 /* Count lines from base line to window start position. */
2250 nlines = display_count_lines (linepos, startpos, startpos, &junk);
2252 topline = nlines + line;
2254 /* Determine a new base line, if the old one is too close
2255 or too far away, or if we did not have one.
2256 "Too close" means it's plausible a scroll-down would
2257 go back past it. */
2258 if (startpos == BEGV)
2260 XFASTINT (w->base_line_number) = topline;
2261 XFASTINT (w->base_line_pos) = BEGV;
2263 else if (nlines < height + 25 || nlines > height * 3 + 50
2264 || linepos == BEGV)
2266 int limit = BEGV;
2267 int position;
2268 int distance = (height * 2 + 30) * 200;
2270 if (startpos - distance > limit)
2271 limit = startpos - distance;
2273 nlines = display_count_lines (startpos, limit,
2274 -(height * 2 + 30),
2275 &position);
2276 /* If we couldn't find the lines we wanted within
2277 200 chars per line,
2278 give up on line numbers for this window. */
2279 if (position == startpos - distance)
2281 w->base_line_pos = w->buffer;
2282 w->base_line_number = Qnil;
2283 return "??";
2286 XFASTINT (w->base_line_number) = topline - nlines;
2287 XFASTINT (w->base_line_pos) = position;
2290 /* Now count lines from the start pos to point. */
2291 nlines = display_count_lines (startpos, PT, PT, &junk);
2293 /* Record that we did display the line number. */
2294 line_number_displayed = 1;
2296 /* Make the string to show. */
2297 sprintf (decode_mode_spec_buf, "%d", topline + nlines);
2298 return decode_mode_spec_buf;
2300 break;
2302 case 'm':
2303 obj = current_buffer->mode_name;
2304 break;
2306 case 'n':
2307 if (BEGV > BEG || ZV < Z)
2308 return " Narrow";
2309 break;
2311 case '*':
2312 if (!NILP (current_buffer->read_only))
2313 return "%";
2314 if (MODIFF > current_buffer->save_modified)
2315 return "*";
2316 return "-";
2318 case 's':
2319 /* status of process */
2320 obj = Fget_buffer_process (Fcurrent_buffer ());
2321 if (NILP (obj))
2322 return "no process";
2323 obj = Fsymbol_name (Fprocess_status (obj));
2324 break;
2326 case 'p':
2328 int pos = marker_position (w->start);
2329 int total = ZV - BEGV;
2331 if (XFASTINT (w->window_end_pos) <= Z - ZV)
2333 if (pos <= BEGV)
2334 return "All";
2335 else
2336 return "Bottom";
2338 else if (pos <= BEGV)
2339 return "Top";
2340 else
2342 total = ((pos - BEGV) * 100 + total - 1) / total;
2343 /* We can't normally display a 3-digit number,
2344 so get us a 2-digit number that is close. */
2345 if (total == 100)
2346 total = 99;
2347 sprintf (decode_mode_spec_buf, "%2d%%", total);
2348 return decode_mode_spec_buf;
2352 case '%':
2353 return "%";
2355 case '[':
2357 int i;
2358 char *p;
2360 if (command_loop_level > 5)
2361 return "[[[... ";
2362 p = decode_mode_spec_buf;
2363 for (i = 0; i < command_loop_level; i++)
2364 *p++ = '[';
2365 *p = 0;
2366 return decode_mode_spec_buf;
2369 case ']':
2371 int i;
2372 char *p;
2374 if (command_loop_level > 5)
2375 return " ...]]]";
2376 p = decode_mode_spec_buf;
2377 for (i = 0; i < command_loop_level; i++)
2378 *p++ = ']';
2379 *p = 0;
2380 return decode_mode_spec_buf;
2383 case '-':
2385 register char *p;
2386 register int i;
2388 if (maxwidth < sizeof (lots_of_dashes))
2389 return lots_of_dashes;
2390 else
2392 for (p = decode_mode_spec_buf, i = maxwidth; i > 0; i--)
2393 *p++ = '-';
2394 *p = '\0';
2396 return decode_mode_spec_buf;
2400 if (XTYPE (obj) == Lisp_String)
2401 return (char *) XSTRING (obj)->data;
2402 else
2403 return "";
2406 /* Count up to N lines starting from FROM.
2407 But don't go beyond LIMIT.
2408 Return the number of lines thus found (always positive).
2409 Store the position after what was found into *POS_PTR. */
2411 static int
2412 display_count_lines (from, limit, n, pos_ptr)
2413 int from, limit, n;
2414 int *pos_ptr;
2416 int oldbegv = BEGV;
2417 int oldzv = ZV;
2418 int shortage = 0;
2420 if (limit < from)
2421 BEGV = limit;
2422 else
2423 ZV = limit;
2425 *pos_ptr = scan_buffer ('\n', from, n, &shortage);
2427 ZV = oldzv;
2428 BEGV = oldbegv;
2430 if (n < 0)
2431 /* When scanning backwards, scan_buffer stops *after* the last newline
2432 it finds, but does count it. Compensate for that. */
2433 return - n - shortage - (*pos_ptr != limit);
2434 return n - shortage;
2437 /* Display STRING on one line of window W, starting at HPOS.
2438 Display at position VPOS. Caller should have done get_display_line.
2439 If VPOS == -1, display it as the current frame's title.
2441 TRUNCATE is GLYPH to display at end if truncated. Zero for none.
2443 MINCOL is the first column ok to end at. (Pad with spaces to this col.)
2444 MAXCOL is the last column ok to end at. Truncate here.
2445 -1 for MINCOL or MAXCOL means no explicit minimum or maximum.
2446 Both count from the left edge of the frame, as does HPOS.
2447 The right edge of W is an implicit maximum.
2448 If TRUNCATE is nonzero, the implicit maximum is one column before the edge.
2450 Returns ending hpos */
2452 static int
2453 display_string (w, vpos, string, hpos, truncate, mincol, maxcol)
2454 struct window *w;
2455 unsigned char *string;
2456 int vpos, hpos;
2457 GLYPH truncate;
2458 int mincol, maxcol;
2460 register int c;
2461 register GLYPH *p1;
2462 int hscroll = XINT (w->hscroll);
2463 int tab_width = XINT (XBUFFER (w->buffer)->tab_width);
2464 register GLYPH *start;
2465 register GLYPH *end;
2466 FRAME_PTR f = XFRAME (WINDOW_FRAME (w));
2467 struct frame_glyphs *desired_glyphs = FRAME_DESIRED_GLYPHS (f);
2468 GLYPH *p1start = desired_glyphs->glyphs[vpos] + hpos;
2469 int window_width = XFASTINT (w->width);
2471 /* Use the standard display table, not the window's display table.
2472 We don't want the mode line in rot13. */
2473 register struct Lisp_Vector *dp = 0;
2475 if (XTYPE (Vstandard_display_table) == Lisp_Vector
2476 && XVECTOR (Vstandard_display_table)->size == DISP_TABLE_SIZE)
2477 dp = XVECTOR (Vstandard_display_table);
2479 if (tab_width <= 0 || tab_width > 1000) tab_width = 8;
2481 p1 = p1start;
2482 start = desired_glyphs->glyphs[vpos] + XFASTINT (w->left);
2483 end = start + window_width - (truncate != 0);
2485 if ((window_width + XFASTINT (w->left)) != FRAME_WIDTH (f))
2487 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
2489 int i;
2491 for (i = 0; i < VERTICAL_SCROLL_BAR_WIDTH; i++)
2492 *end-- = ' ';
2494 else
2495 *end-- = '|';
2498 if (maxcol >= 0 && end - desired_glyphs->glyphs[vpos] > maxcol)
2499 end = desired_glyphs->glyphs[vpos] + maxcol;
2500 if (maxcol >= 0 && mincol > maxcol)
2501 mincol = maxcol;
2503 while (p1 < end)
2505 c = *string++;
2506 if (!c) break;
2507 if (c >= 040 && c < 0177
2508 && (dp == 0 || XTYPE (DISP_CHAR_VECTOR (dp, c)) != Lisp_Vector))
2510 if (p1 >= start)
2511 *p1 = c;
2512 p1++;
2514 else if (c == '\t')
2518 if (p1 >= start && p1 < end)
2519 *p1 = SPACEGLYPH;
2520 p1++;
2522 while ((p1 - start + hscroll - (hscroll > 0)) % tab_width);
2524 else if (dp != 0 && XTYPE (DISP_CHAR_VECTOR (dp, c)) == Lisp_Vector)
2525 p1 = copy_rope (p1, start, DISP_CHAR_VECTOR (dp, c));
2526 else if (c < 0200 && ! NILP (buffer_defaults.ctl_arrow))
2528 if (p1 >= start)
2529 *p1 = (dp && XTYPE (DISP_CTRL_GLYPH (dp)) == Lisp_Int
2530 ? XINT (DISP_CTRL_GLYPH (dp)) : '^');
2531 p1++;
2532 if (p1 >= start && p1 < end)
2533 *p1 = c ^ 0100;
2534 p1++;
2536 else
2538 if (p1 >= start)
2539 *p1 = (dp && XTYPE (DISP_ESCAPE_GLYPH (dp)) == Lisp_Int
2540 ? XINT (DISP_ESCAPE_GLYPH (dp)) : '\\');
2541 p1++;
2542 if (p1 >= start && p1 < end)
2543 *p1 = (c >> 6) + '0';
2544 p1++;
2545 if (p1 >= start && p1 < end)
2546 *p1 = (7 & (c >> 3)) + '0';
2547 p1++;
2548 if (p1 >= start && p1 < end)
2549 *p1 = (7 & c) + '0';
2550 p1++;
2554 if (c)
2556 p1 = end;
2557 if (truncate) *p1++ = truncate;
2559 else if (mincol >= 0)
2561 end = desired_glyphs->glyphs[vpos] + mincol;
2562 while (p1 < end)
2563 *p1++ = SPACEGLYPH;
2567 register int len = p1 - desired_glyphs->glyphs[vpos];
2569 if (len > desired_glyphs->used[vpos])
2570 desired_glyphs->used[vpos] = len;
2571 desired_glyphs->glyphs[vpos][desired_glyphs->used[vpos]] = 0;
2573 return len;
2577 void
2578 syms_of_xdisp ()
2580 staticpro (&last_arrow_position);
2581 staticpro (&last_arrow_string);
2582 last_arrow_position = Qnil;
2583 last_arrow_string = Qnil;
2585 DEFVAR_LISP ("global-mode-string", &Vglobal_mode_string,
2586 "String (or mode line construct) included (normally) in `mode-line-format'.");
2587 Vglobal_mode_string = Qnil;
2589 DEFVAR_LISP ("overlay-arrow-position", &Voverlay_arrow_position,
2590 "Marker for where to display an arrow on top of the buffer text.\n\
2591 This must be the beginning of a line in order to work.\n\
2592 See also `overlay-arrow-string'.");
2593 Voverlay_arrow_position = Qnil;
2595 DEFVAR_LISP ("overlay-arrow-string", &Voverlay_arrow_string,
2596 "String to display as an arrow. See also `overlay-arrow-position'.");
2597 Voverlay_arrow_string = Qnil;
2599 DEFVAR_INT ("scroll-step", &scroll_step,
2600 "*The number of lines to try scrolling a window by when point moves out.\n\
2601 If that fails to bring point back on frame, point is centered instead.\n\
2602 If this is zero, point is always centered after it moves off frame.");
2604 DEFVAR_INT ("debug-end-pos", &debug_end_pos, "Don't ask");
2606 DEFVAR_BOOL ("truncate-partial-width-windows",
2607 &truncate_partial_width_windows,
2608 "*Non-nil means truncate lines in all windows less than full frame wide.");
2609 truncate_partial_width_windows = 1;
2611 DEFVAR_BOOL ("mode-line-inverse-video", &mode_line_inverse_video,
2612 "*Non-nil means use inverse video for the mode line.");
2613 mode_line_inverse_video = 1;
2615 DEFVAR_INT ("line-number-display-limit", &line_number_display_limit,
2616 "*Maximum buffer size for which line number should be displayed.");
2617 line_number_display_limit = 1000000;
2620 /* initialize the window system */
2621 init_xdisp ()
2623 Lisp_Object root_window;
2624 #ifndef COMPILER_REGISTER_BUG
2625 register
2626 #endif /* COMPILER_REGISTER_BUG */
2627 struct window *mini_w;
2629 this_line_bufpos = 0;
2631 mini_w = XWINDOW (minibuf_window);
2632 root_window = FRAME_ROOT_WINDOW (XFRAME (WINDOW_FRAME (mini_w)));
2634 echo_area_glyphs = 0;
2635 previous_echo_glyphs = 0;
2637 if (!noninteractive)
2639 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (root_window)));
2640 XFASTINT (XWINDOW (root_window)->top) = 0;
2641 set_window_height (root_window, FRAME_HEIGHT (f) - 1, 0);
2642 XFASTINT (mini_w->top) = FRAME_HEIGHT (f) - 1;
2643 set_window_height (minibuf_window, 1, 0);
2645 XFASTINT (XWINDOW (root_window)->width) = FRAME_WIDTH (f);
2646 XFASTINT (mini_w->width) = FRAME_WIDTH (f);