]> code.delx.au - gnu-emacs/blob - src/xdisp.c
6f724c2c789b4584742eab9cc01b9e0ad1095515
[gnu-emacs] / src / xdisp.c
1 /* Display generation from window structure and buffer text.
2 Copyright (C) 1985, 86, 87, 88, 93, 94 Free Software Foundation, Inc.
3
4 This file is part of GNU Emacs.
5
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.
10
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.
15
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. */
19
20
21 #include <config.h>
22 #include <stdio.h>
23 /*#include <ctype.h>*/
24 #undef NULL
25 #include "lisp.h"
26 #include "frame.h"
27 #include "window.h"
28 #include "termchar.h"
29 #include "dispextern.h"
30 #include "buffer.h"
31 #include "indent.h"
32 #include "commands.h"
33 #include "macros.h"
34 #include "disptab.h"
35 #include "termhooks.h"
36 #include "intervals.h"
37
38 #ifdef USE_X_TOOLKIT
39 extern void set_frame_menubar ();
40 #endif
41
42 extern int interrupt_input;
43 extern int command_loop_level;
44
45 /* Nonzero means print newline before next minibuffer message. */
46
47 int noninteractive_need_newline;
48
49 #define min(a, b) ((a) < (b) ? (a) : (b))
50 #define max(a, b) ((a) > (b) ? (a) : (b))
51
52 /* The buffer position of the first character appearing
53 entirely or partially on the current frame line.
54 Or zero, which disables the optimization for the current frame line. */
55 static int this_line_bufpos;
56
57 /* Number of characters past the end of this line,
58 including the terminating newline */
59 static int this_line_endpos;
60
61 /* The vertical position of this frame line. */
62 static int this_line_vpos;
63
64 /* Hpos value for start of display on this frame line.
65 Usually zero, but negative if first character really began
66 on previous line */
67 static int this_line_start_hpos;
68
69 /* Buffer that this_line variables are describing. */
70 static struct buffer *this_line_buffer;
71
72 /* Set by try_window_id to the vpos of first of any lines
73 scrolled on to the bottom of the frame. These lines should
74 not be included in any general scroll computation. */
75 static int scroll_bottom_vpos;
76
77 /* Value of echo_area_glyphs when it was last acted on.
78 If this is nonzero, there is a message on the frame
79 in the minibuffer and it should be erased as soon
80 as it is no longer requested to appear. */
81 char *previous_echo_glyphs;
82
83 /* Nonzero means truncate lines in all windows less wide than the frame */
84 int truncate_partial_width_windows;
85
86 Lisp_Object Vglobal_mode_string;
87
88 /* Marker for where to display an arrow on top of the buffer text. */
89 Lisp_Object Voverlay_arrow_position;
90
91 /* String to display for the arrow. */
92 Lisp_Object Voverlay_arrow_string;
93
94 /* Values of those variables at last redisplay. */
95 static Lisp_Object last_arrow_position, last_arrow_string;
96
97 /* Nonzero if overlay arrow has been displayed once in this window. */
98 static int overlay_arrow_seen;
99
100 /* Nonzero means highlight the region even in nonselected windows. */
101 static int highlight_nonselected_windows;
102
103 /* If cursor motion alone moves point off frame,
104 Try scrolling this many lines up or down if that will bring it back. */
105 int scroll_step;
106
107 /* Nonzero if try_window_id has made blank lines at window bottom
108 since the last redisplay that paused */
109 static int blank_end_of_window;
110
111 /* Number of windows showing the buffer of the selected window.
112 keyboard.c refers to this. */
113 int buffer_shared;
114
115 /* display_text_line sets these to the frame position (origin 0) of point,
116 whether the window is selected or not.
117 Set one to -1 first to determine whether point was found afterwards. */
118
119 static int cursor_vpos;
120 static int cursor_hpos;
121
122 int debug_end_pos;
123
124 /* Nonzero means display mode line highlighted */
125 int mode_line_inverse_video;
126
127 static void echo_area_display ();
128 void mark_window_display_accurate ();
129 static void redisplay_windows ();
130 static void redisplay_window ();
131 static void update_menu_bars ();
132 static void update_menu_bar ();
133 static void try_window ();
134 static int try_window_id ();
135 static struct position *display_text_line ();
136 static void display_mode_line ();
137 static int display_mode_element ();
138 static char *fmodetrunc ();
139 static char *decode_mode_spec ();
140 static int display_string ();
141 static void display_menu_bar ();
142 static int display_count_lines ();
143
144 /* Prompt to display in front of the minibuffer contents */
145 char *minibuf_prompt;
146
147 /* Width in columns of current minibuffer prompt. */
148 int minibuf_prompt_width;
149
150 /* Message to display instead of minibuffer contents
151 This is what the functions error and message make,
152 and command echoing uses it as well.
153 It overrides the minibuf_prompt as well as the buffer. */
154 char *echo_area_glyphs;
155
156 /* This is the length of the message in echo_area_glyphs. */
157 int echo_area_glyphs_length;
158
159 /* true iff we should redraw the mode lines on the next redisplay */
160 int update_mode_lines;
161
162 /* Smallest number of characters before the gap
163 at any time since last redisplay that finished.
164 Valid for current buffer when try_window_id can be called. */
165 int beg_unchanged;
166
167 /* Smallest number of characters after the gap
168 at any time since last redisplay that finished.
169 Valid for current buffer when try_window_id can be called. */
170 int end_unchanged;
171
172 /* MODIFF as of last redisplay that finished;
173 if it matches MODIFF, beg_unchanged and end_unchanged
174 contain no useful information */
175 int unchanged_modified;
176
177 /* Nonzero if head_clip or tail_clip of current buffer has changed
178 since last redisplay that finished */
179 int clip_changed;
180
181 /* Nonzero if window sizes or contents have changed
182 since last redisplay that finished */
183 int windows_or_buffers_changed;
184
185 /* Nonzero after display_mode_line if %l was used
186 and it displayed a line number. */
187 int line_number_displayed;
188
189 /* Maximum buffer size for which to display line numbers. */
190 int line_number_display_limit;
191 \f
192 /* Display an echo area message M with a specified length of LEN chars.
193 The string may include null characters. If m is 0, clear out any
194 existing message, and let the minibuffer text show through.
195 Do not pass text that is stored in a Lisp string. */
196
197 void
198 message2 (m, len)
199 char *m;
200 int len;
201 {
202 if (noninteractive)
203 {
204 if (noninteractive_need_newline)
205 putc ('\n', stderr);
206 noninteractive_need_newline = 0;
207 fwrite (m, len, 1, stderr);
208 if (cursor_in_echo_area == 0)
209 fprintf (stderr, "\n");
210 fflush (stderr);
211 }
212 /* A null message buffer means that the frame hasn't really been
213 initialized yet. Error messages get reported properly by
214 cmd_error, so this must be just an informative message; toss it. */
215 else if (INTERACTIVE && FRAME_MESSAGE_BUF (selected_frame))
216 {
217 #ifdef MULTI_FRAME
218 Lisp_Object minibuf_frame;
219
220 choose_minibuf_frame ();
221 minibuf_frame = WINDOW_FRAME (XWINDOW (minibuf_window));
222 FRAME_SAMPLE_VISIBILITY (XFRAME (minibuf_frame));
223 if (FRAME_VISIBLE_P (selected_frame)
224 && ! FRAME_VISIBLE_P (XFRAME (minibuf_frame)))
225 Fmake_frame_visible (WINDOW_FRAME (XWINDOW (minibuf_window)));
226 #endif
227
228 if (m)
229 {
230 echo_area_glyphs = m;
231 echo_area_glyphs_length = len;
232 }
233 else
234 echo_area_glyphs = previous_echo_glyphs = 0;
235
236 do_pending_window_change ();
237 echo_area_display ();
238 update_frame (XFRAME (XWINDOW (minibuf_window)->frame), 1, 1);
239 do_pending_window_change ();
240 }
241 }
242
243 void
244 message1 (m)
245 char *m;
246 {
247 message2 (m, (m ? strlen (m) : 0));
248 }
249
250 /* Truncate what will be displayed in the echo area
251 the next time we display it--but don't redisplay it now. */
252
253 void
254 truncate_echo_area (len)
255 int len;
256 {
257 /* A null message buffer means that the frame hasn't really been
258 initialized yet. Error messages get reported properly by
259 cmd_error, so this must be just an informative message; toss it. */
260 if (!noninteractive && INTERACTIVE && FRAME_MESSAGE_BUF (selected_frame))
261 echo_area_glyphs_length = len;
262 }
263
264 /* Nonzero if FRAME_MESSAGE_BUF (selected_frame) is being used by print;
265 zero if being used by message. */
266 int message_buf_print;
267
268 /* Dump an informative message to the minibuf. If m is 0, clear out
269 any existing message, and let the minibuffer text show through. */
270 /* VARARGS 1 */
271 void
272 message (m, a1, a2, a3)
273 char *m;
274 {
275 if (noninteractive)
276 {
277 if (m)
278 {
279 if (noninteractive_need_newline)
280 putc ('\n', stderr);
281 noninteractive_need_newline = 0;
282 fprintf (stderr, m, a1, a2, a3);
283 if (cursor_in_echo_area == 0)
284 fprintf (stderr, "\n");
285 fflush (stderr);
286 }
287 }
288 else if (INTERACTIVE)
289 {
290 /* The frame whose minibuffer we're going to display the message on.
291 It may be larger than the selected frame, so we need
292 to use its buffer, not the selected frame's buffer. */
293 FRAME_PTR echo_frame;
294 #ifdef MULTI_FRAME
295 choose_minibuf_frame ();
296 echo_frame = XFRAME (WINDOW_FRAME (XWINDOW (minibuf_window)));
297 #else
298 echo_frame = selected_frame;
299 #endif
300
301 /* A null message buffer means that the frame hasn't really been
302 initialized yet. Error messages get reported properly by
303 cmd_error, so this must be just an informative message; toss it. */
304 if (FRAME_MESSAGE_BUF (echo_frame))
305 {
306 if (m)
307 {
308 int len;
309 #ifdef NO_ARG_ARRAY
310 int a[3];
311 a[0] = a1;
312 a[1] = a2;
313 a[2] = a3;
314
315 len = doprnt (FRAME_MESSAGE_BUF (echo_frame),
316 FRAME_WIDTH (echo_frame), m, 0, 3, a);
317 #else
318 len = doprnt (FRAME_MESSAGE_BUF (echo_frame),
319 FRAME_WIDTH (echo_frame), m, 0, 3, &a1);
320 #endif /* NO_ARG_ARRAY */
321
322 message2 (FRAME_MESSAGE_BUF (echo_frame), len);
323 }
324 else
325 message1 (0);
326
327 /* Print should start at the beginning of the message
328 buffer next time. */
329 message_buf_print = 0;
330 }
331 }
332 }
333
334 static void
335 echo_area_display ()
336 {
337 register int vpos;
338 FRAME_PTR f;
339
340 #ifdef MULTI_FRAME
341 choose_minibuf_frame ();
342 #endif
343
344 f = XFRAME (WINDOW_FRAME (XWINDOW (minibuf_window)));
345
346 if (! FRAME_VISIBLE_P (f))
347 return;
348
349 if (frame_garbaged)
350 {
351 redraw_garbaged_frames ();
352 frame_garbaged = 0;
353 }
354
355 if (echo_area_glyphs || minibuf_level == 0)
356 {
357 vpos = XFASTINT (XWINDOW (minibuf_window)->top);
358 get_display_line (f, vpos, 0);
359 display_string (XWINDOW (minibuf_window), vpos,
360 echo_area_glyphs ? echo_area_glyphs : "",
361 echo_area_glyphs ? echo_area_glyphs_length : -1,
362 0, 0, 0, 0, FRAME_WIDTH (f));
363
364 /* If desired cursor location is on this line, put it at end of text */
365 if (FRAME_CURSOR_Y (f) == vpos)
366 FRAME_CURSOR_X (f) = FRAME_DESIRED_GLYPHS (f)->used[vpos];
367
368 /* Fill the rest of the minibuffer window with blank lines. */
369 {
370 int i;
371
372 for (i = vpos + 1;
373 i < vpos + XFASTINT (XWINDOW (minibuf_window)->height); i++)
374 {
375 get_display_line (f, i, 0);
376 display_string (XWINDOW (minibuf_window), vpos,
377 "", 0, 0, 0, 0, 0, FRAME_WIDTH (f));
378 }
379 }
380 }
381 else if (!EQ (minibuf_window, selected_window))
382 windows_or_buffers_changed++;
383
384 if (EQ (minibuf_window, selected_window))
385 this_line_bufpos = 0;
386
387 previous_echo_glyphs = echo_area_glyphs;
388 }
389
390 #ifdef HAVE_X_WINDOWS
391 /* I'm trying this out because I saw Unimpress use it, but it's
392 possible that this may mess adversely with some window managers. -jla
393
394 Wouldn't it be nice to use something like mode-line-format to
395 describe frame titles? -JimB */
396
397 /* Change the title of the frame to the name of the buffer displayed
398 in the currently selected window. Don't do this for minibuffer frames,
399 and don't do it when there's only one non-minibuffer frame. */
400 static void
401 x_consider_frame_title (frame)
402 Lisp_Object frame;
403 {
404 FRAME_PTR f = XFRAME (frame);
405
406 if (FRAME_X_P (f) && ! FRAME_MINIBUF_ONLY_P (f))
407 {
408 Lisp_Object title;
409
410 title = Qnil;
411 if (! EQ (Fnext_frame (frame, Qnil), frame))
412 title = XBUFFER (XWINDOW (f->selected_window)->buffer)->name;
413
414 x_implicitly_set_name (f, title, Qnil);
415 }
416 }
417 #endif
418 \f
419 /* Prepare for redisplay by updating menu-bar item lists when appropriate.
420 This can't be done in `redisplay' itself because it can call eval. */
421
422 void
423 prepare_menu_bars ()
424 {
425 register struct window *w = XWINDOW (selected_window);
426 int all_windows;
427
428 if (noninteractive)
429 return;
430
431 /* Set the visible flags for all frames.
432 Do this before checking for resized or garbaged frames; they want
433 to know if their frames are visible.
434 See the comment in frame.h for FRAME_SAMPLE_VISIBILITY. */
435 {
436 Lisp_Object tail, frame;
437
438 FOR_EACH_FRAME (tail, frame)
439 FRAME_SAMPLE_VISIBILITY (XFRAME (frame));
440 }
441
442 /* Notice any pending interrupt request to change frame size. */
443 do_pending_window_change ();
444
445 if (frame_garbaged)
446 {
447 redraw_garbaged_frames ();
448 frame_garbaged = 0;
449 }
450
451 if (clip_changed || windows_or_buffers_changed)
452 update_mode_lines++;
453
454 /* Detect case that we need to write a star in the mode line. */
455 if (XFASTINT (w->last_modified) < MODIFF
456 && XFASTINT (w->last_modified) <= current_buffer->save_modified)
457 {
458 w->update_mode_line = Qt;
459 if (buffer_shared > 1)
460 update_mode_lines++;
461 }
462
463 all_windows = update_mode_lines || buffer_shared > 1;
464
465 /* If specs for an arrow have changed, do thorough redisplay
466 to ensure we remove any arrow that should no longer exist. */
467 if (! EQ (Voverlay_arrow_position, last_arrow_position)
468 || ! EQ (Voverlay_arrow_string, last_arrow_string))
469 all_windows = 1, clip_changed = 1;
470
471 /* Update the menu bar item lists, if appropriate.
472 This has to be done before any actual redisplay
473 or generation of display lines. */
474 if (all_windows)
475 {
476 Lisp_Object tail, frame;
477
478 FOR_EACH_FRAME (tail, frame)
479 {
480 FRAME_PTR f = XFRAME (frame);
481
482 if (FRAME_VISIBLE_P (f))
483 update_menu_bars (FRAME_ROOT_WINDOW (f));
484 }
485 }
486 else if (FRAME_VISIBLE_P (selected_frame))
487 update_menu_bar (selected_window);
488 }
489 \f
490 /* Do a frame update, taking possible shortcuts into account.
491 This is the main external entry point for redisplay.
492
493 If the last redisplay displayed an echo area message and that
494 message is no longer requested, we clear the echo area
495 or bring back the minibuffer if that is in use.
496
497 Do not call eval from within this function.
498 Calls to eval after the call to echo_area_display would confuse
499 the display_line mechanism and would cause a crash.
500 Calls to eval before that point will work most of the time,
501 but can still lose, because this function
502 can be called from signal handlers; with alarms set up;
503 or with synchronous processes running.
504
505 See Fcall_process; if you called it from here, it could be
506 entered recursively. */
507
508 void
509 redisplay ()
510 {
511 register struct window *w = XWINDOW (selected_window);
512 register int pause;
513 int must_finish = 0;
514 int all_windows;
515 register int tlbufpos, tlendpos;
516 struct position pos;
517 extern int input_pending;
518
519 if (noninteractive)
520 return;
521
522 /* Set the visible flags for all frames.
523 Do this before checking for resized or garbaged frames; they want
524 to know if their frames are visible.
525 See the comment in frame.h for FRAME_SAMPLE_VISIBILITY. */
526 {
527 Lisp_Object tail, frame;
528
529 FOR_EACH_FRAME (tail, frame)
530 FRAME_SAMPLE_VISIBILITY (XFRAME (frame));
531 }
532
533 /* Notice any pending interrupt request to change frame size. */
534 do_pending_window_change ();
535
536 if (frame_garbaged)
537 {
538 redraw_garbaged_frames ();
539 frame_garbaged = 0;
540 }
541
542 if (clip_changed || windows_or_buffers_changed)
543 update_mode_lines++;
544
545 /* Detect case that we need to write a star in the mode line. */
546 if (XFASTINT (w->last_modified) < MODIFF
547 && XFASTINT (w->last_modified) <= current_buffer->save_modified)
548 {
549 w->update_mode_line = Qt;
550 if (buffer_shared > 1)
551 update_mode_lines++;
552 }
553
554 FRAME_SCROLL_BOTTOM_VPOS (XFRAME (w->frame)) = -1;
555
556 all_windows = update_mode_lines || buffer_shared > 1;
557
558 /* If specs for an arrow have changed, do thorough redisplay
559 to ensure we remove any arrow that should no longer exist. */
560 if (! EQ (Voverlay_arrow_position, last_arrow_position)
561 || ! EQ (Voverlay_arrow_string, last_arrow_string))
562 all_windows = 1, clip_changed = 1;
563
564 /* Normally the message* functions will have already displayed and
565 updated the echo area, but the frame may have been trashed, or
566 the update may have been preempted, so display the echo area
567 again here. */
568 if (echo_area_glyphs || previous_echo_glyphs)
569 {
570 echo_area_display ();
571 must_finish = 1;
572 }
573
574 /* If showing region, and mark has changed, must redisplay whole window. */
575 if (((!NILP (Vtransient_mark_mode)
576 && !NILP (XBUFFER (w->buffer)->mark_active))
577 != !NILP (w->region_showing))
578 || (!NILP (w->region_showing)
579 && !EQ (w->region_showing,
580 Fmarker_position (XBUFFER (w->buffer)->mark))))
581 this_line_bufpos = -1;
582
583 tlbufpos = this_line_bufpos;
584 tlendpos = this_line_endpos;
585 if (!all_windows && tlbufpos > 0 && NILP (w->update_mode_line)
586 && FRAME_VISIBLE_P (XFRAME (w->frame))
587 /* Make sure recorded data applies to current buffer, etc */
588 && this_line_buffer == current_buffer
589 && current_buffer == XBUFFER (w->buffer)
590 && NILP (w->force_start)
591 /* Point must be on the line that we have info recorded about */
592 && point >= tlbufpos
593 && point <= Z - tlendpos
594 /* All text outside that line, including its final newline,
595 must be unchanged */
596 && (XFASTINT (w->last_modified) >= MODIFF
597 || (beg_unchanged >= tlbufpos - 1
598 && GPT >= tlbufpos
599 /* If selective display, can't optimize
600 if the changes start at the beginning of the line. */
601 && ((XTYPE (current_buffer->selective_display) == Lisp_Int
602 && XINT (current_buffer->selective_display) > 0
603 ? (beg_unchanged >= tlbufpos
604 && GPT > tlbufpos)
605 : 1))
606 && end_unchanged >= tlendpos
607 && Z - GPT >= tlendpos)))
608 {
609 if (tlbufpos > BEGV && FETCH_CHAR (tlbufpos - 1) != '\n'
610 && (tlbufpos == ZV
611 || FETCH_CHAR (tlbufpos) == '\n'))
612 /* Former continuation line has disappeared by becoming empty */
613 goto cancel;
614 else if (XFASTINT (w->last_modified) < MODIFF
615 || MINI_WINDOW_P (w))
616 {
617 cursor_vpos = -1;
618 overlay_arrow_seen = 0;
619 display_text_line (w, tlbufpos, this_line_vpos, this_line_start_hpos,
620 pos_tab_offset (w, tlbufpos));
621 /* If line contains point, is not continued,
622 and ends at same distance from eob as before, we win */
623 if (cursor_vpos >= 0 && this_line_bufpos
624 && this_line_endpos == tlendpos)
625 {
626 if (XFASTINT (w->width) != FRAME_WIDTH (XFRAME (WINDOW_FRAME (w))))
627 preserve_other_columns (w);
628 goto update;
629 }
630 else
631 goto cancel;
632 }
633 else if (point == XFASTINT (w->last_point))
634 {
635 if (!must_finish)
636 {
637 do_pending_window_change ();
638 return;
639 }
640 goto update;
641 }
642 /* If highlighting the region, we can't just move the cursor. */
643 else if (! (!NILP (Vtransient_mark_mode)
644 && !NILP (current_buffer->mark_active))
645 && NILP (w->region_showing))
646 {
647 pos = *compute_motion (tlbufpos, 0,
648 XINT (w->hscroll) ? 1 - XINT (w->hscroll) : 0,
649 point, 2, - (1 << (SHORTBITS - 1)),
650 window_internal_width (w) - 1,
651 XINT (w->hscroll),
652 pos_tab_offset (w, tlbufpos));
653 if (pos.vpos < 1)
654 {
655 FRAME_CURSOR_X (selected_frame)
656 = XFASTINT (w->left) + max (pos.hpos, 0);
657 FRAME_CURSOR_Y (selected_frame) = this_line_vpos;
658 goto update;
659 }
660 else
661 goto cancel;
662 }
663 cancel:
664 /* Text changed drastically or point moved off of line */
665 cancel_line (this_line_vpos, selected_frame);
666 }
667
668 this_line_bufpos = 0;
669 all_windows |= buffer_shared > 1;
670
671 if (all_windows)
672 {
673 Lisp_Object tail, frame;
674
675 #ifdef HAVE_X_WINDOWS
676 /* Since we're doing a thorough redisplay, we might as well
677 recompute all our display faces. */
678 clear_face_vector ();
679 #endif
680
681 /* Recompute # windows showing selected buffer.
682 This will be incremented each time such a window is displayed. */
683 buffer_shared = 0;
684
685 FOR_EACH_FRAME (tail, frame)
686 {
687 FRAME_PTR f = XFRAME (frame);
688
689 /* Mark all the scroll bars to be removed; we'll redeem the ones
690 we want when we redisplay their windows. */
691 if (condemn_scroll_bars_hook)
692 (*condemn_scroll_bars_hook) (f);
693
694 if (FRAME_VISIBLE_P (f))
695 redisplay_windows (FRAME_ROOT_WINDOW (f));
696 #ifdef HAVE_X_WINDOWS
697 else if (FRAME_ICONIFIED_P (f)
698 && ! MINI_WINDOW_P (XWINDOW (f->selected_window)))
699 x_consider_frame_title (frame);
700 #endif
701
702 /* Any scroll bars which redisplay_windows should have nuked
703 should now go away. */
704 if (judge_scroll_bars_hook)
705 (*judge_scroll_bars_hook) (f);
706 }
707 }
708 else if (FRAME_VISIBLE_P (selected_frame))
709 {
710 redisplay_window (selected_window, 1);
711 if (XFASTINT (w->width) != FRAME_WIDTH (selected_frame))
712 preserve_other_columns (w);
713 }
714
715 update:
716 /* Prevent various kinds of signals during display update.
717 stdio is not robust about handling signals,
718 which can cause an apparent I/O error. */
719 if (interrupt_input)
720 unrequest_sigio ();
721 stop_polling ();
722
723 #ifdef MULTI_FRAME
724 if (all_windows)
725 {
726 Lisp_Object tail;
727
728 pause = 0;
729
730 for (tail = Vframe_list; CONSP (tail); tail = XCONS (tail)->cdr)
731 {
732 FRAME_PTR f;
733
734 if (XTYPE (XCONS (tail)->car) != Lisp_Frame)
735 continue;
736
737 f = XFRAME (XCONS (tail)->car);
738 if (FRAME_VISIBLE_P (f))
739 {
740 pause |= update_frame (f, 0, 0);
741 if (!pause)
742 mark_window_display_accurate (f->root_window, 1);
743 }
744 }
745 }
746 else
747 #endif /* MULTI_FRAME */
748 {
749 if (FRAME_VISIBLE_P (selected_frame))
750 pause = update_frame (selected_frame, 0, 0);
751
752 /* We may have called echo_area_display at the top of this
753 function. If the echo area is on another frame, that may
754 have put text on a frame other than the selected one, so the
755 above call to update_frame would not have caught it. Catch
756 it here. */
757 {
758 FRAME_PTR mini_frame =
759 XFRAME (WINDOW_FRAME (XWINDOW (minibuf_window)));
760
761 if (mini_frame != selected_frame)
762 pause |= update_frame (mini_frame, 0, 0);
763 }
764 }
765
766 /* If frame does not match, prevent doing single-line-update next time.
767 Also, don't forget to check every line to update the arrow. */
768 if (pause)
769 {
770 this_line_bufpos = 0;
771 if (!NILP (last_arrow_position))
772 {
773 last_arrow_position = Qt;
774 last_arrow_string = Qt;
775 }
776 /* If we pause after scrolling, some lines in current_frame
777 may be null, so preserve_other_columns won't be able to
778 preserve all the vertical-bar separators. So, avoid using it
779 in that case. */
780 if (XFASTINT (w->width) != FRAME_WIDTH (selected_frame))
781 update_mode_lines = 1;
782 }
783
784 /* Now text on frame agrees with windows, so
785 put info into the windows for partial redisplay to follow */
786
787 if (!pause)
788 {
789 register struct buffer *b = XBUFFER (w->buffer);
790
791 blank_end_of_window = 0;
792 clip_changed = 0;
793 unchanged_modified = BUF_MODIFF (b);
794 beg_unchanged = BUF_GPT (b) - BUF_BEG (b);
795 end_unchanged = BUF_Z (b) - BUF_GPT (b);
796
797 XFASTINT (w->last_point) = BUF_PT (b);
798 XFASTINT (w->last_point_x) = FRAME_CURSOR_X (selected_frame);
799 XFASTINT (w->last_point_y) = FRAME_CURSOR_Y (selected_frame);
800
801 if (all_windows)
802 mark_window_display_accurate (FRAME_ROOT_WINDOW (selected_frame), 1);
803 else
804 {
805 w->update_mode_line = Qnil;
806 XFASTINT (w->last_modified) = BUF_MODIFF (b);
807 w->window_end_valid = Qt;
808 last_arrow_position = Voverlay_arrow_position;
809 last_arrow_string = Voverlay_arrow_string;
810 }
811 update_mode_lines = 0;
812 windows_or_buffers_changed = 0;
813 }
814
815 /* Start SIGIO interrupts coming again.
816 Having them off during the code above
817 makes it less likely one will discard output,
818 but not impossible, since there might be stuff
819 in the system buffer here.
820 But it is much hairier to try to do anything about that. */
821
822 if (interrupt_input)
823 request_sigio ();
824 start_polling ();
825
826 /* Change frame size now if a change is pending. */
827 do_pending_window_change ();
828 }
829
830 /* Redisplay, but leave alone any recent echo area message
831 unless another message has been requested in its place.
832
833 This is useful in situations where you need to redisplay but no
834 user action has occurred, making it inappropriate for the message
835 area to be cleared. See tracking_off and
836 wait_reading_process_input for examples of these situations. */
837
838 redisplay_preserve_echo_area ()
839 {
840 if (echo_area_glyphs == 0 && previous_echo_glyphs != 0)
841 {
842 echo_area_glyphs = previous_echo_glyphs;
843 redisplay ();
844 echo_area_glyphs = 0;
845 }
846 else
847 redisplay ();
848 }
849
850 void
851 mark_window_display_accurate (window, flag)
852 Lisp_Object window;
853 int flag;
854 {
855 register struct window *w;
856
857 for (;!NILP (window); window = w->next)
858 {
859 if (XTYPE (window) != Lisp_Window) abort ();
860 w = XWINDOW (window);
861
862 if (!NILP (w->buffer))
863 {
864 XFASTINT (w->last_modified)
865 = !flag ? 0
866 : XBUFFER (w->buffer) == current_buffer
867 ? MODIFF : BUF_MODIFF (XBUFFER (w->buffer));
868
869 /* Record if we are showing a region, so can make sure to
870 update it fully at next redisplay. */
871 w->region_showing = (!NILP (Vtransient_mark_mode)
872 && !NILP (XBUFFER (w->buffer)->mark_active)
873 ? Fmarker_position (XBUFFER (w->buffer)->mark)
874 : Qnil);
875 }
876
877 w->window_end_valid = Qt;
878 w->update_mode_line = Qnil;
879
880 if (!NILP (w->vchild))
881 mark_window_display_accurate (w->vchild, flag);
882 if (!NILP (w->hchild))
883 mark_window_display_accurate (w->hchild, flag);
884 }
885
886 if (flag)
887 {
888 last_arrow_position = Voverlay_arrow_position;
889 last_arrow_string = Voverlay_arrow_string;
890 }
891 else
892 {
893 /* t is unequal to any useful value of Voverlay_arrow_... */
894 last_arrow_position = Qt;
895 last_arrow_string = Qt;
896 }
897 }
898 \f
899 /* Update the menu bar item lists for WINDOW
900 and its subwindows and siblings.
901 This has to be done before we start to fill in any display lines,
902 because it can call eval. */
903
904 static void
905 update_menu_bars (window)
906 Lisp_Object window;
907 {
908 for (; !NILP (window); window = XWINDOW (window)->next)
909 update_menu_bar (window);
910 }
911
912 /* Update the menu bar item list for window WINDOW and its subwindows. */
913
914 static void
915 update_menu_bar (window)
916 Lisp_Object window;
917 {
918 register struct window *w = XWINDOW (window);
919 struct buffer *old = current_buffer;
920 FRAME_PTR f = XFRAME (WINDOW_FRAME (w));
921
922 /* If this is a combination window, do its children; that's all. */
923
924 if (!NILP (w->vchild))
925 {
926 update_menu_bars (w->vchild);
927 return;
928 }
929 if (!NILP (w->hchild))
930 {
931 update_menu_bars (w->hchild);
932 return;
933 }
934 if (NILP (w->buffer))
935 abort ();
936
937 if (update_mode_lines)
938 w->update_mode_line = Qt;
939
940 /* When we reach a frame's selected window, redo the frame's menu bar. */
941 if (!NILP (w->update_mode_line)
942 #ifdef USE_X_TOOLKIT
943 && FRAME_EXTERNAL_MENU_BAR (f)
944 #else
945 && FRAME_MENU_BAR_LINES (f) > 0
946 #endif
947 && EQ (FRAME_SELECTED_WINDOW (f), window))
948 {
949 /* If the user has switched buffers or windows, we need to
950 recompute to reflect the new bindings. But we'll
951 recompute when update_mode_lines is set too; that means
952 that people can use force-mode-line-update to request
953 that the menu bar be recomputed. The adverse effect on
954 the rest of the redisplay algorithm is about the same as
955 windows_or_buffers_changed anyway. */
956 if (windows_or_buffers_changed
957 || update_mode_lines
958 || (XFASTINT (w->last_modified) < MODIFF
959 && (XFASTINT (w->last_modified)
960 <= XBUFFER (w->buffer)->save_modified)))
961 {
962 struct buffer *prev = current_buffer;
963 current_buffer = XBUFFER (w->buffer);
964 FRAME_MENU_BAR_ITEMS (f) = menu_bar_items (FRAME_MENU_BAR_ITEMS (f));
965 current_buffer = prev;
966 #ifdef USE_X_TOOLKIT
967 set_frame_menubar (f);
968 #endif /* USE_X_TOOLKIT */
969 }
970 }
971 }
972 \f
973 int do_id = 1;
974
975 /* Redisplay WINDOW and its subwindows and siblings. */
976
977 static void
978 redisplay_windows (window)
979 Lisp_Object window;
980 {
981 for (; !NILP (window); window = XWINDOW (window)->next)
982 redisplay_window (window, 0);
983 }
984
985 /* Redisplay window WINDOW and its subwindows. */
986
987 static void
988 redisplay_window (window, just_this_one)
989 Lisp_Object window;
990 int just_this_one;
991 {
992 register struct window *w = XWINDOW (window);
993 FRAME_PTR f = XFRAME (WINDOW_FRAME (w));
994 int height;
995 register int lpoint = point;
996 struct buffer *old = current_buffer;
997 register int width = window_internal_width (w) - 1;
998 register int startp;
999 register int hscroll = XINT (w->hscroll);
1000 struct position pos;
1001 int opoint = point;
1002 int tem;
1003 int window_needs_modeline;
1004
1005 if (FRAME_HEIGHT (f) == 0) abort (); /* Some bug zeros some core */
1006
1007 /* If this is a combination window, do its children; that's all. */
1008
1009 if (!NILP (w->vchild))
1010 {
1011 redisplay_windows (w->vchild);
1012 return;
1013 }
1014 if (!NILP (w->hchild))
1015 {
1016 redisplay_windows (w->hchild);
1017 return;
1018 }
1019 if (NILP (w->buffer))
1020 abort ();
1021
1022 height = window_internal_height (w);
1023
1024 if (MINI_WINDOW_P (w))
1025 {
1026 if (w == XWINDOW (minibuf_window))
1027 {
1028 if (echo_area_glyphs)
1029 /* We've already displayed the echo area glyphs, if any. */
1030 goto finish_scroll_bars;
1031 }
1032 else
1033 {
1034 /* This is a minibuffer, but it's not the currently active one, so
1035 clear it. */
1036 int vpos = XFASTINT (XWINDOW (FRAME_MINIBUF_WINDOW (f))->top);
1037 int i;
1038
1039 for (i = 0; i < height; i++)
1040 {
1041 get_display_line (f, vpos + i, 0);
1042 display_string (w, vpos + i, "", 0, 0, 0, 1, 0, width);
1043 }
1044
1045 goto finish_scroll_bars;
1046 }
1047 }
1048
1049 if (update_mode_lines)
1050 w->update_mode_line = Qt;
1051
1052 /* Otherwise set up data on this window; select its buffer and point value */
1053
1054 current_buffer = XBUFFER (w->buffer);
1055 opoint = point;
1056
1057 /* Count number of windows showing the selected buffer. */
1058
1059 if (!just_this_one
1060 && current_buffer == XBUFFER (XWINDOW (selected_window)->buffer))
1061 buffer_shared++;
1062
1063 /* POINT refers normally to the selected window.
1064 For any other window, set up appropriate value. */
1065
1066 if (!EQ (window, selected_window))
1067 {
1068 SET_PT (marker_position (w->pointm));
1069 if (point < BEGV)
1070 {
1071 SET_PT (BEGV);
1072 Fset_marker (w->pointm, make_number (point), Qnil);
1073 }
1074 else if (point > (ZV - 1))
1075 {
1076 SET_PT (ZV);
1077 Fset_marker (w->pointm, make_number (point), Qnil);
1078 }
1079 }
1080
1081 /* If window-start is screwed up, choose a new one. */
1082 if (XMARKER (w->start)->buffer != current_buffer)
1083 goto recenter;
1084
1085 startp = marker_position (w->start);
1086
1087 /* Handle case where place to start displaying has been specified,
1088 unless the specified location is outside the accessible range. */
1089 if (!NILP (w->force_start))
1090 {
1091 /* Forget any recorded base line for line number display. */
1092 w->base_line_number = Qnil;
1093 w->update_mode_line = Qt;
1094 w->force_start = Qnil;
1095 XFASTINT (w->last_modified) = 0;
1096 if (startp < BEGV) startp = BEGV;
1097 if (startp > ZV) startp = ZV;
1098 try_window (window, startp);
1099 if (cursor_vpos < 0)
1100 {
1101 /* ??? What should happen here if highlighting a region? */
1102 /* If point does not appear, move point so it does appear */
1103 pos = *compute_motion (startp, 0,
1104 ((EQ (window, minibuf_window) && startp == 1)
1105 ? minibuf_prompt_width : 0)
1106 +
1107 (hscroll ? 1 - hscroll : 0),
1108 ZV, height / 2,
1109 - (1 << (SHORTBITS - 1)),
1110 width, hscroll, pos_tab_offset (w, startp));
1111 SET_PT (pos.bufpos);
1112 if (w != XWINDOW (selected_window))
1113 Fset_marker (w->pointm, make_number (point), Qnil);
1114 else
1115 {
1116 if (current_buffer == old)
1117 lpoint = point;
1118 FRAME_CURSOR_X (f) = max (0, pos.hpos) + XFASTINT (w->left);
1119 FRAME_CURSOR_Y (f) = pos.vpos + XFASTINT (w->top);
1120 }
1121 }
1122 goto done;
1123 }
1124
1125 /* Handle case where text has not changed, only point,
1126 and it has not moved off the frame */
1127
1128 /* This code is not used for minibuffer for the sake of
1129 the case of redisplaying to replace an echo area message;
1130 since in that case the minibuffer contents per se are usually unchanged.
1131 This code is of no real use in the minibuffer since
1132 the handling of this_line_bufpos, etc.,
1133 in redisplay handles the same cases. */
1134
1135 if (XFASTINT (w->last_modified) >= MODIFF
1136 && point >= startp && !clip_changed
1137 && (just_this_one || XFASTINT (w->width) == FRAME_WIDTH (f))
1138 /* Can't use this case if highlighting a region. */
1139 && !(!NILP (Vtransient_mark_mode) && !NILP (current_buffer->mark_active))
1140 && NILP (w->region_showing)
1141 && !EQ (window, minibuf_window))
1142 {
1143 pos = *compute_motion (startp, 0, (hscroll ? 1 - hscroll : 0),
1144 point, height + 1, 10000, width, hscroll,
1145 pos_tab_offset (w, startp));
1146
1147 if (pos.vpos < height)
1148 {
1149 /* Ok, point is still on frame */
1150 if (w == XWINDOW (FRAME_SELECTED_WINDOW (f)))
1151 {
1152 /* These variables are supposed to be origin 1 */
1153 FRAME_CURSOR_X (f) = max (0, pos.hpos) + XFASTINT (w->left);
1154 FRAME_CURSOR_Y (f) = pos.vpos + XFASTINT (w->top);
1155 }
1156 /* This doesn't do the trick, because if a window to the right of
1157 this one must be redisplayed, this does nothing because there
1158 is nothing in DesiredFrame yet, and then the other window is
1159 redisplayed, making likes that are empty in this window's columns.
1160 if (XFASTINT (w->width) != FRAME_WIDTH (f))
1161 preserve_my_columns (w);
1162 */
1163 goto done;
1164 }
1165 /* Don't bother trying redisplay with same start;
1166 we already know it will lose */
1167 }
1168 /* If current starting point was originally the beginning of a line
1169 but no longer is, find a new starting point. */
1170 else if (!NILP (w->start_at_line_beg)
1171 && !(startp == BEGV
1172 || FETCH_CHAR (startp - 1) == '\n'))
1173 {
1174 goto recenter;
1175 }
1176 else if (just_this_one && !MINI_WINDOW_P (w)
1177 && point >= startp
1178 && XFASTINT (w->last_modified)
1179 /* or else vmotion on first line won't work. */
1180 && ! NILP (w->start_at_line_beg)
1181 && ! EQ (w->window_end_valid, Qnil)
1182 && do_id && !clip_changed
1183 && !blank_end_of_window
1184 && XFASTINT (w->width) == FRAME_WIDTH (f)
1185 /* Can't use this case if highlighting a region. */
1186 && !(!NILP (Vtransient_mark_mode)
1187 && !NILP (current_buffer->mark_active))
1188 && NILP (w->region_showing)
1189 && EQ (last_arrow_position, Voverlay_arrow_position)
1190 && EQ (last_arrow_string, Voverlay_arrow_string)
1191 && (tem = try_window_id (FRAME_SELECTED_WINDOW (f)))
1192 && tem != -2)
1193 {
1194 /* tem > 0 means success. tem == -1 means choose new start.
1195 tem == -2 means try again with same start,
1196 and nothing but whitespace follows the changed stuff.
1197 tem == 0 means try again with same start. */
1198 if (tem > 0)
1199 goto done;
1200 }
1201 else if (startp >= BEGV && startp <= ZV
1202 /* Avoid starting display at end of buffer! */
1203 && (startp < ZV || startp == BEGV
1204 || (XFASTINT (w->last_modified) >= MODIFF)))
1205 {
1206 /* Try to redisplay starting at same place as before */
1207 /* If point has not moved off frame, accept the results */
1208 try_window (window, startp);
1209 if (cursor_vpos >= 0)
1210 {
1211 if (!just_this_one || clip_changed || beg_unchanged < startp)
1212 /* Forget any recorded base line for line number display. */
1213 w->base_line_number = Qnil;
1214 goto done;
1215 }
1216 else
1217 cancel_my_columns (w);
1218 }
1219
1220 XFASTINT (w->last_modified) = 0;
1221 w->update_mode_line = Qt;
1222
1223 /* Try to scroll by specified few lines */
1224
1225 if (scroll_step && !clip_changed)
1226 {
1227 if (point > startp)
1228 {
1229 pos = *vmotion (Z - XFASTINT (w->window_end_pos),
1230 scroll_step, width, hscroll, window);
1231 if (pos.vpos >= height)
1232 goto scroll_fail;
1233 }
1234
1235 pos = *vmotion (startp, point < startp ? - scroll_step : scroll_step,
1236 width, hscroll, window);
1237
1238 if (point >= pos.bufpos)
1239 {
1240 try_window (window, pos.bufpos);
1241 if (cursor_vpos >= 0)
1242 {
1243 if (!just_this_one || clip_changed || beg_unchanged < startp)
1244 /* Forget any recorded base line for line number display. */
1245 w->base_line_number = Qnil;
1246 goto done;
1247 }
1248 else
1249 cancel_my_columns (w);
1250 }
1251 scroll_fail: ;
1252 }
1253
1254 /* Finally, just choose place to start which centers point */
1255
1256 recenter:
1257 /* Forget any previously recorded base line for line number display. */
1258 w->base_line_number = Qnil;
1259
1260 pos = *vmotion (point, - (height / 2), width, hscroll, window);
1261 try_window (window, pos.bufpos);
1262
1263 startp = marker_position (w->start);
1264 w->start_at_line_beg =
1265 (startp == BEGV || FETCH_CHAR (startp - 1) == '\n') ? Qt : Qnil;
1266
1267 done:
1268 if ((!NILP (w->update_mode_line)
1269 /* If window not full width, must redo its mode line
1270 if the window to its side is being redone */
1271 || (!just_this_one && width < FRAME_WIDTH (f) - 1)
1272 || INTEGERP (w->base_line_pos))
1273 && height != XFASTINT (w->height))
1274 display_mode_line (w);
1275 if (! line_number_displayed
1276 && ! BUFFERP (w->base_line_pos))
1277 {
1278 w->base_line_pos = Qnil;
1279 w->base_line_number = Qnil;
1280 }
1281
1282 /* When we reach a frame's selected window, redo the frame's menu bar. */
1283 if (!NILP (w->update_mode_line)
1284 #ifdef USE_X_TOOLKIT
1285 && FRAME_EXTERNAL_MENU_BAR (f)
1286 #else
1287 && FRAME_MENU_BAR_LINES (f) > 0
1288 #endif
1289 && EQ (FRAME_SELECTED_WINDOW (f), window))
1290 display_menu_bar (w);
1291
1292 finish_scroll_bars:
1293 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
1294 {
1295 int start, end, whole;
1296
1297 /* Calculate the start and end positions for the current window.
1298 At some point, it would be nice to choose between scrollbars
1299 which reflect the whole buffer size, with special markers
1300 indicating narrowing, and scrollbars which reflect only the
1301 visible region.
1302
1303 Note that minibuffers sometimes aren't displaying any text. */
1304 if (! MINI_WINDOW_P (w)
1305 || (w == XWINDOW (minibuf_window) && ! echo_area_glyphs))
1306 {
1307 whole = ZV - BEGV;
1308 start = startp - BEGV;
1309 /* I don't think this is guaranteed to be right. For the
1310 moment, we'll pretend it is. */
1311 end = (Z - XINT (w->window_end_pos)) - BEGV;
1312
1313 if (end < start) end = start;
1314 if (whole < (end - start)) whole = end - start;
1315 }
1316 else
1317 start = end = whole = 0;
1318
1319 /* Indicate what this scroll bar ought to be displaying now. */
1320 (*set_vertical_scroll_bar_hook) (w, end - start, whole, start);
1321
1322 /* Note that we actually used the scroll bar attached to this window,
1323 so it shouldn't be deleted at the end of redisplay. */
1324 (*redeem_scroll_bar_hook) (w);
1325 }
1326
1327 SET_PT (opoint);
1328 current_buffer = old;
1329 SET_PT (lpoint);
1330 }
1331 \f
1332 /* Do full redisplay on one window, starting at position `pos'. */
1333
1334 static void
1335 try_window (window, pos)
1336 Lisp_Object window;
1337 register int pos;
1338 {
1339 register struct window *w = XWINDOW (window);
1340 register int height = window_internal_height (w);
1341 register int vpos = XFASTINT (w->top);
1342 register int last_text_vpos = vpos;
1343 int tab_offset = pos_tab_offset (w, pos);
1344 FRAME_PTR f = XFRAME (w->frame);
1345 int width = window_internal_width (w) - 1;
1346 struct position val;
1347
1348 Fset_marker (w->start, make_number (pos), Qnil);
1349 cursor_vpos = -1;
1350 overlay_arrow_seen = 0;
1351 val.hpos = XINT (w->hscroll) ? 1 - XINT (w->hscroll) : 0;
1352
1353 while (--height >= 0)
1354 {
1355 val = *display_text_line (w, pos, vpos, val.hpos, tab_offset);
1356 tab_offset += width;
1357 if (val.vpos) tab_offset = 0;
1358 vpos++;
1359 if (pos != val.bufpos)
1360 last_text_vpos
1361 /* Next line, unless prev line ended in end of buffer with no cr */
1362 = vpos - (val.vpos && (FETCH_CHAR (val.bufpos - 1) != '\n'
1363 #ifdef USE_TEXT_PROPERTIES
1364 || ! NILP (Fget_char_property (val.bufpos-1,
1365 Qinvisible,
1366 window))
1367 #endif
1368 ));
1369 pos = val.bufpos;
1370 }
1371
1372 /* If last line is continued in middle of character,
1373 include the split character in the text considered on the frame */
1374 if (val.hpos < (XINT (w->hscroll) ? 1 - XINT (w->hscroll) : 0))
1375 pos++;
1376
1377 /* If bottom just moved off end of frame, change mode line percentage. */
1378 if (XFASTINT (w->window_end_pos) == 0
1379 && Z != pos)
1380 w->update_mode_line = Qt;
1381
1382 /* Say where last char on frame will be, once redisplay is finished. */
1383 XFASTINT (w->window_end_pos) = Z - pos;
1384 XFASTINT (w->window_end_vpos) = last_text_vpos - XFASTINT (w->top);
1385 /* But that is not valid info until redisplay finishes. */
1386 w->window_end_valid = Qnil;
1387 }
1388 \f
1389 /* Try to redisplay when buffer is modified locally,
1390 computing insert/delete line to preserve text outside
1391 the bounds of the changes.
1392 Return 1 if successful, 0 if if cannot tell what to do,
1393 or -1 to tell caller to find a new window start,
1394 or -2 to tell caller to do normal redisplay with same window start. */
1395
1396 static int
1397 try_window_id (window)
1398 Lisp_Object window;
1399 {
1400 int pos;
1401 register struct window *w = XWINDOW (window);
1402 register int height = window_internal_height (w);
1403 FRAME_PTR f = XFRAME (w->frame);
1404 int top = XFASTINT (w->top);
1405 int start = marker_position (w->start);
1406 int width = window_internal_width (w) - 1;
1407 int hscroll = XINT (w->hscroll);
1408 int lmargin = hscroll > 0 ? 1 - hscroll : 0;
1409 register int vpos;
1410 register int i, tem;
1411 int last_text_vpos = 0;
1412 int stop_vpos;
1413 int selective
1414 = XTYPE (current_buffer->selective_display) == Lisp_Int
1415 ? XINT (current_buffer->selective_display)
1416 : !NILP (current_buffer->selective_display) ? -1 : 0;
1417
1418 struct position val, bp, ep, xp, pp;
1419 int scroll_amount = 0;
1420 int delta;
1421 int tab_offset, epto;
1422
1423 if (GPT - BEG < beg_unchanged)
1424 beg_unchanged = GPT - BEG;
1425 if (Z - GPT < end_unchanged)
1426 end_unchanged = Z - GPT;
1427
1428 if (beg_unchanged + BEG < start)
1429 return 0; /* Give up if changes go above top of window */
1430
1431 /* Find position before which nothing is changed. */
1432 bp = *compute_motion (start, 0, lmargin,
1433 min (ZV, beg_unchanged + BEG), height + 1, 0,
1434 width, hscroll, pos_tab_offset (w, start));
1435 if (bp.vpos >= height)
1436 {
1437 if (point < bp.bufpos && !bp.contin)
1438 {
1439 /* All changes are below the frame, and point is on the frame.
1440 We don't need to change the frame at all.
1441 But we need to update window_end_pos to account for
1442 any change in buffer size. */
1443 bp = *compute_motion (start, 0, lmargin,
1444 Z, height, 0,
1445 width, hscroll, pos_tab_offset (w, start));
1446 XFASTINT (w->window_end_vpos) = height;
1447 XFASTINT (w->window_end_pos) = Z - bp.bufpos;
1448 return 1;
1449 }
1450 return 0;
1451 }
1452
1453 vpos = bp.vpos;
1454
1455 /* Find beginning of that frame line. Must display from there. */
1456 bp = *vmotion (bp.bufpos, 0, width, hscroll, window);
1457
1458 pos = bp.bufpos;
1459 val.hpos = lmargin;
1460 if (pos < start)
1461 return -1;
1462
1463 /* If about to start displaying at the beginning of a continuation line,
1464 really start with previous frame line, in case it was not
1465 continued when last redisplayed */
1466 if ((bp.contin && bp.bufpos - 1 == beg_unchanged && vpos > 0)
1467 ||
1468 /* Likewise if we have to worry about selective display. */
1469 (selective > 0 && bp.bufpos - 1 == beg_unchanged && vpos > 0))
1470 {
1471 bp = *vmotion (bp.bufpos, -1, width, hscroll, window);
1472 --vpos;
1473 pos = bp.bufpos;
1474 }
1475
1476 if (bp.contin && bp.hpos != lmargin)
1477 {
1478 val.hpos = bp.prevhpos - width + lmargin;
1479 pos--;
1480 }
1481
1482 bp.vpos = vpos;
1483
1484 /* Find first visible newline after which no more is changed. */
1485 tem = find_next_newline (Z - max (end_unchanged, Z - ZV), 1);
1486 if (selective > 0)
1487 while (tem < ZV - 1 && (indented_beyond_p (tem, selective)))
1488 tem = find_next_newline (tem, 1);
1489
1490 /* Compute the cursor position after that newline. */
1491 ep = *compute_motion (pos, vpos, val.hpos, tem,
1492 height, - (1 << (SHORTBITS - 1)),
1493 width, hscroll, pos_tab_offset (w, bp.bufpos));
1494
1495 /* If changes reach past the text available on the frame,
1496 just display rest of frame. */
1497 if (ep.bufpos > Z - XFASTINT (w->window_end_pos))
1498 stop_vpos = height;
1499 else
1500 stop_vpos = ep.vpos;
1501
1502 /* If no newline before ep, the line ep is on includes some changes
1503 that must be displayed. Make sure we don't stop before it. */
1504 /* Also, if changes reach all the way until ep.bufpos,
1505 it is possible that something was deleted after the
1506 newline before it, so the following line must be redrawn. */
1507 if (stop_vpos == ep.vpos
1508 && (ep.bufpos == BEGV
1509 || FETCH_CHAR (ep.bufpos - 1) != '\n'
1510 || ep.bufpos == Z - end_unchanged))
1511 stop_vpos = ep.vpos + 1;
1512
1513 cursor_vpos = -1;
1514 overlay_arrow_seen = 0;
1515
1516 /* If changes do not reach to bottom of window,
1517 figure out how much to scroll the rest of the window */
1518 if (stop_vpos < height)
1519 {
1520 /* Now determine how far up or down the rest of the window has moved */
1521 epto = pos_tab_offset (w, ep.bufpos);
1522 xp = *compute_motion (ep.bufpos, ep.vpos, ep.hpos,
1523 Z - XFASTINT (w->window_end_pos),
1524 10000, 0, width, hscroll, epto);
1525 scroll_amount = xp.vpos - XFASTINT (w->window_end_vpos);
1526
1527 /* Is everything on frame below the changes whitespace?
1528 If so, no scrolling is really necessary. */
1529 for (i = ep.bufpos; i < xp.bufpos; i++)
1530 {
1531 tem = FETCH_CHAR (i);
1532 if (tem != ' ' && tem != '\n' && tem != '\t')
1533 break;
1534 }
1535 if (i == xp.bufpos)
1536 return -2;
1537
1538 XFASTINT (w->window_end_vpos) += scroll_amount;
1539
1540 /* Before doing any scrolling, verify that point will be on frame. */
1541 if (point > ep.bufpos && !(point <= xp.bufpos && xp.bufpos < height))
1542 {
1543 if (point <= xp.bufpos)
1544 {
1545 pp = *compute_motion (ep.bufpos, ep.vpos, ep.hpos,
1546 point, height, - (1 << (SHORTBITS - 1)),
1547 width, hscroll, epto);
1548 }
1549 else
1550 {
1551 pp = *compute_motion (xp.bufpos, xp.vpos, xp.hpos,
1552 point, height, - (1 << (SHORTBITS - 1)),
1553 width, hscroll, pos_tab_offset (w, xp.bufpos));
1554 }
1555 if (pp.bufpos < point || pp.vpos == height)
1556 return 0;
1557 cursor_vpos = pp.vpos + top;
1558 cursor_hpos = pp.hpos + XFASTINT (w->left);
1559 }
1560
1561 if (stop_vpos - scroll_amount >= height
1562 || ep.bufpos == xp.bufpos)
1563 {
1564 if (scroll_amount < 0)
1565 stop_vpos -= scroll_amount;
1566 scroll_amount = 0;
1567 /* In this path, we have altered window_end_vpos
1568 and not left it negative.
1569 We must make sure that, in case display is preempted
1570 before the frame changes to reflect what we do here,
1571 further updates will not come to try_window_id
1572 and assume the frame and window_end_vpos match. */
1573 blank_end_of_window = 1;
1574 }
1575 else if (!scroll_amount)
1576 {}
1577 else if (bp.bufpos == Z - end_unchanged)
1578 {
1579 /* If reprinting everything is nearly as fast as scrolling,
1580 don't bother scrolling. Can happen if lines are short. */
1581 if (scroll_cost (f, bp.vpos + top - scroll_amount,
1582 top + height - max (0, scroll_amount),
1583 scroll_amount)
1584 > xp.bufpos - bp.bufpos - 20)
1585 /* Return "try normal display with same window-start."
1586 Too bad we can't prevent further scroll-thinking. */
1587 return -2;
1588 /* If pure deletion, scroll up as many lines as possible.
1589 In common case of killing a line, this can save the
1590 following line from being overwritten by scrolling
1591 and therefore having to be redrawn. */
1592 tem = scroll_frame_lines (f, bp.vpos + top - scroll_amount,
1593 top + height - max (0, scroll_amount),
1594 scroll_amount);
1595 if (!tem) stop_vpos = height;
1596 }
1597 else if (scroll_amount)
1598 {
1599 /* If reprinting everything is nearly as fast as scrolling,
1600 don't bother scrolling. Can happen if lines are short. */
1601 /* Note that if scroll_amount > 0, xp.bufpos - bp.bufpos is an
1602 overestimate of cost of reprinting, since xp.bufpos
1603 would end up below the bottom of the window. */
1604 if (scroll_cost (f, ep.vpos + top - scroll_amount,
1605 top + height - max (0, scroll_amount),
1606 scroll_amount)
1607 > xp.bufpos - ep.bufpos - 20)
1608 /* Return "try normal display with same window-start."
1609 Too bad we can't prevent further scroll-thinking. */
1610 return -2;
1611 tem = scroll_frame_lines (f, ep.vpos + top - scroll_amount,
1612 top + height - max (0, scroll_amount),
1613 scroll_amount);
1614 if (!tem) stop_vpos = height;
1615 }
1616 }
1617
1618 /* In any case, do not display past bottom of window */
1619 if (stop_vpos >= height)
1620 {
1621 stop_vpos = height;
1622 scroll_amount = 0;
1623 }
1624
1625 /* Handle case where pos is before w->start --
1626 can happen if part of line had been clipped and is not clipped now */
1627 if (vpos == 0 && pos < marker_position (w->start))
1628 Fset_marker (w->start, make_number (pos), Qnil);
1629
1630 /* Redisplay the lines where the text was changed */
1631 last_text_vpos = vpos;
1632 tab_offset = pos_tab_offset (w, pos);
1633 /* If we are starting display in mid-character, correct tab_offset
1634 to account for passing the line that that character really starts in. */
1635 if (val.hpos < lmargin)
1636 tab_offset += width;
1637 while (vpos < stop_vpos)
1638 {
1639 val = *display_text_line (w, pos, top + vpos++, val.hpos, tab_offset);
1640 tab_offset += width;
1641 if (val.vpos) tab_offset = 0;
1642 if (pos != val.bufpos)
1643 last_text_vpos
1644 /* Next line, unless prev line ended in end of buffer with no cr */
1645 = vpos - (val.vpos && FETCH_CHAR (val.bufpos - 1) != '\n');
1646 pos = val.bufpos;
1647 }
1648
1649 /* There are two cases:
1650 1) we have displayed down to the bottom of the window
1651 2) we have scrolled lines below stop_vpos by scroll_amount */
1652
1653 if (vpos == height)
1654 {
1655 /* If last line is continued in middle of character,
1656 include the split character in the text considered on the frame */
1657 if (val.hpos < lmargin)
1658 val.bufpos++;
1659 XFASTINT (w->window_end_vpos) = last_text_vpos;
1660 XFASTINT (w->window_end_pos) = Z - val.bufpos;
1661 }
1662
1663 /* If scrolling made blank lines at window bottom,
1664 redisplay to fill those lines */
1665 if (scroll_amount < 0)
1666 {
1667 /* Don't consider these lines for general-purpose scrolling.
1668 That will save time in the scrolling computation. */
1669 FRAME_SCROLL_BOTTOM_VPOS (f) = xp.vpos;
1670 vpos = xp.vpos;
1671 pos = xp.bufpos;
1672 val.hpos = lmargin;
1673 if (pos == ZV)
1674 vpos = height + scroll_amount;
1675 else if (xp.contin && xp.hpos != lmargin)
1676 {
1677 val.hpos = xp.prevhpos - width + lmargin;
1678 pos--;
1679 }
1680
1681 blank_end_of_window = 1;
1682 tab_offset = pos_tab_offset (w, pos);
1683 /* If we are starting display in mid-character, correct tab_offset
1684 to account for passing the line that that character starts in. */
1685 if (val.hpos < lmargin)
1686 tab_offset += width;
1687
1688 while (vpos < height)
1689 {
1690 val = *display_text_line (w, pos, top + vpos++, val.hpos, tab_offset);
1691 tab_offset += width;
1692 if (val.vpos) tab_offset = 0;
1693 pos = val.bufpos;
1694 }
1695
1696 /* Here is a case where display_text_line sets cursor_vpos wrong.
1697 Make it be fixed up, below. */
1698 if (xp.bufpos == ZV
1699 && xp.bufpos == point)
1700 cursor_vpos = -1;
1701 }
1702
1703 /* If bottom just moved off end of frame, change mode line percentage. */
1704 if (XFASTINT (w->window_end_pos) == 0
1705 && Z != val.bufpos)
1706 w->update_mode_line = Qt;
1707
1708 /* Attempt to adjust end-of-text positions to new bottom line */
1709 if (scroll_amount)
1710 {
1711 delta = height - xp.vpos;
1712 if (delta < 0
1713 || (delta > 0 && xp.bufpos <= ZV)
1714 || (delta == 0 && xp.hpos))
1715 {
1716 val = *vmotion (Z - XFASTINT (w->window_end_pos),
1717 delta, width, hscroll, window);
1718 XFASTINT (w->window_end_pos) = Z - val.bufpos;
1719 XFASTINT (w->window_end_vpos) += val.vpos;
1720 }
1721 }
1722
1723 w->window_end_valid = Qnil;
1724
1725 /* If point was not in a line that was displayed, find it */
1726 if (cursor_vpos < 0)
1727 {
1728 val = *compute_motion (start, 0, lmargin, point, 10000, 10000,
1729 width, hscroll, pos_tab_offset (w, start));
1730 /* Admit failure if point is off frame now */
1731 if (val.vpos >= height)
1732 {
1733 for (vpos = 0; vpos < height; vpos++)
1734 cancel_line (vpos + top, f);
1735 return 0;
1736 }
1737 cursor_vpos = val.vpos + top;
1738 cursor_hpos = val.hpos + XFASTINT (w->left);
1739 }
1740
1741 FRAME_CURSOR_X (f) = max (0, cursor_hpos);
1742 FRAME_CURSOR_Y (f) = cursor_vpos;
1743
1744 if (debug_end_pos)
1745 {
1746 val = *compute_motion (start, 0, lmargin, ZV,
1747 height, - (1 << (SHORTBITS - 1)),
1748 width, hscroll, pos_tab_offset (w, start));
1749 if (val.vpos != XFASTINT (w->window_end_vpos))
1750 abort ();
1751 if (XFASTINT (w->window_end_pos)
1752 != Z - val.bufpos)
1753 abort ();
1754 }
1755
1756 return 1;
1757 }
1758 \f
1759 /* Mark a section of BUF as modified, but only for the sake of redisplay.
1760 This is useful for recording changes to overlays.
1761
1762 We increment the buffer's modification timestamp and set the
1763 redisplay caches (windows_or_buffers_changed, beg_unchanged, etc)
1764 as if the region of text between START and END had been modified;
1765 the redisplay code will check this against the windows' timestamps,
1766 and redraw the appropriate area of the buffer.
1767
1768 However, if the buffer is unmodified, we bump the last-save
1769 timestamp as well, so that incrementing the timestamp doesn't fool
1770 Emacs into thinking that the buffer's text has been modified.
1771
1772 Tweaking the timestamps shouldn't hurt the first-modification
1773 timestamps recorded in the undo records; those values aren't
1774 written until just before a real text modification is made, so they
1775 will never catch the timestamp value just before this function gets
1776 called. */
1777
1778 void
1779 redisplay_region (buf, start, end)
1780 struct buffer *buf;
1781 int start, end;
1782 {
1783 if (start == end)
1784 return;
1785
1786 if (start > end)
1787 {
1788 int temp = start;
1789 start = end; end = temp;
1790 }
1791
1792 if (buf != current_buffer)
1793 windows_or_buffers_changed = 1;
1794 else
1795 {
1796 if (unchanged_modified == MODIFF)
1797 {
1798 beg_unchanged = start - BEG;
1799 end_unchanged = Z - end;
1800 }
1801 else
1802 {
1803 if (Z - end < end_unchanged)
1804 end_unchanged = Z - end;
1805 if (start - BEG < beg_unchanged)
1806 beg_unchanged = start - BEG;
1807 }
1808 }
1809
1810 /* Increment the buffer's time stamp, but also increment the save
1811 and autosave timestamps, so as not to screw up that timekeeping. */
1812 if (BUF_MODIFF (buf) == buf->save_modified)
1813 buf->save_modified++;
1814 if (BUF_MODIFF (buf) == buf->auto_save_modified)
1815 buf->auto_save_modified++;
1816
1817 BUF_MODIFF (buf) ++;
1818 }
1819
1820 \f
1821 /* Copy LEN glyphs starting address FROM to the rope TO.
1822 But don't actually copy the parts that would come in before S.
1823 Value is TO, advanced past the copied data.
1824 F is the frame we are displaying in. */
1825
1826 static GLYPH *
1827 copy_part_of_rope (f, to, s, from, len, face)
1828 FRAME_PTR f;
1829 register GLYPH *to; /* Copy to here. */
1830 register GLYPH *s; /* Starting point. */
1831 Lisp_Object *from; /* Data to copy. */
1832 int len;
1833 int face; /* Face to apply to glyphs which don't specify one. */
1834 {
1835 int n = len;
1836 register Lisp_Object *fp = from;
1837 /* These cache the results of the last call to compute_glyph_face. */
1838 int last_code = -1;
1839 int last_merged = 0;
1840
1841 #ifdef HAVE_X_WINDOWS
1842 if (! FRAME_TERMCAP_P (f))
1843 while (n--)
1844 {
1845 int glyph = XFASTINT (*fp);
1846 int facecode;
1847
1848 if (FAST_GLYPH_FACE (glyph) == 0)
1849 /* If GLYPH has no face code, use FACE. */
1850 facecode = face;
1851 else if (FAST_GLYPH_FACE (glyph) == last_code)
1852 /* If it's same as previous glyph, use same result. */
1853 facecode = last_merged;
1854 else
1855 {
1856 /* Merge this glyph's face and remember the result. */
1857 last_code = FAST_GLYPH_FACE (glyph);
1858 last_merged = facecode = compute_glyph_face (f, last_code, face);
1859 }
1860
1861 if (to >= s)
1862 *to = FAST_MAKE_GLYPH (FAST_GLYPH_CHAR (glyph), facecode);
1863 ++to;
1864 ++fp;
1865 }
1866 else
1867 #endif
1868 while (n--)
1869 {
1870 if (to >= s) *to = XFASTINT (*fp);
1871 ++to;
1872 ++fp;
1873 }
1874 return to;
1875 }
1876
1877 /* Correct a glyph by replacing its specified user-level face code
1878 with a displayable computed face code. */
1879
1880 static GLYPH
1881 fix_glyph (f, glyph, current_face)
1882 FRAME_PTR f;
1883 GLYPH glyph;
1884 int current_face;
1885 {
1886 #ifdef HAVE_X_WINDOWS
1887 if (! FRAME_TERMCAP_P (f) && FAST_GLYPH_FACE (glyph) != 0)
1888 return FAST_MAKE_GLYPH (FAST_GLYPH_CHAR (glyph),
1889 compute_glyph_face (f, FAST_GLYPH_FACE (glyph),
1890 current_face));
1891 #endif
1892 return glyph;
1893 }
1894 \f
1895 /* Display one line of window w, starting at position START in W's buffer.
1896 Display starting at horizontal position HPOS, which is normally zero
1897 or negative. A negative value causes output up to hpos = 0 to be discarded.
1898 This is done for negative hscroll, or when this is a continuation line
1899 and the continuation occurred in the middle of a multi-column character.
1900
1901 TABOFFSET is an offset for ostensible hpos, used in tab stop calculations.
1902
1903 Display on position VPOS on the frame. (origin 0).
1904
1905 Returns a STRUCT POSITION giving character to start next line with
1906 and where to display it, including a zero or negative hpos.
1907 The vpos field is not really a vpos; it is 1 unless the line is continued */
1908
1909 struct position val_display_text_line;
1910
1911 static struct position *
1912 display_text_line (w, start, vpos, hpos, taboffset)
1913 struct window *w;
1914 int start;
1915 int vpos;
1916 int hpos;
1917 int taboffset;
1918 {
1919 register int pos = start;
1920 register int c;
1921 register GLYPH *p1;
1922 int end;
1923 register int pause;
1924 register unsigned char *p;
1925 GLYPH *endp;
1926 register GLYPH *startp;
1927 register GLYPH *p1prev = 0;
1928 FRAME_PTR f = XFRAME (w->frame);
1929 int tab_width = XINT (current_buffer->tab_width);
1930 int ctl_arrow = !NILP (current_buffer->ctl_arrow);
1931 int width = window_internal_width (w) - 1;
1932 struct position val;
1933 int lastpos;
1934 int invis;
1935 int hscroll = XINT (w->hscroll);
1936 int truncate = hscroll
1937 || (truncate_partial_width_windows
1938 && XFASTINT (w->width) < FRAME_WIDTH (f))
1939 || !NILP (current_buffer->truncate_lines);
1940
1941 /* 1 if we should highlight the region. */
1942 int highlight_region
1943 = !NILP (Vtransient_mark_mode) && !NILP (current_buffer->mark_active);
1944 int region_beg, region_end;
1945
1946 int selective
1947 = XTYPE (current_buffer->selective_display) == Lisp_Int
1948 ? XINT (current_buffer->selective_display)
1949 : !NILP (current_buffer->selective_display) ? -1 : 0;
1950 register struct frame_glyphs *desired_glyphs = FRAME_DESIRED_GLYPHS (f);
1951 register struct Lisp_Vector *dp = window_display_table (w);
1952
1953 Lisp_Object default_invis_vector[3];
1954 /* Nonzero means display something where there are invisible lines.
1955 The precise value is the number of glyphs to display. */
1956 int selective_rlen
1957 = (selective && dp && XTYPE (DISP_INVIS_VECTOR (dp)) == Lisp_Vector
1958 ? XVECTOR (DISP_INVIS_VECTOR (dp))->size
1959 : selective && !NILP (current_buffer->selective_display_ellipses)
1960 ? 3 : 0);
1961 /* This is the sequence of Lisp objects to display
1962 when there are invisible lines. */
1963 Lisp_Object *invis_vector_contents
1964 = (dp && XTYPE (DISP_INVIS_VECTOR (dp)) == Lisp_Vector
1965 ? XVECTOR (DISP_INVIS_VECTOR (dp))->contents
1966 : default_invis_vector);
1967
1968 GLYPH truncator = (dp == 0 || XTYPE (DISP_TRUNC_GLYPH (dp)) != Lisp_Int
1969 ? '$' : XINT (DISP_TRUNC_GLYPH (dp)));
1970 GLYPH continuer = (dp == 0 || XTYPE (DISP_CONTINUE_GLYPH (dp)) != Lisp_Int
1971 ? '\\' : XINT (DISP_CONTINUE_GLYPH (dp)));
1972
1973 /* The next buffer location at which the face should change, due
1974 to overlays or text property changes. */
1975 int next_face_change;
1976
1977 #ifdef USE_TEXT_PROPERTIES
1978 /* The next location where the `invisible' property changes */
1979 int next_invisible;
1980 #endif
1981
1982 /* The face we're currently using. */
1983 int current_face = 0;
1984
1985 XFASTINT (default_invis_vector[2]) = '.';
1986 default_invis_vector[0] = default_invis_vector[1] = default_invis_vector[2];
1987
1988 hpos += XFASTINT (w->left);
1989 get_display_line (f, vpos, XFASTINT (w->left));
1990 if (tab_width <= 0 || tab_width > 1000) tab_width = 8;
1991
1992 /* Show where to highlight the region. */
1993 if (highlight_region && XMARKER (current_buffer->mark)->buffer != 0
1994 /* Maybe highlight only in selected window. */
1995 && (highlight_nonselected_windows
1996 || w == XWINDOW (selected_window)))
1997 {
1998 region_beg = marker_position (current_buffer->mark);
1999 if (PT < region_beg)
2000 {
2001 region_end = region_beg;
2002 region_beg = PT;
2003 }
2004 else
2005 region_end = PT;
2006 w->region_showing = Qt;
2007 }
2008 else
2009 region_beg = region_end = -1;
2010
2011 if (MINI_WINDOW_P (w) && start == 1
2012 && vpos == XFASTINT (w->top))
2013 {
2014 if (minibuf_prompt)
2015 hpos = display_string (w, vpos, minibuf_prompt, -1, hpos,
2016 (!truncate ? continuer : truncator),
2017 1, -1, -1);
2018 minibuf_prompt_width = hpos;
2019 }
2020
2021 desired_glyphs->bufp[vpos] = pos;
2022 p1 = desired_glyphs->glyphs[vpos] + hpos;
2023 end = ZV;
2024 startp = desired_glyphs->glyphs[vpos] + XFASTINT (w->left);
2025 endp = startp + width;
2026
2027 /* Arrange the overlays nicely for our purposes. Usually, we call
2028 display_text_line on only one line at a time, in which case this
2029 can't really hurt too much, or we call it on lines which appear
2030 one after another in the buffer, in which case all calls to
2031 recenter_overlay_lists but the first will be pretty cheap. */
2032 recenter_overlay_lists (current_buffer, pos);
2033
2034 /* Loop generating characters.
2035 Stop at end of buffer, before newline,
2036 if reach or pass continuation column,
2037 or at face change. */
2038 pause = pos;
2039 next_face_change = pos;
2040 #ifdef USE_TEXT_PROPERTIES
2041 next_invisible = pos;
2042 #endif
2043 while (p1 < endp)
2044 {
2045 p1prev = p1;
2046 if (pos >= pause)
2047 {
2048 /* Did we hit the end of the visible region of the buffer?
2049 Stop here. */
2050 if (pos >= end)
2051 break;
2052
2053 /* Did we reach point? Record the cursor location. */
2054 if (pos == point && cursor_vpos < 0)
2055 {
2056 cursor_vpos = vpos;
2057 cursor_hpos = p1 - startp;
2058 }
2059
2060 #ifdef USE_TEXT_PROPERTIES
2061 /* if the `invisible' property is set to t, we can skip to
2062 the next property change */
2063 while (pos == next_invisible && pos < end)
2064 {
2065 Lisp_Object position, limit, endpos, prop, ww;
2066 XFASTINT (position) = pos;
2067 XSET (ww, Lisp_Window, w);
2068 prop = Fget_char_property (position, Qinvisible, ww);
2069 /* This is just an estimate to give reasonable
2070 performance; nothing should go wrong if it is too small. */
2071 limit = Fnext_overlay_change (position);
2072 if (XFASTINT (limit) > pos + 50)
2073 XFASTINT (limit) = pos + 50;
2074 endpos = Fnext_single_property_change (position, Qinvisible,
2075 Fcurrent_buffer (), limit);
2076 if (INTEGERP (endpos))
2077 next_invisible = XINT (endpos);
2078 else
2079 next_invisible = end;
2080 if (! NILP (prop))
2081 {
2082 if (pos < point && next_invisible >= point)
2083 {
2084 cursor_vpos = vpos;
2085 cursor_hpos = p1 - startp;
2086 }
2087 pos = next_invisible;
2088 }
2089 }
2090 if (pos >= end)
2091 break;
2092 #endif
2093
2094 #ifdef HAVE_X_WINDOWS
2095 /* Did we hit a face change? Figure out what face we should
2096 use now. We also hit this the first time through the
2097 loop, to see what face we should start with. */
2098 if (pos >= next_face_change && FRAME_X_P (f))
2099 current_face = compute_char_face (f, w, pos,
2100 region_beg, region_end,
2101 &next_face_change, pos + 50);
2102 #endif
2103
2104 pause = end;
2105
2106 #ifdef USE_TEXT_PROPERTIES
2107 if (pos < next_invisible && next_invisible < pause)
2108 pause = next_invisible;
2109 #endif
2110 if (pos < next_face_change && next_face_change < pause)
2111 pause = next_face_change;
2112
2113 /* Wouldn't you hate to read the next line to someone over
2114 the phone? */
2115 if (pos < point && point < pause)
2116 pause = point;
2117 if (pos < GPT && GPT < pause)
2118 pause = GPT;
2119
2120 p = &FETCH_CHAR (pos);
2121 }
2122 c = *p++;
2123 if (c >= 040 && c < 0177
2124 && (dp == 0 || XTYPE (DISP_CHAR_VECTOR (dp, c)) != Lisp_Vector))
2125 {
2126 if (p1 >= startp)
2127 *p1 = MAKE_GLYPH (f, c, current_face);
2128 p1++;
2129 }
2130 else if (c == '\n')
2131 {
2132 invis = 0;
2133 while (pos < end
2134 && selective > 0
2135 && indented_beyond_p (pos + 1, selective))
2136 {
2137 invis = 1;
2138 pos = find_next_newline (pos + 1, 1);
2139 if (FETCH_CHAR (pos - 1) == '\n')
2140 pos--;
2141 }
2142 if (invis && selective_rlen > 0 && p1 >= startp)
2143 {
2144 p1 += selective_rlen;
2145 if (p1 - startp > width)
2146 p1 = endp;
2147 copy_part_of_rope (f, p1prev, p1prev, invis_vector_contents,
2148 (p1 - p1prev), current_face);
2149 }
2150 #ifdef HAVE_X_WINDOWS
2151 /* Draw the face of the newline character as extending all the
2152 way to the end of the frame line. */
2153 if (current_face)
2154 while (p1 < endp)
2155 *p1++ = FAST_MAKE_GLYPH (' ', current_face);
2156 #endif
2157 break;
2158 }
2159 else if (c == '\t')
2160 {
2161 do
2162 {
2163 if (p1 >= startp && p1 < endp)
2164 *p1 = MAKE_GLYPH (f, ' ', current_face);
2165 p1++;
2166 }
2167 while ((p1 - startp + taboffset + hscroll - (hscroll > 0))
2168 % tab_width);
2169 }
2170 else if (c == Ctl ('M') && selective == -1)
2171 {
2172 pos = find_next_newline (pos, 1);
2173 if (FETCH_CHAR (pos - 1) == '\n')
2174 pos--;
2175 if (selective_rlen > 0)
2176 {
2177 p1 += selective_rlen;
2178 if (p1 - startp > width)
2179 p1 = endp;
2180 copy_part_of_rope (f, p1prev, p1prev, invis_vector_contents,
2181 (p1 - p1prev), current_face);
2182 }
2183 #ifdef HAVE_X_WINDOWS
2184 /* Draw the face of the newline character as extending all the
2185 way to the end of the frame line. */
2186 if (current_face)
2187 while (p1 < endp)
2188 *p1++ = FAST_MAKE_GLYPH (' ', current_face);
2189 #endif
2190 break;
2191 }
2192 else if (dp != 0 && XTYPE (DISP_CHAR_VECTOR (dp, c)) == Lisp_Vector)
2193 {
2194 p1 = copy_part_of_rope (f, p1, startp,
2195 XVECTOR (DISP_CHAR_VECTOR (dp, c))->contents,
2196 XVECTOR (DISP_CHAR_VECTOR (dp, c))->size,
2197 current_face);
2198 }
2199 else if (c < 0200 && ctl_arrow)
2200 {
2201 if (p1 >= startp)
2202 *p1 = fix_glyph (f, (dp && XTYPE (DISP_CTRL_GLYPH (dp)) == Lisp_Int
2203 ? XINT (DISP_CTRL_GLYPH (dp)) : '^'),
2204 current_face);
2205 p1++;
2206 if (p1 >= startp && p1 < endp)
2207 *p1 = MAKE_GLYPH (f, c ^ 0100, current_face);
2208 p1++;
2209 }
2210 else
2211 {
2212 if (p1 >= startp)
2213 *p1 = fix_glyph (f, (dp && XTYPE (DISP_ESCAPE_GLYPH (dp)) == Lisp_Int
2214 ? XINT (DISP_ESCAPE_GLYPH (dp)) : '\\'),
2215 current_face);
2216 p1++;
2217 if (p1 >= startp && p1 < endp)
2218 *p1 = MAKE_GLYPH (f, (c >> 6) + '0', current_face);
2219 p1++;
2220 if (p1 >= startp && p1 < endp)
2221 *p1 = MAKE_GLYPH (f, (7 & (c >> 3)) + '0', current_face);
2222 p1++;
2223 if (p1 >= startp && p1 < endp)
2224 *p1 = MAKE_GLYPH (f, (7 & c) + '0', current_face);
2225 p1++;
2226 }
2227
2228 pos++;
2229 }
2230
2231 val.hpos = - XINT (w->hscroll);
2232 if (val.hpos)
2233 val.hpos++;
2234
2235 val.vpos = 1;
2236
2237 lastpos = pos;
2238
2239 /* Handle continuation in middle of a character */
2240 /* by backing up over it */
2241 if (p1 > endp)
2242 {
2243 /* Don't back up if we never actually displayed any text.
2244 This occurs when the minibuffer prompt takes up the whole line. */
2245 if (p1prev)
2246 {
2247 /* Start the next line with that same character */
2248 pos--;
2249 /* but at negative hpos, to skip the columns output on this line. */
2250 val.hpos += p1prev - endp;
2251 }
2252
2253 /* Keep in this line everything up to the continuation column. */
2254 p1 = endp;
2255 }
2256
2257 /* Finish deciding which character to start the next line on,
2258 and what hpos to start it at.
2259 Also set `lastpos' to the last position which counts as "on this line"
2260 for cursor-positioning. */
2261
2262 if (pos < ZV)
2263 {
2264 if (FETCH_CHAR (pos) == '\n')
2265 /* If stopped due to a newline, start next line after it */
2266 pos++;
2267 else
2268 /* Stopped due to right margin of window */
2269 {
2270 if (truncate)
2271 {
2272 *p1++ = fix_glyph (f, truncator, 0);
2273 /* Truncating => start next line after next newline,
2274 and point is on this line if it is before the newline,
2275 and skip none of first char of next line */
2276 pos = find_next_newline (pos, 1);
2277 val.hpos = XINT (w->hscroll) ? 1 - XINT (w->hscroll) : 0;
2278
2279 lastpos = pos - (FETCH_CHAR (pos - 1) == '\n');
2280 }
2281 else
2282 {
2283 *p1++ = fix_glyph (f, continuer, 0);
2284 val.vpos = 0;
2285 lastpos--;
2286 }
2287 }
2288 }
2289
2290 /* If point is at eol or in invisible text at eol,
2291 record its frame location now. */
2292
2293 if (start <= point && point <= lastpos && cursor_vpos < 0)
2294 {
2295 cursor_vpos = vpos;
2296 cursor_hpos = p1 - startp;
2297 }
2298
2299 if (cursor_vpos == vpos)
2300 {
2301 if (cursor_hpos < 0) cursor_hpos = 0;
2302 if (cursor_hpos > width) cursor_hpos = width;
2303 cursor_hpos += XFASTINT (w->left);
2304 if (w == XWINDOW (FRAME_SELECTED_WINDOW (f)))
2305 {
2306 FRAME_CURSOR_Y (f) = cursor_vpos;
2307 FRAME_CURSOR_X (f) = cursor_hpos;
2308
2309 if (w == XWINDOW (selected_window))
2310 {
2311 /* Line is not continued and did not start
2312 in middle of character */
2313 if ((hpos - XFASTINT (w->left)
2314 == (XINT (w->hscroll) ? 1 - XINT (w->hscroll) : 0))
2315 && val.vpos)
2316 {
2317 this_line_bufpos = start;
2318 this_line_buffer = current_buffer;
2319 this_line_vpos = cursor_vpos;
2320 this_line_start_hpos = hpos;
2321 this_line_endpos = Z - lastpos;
2322 }
2323 else
2324 this_line_bufpos = 0;
2325 }
2326 }
2327 }
2328
2329 /* If hscroll and line not empty, insert truncation-at-left marker */
2330 if (hscroll && lastpos != start)
2331 {
2332 *startp = fix_glyph (f, truncator, 0);
2333 if (p1 <= startp)
2334 p1 = startp + 1;
2335 }
2336
2337 if (XFASTINT (w->width) + XFASTINT (w->left) != FRAME_WIDTH (f))
2338 {
2339 endp++;
2340 if (p1 < startp) p1 = startp;
2341 while (p1 < endp) *p1++ = SPACEGLYPH;
2342
2343 /* Don't draw vertical bars if we're using scroll bars. They're
2344 covered up by the scroll bars, and it's distracting to see
2345 them when the scroll bar windows are flickering around to be
2346 reconfigured. */
2347 *p1++ = (FRAME_HAS_VERTICAL_SCROLL_BARS (f)
2348 ? ' ' : '|');
2349 }
2350 desired_glyphs->used[vpos] = max (desired_glyphs->used[vpos],
2351 p1 - desired_glyphs->glyphs[vpos]);
2352 desired_glyphs->glyphs[vpos][desired_glyphs->used[vpos]] = 0;
2353
2354 /* If the start of this line is the overlay arrow-position,
2355 then put the arrow string into the display-line. */
2356
2357 if (XTYPE (Voverlay_arrow_position) == Lisp_Marker
2358 && current_buffer == XMARKER (Voverlay_arrow_position)->buffer
2359 && start == marker_position (Voverlay_arrow_position)
2360 && XTYPE (Voverlay_arrow_string) == Lisp_String
2361 && ! overlay_arrow_seen)
2362 {
2363 unsigned char *p = XSTRING (Voverlay_arrow_string)->data;
2364 int i;
2365 int len = XSTRING (Voverlay_arrow_string)->size;
2366 int arrow_end;
2367
2368 if (len > width)
2369 len = width;
2370 for (i = 0; i < len; i++)
2371 startp[i] = p[i];
2372
2373 /* Bug in SunOS 4.1.1 compiler requires this intermediate variable. */
2374 arrow_end = (startp - desired_glyphs->glyphs[vpos]) + len;
2375 if (desired_glyphs->used[vpos] < arrow_end)
2376 desired_glyphs->used[vpos] = arrow_end;
2377
2378 overlay_arrow_seen = 1;
2379 }
2380
2381 val.bufpos = pos;
2382 val_display_text_line = val;
2383 return &val_display_text_line;
2384 }
2385 \f
2386 /* Redisplay the menu bar in the frame for window W. */
2387
2388 static void
2389 display_menu_bar (w)
2390 struct window *w;
2391 {
2392 Lisp_Object items, tail;
2393 register int vpos = 0;
2394 register FRAME_PTR f = XFRAME (WINDOW_FRAME (w));
2395 int maxendcol = FRAME_WIDTH (f);
2396 int hpos = 0;
2397 int i;
2398
2399 #ifndef USE_X_TOOLKIT
2400 if (FRAME_MENU_BAR_LINES (f) <= 0)
2401 return;
2402
2403 get_display_line (f, vpos, 0);
2404
2405 items = FRAME_MENU_BAR_ITEMS (f);
2406 for (i = 0; i < XVECTOR (items)->size; i += 3)
2407 {
2408 Lisp_Object pos, string;
2409 string = XVECTOR (items)->contents[i + 1];
2410 if (NILP (string))
2411 break;
2412
2413 XFASTINT (XVECTOR (items)->contents[i + 2]) = hpos;
2414
2415 if (hpos < maxendcol)
2416 hpos = display_string (XWINDOW (FRAME_ROOT_WINDOW (f)), vpos,
2417 XSTRING (string)->data,
2418 XSTRING (string)->size,
2419 hpos, 0, 0, hpos, maxendcol);
2420 /* Put a gap of 3 spaces between items. */
2421 if (hpos < maxendcol)
2422 {
2423 int hpos1 = hpos + 3;
2424 hpos = display_string (w, vpos, "", 0, hpos, 0, 0,
2425 min (hpos1, maxendcol), maxendcol);
2426 }
2427 }
2428
2429 FRAME_DESIRED_GLYPHS (f)->bufp[vpos] = 0;
2430 FRAME_DESIRED_GLYPHS (f)->highlight[vpos] = mode_line_inverse_video;
2431
2432 /* Fill out the line with spaces. */
2433 if (maxendcol > hpos)
2434 hpos = display_string (w, vpos, "", 0, hpos, 0, 0, maxendcol, maxendcol);
2435
2436 /* Clear the rest of the lines allocated to the menu bar. */
2437 vpos++;
2438 while (vpos < FRAME_MENU_BAR_LINES (f))
2439 get_display_line (f, vpos++, 0);
2440 #endif /* not USE_X_TOOLKIT */
2441 }
2442 \f
2443 /* Display the mode line for window w */
2444
2445 static void
2446 display_mode_line (w)
2447 struct window *w;
2448 {
2449 register int vpos = XFASTINT (w->height) + XFASTINT (w->top) - 1;
2450 register int left = XFASTINT (w->left);
2451 register int right = XFASTINT (w->width) + left;
2452 register FRAME_PTR f = XFRAME (WINDOW_FRAME (w));
2453
2454 line_number_displayed = 0;
2455
2456 get_display_line (f, vpos, left);
2457 display_mode_element (w, vpos, left, 0, right, right,
2458 current_buffer->mode_line_format);
2459 FRAME_DESIRED_GLYPHS (f)->bufp[vpos] = 0;
2460
2461 /* Make the mode line inverse video if the entire line
2462 is made of mode lines.
2463 I.e. if this window is full width,
2464 or if it is the child of a full width window
2465 (which implies that that window is split side-by-side
2466 and the rest of this line is mode lines of the sibling windows). */
2467 if (XFASTINT (w->width) == FRAME_WIDTH (f)
2468 || XFASTINT (XWINDOW (w->parent)->width) == FRAME_WIDTH (f))
2469 FRAME_DESIRED_GLYPHS (f)->highlight[vpos] = mode_line_inverse_video;
2470 #ifdef HAVE_X_WINDOWS
2471 else if (! FRAME_TERMCAP_P (f))
2472 {
2473 /* For a partial width window, explicitly set face of each glyph. */
2474 int i;
2475 GLYPH *ptr = FRAME_DESIRED_GLYPHS (f)->glyphs[vpos];
2476 for (i = left; i < right; ++i)
2477 ptr[i] = FAST_MAKE_GLYPH (FAST_GLYPH_CHAR (ptr[i]), 1);
2478 }
2479 #endif
2480
2481 #ifdef HAVE_X_WINDOWS
2482 if (w == XWINDOW (f->selected_window))
2483 x_consider_frame_title (WINDOW_FRAME (w));
2484 #endif
2485 }
2486
2487 /* Contribute ELT to the mode line for window W.
2488 How it translates into text depends on its data type.
2489
2490 VPOS is the position of the mode line being displayed.
2491
2492 HPOS is the position (absolute on frame) where this element's text
2493 should start. The output is truncated automatically at the right
2494 edge of window W.
2495
2496 DEPTH is the depth in recursion. It is used to prevent
2497 infinite recursion here.
2498
2499 MINENDCOL is the hpos before which the element may not end.
2500 The element is padded at the right with spaces if nec
2501 to reach this column.
2502
2503 MAXENDCOL is the hpos past which this element may not extend.
2504 If MINENDCOL is > MAXENDCOL, MINENDCOL takes priority.
2505 (This is necessary to make nested padding and truncation work.)
2506
2507 Returns the hpos of the end of the text generated by ELT.
2508 The next element will receive that value as its HPOS arg,
2509 so as to concatenate the elements. */
2510
2511 static int
2512 display_mode_element (w, vpos, hpos, depth, minendcol, maxendcol, elt)
2513 struct window *w;
2514 register int vpos, hpos;
2515 int depth;
2516 int minendcol;
2517 register int maxendcol;
2518 register Lisp_Object elt;
2519 {
2520 tail_recurse:
2521 if (depth > 10)
2522 goto invalid;
2523
2524 depth++;
2525
2526 #ifdef SWITCH_ENUM_BUG
2527 switch ((int) XTYPE (elt))
2528 #else
2529 switch (XTYPE (elt))
2530 #endif
2531 {
2532 case Lisp_String:
2533 {
2534 /* A string: output it and check for %-constructs within it. */
2535 register unsigned char c;
2536 register unsigned char *this = XSTRING (elt)->data;
2537
2538 while (hpos < maxendcol && *this)
2539 {
2540 unsigned char *last = this;
2541 while ((c = *this++) != '\0' && c != '%')
2542 ;
2543 if (this - 1 != last)
2544 {
2545 register int lim = --this - last + hpos;
2546 hpos = display_string (w, vpos, last, -1, hpos, 0, 1,
2547 hpos, min (lim, maxendcol));
2548 }
2549 else /* c == '%' */
2550 {
2551 register int spec_width = 0;
2552
2553 /* We can't allow -ve args due to the "%-" construct */
2554 /* Argument specifies minwidth but not maxwidth
2555 (maxwidth can be specified by
2556 (<negative-number> . <stuff>) mode-line elements) */
2557
2558 while ((c = *this++) >= '0' && c <= '9')
2559 {
2560 spec_width = spec_width * 10 + (c - '0');
2561 }
2562
2563 spec_width += hpos;
2564 if (spec_width > maxendcol)
2565 spec_width = maxendcol;
2566
2567 if (c == 'M')
2568 hpos = display_mode_element (w, vpos, hpos, depth,
2569 spec_width, maxendcol,
2570 Vglobal_mode_string);
2571 else if (c != 0)
2572 hpos = display_string (w, vpos,
2573 decode_mode_spec (w, c,
2574 maxendcol - hpos),
2575 -1,
2576 hpos, 0, 1, spec_width, maxendcol);
2577 }
2578 }
2579 }
2580 break;
2581
2582 case Lisp_Symbol:
2583 /* A symbol: process the value of the symbol recursively
2584 as if it appeared here directly. Avoid error if symbol void.
2585 Special case: if value of symbol is a string, output the string
2586 literally. */
2587 {
2588 register Lisp_Object tem;
2589 tem = Fboundp (elt);
2590 if (!NILP (tem))
2591 {
2592 tem = Fsymbol_value (elt);
2593 /* If value is a string, output that string literally:
2594 don't check for % within it. */
2595 if (XTYPE (tem) == Lisp_String)
2596 hpos = display_string (w, vpos, XSTRING (tem)->data,
2597 XSTRING (tem)->size,
2598 hpos, 0, 1, minendcol, maxendcol);
2599 /* Give up right away for nil or t. */
2600 else if (!EQ (tem, elt))
2601 { elt = tem; goto tail_recurse; }
2602 }
2603 }
2604 break;
2605
2606 case Lisp_Cons:
2607 {
2608 register Lisp_Object car, tem;
2609
2610 /* A cons cell: three distinct cases.
2611 If first element is a string or a cons, process all the elements
2612 and effectively concatenate them.
2613 If first element is a negative number, truncate displaying cdr to
2614 at most that many characters. If positive, pad (with spaces)
2615 to at least that many characters.
2616 If first element is a symbol, process the cadr or caddr recursively
2617 according to whether the symbol's value is non-nil or nil. */
2618 car = XCONS (elt)->car;
2619 if (XTYPE (car) == Lisp_Symbol)
2620 {
2621 tem = Fboundp (car);
2622 elt = XCONS (elt)->cdr;
2623 if (XTYPE (elt) != Lisp_Cons)
2624 goto invalid;
2625 /* elt is now the cdr, and we know it is a cons cell.
2626 Use its car if CAR has a non-nil value. */
2627 if (!NILP (tem))
2628 {
2629 tem = Fsymbol_value (car);
2630 if (!NILP (tem))
2631 { elt = XCONS (elt)->car; goto tail_recurse; }
2632 }
2633 /* Symbol's value is nil (or symbol is unbound)
2634 Get the cddr of the original list
2635 and if possible find the caddr and use that. */
2636 elt = XCONS (elt)->cdr;
2637 if (NILP (elt))
2638 break;
2639 else if (XTYPE (elt) != Lisp_Cons)
2640 goto invalid;
2641 elt = XCONS (elt)->car;
2642 goto tail_recurse;
2643 }
2644 else if (XTYPE (car) == Lisp_Int)
2645 {
2646 register int lim = XINT (car);
2647 elt = XCONS (elt)->cdr;
2648 if (lim < 0)
2649 /* Negative int means reduce maximum width.
2650 DO NOT change MINENDCOL here!
2651 (20 -10 . foo) should truncate foo to 10 col
2652 and then pad to 20. */
2653 maxendcol = min (maxendcol, hpos - lim);
2654 else if (lim > 0)
2655 {
2656 /* Padding specified. Don't let it be more than
2657 current maximum. */
2658 lim += hpos;
2659 if (lim > maxendcol)
2660 lim = maxendcol;
2661 /* If that's more padding than already wanted, queue it.
2662 But don't reduce padding already specified even if
2663 that is beyond the current truncation point. */
2664 if (lim > minendcol)
2665 minendcol = lim;
2666 }
2667 goto tail_recurse;
2668 }
2669 else if (XTYPE (car) == Lisp_String || XTYPE (car) == Lisp_Cons)
2670 {
2671 register int limit = 50;
2672 /* LIMIT is to protect against circular lists. */
2673 while (XTYPE (elt) == Lisp_Cons && --limit > 0
2674 && hpos < maxendcol)
2675 {
2676 hpos = display_mode_element (w, vpos, hpos, depth,
2677 hpos, maxendcol,
2678 XCONS (elt)->car);
2679 elt = XCONS (elt)->cdr;
2680 }
2681 }
2682 }
2683 break;
2684
2685 default:
2686 invalid:
2687 return (display_string (w, vpos, "*invalid*", -1, hpos, 0, 1,
2688 minendcol, maxendcol));
2689 }
2690
2691 end:
2692 if (minendcol > hpos)
2693 hpos = display_string (w, vpos, "", 0, hpos, 0, 1, minendcol, maxendcol);
2694 return hpos;
2695 }
2696 \f
2697 /* Return a string for the output of a mode line %-spec for window W,
2698 generated by character C and width MAXWIDTH. */
2699
2700 static char lots_of_dashes[] = "--------------------------------------------------------------------------------------------------------------------------------------------";
2701
2702 static char *
2703 decode_mode_spec (w, c, maxwidth)
2704 struct window *w;
2705 register char c;
2706 register int maxwidth;
2707 {
2708 Lisp_Object obj;
2709 FRAME_PTR f = XFRAME (WINDOW_FRAME (w));
2710 char *decode_mode_spec_buf = (char *) FRAME_TEMP_GLYPHS (f)->total_contents;
2711
2712 obj = Qnil;
2713 if (maxwidth > FRAME_WIDTH (f))
2714 maxwidth = FRAME_WIDTH (f);
2715
2716 switch (c)
2717 {
2718 case 'b':
2719 obj = current_buffer->name;
2720 #if 0
2721 if (maxwidth >= 3 && XSTRING (obj)->size > maxwidth)
2722 {
2723 bcopy (XSTRING (obj)->data, decode_mode_spec_buf, maxwidth - 1);
2724 decode_mode_spec_buf[maxwidth - 1] = '\\';
2725 decode_mode_spec_buf[maxwidth] = '\0';
2726 return decode_mode_spec_buf;
2727 }
2728 #endif
2729 break;
2730
2731 case 'f':
2732 obj = current_buffer->filename;
2733 #if 0
2734 if (NILP (obj))
2735 return "[none]";
2736 else if (XTYPE (obj) == Lisp_String && XSTRING (obj)->size > maxwidth)
2737 {
2738 bcopy ("...", decode_mode_spec_buf, 3);
2739 bcopy (XSTRING (obj)->data + XSTRING (obj)->size - maxwidth + 3,
2740 decode_mode_spec_buf + 3, maxwidth - 3);
2741 return decode_mode_spec_buf;
2742 }
2743 #endif
2744 break;
2745
2746 case 'l':
2747 {
2748 int startpos = marker_position (w->start);
2749 int line, linepos, topline;
2750 int nlines, junk;
2751 Lisp_Object tem;
2752 int height = XFASTINT (w->height);
2753
2754 /* If we decided that this buffer isn't suitable for line numbers,
2755 don't forget that too fast. */
2756 if (EQ (w->base_line_pos, w->buffer))
2757 return "??";
2758
2759 /* If the buffer is very big, don't waste time. */
2760 if (ZV - BEGV > line_number_display_limit)
2761 {
2762 w->base_line_pos = Qnil;
2763 w->base_line_number = Qnil;
2764 return "??";
2765 }
2766
2767 if (!NILP (w->base_line_number)
2768 && !NILP (w->base_line_pos)
2769 && XFASTINT (w->base_line_pos) <= marker_position (w->start))
2770 {
2771 line = XFASTINT (w->base_line_number);
2772 linepos = XFASTINT (w->base_line_pos);
2773 }
2774 else
2775 {
2776 line = 1;
2777 linepos = BEGV;
2778 }
2779
2780 /* Count lines from base line to window start position. */
2781 nlines = display_count_lines (linepos, startpos, startpos, &junk);
2782
2783 topline = nlines + line;
2784
2785 /* Determine a new base line, if the old one is too close
2786 or too far away, or if we did not have one.
2787 "Too close" means it's plausible a scroll-down would
2788 go back past it. */
2789 if (startpos == BEGV)
2790 {
2791 XFASTINT (w->base_line_number) = topline;
2792 XFASTINT (w->base_line_pos) = BEGV;
2793 }
2794 else if (nlines < height + 25 || nlines > height * 3 + 50
2795 || linepos == BEGV)
2796 {
2797 int limit = BEGV;
2798 int position;
2799 int distance = (height * 2 + 30) * 200;
2800
2801 if (startpos - distance > limit)
2802 limit = startpos - distance;
2803
2804 nlines = display_count_lines (startpos, limit,
2805 -(height * 2 + 30),
2806 &position);
2807 /* If we couldn't find the lines we wanted within
2808 200 chars per line,
2809 give up on line numbers for this window. */
2810 if (position == startpos - distance)
2811 {
2812 w->base_line_pos = w->buffer;
2813 w->base_line_number = Qnil;
2814 return "??";
2815 }
2816
2817 XFASTINT (w->base_line_number) = topline - nlines;
2818 XFASTINT (w->base_line_pos) = position;
2819 }
2820
2821 /* Now count lines from the start pos to point. */
2822 nlines = display_count_lines (startpos, PT, PT, &junk);
2823
2824 /* Record that we did display the line number. */
2825 line_number_displayed = 1;
2826
2827 /* Make the string to show. */
2828 sprintf (decode_mode_spec_buf, "%d", topline + nlines);
2829 return decode_mode_spec_buf;
2830 }
2831 break;
2832
2833 case 'm':
2834 obj = current_buffer->mode_name;
2835 break;
2836
2837 case 'n':
2838 if (BEGV > BEG || ZV < Z)
2839 return " Narrow";
2840 break;
2841
2842 case '*':
2843 if (!NILP (current_buffer->read_only))
2844 return "%";
2845 if (MODIFF > current_buffer->save_modified)
2846 return "*";
2847 return "-";
2848
2849 case '+':
2850 if (MODIFF > current_buffer->save_modified)
2851 return "*";
2852 return "-";
2853
2854 case 's':
2855 /* status of process */
2856 obj = Fget_buffer_process (Fcurrent_buffer ());
2857 if (NILP (obj))
2858 return "no process";
2859 #ifdef subprocesses
2860 obj = Fsymbol_name (Fprocess_status (obj));
2861 #endif
2862 break;
2863
2864 case 't': /* indicate TEXT or BINARY */
2865 #ifdef MSDOS
2866 decode_mode_spec_buf[0]
2867 = NILP (current_buffer->buffer_file_type) ? "T" : "B";
2868 decode_mode_spec_buf[1] = 0;
2869 return decode_mode_spec_buf;
2870 #else /* not MSDOS */
2871 return "T";
2872 #endif /* not MSDOS */
2873
2874 case 'p':
2875 {
2876 int pos = marker_position (w->start);
2877 int total = ZV - BEGV;
2878
2879 if (XFASTINT (w->window_end_pos) <= Z - ZV)
2880 {
2881 if (pos <= BEGV)
2882 return "All";
2883 else
2884 return "Bottom";
2885 }
2886 else if (pos <= BEGV)
2887 return "Top";
2888 else
2889 {
2890 total = ((pos - BEGV) * 100 + total - 1) / total;
2891 /* We can't normally display a 3-digit number,
2892 so get us a 2-digit number that is close. */
2893 if (total == 100)
2894 total = 99;
2895 sprintf (decode_mode_spec_buf, "%2d%%", total);
2896 return decode_mode_spec_buf;
2897 }
2898 }
2899
2900 /* Display percentage of size above the bottom of the screen. */
2901 case 'P':
2902 {
2903 int toppos = marker_position (w->start);
2904 int botpos = Z - XFASTINT (w->window_end_pos);
2905 int total = ZV - BEGV;
2906
2907 if (botpos >= ZV)
2908 {
2909 if (toppos <= BEGV)
2910 return "All";
2911 else
2912 return "Bottom";
2913 }
2914 else
2915 {
2916 total = ((botpos - BEGV) * 100 + total - 1) / total;
2917 /* We can't normally display a 3-digit number,
2918 so get us a 2-digit number that is close. */
2919 if (total == 100)
2920 total = 99;
2921 if (toppos <= BEGV)
2922 sprintf (decode_mode_spec_buf, "Top%2d%%", total);
2923 else
2924 sprintf (decode_mode_spec_buf, "%2d%%", total);
2925 return decode_mode_spec_buf;
2926 }
2927 }
2928
2929 case '%':
2930 return "%";
2931
2932 case '[':
2933 {
2934 int i;
2935 char *p;
2936
2937 if (command_loop_level > 5)
2938 return "[[[... ";
2939 p = decode_mode_spec_buf;
2940 for (i = 0; i < command_loop_level; i++)
2941 *p++ = '[';
2942 *p = 0;
2943 return decode_mode_spec_buf;
2944 }
2945
2946 case ']':
2947 {
2948 int i;
2949 char *p;
2950
2951 if (command_loop_level > 5)
2952 return " ...]]]";
2953 p = decode_mode_spec_buf;
2954 for (i = 0; i < command_loop_level; i++)
2955 *p++ = ']';
2956 *p = 0;
2957 return decode_mode_spec_buf;
2958 }
2959
2960 case '-':
2961 {
2962 register char *p;
2963 register int i;
2964
2965 if (maxwidth < sizeof (lots_of_dashes))
2966 return lots_of_dashes;
2967 else
2968 {
2969 for (p = decode_mode_spec_buf, i = maxwidth; i > 0; i--)
2970 *p++ = '-';
2971 *p = '\0';
2972 }
2973 return decode_mode_spec_buf;
2974 }
2975 }
2976
2977 if (XTYPE (obj) == Lisp_String)
2978 return (char *) XSTRING (obj)->data;
2979 else
2980 return "";
2981 }
2982
2983 /* Count up to N lines starting from FROM.
2984 But don't go beyond LIMIT.
2985 Return the number of lines thus found (always positive).
2986 Store the position after what was found into *POS_PTR. */
2987
2988 static int
2989 display_count_lines (from, limit, n, pos_ptr)
2990 int from, limit, n;
2991 int *pos_ptr;
2992 {
2993 int oldbegv = BEGV;
2994 int oldzv = ZV;
2995 int shortage = 0;
2996
2997 if (limit < from)
2998 BEGV = limit;
2999 else
3000 ZV = limit;
3001
3002 *pos_ptr = scan_buffer ('\n', from, n, &shortage, 0);
3003
3004 ZV = oldzv;
3005 BEGV = oldbegv;
3006
3007 if (n < 0)
3008 /* When scanning backwards, scan_buffer stops *after* the last newline
3009 it finds, but does count it. Compensate for that. */
3010 return - n - shortage - (*pos_ptr != limit);
3011 return n - shortage;
3012 }
3013 \f
3014 /* Display STRING on one line of window W, starting at HPOS.
3015 Display at position VPOS. Caller should have done get_display_line.
3016 If VPOS == -1, display it as the current frame's title.
3017 LENGTH is the length of STRING, or -1 meaning STRING is null-terminated.
3018
3019 TRUNCATE is GLYPH to display at end if truncated. Zero for none.
3020
3021 MINCOL is the first column ok to end at. (Pad with spaces to this col.)
3022 MAXCOL is the last column ok to end at. Truncate here.
3023 -1 for MINCOL or MAXCOL means no explicit minimum or maximum.
3024 Both count from the left edge of the frame, as does HPOS.
3025 The right edge of W is an implicit maximum.
3026 If TRUNCATE is nonzero, the implicit maximum is one column before the edge.
3027
3028 OBEY_WINDOW_WIDTH says to put spaces or vertical bars
3029 at the place where the current window ends in this line
3030 and not display anything beyond there. Otherwise, only MAXCOL
3031 controls where to stop output.
3032
3033 Returns ending hpos. */
3034
3035 static int
3036 display_string (w, vpos, string, length, hpos, truncate,
3037 obey_window_width, mincol, maxcol)
3038 struct window *w;
3039 unsigned char *string;
3040 int length;
3041 int vpos, hpos;
3042 GLYPH truncate;
3043 int obey_window_width;
3044 int mincol, maxcol;
3045 {
3046 register int c;
3047 register GLYPH *p1;
3048 int hscroll = XINT (w->hscroll);
3049 int tab_width = XINT (XBUFFER (w->buffer)->tab_width);
3050 register GLYPH *start;
3051 register GLYPH *end;
3052 FRAME_PTR f = XFRAME (WINDOW_FRAME (w));
3053 struct frame_glyphs *desired_glyphs = FRAME_DESIRED_GLYPHS (f);
3054 GLYPH *p1start = desired_glyphs->glyphs[vpos] + hpos;
3055 int window_width = XFASTINT (w->width);
3056
3057 /* Use the standard display table, not the window's display table.
3058 We don't want the mode line in rot13. */
3059 register struct Lisp_Vector *dp = 0;
3060
3061 if (XTYPE (Vstandard_display_table) == Lisp_Vector
3062 && XVECTOR (Vstandard_display_table)->size == DISP_TABLE_SIZE)
3063 dp = XVECTOR (Vstandard_display_table);
3064
3065 if (tab_width <= 0 || tab_width > 1000) tab_width = 8;
3066
3067 p1 = p1start;
3068 start = desired_glyphs->glyphs[vpos] + XFASTINT (w->left);
3069
3070 if (obey_window_width)
3071 {
3072 end = start + window_width - (truncate != 0);
3073
3074 if ((window_width + XFASTINT (w->left)) != FRAME_WIDTH (f))
3075 {
3076 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
3077 {
3078 int i;
3079
3080 for (i = 0; i < VERTICAL_SCROLL_BAR_WIDTH; i++)
3081 *end-- = ' ';
3082 }
3083 else
3084 *end-- = '|';
3085 }
3086 }
3087
3088 if (! obey_window_width
3089 || (maxcol >= 0 && end - desired_glyphs->glyphs[vpos] > maxcol))
3090 end = desired_glyphs->glyphs[vpos] + maxcol;
3091
3092 if (maxcol >= 0 && mincol > maxcol)
3093 mincol = maxcol;
3094
3095 while (p1 < end)
3096 {
3097 if (length == 0)
3098 break;
3099 c = *string++;
3100 /* Specified length. */
3101 if (length >= 0)
3102 length--;
3103 /* Unspecified length (null-terminated string). */
3104 else if (c == 0)
3105 break;
3106
3107 if (c >= 040 && c < 0177
3108 && (dp == 0 || XTYPE (DISP_CHAR_VECTOR (dp, c)) != Lisp_Vector))
3109 {
3110 if (p1 >= start)
3111 *p1 = c;
3112 p1++;
3113 }
3114 else if (c == '\t')
3115 {
3116 do
3117 {
3118 if (p1 >= start && p1 < end)
3119 *p1 = SPACEGLYPH;
3120 p1++;
3121 }
3122 while ((p1 - start + hscroll - (hscroll > 0)) % tab_width);
3123 }
3124 else if (dp != 0 && XTYPE (DISP_CHAR_VECTOR (dp, c)) == Lisp_Vector)
3125 {
3126 p1 = copy_part_of_rope (f, p1, start,
3127 XVECTOR (DISP_CHAR_VECTOR (dp, c))->contents,
3128 XVECTOR (DISP_CHAR_VECTOR (dp, c))->size,
3129 0);
3130 }
3131 else if (c < 0200 && ! NILP (buffer_defaults.ctl_arrow))
3132 {
3133 if (p1 >= start)
3134 *p1 = fix_glyph (f, (dp && XTYPE (DISP_CTRL_GLYPH (dp)) == Lisp_Int
3135 ? XINT (DISP_CTRL_GLYPH (dp)) : '^'),
3136 0);
3137 p1++;
3138 if (p1 >= start && p1 < end)
3139 *p1 = c ^ 0100;
3140 p1++;
3141 }
3142 else
3143 {
3144 if (p1 >= start)
3145 *p1 = fix_glyph (f, (dp && XTYPE (DISP_ESCAPE_GLYPH (dp)) == Lisp_Int
3146 ? XINT (DISP_ESCAPE_GLYPH (dp)) : '\\'),
3147 0);
3148 p1++;
3149 if (p1 >= start && p1 < end)
3150 *p1 = (c >> 6) + '0';
3151 p1++;
3152 if (p1 >= start && p1 < end)
3153 *p1 = (7 & (c >> 3)) + '0';
3154 p1++;
3155 if (p1 >= start && p1 < end)
3156 *p1 = (7 & c) + '0';
3157 p1++;
3158 }
3159 }
3160
3161 if (c && length > 0)
3162 {
3163 p1 = end;
3164 if (truncate) *p1++ = fix_glyph (f, truncate, 0);
3165 }
3166 else if (mincol >= 0)
3167 {
3168 end = desired_glyphs->glyphs[vpos] + mincol;
3169 while (p1 < end)
3170 *p1++ = SPACEGLYPH;
3171 }
3172
3173 {
3174 register int len = p1 - desired_glyphs->glyphs[vpos];
3175
3176 if (len > desired_glyphs->used[vpos])
3177 desired_glyphs->used[vpos] = len;
3178 desired_glyphs->glyphs[vpos][desired_glyphs->used[vpos]] = 0;
3179
3180 return len;
3181 }
3182 }
3183 \f
3184 void
3185 syms_of_xdisp ()
3186 {
3187 staticpro (&last_arrow_position);
3188 staticpro (&last_arrow_string);
3189 last_arrow_position = Qnil;
3190 last_arrow_string = Qnil;
3191
3192 DEFVAR_LISP ("global-mode-string", &Vglobal_mode_string,
3193 "String (or mode line construct) included (normally) in `mode-line-format'.");
3194 Vglobal_mode_string = Qnil;
3195
3196 DEFVAR_LISP ("overlay-arrow-position", &Voverlay_arrow_position,
3197 "Marker for where to display an arrow on top of the buffer text.\n\
3198 This must be the beginning of a line in order to work.\n\
3199 See also `overlay-arrow-string'.");
3200 Voverlay_arrow_position = Qnil;
3201
3202 DEFVAR_LISP ("overlay-arrow-string", &Voverlay_arrow_string,
3203 "String to display as an arrow. See also `overlay-arrow-position'.");
3204 Voverlay_arrow_string = Qnil;
3205
3206 DEFVAR_INT ("scroll-step", &scroll_step,
3207 "*The number of lines to try scrolling a window by when point moves out.\n\
3208 If that fails to bring point back on frame, point is centered instead.\n\
3209 If this is zero, point is always centered after it moves off frame.");
3210
3211 DEFVAR_INT ("debug-end-pos", &debug_end_pos, "Don't ask");
3212
3213 DEFVAR_BOOL ("truncate-partial-width-windows",
3214 &truncate_partial_width_windows,
3215 "*Non-nil means truncate lines in all windows less than full frame wide.");
3216 truncate_partial_width_windows = 1;
3217
3218 DEFVAR_BOOL ("mode-line-inverse-video", &mode_line_inverse_video,
3219 "*Non-nil means use inverse video for the mode line.");
3220 mode_line_inverse_video = 1;
3221
3222 DEFVAR_INT ("line-number-display-limit", &line_number_display_limit,
3223 "*Maximum buffer size for which line number should be displayed.");
3224 line_number_display_limit = 1000000;
3225
3226 DEFVAR_BOOL ("highlight-nonselected-windows", &highlight_nonselected_windows,
3227 "*Non-nil means highlight region even in nonselected windows.");
3228 highlight_nonselected_windows = 1;
3229 }
3230
3231 /* initialize the window system */
3232 init_xdisp ()
3233 {
3234 Lisp_Object root_window;
3235 #ifndef COMPILER_REGISTER_BUG
3236 register
3237 #endif /* COMPILER_REGISTER_BUG */
3238 struct window *mini_w;
3239
3240 this_line_bufpos = 0;
3241
3242 mini_w = XWINDOW (minibuf_window);
3243 root_window = FRAME_ROOT_WINDOW (XFRAME (WINDOW_FRAME (mini_w)));
3244
3245 echo_area_glyphs = 0;
3246 previous_echo_glyphs = 0;
3247
3248 if (!noninteractive)
3249 {
3250 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (root_window)));
3251 XFASTINT (XWINDOW (root_window)->top) = 0;
3252 set_window_height (root_window, FRAME_HEIGHT (f) - 1, 0);
3253 XFASTINT (mini_w->top) = FRAME_HEIGHT (f) - 1;
3254 set_window_height (minibuf_window, 1, 0);
3255
3256 XFASTINT (XWINDOW (root_window)->width) = FRAME_WIDTH (f);
3257 XFASTINT (mini_w->width) = FRAME_WIDTH (f);
3258 }
3259 }