(Finternal_char_font): Search only the selected frame for a window of
[bpt/emacs.git] / src / xdisp.c
CommitLineData
a2889657 1/* Display generation from window structure and buffer text.
a0315a63 2 Copyright (C) 1985, 86, 87, 88, 93, 94, 95, 97, 98, 99, 2000
5f5c8ee5 3 Free Software Foundation, Inc.
a2889657
JB
4
5This file is part of GNU Emacs.
6
7GNU Emacs is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
b1d1124b 9the Free Software Foundation; either version 2, or (at your option)
a2889657
JB
10any later version.
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GNU Emacs; see the file COPYING. If not, write to
3b7ad313
EN
19the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20Boston, MA 02111-1307, USA. */
a2889657 21
5f5c8ee5
GM
22/* New redisplay written by Gerd Moellmann <gerd@gnu.org>.
23
24 Redisplay.
25
26 Emacs separates the task of updating the display from code
27 modifying global state, e.g. buffer text. This way functions
28 operating on buffers don't also have to be concerned with updating
29 the display.
30
31 Updating the display is triggered by the Lisp interpreter when it
32 decides it's time to do it. This is done either automatically for
33 you as part of the interpreter's command loop or as the result of
34 calling Lisp functions like `sit-for'. The C function `redisplay'
35 in xdisp.c is the only entry into the inner redisplay code. (Or,
36 let's say almost---see the the description of direct update
37 operations, below.).
38
39 The following diagram shows how redisplay code is invoked. As you
40 can see, Lisp calls redisplay and vice versa. Under window systems
41 like X, some portions of the redisplay code are also called
42 asynchronously during mouse movement or expose events. It is very
43 important that these code parts do NOT use the C library (malloc,
44 free) because many C libraries under Unix are not reentrant. They
45 may also NOT call functions of the Lisp interpreter which could
46 change the interpreter's state. If you don't follow these rules,
47 you will encounter bugs which are very hard to explain.
48
49 (Direct functions, see below)
50 direct_output_for_insert,
51 direct_forward_char (dispnew.c)
52 +---------------------------------+
53 | |
54 | V
55 +--------------+ redisplay() +----------------+
56 | Lisp machine |---------------->| Redisplay code |<--+
57 +--------------+ (xdisp.c) +----------------+ |
58 ^ | |
59 +----------------------------------+ |
60 Don't use this path when called |
61 asynchronously! |
62 |
63 expose_window (asynchronous) |
64 |
65 X expose events -----+
66
67 What does redisplay? Obviously, it has to figure out somehow what
68 has been changed since the last time the display has been updated,
69 and to make these changes visible. Preferably it would do that in
70 a moderately intelligent way, i.e. fast.
71
72 Changes in buffer text can be deduced from window and buffer
73 structures, and from some global variables like `beg_unchanged' and
74 `end_unchanged'. The contents of the display are additionally
75 recorded in a `glyph matrix', a two-dimensional matrix of glyph
76 structures. Each row in such a matrix corresponds to a line on the
77 display, and each glyph in a row corresponds to a column displaying
78 a character, an image, or what else. This matrix is called the
79 `current glyph matrix' or `current matrix' in redisplay
80 terminology.
81
82 For buffer parts that have been changed since the last update, a
83 second glyph matrix is constructed, the so called `desired glyph
84 matrix' or short `desired matrix'. Current and desired matrix are
85 then compared to find a cheap way to update the display, e.g. by
86 reusing part of the display by scrolling lines.
87
88
89 Direct operations.
90
91 You will find a lot of of redisplay optimizations when you start
92 looking at the innards of redisplay. The overall goal of all these
93 optimizations is to make redisplay fast because it is done
94 frequently.
95
96 Two optimizations are not found in xdisp.c. These are the direct
97 operations mentioned above. As the name suggests they follow a
98 different principle than the rest of redisplay. Instead of
99 building a desired matrix and then comparing it with the current
100 display, they perform their actions directly on the display and on
101 the current matrix.
102
103 One direct operation updates the display after one character has
104 been entered. The other one moves the cursor by one position
105 forward or backward. You find these functions under the names
106 `direct_output_for_insert' and `direct_output_forward_char' in
107 dispnew.c.
108
109
110 Desired matrices.
111
112 Desired matrices are always built per Emacs window. The function
113 `display_line' is the central function to look at if you are
114 interested. It constructs one row in a desired matrix given an
115 iterator structure containing both a buffer position and a
116 description of the environment in which the text is to be
117 displayed. But this is too early, read on.
118
119 Characters and pixmaps displayed for a range of buffer text depend
120 on various settings of buffers and windows, on overlays and text
121 properties, on display tables, on selective display. The good news
122 is that all this hairy stuff is hidden behind a small set of
123 interface functions taking a iterator structure (struct it)
124 argument.
125
126 Iteration over things to be be displayed is then simple. It is
127 started by initializing an iterator with a call to init_iterator
128 (or init_string_iterator for that matter). Calls to
129 get_next_display_element fill the iterator structure with relevant
130 information about the next thing to display. Calls to
131 set_iterator_to_next move the iterator to the next thing.
132
133 Besides this, an iterator also contains information about the
134 display environment in which glyphs for display elements are to be
135 produced. It has fields for the width and height of the display,
136 the information whether long lines are truncated or continued, a
137 current X and Y position, and lots of other stuff you can better
138 see in dispextern.h.
139
140 Glyphs in a desired matrix are normally constructed in a loop
141 calling get_next_display_element and then produce_glyphs. The call
142 to produce_glyphs will fill the iterator structure with pixel
143 information about the element being displayed and at the same time
144 produce glyphs for it. If the display element fits on the line
145 being displayed, set_iterator_to_next is called next, otherwise the
146 glyphs produced are discarded.
147
148
149 Frame matrices.
150
151 That just couldn't be all, could it? What about terminal types not
152 supporting operations on sub-windows of the screen? To update the
153 display on such a terminal, window-based glyph matrices are not
154 well suited. To be able to reuse part of the display (scrolling
155 lines up and down), we must instead have a view of the whole
156 screen. This is what `frame matrices' are for. They are a trick.
157
158 Frames on terminals like above have a glyph pool. Windows on such
159 a frame sub-allocate their glyph memory from their frame's glyph
160 pool. The frame itself is given its own glyph matrices. By
161 coincidence---or maybe something else---rows in window glyph
162 matrices are slices of corresponding rows in frame matrices. Thus
163 writing to window matrices implicitly updates a frame matrix which
164 provides us with the view of the whole screen that we originally
165 wanted to have without having to move many bytes around. To be
166 honest, there is a little bit more done, but not much more. If you
167 plan to extend that code, take a look at dispnew.c. The function
168 build_frame_matrix is a good starting point. */
a2889657 169
18160b98 170#include <config.h>
a2889657 171#include <stdio.h>
a2889657 172#include "lisp.h"
44fa5b1e 173#include "frame.h"
a2889657
JB
174#include "window.h"
175#include "termchar.h"
176#include "dispextern.h"
177#include "buffer.h"
1c9241f5 178#include "charset.h"
a2889657
JB
179#include "indent.h"
180#include "commands.h"
181#include "macros.h"
182#include "disptab.h"
30c566e4 183#include "termhooks.h"
b0a0fbda 184#include "intervals.h"
fe8b0cf8 185#include "keyboard.h"
1c9241f5
KH
186#include "coding.h"
187#include "process.h"
dfcf069d 188#include "region-cache.h"
0ef75e87 189#include "fontset.h"
dfcf069d 190
6d55d620 191#ifdef HAVE_X_WINDOWS
dfcf069d
AS
192#include "xterm.h"
193#endif
a75dfea0
AI
194#ifdef WINDOWSNT
195#include "w32term.h"
196#endif
a2889657 197
5f5c8ee5
GM
198#define min(a, b) ((a) < (b) ? (a) : (b))
199#define max(a, b) ((a) > (b) ? (a) : (b))
200
201#define INFINITY 10000000
202
8f3343d0 203#if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI)
2e621225 204extern void set_frame_menubar P_ ((struct frame *f, int, int));
cd6dfed6 205extern int pending_menu_activation;
76412d64
RS
206#endif
207
a2889657
JB
208extern int interrupt_input;
209extern int command_loop_level;
210
b6436d4e
RS
211extern int minibuffer_auto_raise;
212
c4628384
RS
213extern Lisp_Object Qface;
214
399164b4
KH
215extern Lisp_Object Voverriding_local_map;
216extern Lisp_Object Voverriding_local_map_menu_flag;
5f5c8ee5 217extern Lisp_Object Qmenu_item;
399164b4 218
d46fb96a 219Lisp_Object Qoverriding_local_map, Qoverriding_terminal_local_map;
75c43375 220Lisp_Object Qwindow_scroll_functions, Vwindow_scroll_functions;
e0bfbde6 221Lisp_Object Qredisplay_end_trigger_functions;
2e54982e 222Lisp_Object Qinhibit_point_motion_hooks;
9499d71b 223Lisp_Object QCeval, Qwhen, QCfile, QCdata;
5f5c8ee5
GM
224Lisp_Object Qfontified;
225
226/* Functions called to fontify regions of text. */
227
228Lisp_Object Vfontification_functions;
229Lisp_Object Qfontification_functions;
230
e037b9ec 231/* Non-zero means draw tool bar buttons raised when the mouse moves
5f5c8ee5
GM
232 over them. */
233
e037b9ec 234int auto_raise_tool_bar_buttons_p;
5f5c8ee5 235
e037b9ec 236/* Margin around tool bar buttons in pixels. */
5f5c8ee5 237
e037b9ec 238int tool_bar_button_margin;
5f5c8ee5 239
e037b9ec 240/* Thickness of shadow to draw around tool bar buttons. */
5f5c8ee5 241
e037b9ec 242int tool_bar_button_relief;
5f5c8ee5 243
e037b9ec 244/* Non-zero means automatically resize tool-bars so that all tool-bar
5f5c8ee5
GM
245 items are visible, and no blank lines remain. */
246
e037b9ec 247int auto_resize_tool_bars_p;
399164b4 248
735c094c
KH
249/* Non-nil means don't actually do any redisplay. */
250
251Lisp_Object Vinhibit_redisplay, Qinhibit_redisplay;
252
5f5c8ee5
GM
253/* Names of text properties relevant for redisplay. */
254
a7e27ef7
DL
255Lisp_Object Qdisplay, Qrelative_width, Qalign_to;
256extern Lisp_Object Qface, Qinvisible, Qimage, Qwidth;
5f5c8ee5
GM
257
258/* Symbols used in text property values. */
259
260Lisp_Object Qspace, QCalign_to, QCrelative_width, QCrelative_height;
a7e27ef7 261Lisp_Object Qleft_margin, Qright_margin, Qspace_width, Qraise;
f3751a65 262Lisp_Object Qmargin;
a7e27ef7 263extern Lisp_Object Qheight;
5f5c8ee5 264
8f897821 265/* Non-nil means highlight trailing whitespace. */
5f5c8ee5 266
8f897821 267Lisp_Object Vshow_trailing_whitespace;
5f5c8ee5
GM
268
269/* Name of the face used to highlight trailing whitespace. */
270
271Lisp_Object Qtrailing_whitespace;
272
273/* The symbol `image' which is the car of the lists used to represent
274 images in Lisp. */
275
276Lisp_Object Qimage;
277
278/* Non-zero means print newline to stdout before next mini-buffer
279 message. */
a2889657
JB
280
281int noninteractive_need_newline;
282
5f5c8ee5 283/* Non-zero means print newline to message log before next message. */
f88eb0b6 284
3c6595e0 285static int message_log_need_newline;
f88eb0b6 286
5f5c8ee5
GM
287\f
288/* The buffer position of the first character appearing entirely or
289 partially on the line of the selected window which contains the
290 cursor; <= 0 if not known. Set by set_cursor_from_row, used for
291 redisplay optimization in redisplay_internal. */
a2889657 292
5f5c8ee5 293static struct text_pos this_line_start_pos;
a2889657 294
5f5c8ee5
GM
295/* Number of characters past the end of the line above, including the
296 terminating newline. */
297
298static struct text_pos this_line_end_pos;
299
300/* The vertical positions and the height of this line. */
a2889657 301
a2889657 302static int this_line_vpos;
5f5c8ee5
GM
303static int this_line_y;
304static int this_line_pixel_height;
305
306/* X position at which this display line starts. Usually zero;
307 negative if first character is partially visible. */
308
309static int this_line_start_x;
a2889657 310
5f5c8ee5 311/* Buffer that this_line_.* variables are referring to. */
a2889657 312
a2889657
JB
313static struct buffer *this_line_buffer;
314
5f5c8ee5
GM
315/* Nonzero means truncate lines in all windows less wide than the
316 frame. */
a2889657 317
a2889657
JB
318int truncate_partial_width_windows;
319
7bbe686f 320/* A flag to control how to display unibyte 8-bit character. */
5f5c8ee5 321
7bbe686f 322int unibyte_display_via_language_environment;
5f5c8ee5
GM
323
324/* Nonzero means we have more than one non-mini-buffer-only frame.
325 Not guaranteed to be accurate except while parsing
326 frame-title-format. */
7bbe686f 327
d39b6696
KH
328int multiple_frames;
329
a2889657
JB
330Lisp_Object Vglobal_mode_string;
331
332/* Marker for where to display an arrow on top of the buffer text. */
5f5c8ee5 333
a2889657
JB
334Lisp_Object Voverlay_arrow_position;
335
5f5c8ee5
GM
336/* String to display for the arrow. Only used on terminal frames. */
337
a2889657
JB
338Lisp_Object Voverlay_arrow_string;
339
5f5c8ee5
GM
340/* Values of those variables at last redisplay. However, if
341 Voverlay_arrow_position is a marker, last_arrow_position is its
342 numerical position. */
343
d45de95b
RS
344static Lisp_Object last_arrow_position, last_arrow_string;
345
5f5c8ee5
GM
346/* Like mode-line-format, but for the title bar on a visible frame. */
347
d39b6696
KH
348Lisp_Object Vframe_title_format;
349
5f5c8ee5
GM
350/* Like mode-line-format, but for the title bar on an iconified frame. */
351
d39b6696
KH
352Lisp_Object Vicon_title_format;
353
08b610e4
RS
354/* List of functions to call when a window's size changes. These
355 functions get one arg, a frame on which one or more windows' sizes
356 have changed. */
5f5c8ee5 357
08b610e4
RS
358static Lisp_Object Vwindow_size_change_functions;
359
cf074754
RS
360Lisp_Object Qmenu_bar_update_hook;
361
a2889657 362/* Nonzero if overlay arrow has been displayed once in this window. */
a2889657 363
5f5c8ee5 364static int overlay_arrow_seen;
ca26e1c8 365
fba9ce76 366/* Nonzero means highlight the region even in nonselected windows. */
fba9ce76 367
5f5c8ee5
GM
368int highlight_nonselected_windows;
369
370/* If cursor motion alone moves point off frame, try scrolling this
371 many lines up or down if that will bring it back. */
372
14510fee 373static int scroll_step;
a2889657 374
5f5c8ee5
GM
375/* Non-0 means scroll just far enough to bring point back on the
376 screen, when appropriate. */
377
0789adb2
RS
378static int scroll_conservatively;
379
5f5c8ee5
GM
380/* Recenter the window whenever point gets within this many lines of
381 the top or bottom of the window. This value is translated into a
382 pixel value by multiplying it with CANON_Y_UNIT, which means that
383 there is really a fixed pixel height scroll margin. */
384
9afd2168
RS
385int scroll_margin;
386
5f5c8ee5
GM
387/* Number of windows showing the buffer of the selected window (or
388 another buffer with the same base buffer). keyboard.c refers to
389 this. */
a2889657 390
a2889657
JB
391int buffer_shared;
392
5f5c8ee5 393/* Vector containing glyphs for an ellipsis `...'. */
a2889657 394
5f5c8ee5 395static Lisp_Object default_invis_vector[3];
a2889657 396
5f5c8ee5 397/* Nonzero means display mode line highlighted. */
a2889657 398
a2889657
JB
399int mode_line_inverse_video;
400
5f5c8ee5
GM
401/* Prompt to display in front of the mini-buffer contents. */
402
8c5b6a0a 403Lisp_Object minibuf_prompt;
a2889657 404
5f5c8ee5
GM
405/* Width of current mini-buffer prompt. Only set after display_line
406 of the line that contains the prompt. */
407
a2889657 408int minibuf_prompt_width;
5f5c8ee5
GM
409int minibuf_prompt_pixel_width;
410
5f5c8ee5
GM
411/* This is the window where the echo area message was displayed. It
412 is always a mini-buffer window, but it may not be the same window
413 currently active as a mini-buffer. */
414
73af359d
RS
415Lisp_Object echo_area_window;
416
c6e89d6c
GM
417/* List of pairs (MESSAGE . MULTIBYTE). The function save_message
418 pushes the current message and the value of
419 message_enable_multibyte on the stack, the function restore_message
420 pops the stack and displays MESSAGE again. */
421
422Lisp_Object Vmessage_stack;
423
a3788d53
RS
424/* Nonzero means multibyte characters were enabled when the echo area
425 message was specified. */
5f5c8ee5 426
a3788d53
RS
427int message_enable_multibyte;
428
5f5c8ee5
GM
429/* True if we should redraw the mode lines on the next redisplay. */
430
a2889657
JB
431int update_mode_lines;
432
5f5c8ee5
GM
433/* Nonzero if window sizes or contents have changed since last
434 redisplay that finished */
435
a2889657
JB
436int windows_or_buffers_changed;
437
5f5c8ee5
GM
438/* Nonzero after display_mode_line if %l was used and it displayed a
439 line number. */
440
aa6d10fa
RS
441int line_number_displayed;
442
443/* Maximum buffer size for which to display line numbers. */
5f5c8ee5 444
090703f4 445Lisp_Object Vline_number_display_limit;
5992c4f7 446
5d121aec
KH
447/* line width to consider when repostioning for line number display */
448
449static int line_number_display_limit_width;
450
5f5c8ee5
GM
451/* Number of lines to keep in the message log buffer. t means
452 infinite. nil means don't log at all. */
453
5992c4f7 454Lisp_Object Vmessage_log_max;
d45de95b 455
6a94510a
GM
456/* The name of the *Messages* buffer, a string. */
457
458static Lisp_Object Vmessages_buffer_name;
459
c6e89d6c
GM
460/* Current, index 0, and last displayed echo area message. Either
461 buffers from echo_buffers, or nil to indicate no message. */
462
463Lisp_Object echo_area_buffer[2];
464
465/* The buffers referenced from echo_area_buffer. */
466
467static Lisp_Object echo_buffer[2];
468
469/* A vector saved used in with_area_buffer to reduce consing. */
470
471static Lisp_Object Vwith_echo_area_save_vector;
472
473/* Non-zero means display_echo_area should display the last echo area
474 message again. Set by redisplay_preserve_echo_area. */
475
476static int display_last_displayed_message_p;
477
478/* Nonzero if echo area is being used by print; zero if being used by
479 message. */
480
481int message_buf_print;
482
9142dd5b
GM
483/* Maximum height for resizing mini-windows. Either a float
484 specifying a fraction of the available height, or an integer
485 specifying a number of lines. */
c6e89d6c 486
ad4f174e
GM
487Lisp_Object Vmax_mini_window_height;
488
489/* Non-zero means messages should be displayed with truncated
490 lines instead of being continued. */
491
492int message_truncate_lines;
493Lisp_Object Qmessage_truncate_lines;
c6e89d6c 494
d6d26ed3
GM
495/* Non-zero means we want a hollow cursor in windows that are not
496 selected. Zero means there's no cursor in such windows. */
497
498int cursor_in_non_selected_windows;
499
5f5c8ee5
GM
500/* A scratch glyph row with contents used for generating truncation
501 glyphs. Also used in direct_output_for_insert. */
12adba34 502
5f5c8ee5
GM
503#define MAX_SCRATCH_GLYPHS 100
504struct glyph_row scratch_glyph_row;
505static struct glyph scratch_glyphs[MAX_SCRATCH_GLYPHS];
1adc55de 506
5f5c8ee5
GM
507/* Ascent and height of the last line processed by move_it_to. */
508
509static int last_max_ascent, last_height;
510
511/* The maximum distance to look ahead for text properties. Values
512 that are too small let us call compute_char_face and similar
513 functions too often which is expensive. Values that are too large
514 let us call compute_char_face and alike too often because we
515 might not be interested in text properties that far away. */
516
517#define TEXT_PROP_DISTANCE_LIMIT 100
518
47589c8c
GM
519#if GLYPH_DEBUG
520
5f5c8ee5
GM
521/* Non-zero means print traces of redisplay if compiled with
522 GLYPH_DEBUG != 0. */
523
5f5c8ee5 524int trace_redisplay_p;
47589c8c
GM
525
526/* Non-zero means trace with TRACE_MOVE to stderr. */
527
528int trace_move;
529
530#ifdef DEBUG_TRACE_MOVE
531#define TRACE_MOVE(x) if (trace_move) fprintf x; else (void) 0
532#else
91c3f500 533#define TRACE_MOVE(x) (void) 0
5f5c8ee5
GM
534#endif
535
91c3f500
KH
536#else /* not GLYPH_DEBUG */
537
538#define TRACE_MOVE(x) (void) 0
539
540#endif /* not GLYPH_DEBUG */
47589c8c 541
d475bcb8
GM
542/* Non-zero means automatically scroll windows horizontally to make
543 point visible. */
544
545int automatic_hscrolling_p;
546
e00daaa0
GM
547/* A list of symbols, one for each supported image type. */
548
549Lisp_Object Vimage_types;
550
5f5c8ee5
GM
551/* Value returned from text property handlers (see below). */
552
553enum prop_handled
3c6595e0 554{
5f5c8ee5
GM
555 HANDLED_NORMALLY,
556 HANDLED_RECOMPUTE_PROPS,
557 HANDLED_OVERLAY_STRING_CONSUMED,
558 HANDLED_RETURN
559};
3c6595e0 560
5f5c8ee5
GM
561/* A description of text properties that redisplay is interested
562 in. */
3c6595e0 563
5f5c8ee5
GM
564struct props
565{
566 /* The name of the property. */
567 Lisp_Object *name;
90adcf20 568
5f5c8ee5
GM
569 /* A unique index for the property. */
570 enum prop_idx idx;
571
572 /* A handler function called to set up iterator IT from the property
573 at IT's current position. Value is used to steer handle_stop. */
574 enum prop_handled (*handler) P_ ((struct it *it));
575};
576
577static enum prop_handled handle_face_prop P_ ((struct it *));
578static enum prop_handled handle_invisible_prop P_ ((struct it *));
579static enum prop_handled handle_display_prop P_ ((struct it *));
260a86a0 580static enum prop_handled handle_composition_prop P_ ((struct it *));
5f5c8ee5
GM
581static enum prop_handled handle_overlay_change P_ ((struct it *));
582static enum prop_handled handle_fontified_prop P_ ((struct it *));
583
584/* Properties handled by iterators. */
585
586static struct props it_props[] =
5992c4f7 587{
5f5c8ee5
GM
588 {&Qfontified, FONTIFIED_PROP_IDX, handle_fontified_prop},
589 /* Handle `face' before `display' because some sub-properties of
590 `display' need to know the face. */
591 {&Qface, FACE_PROP_IDX, handle_face_prop},
592 {&Qdisplay, DISPLAY_PROP_IDX, handle_display_prop},
593 {&Qinvisible, INVISIBLE_PROP_IDX, handle_invisible_prop},
260a86a0 594 {&Qcomposition, COMPOSITION_PROP_IDX, handle_composition_prop},
5f5c8ee5
GM
595 {NULL, 0, NULL}
596};
5992c4f7 597
5f5c8ee5
GM
598/* Value is the position described by X. If X is a marker, value is
599 the marker_position of X. Otherwise, value is X. */
12adba34 600
5f5c8ee5 601#define COERCE_MARKER(X) (MARKERP ((X)) ? Fmarker_position (X) : (X))
12adba34 602
5f5c8ee5 603/* Enumeration returned by some move_it_.* functions internally. */
12adba34 604
5f5c8ee5
GM
605enum move_it_result
606{
607 /* Not used. Undefined value. */
608 MOVE_UNDEFINED,
bab29e15 609
5f5c8ee5
GM
610 /* Move ended at the requested buffer position or ZV. */
611 MOVE_POS_MATCH_OR_ZV,
bab29e15 612
5f5c8ee5
GM
613 /* Move ended at the requested X pixel position. */
614 MOVE_X_REACHED,
12adba34 615
5f5c8ee5
GM
616 /* Move within a line ended at the end of a line that must be
617 continued. */
618 MOVE_LINE_CONTINUED,
619
620 /* Move within a line ended at the end of a line that would
621 be displayed truncated. */
622 MOVE_LINE_TRUNCATED,
ff6c30e5 623
5f5c8ee5
GM
624 /* Move within a line ended at a line end. */
625 MOVE_NEWLINE_OR_CR
626};
12adba34 627
ff6c30e5 628
5f5c8ee5
GM
629\f
630/* Function prototypes. */
631
2e621225
GM
632static char *decode_mode_spec_coding P_ ((Lisp_Object, char *, int));
633static int invisible_text_between_p P_ ((struct it *, int, int));
634static int next_element_from_ellipsis P_ ((struct it *));
635static void pint2str P_ ((char *, int, int));
636static struct text_pos run_window_scroll_functions P_ ((Lisp_Object,
637 struct text_pos));
638static void reconsider_clip_changes P_ ((struct window *, struct buffer *));
639static int text_outside_line_unchanged_p P_ ((struct window *, int, int));
640static void store_frame_title_char P_ ((char));
641static int store_frame_title P_ ((unsigned char *, int, int));
642static void x_consider_frame_title P_ ((Lisp_Object));
643static void handle_stop P_ ((struct it *));
644static int tool_bar_lines_needed P_ ((struct frame *));
06568bbf 645static int single_display_prop_intangible_p P_ ((Lisp_Object));
5bcfeb49 646static void ensure_echo_area_buffers P_ ((void));
e037b9ec
GM
647static struct glyph_row *row_containing_pos P_ ((struct window *, int,
648 struct glyph_row *,
649 struct glyph_row *));
c6e89d6c
GM
650static Lisp_Object unwind_with_echo_area_buffer P_ ((Lisp_Object));
651static Lisp_Object with_echo_area_buffer_unwind_data P_ ((struct window *));
23a96c77 652static int with_echo_area_buffer P_ ((struct window *, int,
23dd2d97
KR
653 int (*) (EMACS_INT, Lisp_Object, EMACS_INT, EMACS_INT),
654 EMACS_INT, Lisp_Object, EMACS_INT, EMACS_INT));
c6e89d6c 655static void clear_garbaged_frames P_ ((void));
23dd2d97
KR
656static int current_message_1 P_ ((EMACS_INT, Lisp_Object, EMACS_INT, EMACS_INT));
657static int truncate_message_1 P_ ((EMACS_INT, Lisp_Object, EMACS_INT, EMACS_INT));
658static int set_message_1 P_ ((EMACS_INT, Lisp_Object, EMACS_INT, EMACS_INT));
c6e89d6c 659static int display_echo_area P_ ((struct window *));
23dd2d97
KR
660static int display_echo_area_1 P_ ((EMACS_INT, Lisp_Object, EMACS_INT, EMACS_INT));
661static int resize_mini_window_1 P_ ((EMACS_INT, Lisp_Object, EMACS_INT, EMACS_INT));
28514cd9 662static Lisp_Object unwind_redisplay P_ ((Lisp_Object));
4fdb80f2 663static int string_char_and_length P_ ((unsigned char *, int, int *));
5f5c8ee5
GM
664static struct text_pos display_prop_end P_ ((struct it *, Lisp_Object,
665 struct text_pos));
666static int compute_window_start_on_continuation_line P_ ((struct window *));
667static Lisp_Object eval_handler P_ ((Lisp_Object));
5f5c8ee5
GM
668static void insert_left_trunc_glyphs P_ ((struct it *));
669static struct glyph_row *get_overlay_arrow_glyph_row P_ ((struct window *));
670static void extend_face_to_end_of_line P_ ((struct it *));
80c6cb1f 671static int append_space P_ ((struct it *, int));
5f5c8ee5
GM
672static void make_cursor_line_fully_visible P_ ((struct window *));
673static int try_scrolling P_ ((Lisp_Object, int, int, int, int));
47589c8c 674static int try_cursor_movement P_ ((Lisp_Object, struct text_pos, int *));
5f5c8ee5
GM
675static int trailing_whitespace_p P_ ((int));
676static int message_log_check_duplicate P_ ((int, int, int, int));
677int invisible_p P_ ((Lisp_Object, Lisp_Object));
678int invisible_ellipsis_p P_ ((Lisp_Object, Lisp_Object));
679static void push_it P_ ((struct it *));
680static void pop_it P_ ((struct it *));
681static void sync_frame_with_window_matrix_rows P_ ((struct window *));
682static void redisplay_internal P_ ((int));
c6e89d6c 683static int echo_area_display P_ ((int));
5f5c8ee5
GM
684static void redisplay_windows P_ ((Lisp_Object));
685static void redisplay_window P_ ((Lisp_Object, int));
686static void update_menu_bar P_ ((struct frame *, int));
687static int try_window_reusing_current_matrix P_ ((struct window *));
688static int try_window_id P_ ((struct window *));
689static int display_line P_ ((struct it *));
690static void display_mode_lines P_ ((struct window *));
691static void display_mode_line P_ ((struct window *, enum face_id,
692 Lisp_Object));
693static int display_mode_element P_ ((struct it *, int, int, int, Lisp_Object));
68c45bf0 694static char *decode_mode_spec P_ ((struct window *, int, int, int));
5f5c8ee5
GM
695static void display_menu_bar P_ ((struct window *));
696static int display_count_lines P_ ((int, int, int, int, int *));
697static int display_string P_ ((unsigned char *, Lisp_Object, Lisp_Object,
698 int, int, struct it *, int, int, int, int));
699static void compute_line_metrics P_ ((struct it *));
700static void run_redisplay_end_trigger_hook P_ ((struct it *));
701static int get_overlay_strings P_ ((struct it *));
702static void next_overlay_string P_ ((struct it *));
703void set_iterator_to_next P_ ((struct it *));
704static void reseat P_ ((struct it *, struct text_pos, int));
705static void reseat_1 P_ ((struct it *, struct text_pos, int));
706static void back_to_previous_visible_line_start P_ ((struct it *));
707static void reseat_at_previous_visible_line_start P_ ((struct it *));
312246d1 708static void reseat_at_next_visible_line_start P_ ((struct it *, int));
5f5c8ee5
GM
709static int next_element_from_display_vector P_ ((struct it *));
710static int next_element_from_string P_ ((struct it *));
711static int next_element_from_c_string P_ ((struct it *));
712static int next_element_from_buffer P_ ((struct it *));
260a86a0 713static int next_element_from_composition P_ ((struct it *));
5f5c8ee5
GM
714static int next_element_from_image P_ ((struct it *));
715static int next_element_from_stretch P_ ((struct it *));
716static void load_overlay_strings P_ ((struct it *));
717static void init_from_display_pos P_ ((struct it *, struct window *,
718 struct display_pos *));
719static void reseat_to_string P_ ((struct it *, unsigned char *,
720 Lisp_Object, int, int, int, int));
5f5c8ee5
GM
721static enum move_it_result move_it_in_display_line_to P_ ((struct it *,
722 int, int, int));
723void move_it_vertically_backward P_ ((struct it *, int));
724static void init_to_row_start P_ ((struct it *, struct window *,
725 struct glyph_row *));
726static void init_to_row_end P_ ((struct it *, struct window *,
727 struct glyph_row *));
728static void back_to_previous_line_start P_ ((struct it *));
729static void forward_to_next_line_start P_ ((struct it *));
730static struct text_pos string_pos_nchars_ahead P_ ((struct text_pos,
731 Lisp_Object, int));
732static struct text_pos string_pos P_ ((int, Lisp_Object));
733static struct text_pos c_string_pos P_ ((int, unsigned char *, int));
734static int number_of_chars P_ ((unsigned char *, int));
735static void compute_stop_pos P_ ((struct it *));
736static void compute_string_pos P_ ((struct text_pos *, struct text_pos,
737 Lisp_Object));
738static int face_before_or_after_it_pos P_ ((struct it *, int));
739static int next_overlay_change P_ ((int));
740static int handle_single_display_prop P_ ((struct it *, Lisp_Object,
741 Lisp_Object, struct text_pos *));
742
743#define face_before_it_pos(IT) face_before_or_after_it_pos ((IT), 1)
744#define face_after_it_pos(IT) face_before_or_after_it_pos ((IT), 0)
ff6c30e5 745
5f5c8ee5 746#ifdef HAVE_WINDOW_SYSTEM
12adba34 747
e037b9ec
GM
748static void update_tool_bar P_ ((struct frame *, int));
749static void build_desired_tool_bar_string P_ ((struct frame *f));
750static int redisplay_tool_bar P_ ((struct frame *));
751static void display_tool_bar_line P_ ((struct it *));
12adba34 752
5f5c8ee5 753#endif /* HAVE_WINDOW_SYSTEM */
12adba34 754
5f5c8ee5
GM
755\f
756/***********************************************************************
757 Window display dimensions
758 ***********************************************************************/
12adba34 759
5f5c8ee5
GM
760/* Return the window-relative maximum y + 1 for glyph rows displaying
761 text in window W. This is the height of W minus the height of a
762 mode line, if any. */
763
764INLINE int
765window_text_bottom_y (w)
766 struct window *w;
767{
768 struct frame *f = XFRAME (w->frame);
769 int height = XFASTINT (w->height) * CANON_Y_UNIT (f);
770
771 if (WINDOW_WANTS_MODELINE_P (w))
772 height -= CURRENT_MODE_LINE_HEIGHT (w);
773 return height;
f88eb0b6
KH
774}
775
f82aff7c 776
5f5c8ee5
GM
777/* Return the pixel width of display area AREA of window W. AREA < 0
778 means return the total width of W, not including bitmap areas to
779 the left and right of the window. */
ff6c30e5 780
5f5c8ee5
GM
781INLINE int
782window_box_width (w, area)
783 struct window *w;
784 int area;
785{
786 struct frame *f = XFRAME (w->frame);
787 int width = XFASTINT (w->width);
788
789 if (!w->pseudo_window_p)
ff6c30e5 790 {
050d82d7 791 width -= FRAME_SCROLL_BAR_WIDTH (f) + FRAME_FLAGS_AREA_COLS (f);
5f5c8ee5
GM
792
793 if (area == TEXT_AREA)
794 {
795 if (INTEGERP (w->left_margin_width))
796 width -= XFASTINT (w->left_margin_width);
797 if (INTEGERP (w->right_margin_width))
798 width -= XFASTINT (w->right_margin_width);
799 }
800 else if (area == LEFT_MARGIN_AREA)
801 width = (INTEGERP (w->left_margin_width)
802 ? XFASTINT (w->left_margin_width) : 0);
803 else if (area == RIGHT_MARGIN_AREA)
804 width = (INTEGERP (w->right_margin_width)
805 ? XFASTINT (w->right_margin_width) : 0);
ff6c30e5 806 }
5f5c8ee5
GM
807
808 return width * CANON_X_UNIT (f);
ff6c30e5 809}
1adc55de 810
1adc55de 811
5f5c8ee5
GM
812/* Return the pixel height of the display area of window W, not
813 including mode lines of W, if any.. */
f88eb0b6 814
5f5c8ee5
GM
815INLINE int
816window_box_height (w)
817 struct window *w;
f88eb0b6 818{
5f5c8ee5
GM
819 struct frame *f = XFRAME (w->frame);
820 int height = XFASTINT (w->height) * CANON_Y_UNIT (f);
821
822 if (WINDOW_WANTS_MODELINE_P (w))
823 height -= CURRENT_MODE_LINE_HEIGHT (w);
824
045dee35
GM
825 if (WINDOW_WANTS_HEADER_LINE_P (w))
826 height -= CURRENT_HEADER_LINE_HEIGHT (w);
5f5c8ee5
GM
827
828 return height;
5992c4f7
KH
829}
830
831
5f5c8ee5
GM
832/* Return the frame-relative coordinate of the left edge of display
833 area AREA of window W. AREA < 0 means return the left edge of the
834 whole window, to the right of any bitmap area at the left side of
835 W. */
5992c4f7 836
5f5c8ee5
GM
837INLINE int
838window_box_left (w, area)
839 struct window *w;
840 int area;
90adcf20 841{
5f5c8ee5
GM
842 struct frame *f = XFRAME (w->frame);
843 int x = FRAME_INTERNAL_BORDER_WIDTH_SAFE (f);
a3788d53 844
5f5c8ee5 845 if (!w->pseudo_window_p)
90adcf20 846 {
5f5c8ee5 847 x += (WINDOW_LEFT_MARGIN (w) * CANON_X_UNIT (f)
050d82d7 848 + FRAME_LEFT_FLAGS_AREA_WIDTH (f));
5f5c8ee5
GM
849
850 if (area == TEXT_AREA)
851 x += window_box_width (w, LEFT_MARGIN_AREA);
852 else if (area == RIGHT_MARGIN_AREA)
853 x += (window_box_width (w, LEFT_MARGIN_AREA)
854 + window_box_width (w, TEXT_AREA));
90adcf20 855 }
73af359d 856
5f5c8ee5
GM
857 return x;
858}
90adcf20 859
b6436d4e 860
5f5c8ee5
GM
861/* Return the frame-relative coordinate of the right edge of display
862 area AREA of window W. AREA < 0 means return the left edge of the
863 whole window, to the left of any bitmap area at the right side of
864 W. */
ded34426 865
5f5c8ee5
GM
866INLINE int
867window_box_right (w, area)
868 struct window *w;
869 int area;
870{
871 return window_box_left (w, area) + window_box_width (w, area);
872}
873
874
875/* Get the bounding box of the display area AREA of window W, without
876 mode lines, in frame-relative coordinates. AREA < 0 means the
877 whole window, not including bitmap areas to the left and right of
878 the window. Return in *BOX_X and *BOX_Y the frame-relative pixel
879 coordinates of the upper-left corner of the box. Return in
880 *BOX_WIDTH, and *BOX_HEIGHT the pixel width and height of the box. */
881
882INLINE void
883window_box (w, area, box_x, box_y, box_width, box_height)
884 struct window *w;
885 int area;
886 int *box_x, *box_y, *box_width, *box_height;
887{
888 struct frame *f = XFRAME (w->frame);
889
890 *box_width = window_box_width (w, area);
891 *box_height = window_box_height (w);
892 *box_x = window_box_left (w, area);
893 *box_y = (FRAME_INTERNAL_BORDER_WIDTH_SAFE (f)
894 + XFASTINT (w->top) * CANON_Y_UNIT (f));
045dee35
GM
895 if (WINDOW_WANTS_HEADER_LINE_P (w))
896 *box_y += CURRENT_HEADER_LINE_HEIGHT (w);
ded34426 897}
1adc55de 898
1adc55de 899
5f5c8ee5
GM
900/* Get the bounding box of the display area AREA of window W, without
901 mode lines. AREA < 0 means the whole window, not including bitmap
902 areas to the left and right of the window. Return in *TOP_LEFT_X
903 and TOP_LEFT_Y the frame-relative pixel coordinates of the
904 upper-left corner of the box. Return in *BOTTOM_RIGHT_X, and
905 *BOTTOM_RIGHT_Y the coordinates of the bottom-right corner of the
906 box. */
ded34426 907
5f5c8ee5
GM
908INLINE void
909window_box_edges (w, area, top_left_x, top_left_y,
910 bottom_right_x, bottom_right_y)
911 struct window *w;
912 int area;
913 int *top_left_x, *top_left_y, *bottom_right_x, *bottom_right_y;
48ae5f0a 914{
5f5c8ee5
GM
915 window_box (w, area, top_left_x, top_left_y, bottom_right_x,
916 bottom_right_y);
917 *bottom_right_x += *top_left_x;
918 *bottom_right_y += *top_left_y;
48ae5f0a
KH
919}
920
5f5c8ee5
GM
921
922\f
923/***********************************************************************
924 Utilities
925 ***********************************************************************/
926
4fdb80f2
GM
927/* Return the next character from STR which is MAXLEN bytes long.
928 Return in *LEN the length of the character. This is like
929 STRING_CHAR_AND_LENGTH but never returns an invalid character. If
9ab8560d 930 we find one, we return a `?', but with the length of the invalid
4fdb80f2
GM
931 character. */
932
933static INLINE int
7a5b8a93 934string_char_and_length (str, maxlen, len)
4fdb80f2 935 unsigned char *str;
7a5b8a93 936 int maxlen, *len;
4fdb80f2
GM
937{
938 int c;
939
940 c = STRING_CHAR_AND_LENGTH (str, maxlen, *len);
941 if (!CHAR_VALID_P (c, 1))
942 /* We may not change the length here because other places in Emacs
9ab8560d 943 don't use this function, i.e. they silently accept invalid
4fdb80f2
GM
944 characters. */
945 c = '?';
946
947 return c;
948}
949
950
951
5f5c8ee5
GM
952/* Given a position POS containing a valid character and byte position
953 in STRING, return the position NCHARS ahead (NCHARS >= 0). */
954
955static struct text_pos
956string_pos_nchars_ahead (pos, string, nchars)
957 struct text_pos pos;
958 Lisp_Object string;
959 int nchars;
0b1005ef 960{
5f5c8ee5
GM
961 xassert (STRINGP (string) && nchars >= 0);
962
963 if (STRING_MULTIBYTE (string))
964 {
965 int rest = STRING_BYTES (XSTRING (string)) - BYTEPOS (pos);
966 unsigned char *p = XSTRING (string)->data + BYTEPOS (pos);
967 int len;
968
969 while (nchars--)
970 {
4fdb80f2 971 string_char_and_length (p, rest, &len);
5f5c8ee5
GM
972 p += len, rest -= len;
973 xassert (rest >= 0);
974 CHARPOS (pos) += 1;
975 BYTEPOS (pos) += len;
976 }
977 }
978 else
979 SET_TEXT_POS (pos, CHARPOS (pos) + nchars, BYTEPOS (pos) + nchars);
980
981 return pos;
0a9dc68b
RS
982}
983
0a9dc68b 984
5f5c8ee5
GM
985/* Value is the text position, i.e. character and byte position,
986 for character position CHARPOS in STRING. */
987
988static INLINE struct text_pos
989string_pos (charpos, string)
990 int charpos;
0a9dc68b 991 Lisp_Object string;
0a9dc68b 992{
5f5c8ee5
GM
993 struct text_pos pos;
994 xassert (STRINGP (string));
995 xassert (charpos >= 0);
996 SET_TEXT_POS (pos, charpos, string_char_to_byte (string, charpos));
997 return pos;
998}
999
1000
1001/* Value is a text position, i.e. character and byte position, for
1002 character position CHARPOS in C string S. MULTIBYTE_P non-zero
1003 means recognize multibyte characters. */
1004
1005static struct text_pos
1006c_string_pos (charpos, s, multibyte_p)
1007 int charpos;
1008 unsigned char *s;
1009 int multibyte_p;
1010{
1011 struct text_pos pos;
1012
1013 xassert (s != NULL);
1014 xassert (charpos >= 0);
1015
1016 if (multibyte_p)
0a9dc68b 1017 {
5f5c8ee5
GM
1018 int rest = strlen (s), len;
1019
1020 SET_TEXT_POS (pos, 0, 0);
1021 while (charpos--)
0a9dc68b 1022 {
4fdb80f2 1023 string_char_and_length (s, rest, &len);
5f5c8ee5
GM
1024 s += len, rest -= len;
1025 xassert (rest >= 0);
1026 CHARPOS (pos) += 1;
1027 BYTEPOS (pos) += len;
0a9dc68b
RS
1028 }
1029 }
5f5c8ee5
GM
1030 else
1031 SET_TEXT_POS (pos, charpos, charpos);
0a9dc68b 1032
5f5c8ee5
GM
1033 return pos;
1034}
0a9dc68b 1035
0a9dc68b 1036
5f5c8ee5
GM
1037/* Value is the number of characters in C string S. MULTIBYTE_P
1038 non-zero means recognize multibyte characters. */
0a9dc68b 1039
5f5c8ee5
GM
1040static int
1041number_of_chars (s, multibyte_p)
1042 unsigned char *s;
1043 int multibyte_p;
1044{
1045 int nchars;
1046
1047 if (multibyte_p)
1048 {
1049 int rest = strlen (s), len;
1050 unsigned char *p = (unsigned char *) s;
0a9dc68b 1051
5f5c8ee5
GM
1052 for (nchars = 0; rest > 0; ++nchars)
1053 {
4fdb80f2 1054 string_char_and_length (p, rest, &len);
5f5c8ee5 1055 rest -= len, p += len;
0a9dc68b
RS
1056 }
1057 }
5f5c8ee5
GM
1058 else
1059 nchars = strlen (s);
1060
1061 return nchars;
0b1005ef
KH
1062}
1063
5f5c8ee5
GM
1064
1065/* Compute byte position NEWPOS->bytepos corresponding to
1066 NEWPOS->charpos. POS is a known position in string STRING.
1067 NEWPOS->charpos must be >= POS.charpos. */
76412d64 1068
5f5c8ee5
GM
1069static void
1070compute_string_pos (newpos, pos, string)
1071 struct text_pos *newpos, pos;
1072 Lisp_Object string;
76412d64 1073{
5f5c8ee5
GM
1074 xassert (STRINGP (string));
1075 xassert (CHARPOS (*newpos) >= CHARPOS (pos));
1076
1077 if (STRING_MULTIBYTE (string))
6fc556fd
KR
1078 *newpos = string_pos_nchars_ahead (pos, string,
1079 CHARPOS (*newpos) - CHARPOS (pos));
5f5c8ee5
GM
1080 else
1081 BYTEPOS (*newpos) = CHARPOS (*newpos);
76412d64
RS
1082}
1083
9c74a0dd 1084
5f5c8ee5
GM
1085\f
1086/***********************************************************************
1087 Lisp form evaluation
1088 ***********************************************************************/
1089
0d8b31c0 1090/* Error handler for eval_form and call_function. */
5f5c8ee5
GM
1091
1092static Lisp_Object
1093eval_handler (arg)
1094 Lisp_Object arg;
1095{
1096 return Qnil;
1097}
1098
1099
1100/* Evaluate SEXPR and return the result, or nil if something went
1101 wrong. */
1102
71e5b1b8 1103Lisp_Object
5f5c8ee5
GM
1104eval_form (sexpr)
1105 Lisp_Object sexpr;
1106{
1107 int count = specpdl_ptr - specpdl;
0d8b31c0 1108 struct gcpro gcpro1;
5f5c8ee5 1109 Lisp_Object val;
0d8b31c0
GM
1110
1111 GCPRO1 (sexpr);
5f5c8ee5
GM
1112 specbind (Qinhibit_redisplay, Qt);
1113 val = internal_condition_case_1 (Feval, sexpr, Qerror, eval_handler);
0d8b31c0
GM
1114 UNGCPRO;
1115 return unbind_to (count, val);
1116}
1117
1118
1119/* Call function ARGS[0] with arguments ARGS[1] to ARGS[NARGS - 1].
1120 Return the result, or nil if something went wrong. */
1121
1122Lisp_Object
1123call_function (nargs, args)
1124 int nargs;
1125 Lisp_Object *args;
1126{
1127 int count = specpdl_ptr - specpdl;
1128 Lisp_Object val;
1129 struct gcpro gcpro1;
1130
1131 GCPRO1 (args[0]);
1132 gcpro1.nvars = nargs;
1133 specbind (Qinhibit_redisplay, Qt);
1134 val = internal_condition_case_2 (Ffuncall, nargs, args, Qerror,
1135 eval_handler);
1136 UNGCPRO;
5f5c8ee5
GM
1137 return unbind_to (count, val);
1138}
1139
1140
1141\f
1142/***********************************************************************
1143 Debugging
1144 ***********************************************************************/
1145
1146#if 0
1147
1148/* Define CHECK_IT to perform sanity checks on iterators.
1149 This is for debugging. It is too slow to do unconditionally. */
1150
1151static void
1152check_it (it)
1153 struct it *it;
1154{
1155 if (it->method == next_element_from_string)
a2889657 1156 {
5f5c8ee5
GM
1157 xassert (STRINGP (it->string));
1158 xassert (IT_STRING_CHARPOS (*it) >= 0);
1159 }
1160 else if (it->method == next_element_from_buffer)
1161 {
1162 /* Check that character and byte positions agree. */
1163 xassert (IT_CHARPOS (*it) == BYTE_TO_CHAR (IT_BYTEPOS (*it)));
1164 }
73af359d 1165
5f5c8ee5
GM
1166 if (it->dpvec)
1167 xassert (it->current.dpvec_index >= 0);
1168 else
1169 xassert (it->current.dpvec_index < 0);
1170}
1f40cad2 1171
5f5c8ee5
GM
1172#define CHECK_IT(IT) check_it ((IT))
1173
1174#else /* not 0 */
1175
1176#define CHECK_IT(IT) (void) 0
1177
1178#endif /* not 0 */
1179
1180
1181#if GLYPH_DEBUG
1182
1183/* Check that the window end of window W is what we expect it
1184 to be---the last row in the current matrix displaying text. */
1185
1186static void
1187check_window_end (w)
1188 struct window *w;
1189{
1190 if (!MINI_WINDOW_P (w)
1191 && !NILP (w->window_end_valid))
1192 {
1193 struct glyph_row *row;
1194 xassert ((row = MATRIX_ROW (w->current_matrix,
1195 XFASTINT (w->window_end_vpos)),
1196 !row->enabled_p
1197 || MATRIX_ROW_DISPLAYS_TEXT_P (row)
1198 || MATRIX_ROW_VPOS (row, w->current_matrix) == 0));
1199 }
1200}
1201
1202#define CHECK_WINDOW_END(W) check_window_end ((W))
1203
1204#else /* not GLYPH_DEBUG */
1205
1206#define CHECK_WINDOW_END(W) (void) 0
1207
1208#endif /* not GLYPH_DEBUG */
1209
1210
1211\f
1212/***********************************************************************
1213 Iterator initialization
1214 ***********************************************************************/
1215
1216/* Initialize IT for displaying current_buffer in window W, starting
1217 at character position CHARPOS. CHARPOS < 0 means that no buffer
1218 position is specified which is useful when the iterator is assigned
1219 a position later. BYTEPOS is the byte position corresponding to
1220 CHARPOS. BYTEPOS <= 0 means compute it from CHARPOS.
1221
1222 If ROW is not null, calls to produce_glyphs with IT as parameter
1223 will produce glyphs in that row.
1224
1225 BASE_FACE_ID is the id of a base face to use. It must be one of
1226 DEFAULT_FACE_ID for normal text, MODE_LINE_FACE_ID or
045dee35 1227 HEADER_LINE_FACE_ID for displaying mode lines, or TOOL_BAR_FACE_ID for
e037b9ec 1228 displaying the tool-bar.
5f5c8ee5
GM
1229
1230 If ROW is null and BASE_FACE_ID is equal to MODE_LINE_FACE_ID or
045dee35 1231 HEADER_LINE_FACE_ID, the iterator will be initialized to use the
5f5c8ee5
GM
1232 corresponding mode line glyph row of the desired matrix of W. */
1233
1234void
1235init_iterator (it, w, charpos, bytepos, row, base_face_id)
1236 struct it *it;
1237 struct window *w;
1238 int charpos, bytepos;
1239 struct glyph_row *row;
1240 enum face_id base_face_id;
1241{
1242 int highlight_region_p;
5f5c8ee5
GM
1243
1244 /* Some precondition checks. */
1245 xassert (w != NULL && it != NULL);
5f5c8ee5
GM
1246 xassert (charpos < 0 || (charpos > 0 && charpos <= ZV));
1247
1248 /* If face attributes have been changed since the last redisplay,
1249 free realized faces now because they depend on face definitions
1250 that might have changed. */
1251 if (face_change_count)
1252 {
1253 face_change_count = 0;
1254 free_all_realized_faces (Qnil);
1255 }
1256
1257 /* Use one of the mode line rows of W's desired matrix if
1258 appropriate. */
1259 if (row == NULL)
1260 {
1261 if (base_face_id == MODE_LINE_FACE_ID)
1262 row = MATRIX_MODE_LINE_ROW (w->desired_matrix);
045dee35
GM
1263 else if (base_face_id == HEADER_LINE_FACE_ID)
1264 row = MATRIX_HEADER_LINE_ROW (w->desired_matrix);
5f5c8ee5
GM
1265 }
1266
1267 /* Clear IT. */
1268 bzero (it, sizeof *it);
1269 it->current.overlay_string_index = -1;
1270 it->current.dpvec_index = -1;
5f5c8ee5
GM
1271 it->base_face_id = base_face_id;
1272
1273 /* The window in which we iterate over current_buffer: */
1274 XSETWINDOW (it->window, w);
1275 it->w = w;
1276 it->f = XFRAME (w->frame);
1277
d475bcb8
GM
1278 /* Extra space between lines (on window systems only). */
1279 if (base_face_id == DEFAULT_FACE_ID
1280 && FRAME_WINDOW_P (it->f))
1281 {
1282 if (NATNUMP (current_buffer->extra_line_spacing))
1283 it->extra_line_spacing = XFASTINT (current_buffer->extra_line_spacing);
1284 else if (it->f->extra_line_spacing > 0)
1285 it->extra_line_spacing = it->f->extra_line_spacing;
1286 }
1287
5f5c8ee5
GM
1288 /* If realized faces have been removed, e.g. because of face
1289 attribute changes of named faces, recompute them. */
1290 if (FRAME_FACE_CACHE (it->f)->used == 0)
1291 recompute_basic_faces (it->f);
1292
5f5c8ee5
GM
1293 /* Current value of the `space-width', and 'height' properties. */
1294 it->space_width = Qnil;
1295 it->font_height = Qnil;
1296
1297 /* Are control characters displayed as `^C'? */
1298 it->ctl_arrow_p = !NILP (current_buffer->ctl_arrow);
1299
1300 /* -1 means everything between a CR and the following line end
1301 is invisible. >0 means lines indented more than this value are
1302 invisible. */
1303 it->selective = (INTEGERP (current_buffer->selective_display)
1304 ? XFASTINT (current_buffer->selective_display)
1305 : (!NILP (current_buffer->selective_display)
1306 ? -1 : 0));
1307 it->selective_display_ellipsis_p
1308 = !NILP (current_buffer->selective_display_ellipses);
1309
1310 /* Display table to use. */
1311 it->dp = window_display_table (w);
1312
1313 /* Are multibyte characters enabled in current_buffer? */
1314 it->multibyte_p = !NILP (current_buffer->enable_multibyte_characters);
1315
1316 /* Non-zero if we should highlight the region. */
1317 highlight_region_p
1318 = (!NILP (Vtransient_mark_mode)
1319 && !NILP (current_buffer->mark_active)
1320 && XMARKER (current_buffer->mark)->buffer != 0);
1321
1322 /* Set IT->region_beg_charpos and IT->region_end_charpos to the
1323 start and end of a visible region in window IT->w. Set both to
1324 -1 to indicate no region. */
1325 if (highlight_region_p
1326 /* Maybe highlight only in selected window. */
1327 && (/* Either show region everywhere. */
1328 highlight_nonselected_windows
1329 /* Or show region in the selected window. */
1330 || w == XWINDOW (selected_window)
1331 /* Or show the region if we are in the mini-buffer and W is
1332 the window the mini-buffer refers to. */
1333 || (MINI_WINDOW_P (XWINDOW (selected_window))
1334 && w == XWINDOW (Vminibuf_scroll_window))))
1335 {
1336 int charpos = marker_position (current_buffer->mark);
1337 it->region_beg_charpos = min (PT, charpos);
1338 it->region_end_charpos = max (PT, charpos);
1339 }
1340 else
1341 it->region_beg_charpos = it->region_end_charpos = -1;
1342
1343 /* Get the position at which the redisplay_end_trigger hook should
1344 be run, if it is to be run at all. */
1345 if (MARKERP (w->redisplay_end_trigger)
1346 && XMARKER (w->redisplay_end_trigger)->buffer != 0)
1347 it->redisplay_end_trigger_charpos
1348 = marker_position (w->redisplay_end_trigger);
1349 else if (INTEGERP (w->redisplay_end_trigger))
1350 it->redisplay_end_trigger_charpos = XINT (w->redisplay_end_trigger);
1351
1352 /* Correct bogus values of tab_width. */
1353 it->tab_width = XINT (current_buffer->tab_width);
1354 if (it->tab_width <= 0 || it->tab_width > 1000)
1355 it->tab_width = 8;
1356
1357 /* Are lines in the display truncated? */
1358 it->truncate_lines_p
1359 = (base_face_id != DEFAULT_FACE_ID
1360 || XINT (it->w->hscroll)
1361 || (truncate_partial_width_windows
1362 && !WINDOW_FULL_WIDTH_P (it->w))
1363 || !NILP (current_buffer->truncate_lines));
1364
1365 /* Get dimensions of truncation and continuation glyphs. These are
1366 displayed as bitmaps under X, so we don't need them for such
1367 frames. */
1368 if (!FRAME_WINDOW_P (it->f))
1369 {
1370 if (it->truncate_lines_p)
1371 {
1372 /* We will need the truncation glyph. */
1373 xassert (it->glyph_row == NULL);
1374 produce_special_glyphs (it, IT_TRUNCATION);
1375 it->truncation_pixel_width = it->pixel_width;
1376 }
1377 else
1378 {
1379 /* We will need the continuation glyph. */
1380 xassert (it->glyph_row == NULL);
1381 produce_special_glyphs (it, IT_CONTINUATION);
1382 it->continuation_pixel_width = it->pixel_width;
1383 }
1384
1385 /* Reset these values to zero becaue the produce_special_glyphs
1386 above has changed them. */
1387 it->pixel_width = it->ascent = it->descent = 0;
312246d1 1388 it->phys_ascent = it->phys_descent = 0;
5f5c8ee5
GM
1389 }
1390
1391 /* Set this after getting the dimensions of truncation and
1392 continuation glyphs, so that we don't produce glyphs when calling
1393 produce_special_glyphs, above. */
1394 it->glyph_row = row;
1395 it->area = TEXT_AREA;
1396
1397 /* Get the dimensions of the display area. The display area
1398 consists of the visible window area plus a horizontally scrolled
1399 part to the left of the window. All x-values are relative to the
1400 start of this total display area. */
1401 if (base_face_id != DEFAULT_FACE_ID)
1402 {
1403 /* Mode lines, menu bar in terminal frames. */
1404 it->first_visible_x = 0;
1405 it->last_visible_x = XFASTINT (w->width) * CANON_X_UNIT (it->f);
1406 }
1407 else
1408 {
1409 it->first_visible_x
1410 = XFASTINT (it->w->hscroll) * CANON_X_UNIT (it->f);
1411 it->last_visible_x = (it->first_visible_x
1412 + window_box_width (w, TEXT_AREA));
1413
1414 /* If we truncate lines, leave room for the truncator glyph(s) at
1415 the right margin. Otherwise, leave room for the continuation
1416 glyph(s). Truncation and continuation glyphs are not inserted
1417 for window-based redisplay. */
1418 if (!FRAME_WINDOW_P (it->f))
1419 {
1420 if (it->truncate_lines_p)
1421 it->last_visible_x -= it->truncation_pixel_width;
1422 else
1423 it->last_visible_x -= it->continuation_pixel_width;
1424 }
1425
045dee35
GM
1426 it->header_line_p = WINDOW_WANTS_HEADER_LINE_P (w);
1427 it->current_y = WINDOW_DISPLAY_HEADER_LINE_HEIGHT (w) + w->vscroll;
5f5c8ee5
GM
1428 }
1429
1430 /* Leave room for a border glyph. */
1431 if (!FRAME_WINDOW_P (it->f)
1432 && !WINDOW_RIGHTMOST_P (it->w))
1433 it->last_visible_x -= 1;
1434
1435 it->last_visible_y = window_text_bottom_y (w);
1436
1437 /* For mode lines and alike, arrange for the first glyph having a
1438 left box line if the face specifies a box. */
1439 if (base_face_id != DEFAULT_FACE_ID)
1440 {
1441 struct face *face;
1442
1443 it->face_id = base_face_id;
1444
1445 /* If we have a boxed mode line, make the first character appear
1446 with a left box line. */
1447 face = FACE_FROM_ID (it->f, base_face_id);
1448 if (face->box != FACE_NO_BOX)
1449 it->start_of_box_run_p = 1;
1450 }
1451
1452 /* If a buffer position was specified, set the iterator there,
1453 getting overlays and face properties from that position. */
1454 if (charpos > 0)
1455 {
1456 it->end_charpos = ZV;
1457 it->face_id = -1;
1458 IT_CHARPOS (*it) = charpos;
1459
1460 /* Compute byte position if not specified. */
1461 if (bytepos <= 0)
1462 IT_BYTEPOS (*it) = CHAR_TO_BYTE (charpos);
1463 else
1464 IT_BYTEPOS (*it) = bytepos;
1465
1466 /* Compute faces etc. */
1467 reseat (it, it->current.pos, 1);
1468 }
1469
1470 CHECK_IT (it);
1471}
1472
1473
1474/* Initialize IT for the display of window W with window start POS. */
1475
1476void
1477start_display (it, w, pos)
1478 struct it *it;
1479 struct window *w;
1480 struct text_pos pos;
1481{
1482 int start_at_line_beg_p;
1483 struct glyph_row *row;
045dee35 1484 int first_vpos = WINDOW_WANTS_HEADER_LINE_P (w) ? 1 : 0;
5f5c8ee5
GM
1485 int first_y;
1486
1487 row = w->desired_matrix->rows + first_vpos;
1488 init_iterator (it, w, CHARPOS (pos), BYTEPOS (pos), row, DEFAULT_FACE_ID);
1489 first_y = it->current_y;
1490
1491 /* If window start is not at a line start, move back to the line
1492 start. This makes sure that we take continuation lines into
1493 account. */
1494 start_at_line_beg_p = (CHARPOS (pos) == BEGV
1495 || FETCH_BYTE (BYTEPOS (pos) - 1) == '\n');
1496 if (!start_at_line_beg_p)
1497 reseat_at_previous_visible_line_start (it);
1498
5f5c8ee5
GM
1499 /* If window start is not at a line start, skip forward to POS to
1500 get the correct continuation_lines_width and current_x. */
1501 if (!start_at_line_beg_p)
1502 {
1503 move_it_to (it, CHARPOS (pos), -1, -1, -1, MOVE_TO_POS);
1504
1505 /* If lines are continued, this line may end in the middle of a
1506 multi-glyph character (e.g. a control character displayed as
1507 \003, or in the middle of an overlay string). In this case
1508 move_it_to above will not have taken us to the start of
1509 the continuation line but to the end of the continued line. */
b28cb6ed 1510 if (!it->truncate_lines_p)
5f5c8ee5 1511 {
b28cb6ed 1512 if (it->current_x > 0)
5f5c8ee5 1513 {
b28cb6ed
GM
1514 if (it->current.dpvec_index >= 0
1515 || it->current.overlay_string_index >= 0)
1516 {
1517 set_iterator_to_next (it);
1518 move_it_in_display_line_to (it, -1, -1, 0);
1519 }
1520
1521 it->continuation_lines_width += it->current_x;
5f5c8ee5 1522 }
b28cb6ed
GM
1523
1524 /* We're starting a new display line, not affected by the
1525 height of the continued line, so clear the appropriate
1526 fields in the iterator structure. */
1527 it->max_ascent = it->max_descent = 0;
1528 it->max_phys_ascent = it->max_phys_descent = 0;
5f5c8ee5
GM
1529 }
1530
1531 it->current_y = first_y;
1532 it->vpos = 0;
1533 it->current_x = it->hpos = 0;
1534 }
1535
1536#if 0 /* Don't assert the following because start_display is sometimes
1537 called intentionally with a window start that is not at a
1538 line start. Please leave this code in as a comment. */
1539
1540 /* Window start should be on a line start, now. */
1541 xassert (it->continuation_lines_width
1542 || IT_CHARPOS (it) == BEGV
1543 || FETCH_BYTE (IT_BYTEPOS (it) - 1) == '\n');
1544#endif /* 0 */
1545}
1546
1547
1548/* Initialize IT for stepping through current_buffer in window W,
1549 starting at position POS that includes overlay string and display
1550 vector/ control character translation position information. */
1551
1552static void
1553init_from_display_pos (it, w, pos)
1554 struct it *it;
1555 struct window *w;
1556 struct display_pos *pos;
1557{
1558 /* Keep in mind: the call to reseat in init_iterator skips invisible
1559 text, so we might end up at a position different from POS. This
1560 is only a problem when POS is a row start after a newline and an
1561 overlay starts there with an after-string, and the overlay has an
1562 invisible property. Since we don't skip invisible text in
1563 display_line and elsewhere immediately after consuming the
1564 newline before the row start, such a POS will not be in a string,
1565 but the call to init_iterator below will move us to the
1566 after-string. */
1567 init_iterator (it, w, CHARPOS (pos->pos), BYTEPOS (pos->pos),
1568 NULL, DEFAULT_FACE_ID);
1569
1570 /* If position is within an overlay string, set up IT to
1571 the right overlay string. */
1572 if (pos->overlay_string_index >= 0)
1573 {
1574 int relative_index;
1575
1576 /* We already have the first chunk of overlay strings in
1577 IT->overlay_strings. Load more until the one for
1578 pos->overlay_string_index is in IT->overlay_strings. */
1579 if (pos->overlay_string_index >= OVERLAY_STRING_CHUNK_SIZE)
1580 {
1581 int n = pos->overlay_string_index / OVERLAY_STRING_CHUNK_SIZE;
1582 it->current.overlay_string_index = 0;
1583 while (n--)
1584 {
1585 load_overlay_strings (it);
1586 it->current.overlay_string_index += OVERLAY_STRING_CHUNK_SIZE;
1587 }
1588 }
1589
1590 it->current.overlay_string_index = pos->overlay_string_index;
1591 relative_index = (it->current.overlay_string_index
1592 % OVERLAY_STRING_CHUNK_SIZE);
1593 it->string = it->overlay_strings[relative_index];
1594 it->current.string_pos = pos->string_pos;
1595 it->method = next_element_from_string;
1596 }
1597 else if (CHARPOS (pos->string_pos) >= 0)
1598 {
1599 /* Recorded position is not in an overlay string, but in another
1600 string. This can only be a string from a `display' property.
1601 IT should already be filled with that string. */
1602 it->current.string_pos = pos->string_pos;
1603 xassert (STRINGP (it->string));
1604 }
1605
1606 /* Restore position in display vector translations or control
1607 character translations. */
1608 if (pos->dpvec_index >= 0)
1609 {
1610 /* This fills IT->dpvec. */
1611 get_next_display_element (it);
1612 xassert (it->dpvec && it->current.dpvec_index == 0);
1613 it->current.dpvec_index = pos->dpvec_index;
1614 }
1615
1616 CHECK_IT (it);
1617}
1618
1619
1620/* Initialize IT for stepping through current_buffer in window W
1621 starting at ROW->start. */
1622
1623static void
1624init_to_row_start (it, w, row)
1625 struct it *it;
1626 struct window *w;
1627 struct glyph_row *row;
1628{
1629 init_from_display_pos (it, w, &row->start);
1630 it->continuation_lines_width = row->continuation_lines_width;
1631 CHECK_IT (it);
1632}
1633
1634
1635/* Initialize IT for stepping through current_buffer in window W
1636 starting in the line following ROW, i.e. starting at ROW->end. */
1637
1638static void
1639init_to_row_end (it, w, row)
1640 struct it *it;
1641 struct window *w;
1642 struct glyph_row *row;
1643{
1644 init_from_display_pos (it, w, &row->end);
1645
1646 if (row->continued_p)
1647 it->continuation_lines_width = (row->continuation_lines_width
1648 + row->pixel_width);
1649 CHECK_IT (it);
1650}
1651
1652
1653
1654\f
1655/***********************************************************************
1656 Text properties
1657 ***********************************************************************/
1658
1659/* Called when IT reaches IT->stop_charpos. Handle text property and
1660 overlay changes. Set IT->stop_charpos to the next position where
1661 to stop. */
1662
1663static void
1664handle_stop (it)
1665 struct it *it;
1666{
1667 enum prop_handled handled;
1668 int handle_overlay_change_p = 1;
1669 struct props *p;
1670
1671 it->dpvec = NULL;
1672 it->current.dpvec_index = -1;
2970b9be 1673 it->add_overlay_start = 0;
5f5c8ee5
GM
1674
1675 do
1676 {
1677 handled = HANDLED_NORMALLY;
1678
1679 /* Call text property handlers. */
1680 for (p = it_props; p->handler; ++p)
1681 {
1682 handled = p->handler (it);
2970b9be 1683
5f5c8ee5
GM
1684 if (handled == HANDLED_RECOMPUTE_PROPS)
1685 break;
1686 else if (handled == HANDLED_RETURN)
1687 return;
1688 else if (handled == HANDLED_OVERLAY_STRING_CONSUMED)
1689 handle_overlay_change_p = 0;
1690 }
1691
1692 if (handled != HANDLED_RECOMPUTE_PROPS)
1693 {
1694 /* Don't check for overlay strings below when set to deliver
1695 characters from a display vector. */
1696 if (it->method == next_element_from_display_vector)
1697 handle_overlay_change_p = 0;
1698
1699 /* Handle overlay changes. */
1700 if (handle_overlay_change_p)
1701 handled = handle_overlay_change (it);
1702
1703 /* Determine where to stop next. */
1704 if (handled == HANDLED_NORMALLY)
1705 compute_stop_pos (it);
1706 }
1707 }
1708 while (handled == HANDLED_RECOMPUTE_PROPS);
1709}
1710
1711
1712/* Compute IT->stop_charpos from text property and overlay change
1713 information for IT's current position. */
1714
1715static void
1716compute_stop_pos (it)
1717 struct it *it;
1718{
1719 register INTERVAL iv, next_iv;
1720 Lisp_Object object, limit, position;
1721
1722 /* If nowhere else, stop at the end. */
1723 it->stop_charpos = it->end_charpos;
1724
1725 if (STRINGP (it->string))
1726 {
1727 /* Strings are usually short, so don't limit the search for
1728 properties. */
1729 object = it->string;
1730 limit = Qnil;
1731 XSETFASTINT (position, IT_STRING_CHARPOS (*it));
1732 }
1733 else
1734 {
1735 int charpos;
1736
1737 /* If next overlay change is in front of the current stop pos
1738 (which is IT->end_charpos), stop there. Note: value of
1739 next_overlay_change is point-max if no overlay change
1740 follows. */
1741 charpos = next_overlay_change (IT_CHARPOS (*it));
1742 if (charpos < it->stop_charpos)
1743 it->stop_charpos = charpos;
1744
1745 /* If showing the region, we have to stop at the region
1746 start or end because the face might change there. */
1747 if (it->region_beg_charpos > 0)
1748 {
1749 if (IT_CHARPOS (*it) < it->region_beg_charpos)
1750 it->stop_charpos = min (it->stop_charpos, it->region_beg_charpos);
1751 else if (IT_CHARPOS (*it) < it->region_end_charpos)
1752 it->stop_charpos = min (it->stop_charpos, it->region_end_charpos);
1753 }
1754
1755 /* Set up variables for computing the stop position from text
1756 property changes. */
1757 XSETBUFFER (object, current_buffer);
1758 XSETFASTINT (limit, IT_CHARPOS (*it) + TEXT_PROP_DISTANCE_LIMIT);
1759 XSETFASTINT (position, IT_CHARPOS (*it));
1760
1761 }
1762
1763 /* Get the interval containing IT's position. Value is a null
1764 interval if there isn't such an interval. */
1765 iv = validate_interval_range (object, &position, &position, 0);
1766 if (!NULL_INTERVAL_P (iv))
1767 {
1768 Lisp_Object values_here[LAST_PROP_IDX];
1769 struct props *p;
1770
1771 /* Get properties here. */
1772 for (p = it_props; p->handler; ++p)
1773 values_here[p->idx] = textget (iv->plist, *p->name);
1774
1775 /* Look for an interval following iv that has different
1776 properties. */
1777 for (next_iv = next_interval (iv);
1778 (!NULL_INTERVAL_P (next_iv)
1779 && (NILP (limit)
1780 || XFASTINT (limit) > next_iv->position));
1781 next_iv = next_interval (next_iv))
1782 {
1783 for (p = it_props; p->handler; ++p)
1784 {
1785 Lisp_Object new_value;
1786
1787 new_value = textget (next_iv->plist, *p->name);
1788 if (!EQ (values_here[p->idx], new_value))
1789 break;
1790 }
1791
1792 if (p->handler)
1793 break;
1794 }
1795
1796 if (!NULL_INTERVAL_P (next_iv))
1797 {
1798 if (INTEGERP (limit)
1799 && next_iv->position >= XFASTINT (limit))
1800 /* No text property change up to limit. */
1801 it->stop_charpos = min (XFASTINT (limit), it->stop_charpos);
1802 else
1803 /* Text properties change in next_iv. */
1804 it->stop_charpos = min (it->stop_charpos, next_iv->position);
1805 }
1806 }
1807
1808 xassert (STRINGP (it->string)
1809 || (it->stop_charpos >= BEGV
1810 && it->stop_charpos >= IT_CHARPOS (*it)));
1811}
1812
1813
1814/* Return the position of the next overlay change after POS in
1815 current_buffer. Value is point-max if no overlay change
1816 follows. This is like `next-overlay-change' but doesn't use
1817 xmalloc. */
1818
1819static int
1820next_overlay_change (pos)
1821 int pos;
1822{
1823 int noverlays;
1824 int endpos;
1825 Lisp_Object *overlays;
1826 int len;
1827 int i;
1828
1829 /* Get all overlays at the given position. */
1830 len = 10;
1831 overlays = (Lisp_Object *) alloca (len * sizeof *overlays);
a0315a63 1832 noverlays = overlays_at (pos, 0, &overlays, &len, &endpos, NULL, 1);
5f5c8ee5
GM
1833 if (noverlays > len)
1834 {
1835 len = noverlays;
1836 overlays = (Lisp_Object *) alloca (len * sizeof *overlays);
a0315a63 1837 noverlays = overlays_at (pos, 0, &overlays, &len, &endpos, NULL, 1);
5f5c8ee5
GM
1838 }
1839
1840 /* If any of these overlays ends before endpos,
1841 use its ending point instead. */
1842 for (i = 0; i < noverlays; ++i)
1843 {
1844 Lisp_Object oend;
1845 int oendpos;
1846
1847 oend = OVERLAY_END (overlays[i]);
1848 oendpos = OVERLAY_POSITION (oend);
1849 endpos = min (endpos, oendpos);
1850 }
1851
1852 return endpos;
1853}
1854
1855
1856\f
1857/***********************************************************************
1858 Fontification
1859 ***********************************************************************/
1860
1861/* Handle changes in the `fontified' property of the current buffer by
1862 calling hook functions from Qfontification_functions to fontify
1863 regions of text. */
1864
1865static enum prop_handled
1866handle_fontified_prop (it)
1867 struct it *it;
1868{
1869 Lisp_Object prop, pos;
1870 enum prop_handled handled = HANDLED_NORMALLY;
1871
1872 /* Get the value of the `fontified' property at IT's current buffer
1873 position. (The `fontified' property doesn't have a special
1874 meaning in strings.) If the value is nil, call functions from
1875 Qfontification_functions. */
1876 if (!STRINGP (it->string)
1877 && it->s == NULL
1878 && !NILP (Vfontification_functions)
1879 && (pos = make_number (IT_CHARPOS (*it)),
1880 prop = Fget_char_property (pos, Qfontified, Qnil),
1881 NILP (prop)))
1882 {
1883 Lisp_Object args[2];
1884
1885 /* Run the hook functions. */
1886 args[0] = Qfontification_functions;
1887 args[1] = pos;
6fc556fd 1888 Frun_hook_with_args (2, args);
5f5c8ee5
GM
1889
1890 /* Return HANDLED_RECOMPUTE_PROPS only if function fontified
1891 something. This avoids an endless loop if they failed to
1892 fontify the text for which reason ever. */
1893 if (!NILP (Fget_char_property (pos, Qfontified, Qnil)))
1894 handled = HANDLED_RECOMPUTE_PROPS;
1895 }
1896
1897 return handled;
1898}
1899
1900
1901\f
1902/***********************************************************************
1903 Faces
1904 ***********************************************************************/
1905
1906/* Set up iterator IT from face properties at its current position.
1907 Called from handle_stop. */
1908
1909static enum prop_handled
1910handle_face_prop (it)
1911 struct it *it;
1912{
1913 int new_face_id, next_stop;
1914
1915 if (!STRINGP (it->string))
1916 {
1917 new_face_id
1918 = face_at_buffer_position (it->w,
1919 IT_CHARPOS (*it),
1920 it->region_beg_charpos,
1921 it->region_end_charpos,
1922 &next_stop,
1923 (IT_CHARPOS (*it)
1924 + TEXT_PROP_DISTANCE_LIMIT),
1925 0);
1926
1927 /* Is this a start of a run of characters with box face?
1928 Caveat: this can be called for a freshly initialized
1929 iterator; face_id is -1 is this case. We know that the new
1930 face will not change until limit, i.e. if the new face has a
1931 box, all characters up to limit will have one. But, as
1932 usual, we don't know whether limit is really the end. */
1933 if (new_face_id != it->face_id)
1934 {
1935 struct face *new_face = FACE_FROM_ID (it->f, new_face_id);
1936
1937 /* If new face has a box but old face has not, this is
1938 the start of a run of characters with box, i.e. it has
1939 a shadow on the left side. The value of face_id of the
1940 iterator will be -1 if this is the initial call that gets
1941 the face. In this case, we have to look in front of IT's
1942 position and see whether there is a face != new_face_id. */
1943 it->start_of_box_run_p
1944 = (new_face->box != FACE_NO_BOX
1945 && (it->face_id >= 0
1946 || IT_CHARPOS (*it) == BEG
1947 || new_face_id != face_before_it_pos (it)));
1948 it->face_box_p = new_face->box != FACE_NO_BOX;
1949 }
1950 }
1951 else
1952 {
1953 new_face_id
1954 = face_at_string_position (it->w,
1955 it->string,
1956 IT_STRING_CHARPOS (*it),
1957 (it->current.overlay_string_index >= 0
1958 ? IT_CHARPOS (*it)
1959 : 0),
1960 it->region_beg_charpos,
1961 it->region_end_charpos,
1962 &next_stop,
1963 it->base_face_id);
1964
1965#if 0 /* This shouldn't be neccessary. Let's check it. */
1966 /* If IT is used to display a mode line we would really like to
1967 use the mode line face instead of the frame's default face. */
1968 if (it->glyph_row == MATRIX_MODE_LINE_ROW (it->w->desired_matrix)
1969 && new_face_id == DEFAULT_FACE_ID)
1970 new_face_id = MODE_LINE_FACE_ID;
1971#endif
1972
1973 /* Is this a start of a run of characters with box? Caveat:
1974 this can be called for a freshly allocated iterator; face_id
1975 is -1 is this case. We know that the new face will not
1976 change until the next check pos, i.e. if the new face has a
1977 box, all characters up to that position will have a
1978 box. But, as usual, we don't know whether that position
1979 is really the end. */
1980 if (new_face_id != it->face_id)
1981 {
1982 struct face *new_face = FACE_FROM_ID (it->f, new_face_id);
1983 struct face *old_face = FACE_FROM_ID (it->f, it->face_id);
1984
1985 /* If new face has a box but old face hasn't, this is the
1986 start of a run of characters with box, i.e. it has a
1987 shadow on the left side. */
1988 it->start_of_box_run_p
1989 = new_face->box && (old_face == NULL || !old_face->box);
1990 it->face_box_p = new_face->box != FACE_NO_BOX;
1991 }
1992 }
1993
1994 it->face_id = new_face_id;
5f5c8ee5
GM
1995 return HANDLED_NORMALLY;
1996}
1997
1998
1999/* Compute the face one character before or after the current position
2000 of IT. BEFORE_P non-zero means get the face in front of IT's
2001 position. Value is the id of the face. */
2002
2003static int
2004face_before_or_after_it_pos (it, before_p)
2005 struct it *it;
2006 int before_p;
2007{
2008 int face_id, limit;
2009 int next_check_charpos;
2010 struct text_pos pos;
2011
2012 xassert (it->s == NULL);
2013
2014 if (STRINGP (it->string))
2015 {
2016 /* No face change past the end of the string (for the case
2017 we are padding with spaces). No face change before the
2018 string start. */
2019 if (IT_STRING_CHARPOS (*it) >= XSTRING (it->string)->size
2020 || (IT_STRING_CHARPOS (*it) == 0 && before_p))
2021 return it->face_id;
2022
2023 /* Set pos to the position before or after IT's current position. */
2024 if (before_p)
2025 pos = string_pos (IT_STRING_CHARPOS (*it) - 1, it->string);
2026 else
260a86a0
KH
2027 /* For composition, we must check the character after the
2028 composition. */
2029 pos = (it->what == IT_COMPOSITION
2030 ? string_pos (IT_STRING_CHARPOS (*it) + it->cmp_len, it->string)
2031 : string_pos (IT_STRING_CHARPOS (*it) + 1, it->string));
5f5c8ee5
GM
2032
2033 /* Get the face for ASCII, or unibyte. */
2034 face_id
2035 = face_at_string_position (it->w,
2036 it->string,
2037 CHARPOS (pos),
2038 (it->current.overlay_string_index >= 0
2039 ? IT_CHARPOS (*it)
2040 : 0),
2041 it->region_beg_charpos,
2042 it->region_end_charpos,
2043 &next_check_charpos,
2044 it->base_face_id);
2045
2046 /* Correct the face for charsets different from ASCII. Do it
2047 for the multibyte case only. The face returned above is
2048 suitable for unibyte text if IT->string is unibyte. */
2049 if (STRING_MULTIBYTE (it->string))
2050 {
2051 unsigned char *p = XSTRING (it->string)->data + BYTEPOS (pos);
2052 int rest = STRING_BYTES (XSTRING (it->string)) - BYTEPOS (pos);
980806b6
KH
2053 int c, len;
2054 struct face *face = FACE_FROM_ID (it->f, face_id);
5f5c8ee5 2055
4fdb80f2 2056 c = string_char_and_length (p, rest, &len);
980806b6 2057 face_id = FACE_FOR_CHAR (it->f, face, c);
5f5c8ee5
GM
2058 }
2059 }
2060 else
2061 {
70851746
GM
2062 if ((IT_CHARPOS (*it) >= ZV && !before_p)
2063 || (IT_CHARPOS (*it) <= BEGV && before_p))
2064 return it->face_id;
2065
5f5c8ee5
GM
2066 limit = IT_CHARPOS (*it) + TEXT_PROP_DISTANCE_LIMIT;
2067 pos = it->current.pos;
2068
2069 if (before_p)
c1005d06 2070 DEC_TEXT_POS (pos, it->multibyte_p);
5f5c8ee5 2071 else
260a86a0
KH
2072 {
2073 if (it->what == IT_COMPOSITION)
2074 /* For composition, we must check the position after the
2075 composition. */
2076 pos.charpos += it->cmp_len, pos.bytepos += it->len;
2077 else
c1005d06 2078 INC_TEXT_POS (pos, it->multibyte_p);
260a86a0 2079 }
5f5c8ee5
GM
2080 /* Determine face for CHARSET_ASCII, or unibyte. */
2081 face_id = face_at_buffer_position (it->w,
2082 CHARPOS (pos),
2083 it->region_beg_charpos,
2084 it->region_end_charpos,
2085 &next_check_charpos,
2086 limit, 0);
2087
2088 /* Correct the face for charsets different from ASCII. Do it
2089 for the multibyte case only. The face returned above is
2090 suitable for unibyte text if current_buffer is unibyte. */
2091 if (it->multibyte_p)
2092 {
980806b6
KH
2093 int c = FETCH_MULTIBYTE_CHAR (CHARPOS (pos));
2094 struct face *face = FACE_FROM_ID (it->f, face_id);
2095 face_id = FACE_FOR_CHAR (it->f, face, c);
5f5c8ee5
GM
2096 }
2097 }
2098
2099 return face_id;
2100}
2101
2102
2103\f
2104/***********************************************************************
2105 Invisible text
2106 ***********************************************************************/
2107
2108/* Set up iterator IT from invisible properties at its current
2109 position. Called from handle_stop. */
2110
2111static enum prop_handled
2112handle_invisible_prop (it)
2113 struct it *it;
2114{
2115 enum prop_handled handled = HANDLED_NORMALLY;
2116
2117 if (STRINGP (it->string))
2118 {
2119 extern Lisp_Object Qinvisible;
2120 Lisp_Object prop, end_charpos, limit, charpos;
2121
2122 /* Get the value of the invisible text property at the
2123 current position. Value will be nil if there is no such
2124 property. */
2125 XSETFASTINT (charpos, IT_STRING_CHARPOS (*it));
2126 prop = Fget_text_property (charpos, Qinvisible, it->string);
2127
eadc0bf8
GM
2128 if (!NILP (prop)
2129 && IT_STRING_CHARPOS (*it) < it->end_charpos)
5f5c8ee5
GM
2130 {
2131 handled = HANDLED_RECOMPUTE_PROPS;
2132
2133 /* Get the position at which the next change of the
2134 invisible text property can be found in IT->string.
2135 Value will be nil if the property value is the same for
2136 all the rest of IT->string. */
2137 XSETINT (limit, XSTRING (it->string)->size);
2138 end_charpos = Fnext_single_property_change (charpos, Qinvisible,
2139 it->string, limit);
2140
2141 /* Text at current position is invisible. The next
2142 change in the property is at position end_charpos.
2143 Move IT's current position to that position. */
2144 if (INTEGERP (end_charpos)
2145 && XFASTINT (end_charpos) < XFASTINT (limit))
2146 {
2147 struct text_pos old;
2148 old = it->current.string_pos;
2149 IT_STRING_CHARPOS (*it) = XFASTINT (end_charpos);
2150 compute_string_pos (&it->current.string_pos, old, it->string);
2151 }
2152 else
2153 {
2154 /* The rest of the string is invisible. If this is an
2155 overlay string, proceed with the next overlay string
2156 or whatever comes and return a character from there. */
2157 if (it->current.overlay_string_index >= 0)
2158 {
2159 next_overlay_string (it);
2160 /* Don't check for overlay strings when we just
2161 finished processing them. */
2162 handled = HANDLED_OVERLAY_STRING_CONSUMED;
2163 }
2164 else
2165 {
2166 struct Lisp_String *s = XSTRING (it->string);
2167 IT_STRING_CHARPOS (*it) = s->size;
2168 IT_STRING_BYTEPOS (*it) = STRING_BYTES (s);
2169 }
2170 }
2171 }
2172 }
2173 else
2174 {
2175 int visible_p, newpos, next_stop;
2176 Lisp_Object pos, prop;
2177
2178 /* First of all, is there invisible text at this position? */
2179 XSETFASTINT (pos, IT_CHARPOS (*it));
2180 prop = Fget_char_property (pos, Qinvisible, it->window);
2181
2182 /* If we are on invisible text, skip over it. */
eadc0bf8
GM
2183 if (TEXT_PROP_MEANS_INVISIBLE (prop)
2184 && IT_CHARPOS (*it) < it->end_charpos)
5f5c8ee5
GM
2185 {
2186 /* Record whether we have to display an ellipsis for the
2187 invisible text. */
2188 int display_ellipsis_p
2189 = TEXT_PROP_MEANS_INVISIBLE_WITH_ELLIPSIS (prop);
2190
2191 handled = HANDLED_RECOMPUTE_PROPS;
2970b9be 2192 it->add_overlay_start = IT_CHARPOS (*it);
5f5c8ee5
GM
2193
2194 /* Loop skipping over invisible text. The loop is left at
2195 ZV or with IT on the first char being visible again. */
2196 do
2197 {
2198 /* Try to skip some invisible text. Return value is the
2199 position reached which can be equal to IT's position
2200 if there is nothing invisible here. This skips both
2201 over invisible text properties and overlays with
2202 invisible property. */
2203 newpos = skip_invisible (IT_CHARPOS (*it),
2204 &next_stop, ZV, it->window);
2205
2206 /* If we skipped nothing at all we weren't at invisible
2207 text in the first place. If everything to the end of
2208 the buffer was skipped, end the loop. */
2209 if (newpos == IT_CHARPOS (*it) || newpos >= ZV)
2210 visible_p = 1;
2211 else
2212 {
2213 /* We skipped some characters but not necessarily
2214 all there are. Check if we ended up on visible
2215 text. Fget_char_property returns the property of
2216 the char before the given position, i.e. if we
2217 get visible_p = 1, this means that the char at
2218 newpos is visible. */
2219 XSETFASTINT (pos, newpos);
2220 prop = Fget_char_property (pos, Qinvisible, it->window);
2221 visible_p = !TEXT_PROP_MEANS_INVISIBLE (prop);
2222 }
2223
2224 /* If we ended up on invisible text, proceed to
2225 skip starting with next_stop. */
2226 if (!visible_p)
2227 IT_CHARPOS (*it) = next_stop;
2228 }
2229 while (!visible_p);
2230
2231 /* The position newpos is now either ZV or on visible text. */
2232 IT_CHARPOS (*it) = newpos;
2233 IT_BYTEPOS (*it) = CHAR_TO_BYTE (newpos);
2234
2235 /* Maybe return `...' next for the end of the invisible text. */
2236 if (display_ellipsis_p)
2237 {
2238 if (it->dp
2239 && VECTORP (DISP_INVIS_VECTOR (it->dp)))
2240 {
2241 struct Lisp_Vector *v = XVECTOR (DISP_INVIS_VECTOR (it->dp));
2242 it->dpvec = v->contents;
2243 it->dpend = v->contents + v->size;
2244 }
2245 else
2246 {
2247 /* Default `...'. */
2248 it->dpvec = default_invis_vector;
2249 it->dpend = default_invis_vector + 3;
2250 }
2251
2252 /* The ellipsis display does not replace the display of
2253 the character at the new position. Indicate this by
2254 setting IT->dpvec_char_len to zero. */
2255 it->dpvec_char_len = 0;
2256
2257 it->current.dpvec_index = 0;
2258 it->method = next_element_from_display_vector;
2259 }
2260 }
2261 }
2262
2263 return handled;
2264}
2265
2266
2267\f
2268/***********************************************************************
2269 'display' property
2270 ***********************************************************************/
2271
2272/* Set up iterator IT from `display' property at its current position.
2273 Called from handle_stop. */
2274
2275static enum prop_handled
2276handle_display_prop (it)
2277 struct it *it;
2278{
2279 Lisp_Object prop, object;
2280 struct text_pos *position;
2281 int space_or_image_found_p;
2282
2283 if (STRINGP (it->string))
2284 {
2285 object = it->string;
2286 position = &it->current.string_pos;
2287 }
2288 else
2289 {
2290 object = Qnil;
2291 position = &it->current.pos;
2292 }
2293
2294 /* Reset those iterator values set from display property values. */
2295 it->font_height = Qnil;
2296 it->space_width = Qnil;
2297 it->voffset = 0;
2298
2299 /* We don't support recursive `display' properties, i.e. string
2300 values that have a string `display' property, that have a string
2301 `display' property etc. */
2302 if (!it->string_from_display_prop_p)
2303 it->area = TEXT_AREA;
2304
2305 prop = Fget_char_property (make_number (position->charpos),
2306 Qdisplay, object);
2307 if (NILP (prop))
2308 return HANDLED_NORMALLY;
2309
2310 space_or_image_found_p = 0;
f3751a65
GM
2311 if (CONSP (prop)
2312 && CONSP (XCAR (prop))
2313 && !EQ (Qmargin, XCAR (XCAR (prop))))
5f5c8ee5 2314 {
f3751a65 2315 /* A list of sub-properties. */
5f5c8ee5
GM
2316 while (CONSP (prop))
2317 {
2318 if (handle_single_display_prop (it, XCAR (prop), object, position))
2319 space_or_image_found_p = 1;
2320 prop = XCDR (prop);
2321 }
2322 }
2323 else if (VECTORP (prop))
2324 {
2325 int i;
2326 for (i = 0; i < XVECTOR (prop)->size; ++i)
2327 if (handle_single_display_prop (it, XVECTOR (prop)->contents[i],
2328 object, position))
2329 space_or_image_found_p = 1;
2330 }
2331 else
2332 {
2333 if (handle_single_display_prop (it, prop, object, position))
2334 space_or_image_found_p = 1;
2335 }
2336
2337 return space_or_image_found_p ? HANDLED_RETURN : HANDLED_NORMALLY;
2338}
2339
2340
6c577098 2341/* Value is the position of the end of the `display' property starting
5f5c8ee5
GM
2342 at START_POS in OBJECT. */
2343
2344static struct text_pos
2345display_prop_end (it, object, start_pos)
2346 struct it *it;
2347 Lisp_Object object;
2348 struct text_pos start_pos;
2349{
2350 Lisp_Object end;
2351 struct text_pos end_pos;
5f5c8ee5 2352
016b5642
MB
2353 end = Fnext_single_char_property_change (make_number (CHARPOS (start_pos)),
2354 Qdisplay, object, Qnil);
6c577098
GM
2355 CHARPOS (end_pos) = XFASTINT (end);
2356 if (STRINGP (object))
5f5c8ee5
GM
2357 compute_string_pos (&end_pos, start_pos, it->string);
2358 else
6c577098 2359 BYTEPOS (end_pos) = CHAR_TO_BYTE (XFASTINT (end));
5f5c8ee5
GM
2360
2361 return end_pos;
2362}
2363
2364
2365/* Set up IT from a single `display' sub-property value PROP. OBJECT
2366 is the object in which the `display' property was found. *POSITION
2367 is the position at which it was found.
2368
2369 If PROP is a `space' or `image' sub-property, set *POSITION to the
2370 end position of the `display' property.
2371
2372 Value is non-zero if a `space' or `image' property value was found. */
2373
2374static int
2375handle_single_display_prop (it, prop, object, position)
2376 struct it *it;
2377 Lisp_Object prop;
2378 Lisp_Object object;
2379 struct text_pos *position;
2380{
2381 Lisp_Object value;
2382 int space_or_image_found_p = 0;
5f5c8ee5
GM
2383 Lisp_Object form;
2384
d3acf96b 2385 /* If PROP is a list of the form `(when FORM . VALUE)', FORM is
5a4c88c4 2386 evaluated. If the result is nil, VALUE is ignored. */
5f5c8ee5 2387 form = Qt;
d3acf96b 2388 if (CONSP (prop) && EQ (XCAR (prop), Qwhen))
5f5c8ee5
GM
2389 {
2390 prop = XCDR (prop);
2391 if (!CONSP (prop))
2392 return 0;
2393 form = XCAR (prop);
2394 prop = XCDR (prop);
5f5c8ee5
GM
2395 }
2396
2397 if (!NILP (form) && !EQ (form, Qt))
2398 {
2399 struct gcpro gcpro1;
2400 struct text_pos end_pos, pt;
2401
5f5c8ee5 2402 GCPRO1 (form);
c7aca1ad 2403 end_pos = display_prop_end (it, object, *position);
5f5c8ee5
GM
2404
2405 /* Temporarily set point to the end position, and then evaluate
2406 the form. This makes `(eolp)' work as FORM. */
c7aca1ad
GM
2407 if (BUFFERP (object))
2408 {
2409 CHARPOS (pt) = PT;
2410 BYTEPOS (pt) = PT_BYTE;
2411 TEMP_SET_PT_BOTH (CHARPOS (end_pos), BYTEPOS (end_pos));
2412 }
2413
5f5c8ee5 2414 form = eval_form (form);
c7aca1ad
GM
2415
2416 if (BUFFERP (object))
2417 TEMP_SET_PT_BOTH (CHARPOS (pt), BYTEPOS (pt));
5f5c8ee5
GM
2418 UNGCPRO;
2419 }
2420
2421 if (NILP (form))
2422 return 0;
2423
2424 if (CONSP (prop)
2425 && EQ (XCAR (prop), Qheight)
2426 && CONSP (XCDR (prop)))
2427 {
2428 if (FRAME_TERMCAP_P (it->f) || FRAME_MSDOS_P (it->f))
2429 return 0;
2430
2431 /* `(height HEIGHT)'. */
2432 it->font_height = XCAR (XCDR (prop));
2433 if (!NILP (it->font_height))
2434 {
2435 struct face *face = FACE_FROM_ID (it->f, it->face_id);
2436 int new_height = -1;
2437
2438 if (CONSP (it->font_height)
2439 && (EQ (XCAR (it->font_height), Qplus)
2440 || EQ (XCAR (it->font_height), Qminus))
2441 && CONSP (XCDR (it->font_height))
2442 && INTEGERP (XCAR (XCDR (it->font_height))))
2443 {
2444 /* `(+ N)' or `(- N)' where N is an integer. */
2445 int steps = XINT (XCAR (XCDR (it->font_height)));
2446 if (EQ (XCAR (it->font_height), Qplus))
2447 steps = - steps;
2448 it->face_id = smaller_face (it->f, it->face_id, steps);
2449 }
0d8b31c0 2450 else if (FUNCTIONP (it->font_height))
5f5c8ee5
GM
2451 {
2452 /* Call function with current height as argument.
2453 Value is the new height. */
0d8b31c0
GM
2454 Lisp_Object args[2], height;
2455
2456 args[0] = it->font_height;
2457 args[1] = face->lface[LFACE_HEIGHT_INDEX];
2458 height = call_function (2, args);
5f5c8ee5 2459
5f5c8ee5
GM
2460 if (NUMBERP (height))
2461 new_height = XFLOATINT (height);
5f5c8ee5
GM
2462 }
2463 else if (NUMBERP (it->font_height))
2464 {
2465 /* Value is a multiple of the canonical char height. */
2466 struct face *face;
2467
2468 face = FACE_FROM_ID (it->f, DEFAULT_FACE_ID);
2469 new_height = (XFLOATINT (it->font_height)
2470 * XINT (face->lface[LFACE_HEIGHT_INDEX]));
2471 }
2472 else
2473 {
2474 /* Evaluate IT->font_height with `height' bound to the
2475 current specified height to get the new height. */
2476 Lisp_Object value;
2477 int count = specpdl_ptr - specpdl;
2478
2479 specbind (Qheight, face->lface[LFACE_HEIGHT_INDEX]);
2480 value = eval_form (it->font_height);
2481 unbind_to (count, Qnil);
2482
2483 if (NUMBERP (value))
2484 new_height = XFLOATINT (value);
2485 }
2486
2487 if (new_height > 0)
2488 it->face_id = face_with_height (it->f, it->face_id, new_height);
2489 }
2490 }
2491 else if (CONSP (prop)
2492 && EQ (XCAR (prop), Qspace_width)
2493 && CONSP (XCDR (prop)))
2494 {
2495 /* `(space_width WIDTH)'. */
2496 if (FRAME_TERMCAP_P (it->f) || FRAME_MSDOS_P (it->f))
2497 return 0;
2498
2499 value = XCAR (XCDR (prop));
2500 if (NUMBERP (value) && XFLOATINT (value) > 0)
2501 it->space_width = value;
2502 }
2503 else if (CONSP (prop)
2504 && EQ (XCAR (prop), Qraise)
2505 && CONSP (XCDR (prop)))
2506 {
5f5c8ee5
GM
2507 /* `(raise FACTOR)'. */
2508 if (FRAME_TERMCAP_P (it->f) || FRAME_MSDOS_P (it->f))
2509 return 0;
2510
fb3842a8 2511#ifdef HAVE_WINDOW_SYSTEM
5f5c8ee5
GM
2512 value = XCAR (XCDR (prop));
2513 if (NUMBERP (value))
2514 {
2515 struct face *face = FACE_FROM_ID (it->f, it->face_id);
2516 it->voffset = - (XFLOATINT (value)
1ab3e082 2517 * (FONT_HEIGHT (face->font)));
5f5c8ee5
GM
2518 }
2519#endif /* HAVE_WINDOW_SYSTEM */
2520 }
2521 else if (!it->string_from_display_prop_p)
2522 {
f3751a65
GM
2523 /* `((margin left-margin) VALUE)' or `((margin right-margin)
2524 VALUE) or `((margin nil) VALUE)' or VALUE. */
5f5c8ee5
GM
2525 Lisp_Object location, value;
2526 struct text_pos start_pos;
2527 int valid_p;
2528
2529 /* Characters having this form of property are not displayed, so
2530 we have to find the end of the property. */
5f5c8ee5
GM
2531 start_pos = *position;
2532 *position = display_prop_end (it, object, start_pos);
15e26c76 2533 value = Qnil;
5f5c8ee5
GM
2534
2535 /* Let's stop at the new position and assume that all
2536 text properties change there. */
2537 it->stop_charpos = position->charpos;
2538
f3751a65
GM
2539 location = Qunbound;
2540 if (CONSP (prop) && CONSP (XCAR (prop)))
5f5c8ee5 2541 {
f3751a65
GM
2542 Lisp_Object tem;
2543
5f5c8ee5 2544 value = XCDR (prop);
f3751a65
GM
2545 if (CONSP (value))
2546 value = XCAR (value);
2547
2548 tem = XCAR (prop);
2549 if (EQ (XCAR (tem), Qmargin)
2550 && (tem = XCDR (tem),
2551 tem = CONSP (tem) ? XCAR (tem) : Qnil,
2552 (NILP (tem)
2553 || EQ (tem, Qleft_margin)
2554 || EQ (tem, Qright_margin))))
2555 location = tem;
5f5c8ee5 2556 }
f3751a65
GM
2557
2558 if (EQ (location, Qunbound))
5f5c8ee5
GM
2559 {
2560 location = Qnil;
2561 value = prop;
2562 }
2563
2564#ifdef HAVE_WINDOW_SYSTEM
fb3842a8 2565 if (FRAME_TERMCAP_P (it->f))
5f5c8ee5
GM
2566 valid_p = STRINGP (value);
2567 else
2568 valid_p = (STRINGP (value)
2569 || (CONSP (value) && EQ (XCAR (value), Qspace))
2570 || valid_image_p (value));
2571#else /* not HAVE_WINDOW_SYSTEM */
2572 valid_p = STRINGP (value);
2573#endif /* not HAVE_WINDOW_SYSTEM */
2574
2575 if ((EQ (location, Qleft_margin)
2576 || EQ (location, Qright_margin)
2577 || NILP (location))
2578 && valid_p)
2579 {
a21a3943
GM
2580 space_or_image_found_p = 1;
2581
5f5c8ee5
GM
2582 /* Save current settings of IT so that we can restore them
2583 when we are finished with the glyph property value. */
2584 push_it (it);
2585
2586 if (NILP (location))
2587 it->area = TEXT_AREA;
2588 else if (EQ (location, Qleft_margin))
2589 it->area = LEFT_MARGIN_AREA;
2590 else
2591 it->area = RIGHT_MARGIN_AREA;
2592
2593 if (STRINGP (value))
2594 {
2595 it->string = value;
2596 it->multibyte_p = STRING_MULTIBYTE (it->string);
2597 it->current.overlay_string_index = -1;
2598 IT_STRING_CHARPOS (*it) = IT_STRING_BYTEPOS (*it) = 0;
2599 it->end_charpos = it->string_nchars
2600 = XSTRING (it->string)->size;
2601 it->method = next_element_from_string;
2602 it->stop_charpos = 0;
2603 it->string_from_display_prop_p = 1;
2604 }
2605 else if (CONSP (value) && EQ (XCAR (value), Qspace))
2606 {
2607 it->method = next_element_from_stretch;
2608 it->object = value;
2609 it->current.pos = it->position = start_pos;
2610 }
2611#ifdef HAVE_WINDOW_SYSTEM
2612 else
2613 {
2614 it->what = IT_IMAGE;
2615 it->image_id = lookup_image (it->f, value);
2616 it->position = start_pos;
2617 it->object = NILP (object) ? it->w->buffer : object;
2618 it->method = next_element_from_image;
2619
02513cdd 2620 /* Say that we haven't consumed the characters with
5f5c8ee5
GM
2621 `display' property yet. The call to pop_it in
2622 set_iterator_to_next will clean this up. */
2623 *position = start_pos;
2624 }
2625#endif /* HAVE_WINDOW_SYSTEM */
2626 }
a21a3943
GM
2627 else
2628 /* Invalid property or property not supported. Restore
2629 the position to what it was before. */
2630 *position = start_pos;
5f5c8ee5
GM
2631 }
2632
2633 return space_or_image_found_p;
2634}
2635
2636
06568bbf
GM
2637/* Check if PROP is a display sub-property value whose text should be
2638 treated as intangible. */
2639
2640static int
2641single_display_prop_intangible_p (prop)
2642 Lisp_Object prop;
2643{
2644 /* Skip over `when FORM'. */
2645 if (CONSP (prop) && EQ (XCAR (prop), Qwhen))
2646 {
2647 prop = XCDR (prop);
2648 if (!CONSP (prop))
2649 return 0;
2650 prop = XCDR (prop);
2651 }
2652
2653 if (!CONSP (prop))
2654 return 0;
2655
2656 /* Skip over `margin LOCATION'. If LOCATION is in the margins,
2657 we don't need to treat text as intangible. */
2658 if (EQ (XCAR (prop), Qmargin))
2659 {
2660 prop = XCDR (prop);
2661 if (!CONSP (prop))
2662 return 0;
2663
2664 prop = XCDR (prop);
2665 if (!CONSP (prop)
2666 || EQ (XCAR (prop), Qleft_margin)
2667 || EQ (XCAR (prop), Qright_margin))
2668 return 0;
2669 }
2670
2671 return CONSP (prop) && EQ (XCAR (prop), Qimage);
2672}
2673
2674
2675/* Check if PROP is a display property value whose text should be
2676 treated as intangible. */
2677
2678int
2679display_prop_intangible_p (prop)
2680 Lisp_Object prop;
2681{
2682 if (CONSP (prop)
2683 && CONSP (XCAR (prop))
2684 && !EQ (Qmargin, XCAR (XCAR (prop))))
2685 {
2686 /* A list of sub-properties. */
2687 while (CONSP (prop))
2688 {
2689 if (single_display_prop_intangible_p (XCAR (prop)))
2690 return 1;
2691 prop = XCDR (prop);
2692 }
2693 }
2694 else if (VECTORP (prop))
2695 {
2696 /* A vector of sub-properties. */
2697 int i;
2698 for (i = 0; i < XVECTOR (prop)->size; ++i)
2699 if (single_display_prop_intangible_p (XVECTOR (prop)->contents[i]))
2700 return 1;
2701 }
2702 else
2703 return single_display_prop_intangible_p (prop);
2704
2705 return 0;
2706}
2707
5f5c8ee5 2708\f
260a86a0
KH
2709/***********************************************************************
2710 `composition' property
2711 ***********************************************************************/
2712
2713/* Set up iterator IT from `composition' property at its current
2714 position. Called from handle_stop. */
2715
2716static enum prop_handled
2717handle_composition_prop (it)
2718 struct it *it;
2719{
2720 Lisp_Object prop, string;
2721 int pos, pos_byte, end;
2722 enum prop_handled handled = HANDLED_NORMALLY;
2723
2724 if (STRINGP (it->string))
2725 {
2726 pos = IT_STRING_CHARPOS (*it);
2727 pos_byte = IT_STRING_BYTEPOS (*it);
2728 string = it->string;
2729 }
2730 else
2731 {
2732 pos = IT_CHARPOS (*it);
2733 pos_byte = IT_BYTEPOS (*it);
2734 string = Qnil;
2735 }
2736
2737 /* If there's a valid composition and point is not inside of the
2738 composition (in the case that the composition is from the current
2739 buffer), draw a glyph composed from the composition components. */
2740 if (find_composition (pos, -1, &pos, &end, &prop, string)
2741 && COMPOSITION_VALID_P (pos, end, prop)
2742 && (STRINGP (it->string) || (PT <= pos || PT >= end)))
2743 {
2744 int id = get_composition_id (pos, pos_byte, end - pos, prop, string);
2745
2746 if (id >= 0)
2747 {
2748 it->method = next_element_from_composition;
2749 it->cmp_id = id;
2750 it->cmp_len = COMPOSITION_LENGTH (prop);
2751 /* For a terminal, draw only the first character of the
2752 components. */
2753 it->c = COMPOSITION_GLYPH (composition_table[id], 0);
2754 it->len = (STRINGP (it->string)
2755 ? string_char_to_byte (it->string, end)
2756 : CHAR_TO_BYTE (end)) - pos_byte;
2757 it->stop_charpos = end;
2758 handled = HANDLED_RETURN;
2759 }
2760 }
2761
2762 return handled;
2763}
2764
2765
2766\f
5f5c8ee5
GM
2767/***********************************************************************
2768 Overlay strings
2769 ***********************************************************************/
2770
2771/* The following structure is used to record overlay strings for
2772 later sorting in load_overlay_strings. */
2773
2774struct overlay_entry
2775{
2970b9be 2776 Lisp_Object overlay;
5f5c8ee5
GM
2777 Lisp_Object string;
2778 int priority;
2779 int after_string_p;
2780};
2781
2782
2783/* Set up iterator IT from overlay strings at its current position.
2784 Called from handle_stop. */
2785
2786static enum prop_handled
2787handle_overlay_change (it)
2788 struct it *it;
2789{
2970b9be
GM
2790 if (!STRINGP (it->string) && get_overlay_strings (it))
2791 return HANDLED_RECOMPUTE_PROPS;
5f5c8ee5 2792 else
2970b9be 2793 return HANDLED_NORMALLY;
5f5c8ee5
GM
2794}
2795
2796
2797/* Set up the next overlay string for delivery by IT, if there is an
2798 overlay string to deliver. Called by set_iterator_to_next when the
2799 end of the current overlay string is reached. If there are more
2800 overlay strings to display, IT->string and
2801 IT->current.overlay_string_index are set appropriately here.
2802 Otherwise IT->string is set to nil. */
2803
2804static void
2805next_overlay_string (it)
2806 struct it *it;
2807{
2808 ++it->current.overlay_string_index;
2809 if (it->current.overlay_string_index == it->n_overlay_strings)
2810 {
2811 /* No more overlay strings. Restore IT's settings to what
2812 they were before overlay strings were processed, and
2813 continue to deliver from current_buffer. */
2814 pop_it (it);
2815 xassert (it->stop_charpos >= BEGV
2816 && it->stop_charpos <= it->end_charpos);
2817 it->string = Qnil;
2818 it->current.overlay_string_index = -1;
2819 SET_TEXT_POS (it->current.string_pos, -1, -1);
2820 it->n_overlay_strings = 0;
2821 it->method = next_element_from_buffer;
2970b9be
GM
2822
2823 /* If we're at the end of the buffer, record that we have
2824 processed the overlay strings there already, so that
2825 next_element_from_buffer doesn't try it again. */
2826 if (IT_CHARPOS (*it) >= it->end_charpos)
2827 it->overlay_strings_at_end_processed_p = 1;
5f5c8ee5
GM
2828 }
2829 else
2830 {
2831 /* There are more overlay strings to process. If
2832 IT->current.overlay_string_index has advanced to a position
2833 where we must load IT->overlay_strings with more strings, do
2834 it. */
2835 int i = it->current.overlay_string_index % OVERLAY_STRING_CHUNK_SIZE;
2836
2837 if (it->current.overlay_string_index && i == 0)
2838 load_overlay_strings (it);
2839
2840 /* Initialize IT to deliver display elements from the overlay
2841 string. */
2842 it->string = it->overlay_strings[i];
2843 it->multibyte_p = STRING_MULTIBYTE (it->string);
2844 SET_TEXT_POS (it->current.string_pos, 0, 0);
2845 it->method = next_element_from_string;
2846 it->stop_charpos = 0;
2847 }
2848
2849 CHECK_IT (it);
2850}
2851
2852
2853/* Compare two overlay_entry structures E1 and E2. Used as a
2854 comparison function for qsort in load_overlay_strings. Overlay
2855 strings for the same position are sorted so that
2856
2970b9be
GM
2857 1. All after-strings come in front of before-strings, except
2858 when they come from the same overlay.
5f5c8ee5
GM
2859
2860 2. Within after-strings, strings are sorted so that overlay strings
2861 from overlays with higher priorities come first.
2862
2863 2. Within before-strings, strings are sorted so that overlay
2864 strings from overlays with higher priorities come last.
2865
2866 Value is analogous to strcmp. */
2867
2868
2869static int
2870compare_overlay_entries (e1, e2)
2871 void *e1, *e2;
2872{
2873 struct overlay_entry *entry1 = (struct overlay_entry *) e1;
2874 struct overlay_entry *entry2 = (struct overlay_entry *) e2;
2875 int result;
2876
2877 if (entry1->after_string_p != entry2->after_string_p)
2970b9be
GM
2878 {
2879 /* Let after-strings appear in front of before-strings if
2880 they come from different overlays. */
2881 if (EQ (entry1->overlay, entry2->overlay))
2882 result = entry1->after_string_p ? 1 : -1;
2883 else
2884 result = entry1->after_string_p ? -1 : 1;
2885 }
5f5c8ee5
GM
2886 else if (entry1->after_string_p)
2887 /* After-strings sorted in order of decreasing priority. */
2888 result = entry2->priority - entry1->priority;
2889 else
2890 /* Before-strings sorted in order of increasing priority. */
2891 result = entry1->priority - entry2->priority;
2892
2893 return result;
2894}
2895
2896
2897/* Load the vector IT->overlay_strings with overlay strings from IT's
2898 current buffer position. Set IT->n_overlays to the total number of
2899 overlay strings found.
2900
2901 Overlay strings are processed OVERLAY_STRING_CHUNK_SIZE strings at
2902 a time. On entry into load_overlay_strings,
2903 IT->current.overlay_string_index gives the number of overlay
2904 strings that have already been loaded by previous calls to this
2905 function.
2906
2970b9be
GM
2907 IT->add_overlay_start contains an additional overlay start
2908 position to consider for taking overlay strings from, if non-zero.
2909 This position comes into play when the overlay has an `invisible'
2910 property, and both before and after-strings. When we've skipped to
2911 the end of the overlay, because of its `invisible' property, we
2912 nevertheless want its before-string to appear.
2913 IT->add_overlay_start will contain the overlay start position
2914 in this case.
2915
5f5c8ee5
GM
2916 Overlay strings are sorted so that after-string strings come in
2917 front of before-string strings. Within before and after-strings,
2918 strings are sorted by overlay priority. See also function
2919 compare_overlay_entries. */
2920
2921static void
2922load_overlay_strings (it)
2923 struct it *it;
2924{
2925 extern Lisp_Object Qafter_string, Qbefore_string, Qwindow, Qpriority;
2926 Lisp_Object ov, overlay, window, str;
2927 int start, end;
2928 int size = 20;
2929 int n = 0, i, j;
2930 struct overlay_entry *entries
2931 = (struct overlay_entry *) alloca (size * sizeof *entries);
2932
2933 /* Append the overlay string STRING of overlay OVERLAY to vector
2934 `entries' which has size `size' and currently contains `n'
2935 elements. AFTER_P non-zero means STRING is an after-string of
2936 OVERLAY. */
2937#define RECORD_OVERLAY_STRING(OVERLAY, STRING, AFTER_P) \
2938 do \
2939 { \
2940 Lisp_Object priority; \
2941 \
2942 if (n == size) \
2943 { \
2944 int new_size = 2 * size; \
2945 struct overlay_entry *old = entries; \
2946 entries = \
2947 (struct overlay_entry *) alloca (new_size \
2948 * sizeof *entries); \
2949 bcopy (old, entries, size * sizeof *entries); \
2950 size = new_size; \
2951 } \
2952 \
2953 entries[n].string = (STRING); \
2970b9be 2954 entries[n].overlay = (OVERLAY); \
5f5c8ee5 2955 priority = Foverlay_get ((OVERLAY), Qpriority); \
2970b9be 2956 entries[n].priority = INTEGERP (priority) ? XINT (priority) : 0; \
5f5c8ee5
GM
2957 entries[n].after_string_p = (AFTER_P); \
2958 ++n; \
2959 } \
2960 while (0)
2961
2962 /* Process overlay before the overlay center. */
2970b9be 2963 for (ov = current_buffer->overlays_before; CONSP (ov); ov = XCDR (ov))
5f5c8ee5 2964 {
9472f927 2965 overlay = XCAR (ov);
5f5c8ee5
GM
2966 xassert (OVERLAYP (overlay));
2967 start = OVERLAY_POSITION (OVERLAY_START (overlay));
2968 end = OVERLAY_POSITION (OVERLAY_END (overlay));
2969
2970 if (end < IT_CHARPOS (*it))
2971 break;
2972
2973 /* Skip this overlay if it doesn't start or end at IT's current
2974 position. */
2970b9be
GM
2975 if (end != IT_CHARPOS (*it)
2976 && start != IT_CHARPOS (*it)
2977 && it->add_overlay_start != IT_CHARPOS (*it))
5f5c8ee5
GM
2978 continue;
2979
2980 /* Skip this overlay if it doesn't apply to IT->w. */
2981 window = Foverlay_get (overlay, Qwindow);
2982 if (WINDOWP (window) && XWINDOW (window) != it->w)
2983 continue;
2984
2985 /* If overlay has a non-empty before-string, record it. */
2970b9be
GM
2986 if ((start == IT_CHARPOS (*it)
2987 || start == it->add_overlay_start)
5f5c8ee5
GM
2988 && (str = Foverlay_get (overlay, Qbefore_string), STRINGP (str))
2989 && XSTRING (str)->size)
2990 RECORD_OVERLAY_STRING (overlay, str, 0);
2991
2992 /* If overlay has a non-empty after-string, record it. */
2993 if (end == IT_CHARPOS (*it)
2994 && (str = Foverlay_get (overlay, Qafter_string), STRINGP (str))
2995 && XSTRING (str)->size)
2996 RECORD_OVERLAY_STRING (overlay, str, 1);
2997 }
2998
2999 /* Process overlays after the overlay center. */
2970b9be 3000 for (ov = current_buffer->overlays_after; CONSP (ov); ov = XCDR (ov))
5f5c8ee5 3001 {
9472f927 3002 overlay = XCAR (ov);
5f5c8ee5
GM
3003 xassert (OVERLAYP (overlay));
3004 start = OVERLAY_POSITION (OVERLAY_START (overlay));
3005 end = OVERLAY_POSITION (OVERLAY_END (overlay));
3006
3007 if (start > IT_CHARPOS (*it))
3008 break;
3009
3010 /* Skip this overlay if it doesn't start or end at IT's current
3011 position. */
2970b9be
GM
3012 if (end != IT_CHARPOS (*it)
3013 && start != IT_CHARPOS (*it)
3014 && it->add_overlay_start != IT_CHARPOS (*it))
5f5c8ee5
GM
3015 continue;
3016
3017 /* Skip this overlay if it doesn't apply to IT->w. */
3018 window = Foverlay_get (overlay, Qwindow);
3019 if (WINDOWP (window) && XWINDOW (window) != it->w)
3020 continue;
3021
3022 /* If overlay has a non-empty before-string, record it. */
2970b9be
GM
3023 if ((start == IT_CHARPOS (*it)
3024 || start == it->add_overlay_start)
5f5c8ee5
GM
3025 && (str = Foverlay_get (overlay, Qbefore_string), STRINGP (str))
3026 && XSTRING (str)->size)
3027 RECORD_OVERLAY_STRING (overlay, str, 0);
3028
3029 /* If overlay has a non-empty after-string, record it. */
3030 if (end == IT_CHARPOS (*it)
3031 && (str = Foverlay_get (overlay, Qafter_string), STRINGP (str))
3032 && XSTRING (str)->size)
3033 RECORD_OVERLAY_STRING (overlay, str, 1);
3034 }
3035
3036#undef RECORD_OVERLAY_STRING
3037
3038 /* Sort entries. */
2970b9be
GM
3039 if (n)
3040 qsort (entries, n, sizeof *entries, compare_overlay_entries);
5f5c8ee5
GM
3041
3042 /* Record the total number of strings to process. */
3043 it->n_overlay_strings = n;
3044
3045 /* IT->current.overlay_string_index is the number of overlay strings
3046 that have already been consumed by IT. Copy some of the
3047 remaining overlay strings to IT->overlay_strings. */
3048 i = 0;
3049 j = it->current.overlay_string_index;
3050 while (i < OVERLAY_STRING_CHUNK_SIZE && j < n)
3051 it->overlay_strings[i++] = entries[j++].string;
2970b9be 3052
5f5c8ee5
GM
3053 CHECK_IT (it);
3054}
3055
3056
3057/* Get the first chunk of overlay strings at IT's current buffer
3058 position. Value is non-zero if at least one overlay string was
3059 found. */
3060
3061static int
3062get_overlay_strings (it)
3063 struct it *it;
3064{
3065 /* Get the first OVERLAY_STRING_CHUNK_SIZE overlay strings to
3066 process. This fills IT->overlay_strings with strings, and sets
3067 IT->n_overlay_strings to the total number of strings to process.
3068 IT->pos.overlay_string_index has to be set temporarily to zero
3069 because load_overlay_strings needs this; it must be set to -1
3070 when no overlay strings are found because a zero value would
3071 indicate a position in the first overlay string. */
3072 it->current.overlay_string_index = 0;
3073 load_overlay_strings (it);
3074
3075 /* If we found overlay strings, set up IT to deliver display
3076 elements from the first one. Otherwise set up IT to deliver
3077 from current_buffer. */
3078 if (it->n_overlay_strings)
3079 {
3080 /* Make sure we know settings in current_buffer, so that we can
3081 restore meaningful values when we're done with the overlay
3082 strings. */
3083 compute_stop_pos (it);
3084 xassert (it->face_id >= 0);
3085
3086 /* Save IT's settings. They are restored after all overlay
3087 strings have been processed. */
3088 xassert (it->sp == 0);
3089 push_it (it);
3090
3091 /* Set up IT to deliver display elements from the first overlay
3092 string. */
3093 IT_STRING_CHARPOS (*it) = IT_STRING_BYTEPOS (*it) = 0;
3094 it->stop_charpos = 0;
3095 it->string = it->overlay_strings[0];
3096 it->multibyte_p = STRING_MULTIBYTE (it->string);
3097 xassert (STRINGP (it->string));
3098 it->method = next_element_from_string;
3099 }
3100 else
3101 {
3102 it->string = Qnil;
3103 it->current.overlay_string_index = -1;
3104 it->method = next_element_from_buffer;
3105 }
3106
3107 CHECK_IT (it);
3108
3109 /* Value is non-zero if we found at least one overlay string. */
3110 return STRINGP (it->string);
3111}
3112
3113
3114\f
3115/***********************************************************************
3116 Saving and restoring state
3117 ***********************************************************************/
3118
3119/* Save current settings of IT on IT->stack. Called, for example,
3120 before setting up IT for an overlay string, to be able to restore
3121 IT's settings to what they were after the overlay string has been
3122 processed. */
3123
3124static void
3125push_it (it)
3126 struct it *it;
3127{
3128 struct iterator_stack_entry *p;
3129
3130 xassert (it->sp < 2);
3131 p = it->stack + it->sp;
3132
3133 p->stop_charpos = it->stop_charpos;
3134 xassert (it->face_id >= 0);
3135 p->face_id = it->face_id;
3136 p->string = it->string;
3137 p->pos = it->current;
3138 p->end_charpos = it->end_charpos;
3139 p->string_nchars = it->string_nchars;
3140 p->area = it->area;
3141 p->multibyte_p = it->multibyte_p;
3142 p->space_width = it->space_width;
3143 p->font_height = it->font_height;
3144 p->voffset = it->voffset;
3145 p->string_from_display_prop_p = it->string_from_display_prop_p;
3146 ++it->sp;
3147}
3148
3149
3150/* Restore IT's settings from IT->stack. Called, for example, when no
3151 more overlay strings must be processed, and we return to delivering
3152 display elements from a buffer, or when the end of a string from a
3153 `display' property is reached and we return to delivering display
3154 elements from an overlay string, or from a buffer. */
3155
3156static void
3157pop_it (it)
3158 struct it *it;
3159{
3160 struct iterator_stack_entry *p;
3161
3162 xassert (it->sp > 0);
3163 --it->sp;
3164 p = it->stack + it->sp;
3165 it->stop_charpos = p->stop_charpos;
3166 it->face_id = p->face_id;
3167 it->string = p->string;
3168 it->current = p->pos;
3169 it->end_charpos = p->end_charpos;
3170 it->string_nchars = p->string_nchars;
3171 it->area = p->area;
3172 it->multibyte_p = p->multibyte_p;
3173 it->space_width = p->space_width;
3174 it->font_height = p->font_height;
3175 it->voffset = p->voffset;
3176 it->string_from_display_prop_p = p->string_from_display_prop_p;
3177}
3178
3179
3180\f
3181/***********************************************************************
3182 Moving over lines
3183 ***********************************************************************/
3184
3185/* Set IT's current position to the previous line start. */
3186
3187static void
3188back_to_previous_line_start (it)
3189 struct it *it;
3190{
3191 IT_CHARPOS (*it) = find_next_newline_no_quit (IT_CHARPOS (*it) - 1, -1);
3192 IT_BYTEPOS (*it) = CHAR_TO_BYTE (IT_CHARPOS (*it));
3193}
3194
3195
3196/* Set IT's current position to the next line start. */
3197
3198static void
3199forward_to_next_line_start (it)
3200 struct it *it;
3201{
3202 IT_CHARPOS (*it) = find_next_newline_no_quit (IT_CHARPOS (*it), 1);
3203 IT_BYTEPOS (*it) = CHAR_TO_BYTE (IT_CHARPOS (*it));
3204}
3205
3206
3207/* Set IT's current position to the previous visible line start. Skip
3208 invisible text that is so either due to text properties or due to
3209 selective display. Caution: this does not change IT->current_x and
3210 IT->hpos. */
3211
3212static void
3213back_to_previous_visible_line_start (it)
3214 struct it *it;
3215{
3216 int visible_p = 0;
3217
3218 /* Go back one newline if not on BEGV already. */
3219 if (IT_CHARPOS (*it) > BEGV)
3220 back_to_previous_line_start (it);
3221
3222 /* Move over lines that are invisible because of selective display
3223 or text properties. */
3224 while (IT_CHARPOS (*it) > BEGV
3225 && !visible_p)
3226 {
3227 visible_p = 1;
3228
3229 /* If selective > 0, then lines indented more than that values
3230 are invisible. */
3231 if (it->selective > 0
3232 && indented_beyond_p (IT_CHARPOS (*it), IT_BYTEPOS (*it),
3233 it->selective))
3234 visible_p = 0;
5f5c8ee5
GM
3235 else
3236 {
3237 Lisp_Object prop;
3238
6fc556fd
KR
3239 prop = Fget_char_property (make_number (IT_CHARPOS (*it)),
3240 Qinvisible, it->window);
5f5c8ee5
GM
3241 if (TEXT_PROP_MEANS_INVISIBLE (prop))
3242 visible_p = 0;
3243 }
5f5c8ee5
GM
3244
3245 /* Back one more newline if the current one is invisible. */
3246 if (!visible_p)
3247 back_to_previous_line_start (it);
3248 }
3249
3250 xassert (IT_CHARPOS (*it) >= BEGV);
3251 xassert (IT_CHARPOS (*it) == BEGV
3252 || FETCH_BYTE (IT_BYTEPOS (*it) - 1) == '\n');
3253 CHECK_IT (it);
3254}
3255
3256
3257/* Reseat iterator IT at the previous visible line start. Skip
3258 invisible text that is so either due to text properties or due to
3259 selective display. At the end, update IT's overlay information,
3260 face information etc. */
3261
3262static void
3263reseat_at_previous_visible_line_start (it)
3264 struct it *it;
3265{
3266 back_to_previous_visible_line_start (it);
3267 reseat (it, it->current.pos, 1);
3268 CHECK_IT (it);
3269}
3270
3271
3272/* Reseat iterator IT on the next visible line start in the current
312246d1
GM
3273 buffer. ON_NEWLINE_P non-zero means position IT on the newline
3274 preceding the line start. Skip over invisible text that is so
3275 because of selective display. Compute faces, overlays etc at the
3276 new position. Note that this function does not skip over text that
3277 is invisible because of text properties. */
5f5c8ee5
GM
3278
3279static void
312246d1 3280reseat_at_next_visible_line_start (it, on_newline_p)
5f5c8ee5 3281 struct it *it;
312246d1 3282 int on_newline_p;
5f5c8ee5
GM
3283{
3284 /* Restore the buffer position when currently not delivering display
3285 elements from the current buffer. This is the case, for example,
3286 when called at the end of a truncated overlay string. */
3287 while (it->sp)
3288 pop_it (it);
3289 it->method = next_element_from_buffer;
3290
3291 /* Otherwise, scan_buffer would not work. */
3292 if (IT_CHARPOS (*it) < ZV)
3293 {
3294 /* If on a newline, advance past it. Otherwise, find the next
3295 newline which automatically gives us the position following
3296 the newline. */
3297 if (FETCH_BYTE (IT_BYTEPOS (*it)) == '\n')
3298 {
3299 ++IT_CHARPOS (*it);
3300 ++IT_BYTEPOS (*it);
3301 }
3302 else
3303 forward_to_next_line_start (it);
3304
3305 /* We must either have reached the end of the buffer or end up
3306 after a newline. */
3307 xassert (IT_CHARPOS (*it) == ZV
3308 || FETCH_BYTE (IT_BYTEPOS (*it) - 1) == '\n');
3309
3310 /* Skip over lines that are invisible because they are indented
3311 more than the value of IT->selective. */
3312 if (it->selective > 0)
3313 while (IT_CHARPOS (*it) < ZV
3314 && indented_beyond_p (IT_CHARPOS (*it), IT_BYTEPOS (*it),
3315 it->selective))
3316 forward_to_next_line_start (it);
312246d1
GM
3317
3318 /* Position on the newline if we should. */
13f19968
GM
3319 if (on_newline_p
3320 && IT_CHARPOS (*it) > BEGV
3321 && FETCH_BYTE (IT_BYTEPOS (*it) - 1) == '\n')
312246d1
GM
3322 {
3323 --IT_CHARPOS (*it);
3324 IT_BYTEPOS (*it) = CHAR_TO_BYTE (IT_CHARPOS (*it));
3325 }
5f5c8ee5
GM
3326
3327 /* Set the iterator there. The 0 as the last parameter of
3328 reseat means don't force a text property lookup. The lookup
3329 is then only done if we've skipped past the iterator's
3330 check_charpos'es. This optimization is important because
3331 text property lookups tend to be expensive. */
3332 reseat (it, it->current.pos, 0);
3333 }
3334
3335 CHECK_IT (it);
3336}
3337
3338
3339\f
3340/***********************************************************************
3341 Changing an iterator's position
3342***********************************************************************/
3343
3344/* Change IT's current position to POS in current_buffer. If FORCE_P
3345 is non-zero, always check for text properties at the new position.
3346 Otherwise, text properties are only looked up if POS >=
3347 IT->check_charpos of a property. */
3348
3349static void
3350reseat (it, pos, force_p)
3351 struct it *it;
3352 struct text_pos pos;
3353 int force_p;
3354{
3355 int original_pos = IT_CHARPOS (*it);
3356
3357 reseat_1 (it, pos, 0);
3358
3359 /* Determine where to check text properties. Avoid doing it
3360 where possible because text property lookup is very expensive. */
3361 if (force_p
3362 || CHARPOS (pos) > it->stop_charpos
3363 || CHARPOS (pos) < original_pos)
3364 handle_stop (it);
3365
3366 CHECK_IT (it);
3367}
3368
3369
3370/* Change IT's buffer position to POS. SET_STOP_P non-zero means set
3371 IT->stop_pos to POS, also. */
3372
3373static void
3374reseat_1 (it, pos, set_stop_p)
3375 struct it *it;
3376 struct text_pos pos;
3377 int set_stop_p;
3378{
3379 /* Don't call this function when scanning a C string. */
3380 xassert (it->s == NULL);
3381
3382 /* POS must be a reasonable value. */
3383 xassert (CHARPOS (pos) >= BEGV && CHARPOS (pos) <= ZV);
3384
3385 it->current.pos = it->position = pos;
3386 XSETBUFFER (it->object, current_buffer);
3387 it->dpvec = NULL;
3388 it->current.dpvec_index = -1;
3389 it->current.overlay_string_index = -1;
3390 IT_STRING_CHARPOS (*it) = -1;
3391 IT_STRING_BYTEPOS (*it) = -1;
3392 it->string = Qnil;
3393 it->method = next_element_from_buffer;
3394 it->sp = 0;
3395
3396 if (set_stop_p)
3397 it->stop_charpos = CHARPOS (pos);
3398}
3399
3400
3401/* Set up IT for displaying a string, starting at CHARPOS in window W.
3402 If S is non-null, it is a C string to iterate over. Otherwise,
3403 STRING gives a Lisp string to iterate over.
3404
3405 If PRECISION > 0, don't return more then PRECISION number of
3406 characters from the string.
3407
3408 If FIELD_WIDTH > 0, return padding spaces until FIELD_WIDTH
3409 characters have been returned. FIELD_WIDTH < 0 means an infinite
3410 field width.
3411
3412 MULTIBYTE = 0 means disable processing of multibyte characters,
3413 MULTIBYTE > 0 means enable it,
3414 MULTIBYTE < 0 means use IT->multibyte_p.
3415
3416 IT must be initialized via a prior call to init_iterator before
3417 calling this function. */
3418
3419static void
3420reseat_to_string (it, s, string, charpos, precision, field_width, multibyte)
3421 struct it *it;
3422 unsigned char *s;
3423 Lisp_Object string;
3424 int charpos;
3425 int precision, field_width, multibyte;
3426{
3427 /* No region in strings. */
3428 it->region_beg_charpos = it->region_end_charpos = -1;
3429
3430 /* No text property checks performed by default, but see below. */
3431 it->stop_charpos = -1;
3432
3433 /* Set iterator position and end position. */
3434 bzero (&it->current, sizeof it->current);
3435 it->current.overlay_string_index = -1;
3436 it->current.dpvec_index = -1;
5f5c8ee5
GM
3437 xassert (charpos >= 0);
3438
3439 /* Use the setting of MULTIBYTE if specified. */
3440 if (multibyte >= 0)
3441 it->multibyte_p = multibyte > 0;
3442
3443 if (s == NULL)
3444 {
3445 xassert (STRINGP (string));
3446 it->string = string;
3447 it->s = NULL;
3448 it->end_charpos = it->string_nchars = XSTRING (string)->size;
3449 it->method = next_element_from_string;
3450 it->current.string_pos = string_pos (charpos, string);
3451 }
3452 else
3453 {
3454 it->s = s;
3455 it->string = Qnil;
3456
3457 /* Note that we use IT->current.pos, not it->current.string_pos,
3458 for displaying C strings. */
3459 IT_STRING_CHARPOS (*it) = IT_STRING_BYTEPOS (*it) = -1;
3460 if (it->multibyte_p)
3461 {
3462 it->current.pos = c_string_pos (charpos, s, 1);
3463 it->end_charpos = it->string_nchars = number_of_chars (s, 1);
3464 }
3465 else
3466 {
3467 IT_CHARPOS (*it) = IT_BYTEPOS (*it) = charpos;
3468 it->end_charpos = it->string_nchars = strlen (s);
3469 }
3470
3471 it->method = next_element_from_c_string;
3472 }
3473
3474 /* PRECISION > 0 means don't return more than PRECISION characters
3475 from the string. */
3476 if (precision > 0 && it->end_charpos - charpos > precision)
3477 it->end_charpos = it->string_nchars = charpos + precision;
3478
3479 /* FIELD_WIDTH > 0 means pad with spaces until FIELD_WIDTH
3480 characters have been returned. FIELD_WIDTH == 0 means don't pad,
3481 FIELD_WIDTH < 0 means infinite field width. This is useful for
3482 padding with `-' at the end of a mode line. */
3483 if (field_width < 0)
3484 field_width = INFINITY;
3485 if (field_width > it->end_charpos - charpos)
3486 it->end_charpos = charpos + field_width;
3487
3488 /* Use the standard display table for displaying strings. */
3489 if (DISP_TABLE_P (Vstandard_display_table))
3490 it->dp = XCHAR_TABLE (Vstandard_display_table);
3491
3492 it->stop_charpos = charpos;
3493 CHECK_IT (it);
3494}
3495
3496
3497\f
3498/***********************************************************************
3499 Iteration
3500 ***********************************************************************/
3501
3502/* Load IT's display element fields with information about the next
3503 display element from the current position of IT. Value is zero if
3504 end of buffer (or C string) is reached. */
3505
3506int
3507get_next_display_element (it)
3508 struct it *it;
3509{
3510 /* Non-zero means that we found an display element. Zero means that
3511 we hit the end of what we iterate over. Performance note: the
3512 function pointer `method' used here turns out to be faster than
3513 using a sequence of if-statements. */
3514 int success_p = (*it->method) (it);
5f5c8ee5
GM
3515
3516 if (it->what == IT_CHARACTER)
3517 {
3518 /* Map via display table or translate control characters.
3519 IT->c, IT->len etc. have been set to the next character by
3520 the function call above. If we have a display table, and it
3521 contains an entry for IT->c, translate it. Don't do this if
3522 IT->c itself comes from a display table, otherwise we could
3523 end up in an infinite recursion. (An alternative could be to
3524 count the recursion depth of this function and signal an
3525 error when a certain maximum depth is reached.) Is it worth
3526 it? */
3527 if (success_p && it->dpvec == NULL)
3528 {
3529 Lisp_Object dv;
3530
3531 if (it->dp
3532 && (dv = DISP_CHAR_VECTOR (it->dp, it->c),
3533 VECTORP (dv)))
3534 {
3535 struct Lisp_Vector *v = XVECTOR (dv);
3536
3537 /* Return the first character from the display table
3538 entry, if not empty. If empty, don't display the
3539 current character. */
3540 if (v->size)
3541 {
3542 it->dpvec_char_len = it->len;
3543 it->dpvec = v->contents;
3544 it->dpend = v->contents + v->size;
3545 it->current.dpvec_index = 0;
3546 it->method = next_element_from_display_vector;
3547 }
3548
3549 success_p = get_next_display_element (it);
3550 }
3551
3552 /* Translate control characters into `\003' or `^C' form.
3553 Control characters coming from a display table entry are
3554 currently not translated because we use IT->dpvec to hold
3555 the translation. This could easily be changed but I
197516c2
KH
3556 don't believe that it is worth doing.
3557
3558 Non-printable multibyte characters are also translated
3559 octal form. */
5f5c8ee5
GM
3560 else if ((it->c < ' '
3561 && (it->area != TEXT_AREA
c6e89d6c 3562 || (it->c != '\n' && it->c != '\t')))
54c85a23 3563 || (it->c >= 127
197516c2
KH
3564 && it->len == 1)
3565 || !CHAR_PRINTABLE_P (it->c))
5f5c8ee5
GM
3566 {
3567 /* IT->c is a control character which must be displayed
3568 either as '\003' or as `^C' where the '\\' and '^'
3569 can be defined in the display table. Fill
3570 IT->ctl_chars with glyphs for what we have to
3571 display. Then, set IT->dpvec to these glyphs. */
3572 GLYPH g;
3573
54c85a23 3574 if (it->c < 128 && it->ctl_arrow_p)
5f5c8ee5
GM
3575 {
3576 /* Set IT->ctl_chars[0] to the glyph for `^'. */
3577 if (it->dp
3578 && INTEGERP (DISP_CTRL_GLYPH (it->dp))
3579 && GLYPH_CHAR_VALID_P (XINT (DISP_CTRL_GLYPH (it->dp))))
3580 g = XINT (DISP_CTRL_GLYPH (it->dp));
3581 else
3582 g = FAST_MAKE_GLYPH ('^', 0);
3583 XSETINT (it->ctl_chars[0], g);
3584
3585 g = FAST_MAKE_GLYPH (it->c ^ 0100, 0);
3586 XSETINT (it->ctl_chars[1], g);
3587
3588 /* Set up IT->dpvec and return first character from it. */
3589 it->dpvec_char_len = it->len;
3590 it->dpvec = it->ctl_chars;
3591 it->dpend = it->dpvec + 2;
3592 it->current.dpvec_index = 0;
3593 it->method = next_element_from_display_vector;
3594 get_next_display_element (it);
3595 }
3596 else
3597 {
260a86a0 3598 unsigned char str[MAX_MULTIBYTE_LENGTH];
c5924f47 3599 int len;
197516c2
KH
3600 int i;
3601 GLYPH escape_glyph;
3602
5f5c8ee5
GM
3603 /* Set IT->ctl_chars[0] to the glyph for `\\'. */
3604 if (it->dp
3605 && INTEGERP (DISP_ESCAPE_GLYPH (it->dp))
3606 && GLYPH_CHAR_VALID_P (XFASTINT (DISP_ESCAPE_GLYPH (it->dp))))
197516c2 3607 escape_glyph = XFASTINT (DISP_ESCAPE_GLYPH (it->dp));
5f5c8ee5 3608 else
197516c2
KH
3609 escape_glyph = FAST_MAKE_GLYPH ('\\', 0);
3610
c5924f47
KH
3611 if (SINGLE_BYTE_CHAR_P (it->c))
3612 str[0] = it->c, len = 1;
3613 else
3614 len = CHAR_STRING (it->c, str);
3615
197516c2
KH
3616 for (i = 0; i < len; i++)
3617 {
3618 XSETINT (it->ctl_chars[i * 4], escape_glyph);
3619 /* Insert three more glyphs into IT->ctl_chars for
3620 the octal display of the character. */
3621 g = FAST_MAKE_GLYPH (((str[i] >> 6) & 7) + '0', 0);
3622 XSETINT (it->ctl_chars[i * 4 + 1], g);
3623 g = FAST_MAKE_GLYPH (((str[i] >> 3) & 7) + '0', 0);
3624 XSETINT (it->ctl_chars[i * 4 + 2], g);
3625 g = FAST_MAKE_GLYPH ((str[i] & 7) + '0', 0);
3626 XSETINT (it->ctl_chars[i * 4 + 3], g);
3627 }
5f5c8ee5
GM
3628
3629 /* Set up IT->dpvec and return the first character
3630 from it. */
3631 it->dpvec_char_len = it->len;
3632 it->dpvec = it->ctl_chars;
197516c2 3633 it->dpend = it->dpvec + len * 4;
5f5c8ee5
GM
3634 it->current.dpvec_index = 0;
3635 it->method = next_element_from_display_vector;
3636 get_next_display_element (it);
3637 }
3638 }
3639 }
3640
980806b6
KH
3641 /* Adjust face id for a multibyte character. There are no
3642 multibyte character in unibyte text. */
5f5c8ee5
GM
3643 if (it->multibyte_p
3644 && success_p
980806b6 3645 && FRAME_WINDOW_P (it->f))
5f5c8ee5 3646 {
980806b6
KH
3647 struct face *face = FACE_FROM_ID (it->f, it->face_id);
3648 it->face_id = FACE_FOR_CHAR (it->f, face, it->c);
5f5c8ee5
GM
3649 }
3650 }
3651
3652 /* Is this character the last one of a run of characters with
3653 box? If yes, set IT->end_of_box_run_p to 1. */
3654 if (it->face_box_p
3655 && it->s == NULL)
3656 {
3657 int face_id;
3658 struct face *face;
3659
3660 it->end_of_box_run_p
3661 = ((face_id = face_after_it_pos (it),
3662 face_id != it->face_id)
3663 && (face = FACE_FROM_ID (it->f, face_id),
3664 face->box == FACE_NO_BOX));
3665 }
3666
3667 /* Value is 0 if end of buffer or string reached. */
3668 return success_p;
3669}
3670
3671
3672/* Move IT to the next display element.
3673
3674 Functions get_next_display_element and set_iterator_to_next are
3675 separate because I find this arrangement easier to handle than a
3676 get_next_display_element function that also increments IT's
3677 position. The way it is we can first look at an iterator's current
3678 display element, decide whether it fits on a line, and if it does,
3679 increment the iterator position. The other way around we probably
3680 would either need a flag indicating whether the iterator has to be
3681 incremented the next time, or we would have to implement a
3682 decrement position function which would not be easy to write. */
3683
3684void
3685set_iterator_to_next (it)
3686 struct it *it;
3687{
3688 if (it->method == next_element_from_buffer)
3689 {
3690 /* The current display element of IT is a character from
3691 current_buffer. Advance in the buffer, and maybe skip over
3692 invisible lines that are so because of selective display. */
3693 if (ITERATOR_AT_END_OF_LINE_P (it))
312246d1 3694 reseat_at_next_visible_line_start (it, 0);
5f5c8ee5
GM
3695 else
3696 {
3697 xassert (it->len != 0);
3698 IT_BYTEPOS (*it) += it->len;
3699 IT_CHARPOS (*it) += 1;
3700 xassert (IT_BYTEPOS (*it) == CHAR_TO_BYTE (IT_CHARPOS (*it)));
3701 }
3702 }
260a86a0
KH
3703 else if (it->method == next_element_from_composition)
3704 {
3705 xassert (it->cmp_id >= 0 && it ->cmp_id < n_compositions);
3706 if (STRINGP (it->string))
3707 {
3708 IT_STRING_BYTEPOS (*it) += it->len;
3709 IT_STRING_CHARPOS (*it) += it->cmp_len;
3710 it->method = next_element_from_string;
3711 goto consider_string_end;
3712 }
3713 else
3714 {
3715 IT_BYTEPOS (*it) += it->len;
3716 IT_CHARPOS (*it) += it->cmp_len;
3717 it->method = next_element_from_buffer;
3718 }
3719 }
5f5c8ee5
GM
3720 else if (it->method == next_element_from_c_string)
3721 {
3722 /* Current display element of IT is from a C string. */
3723 IT_BYTEPOS (*it) += it->len;
3724 IT_CHARPOS (*it) += 1;
3725 }
3726 else if (it->method == next_element_from_display_vector)
3727 {
3728 /* Current display element of IT is from a display table entry.
3729 Advance in the display table definition. Reset it to null if
3730 end reached, and continue with characters from buffers/
3731 strings. */
3732 ++it->current.dpvec_index;
286bcbc9 3733
980806b6
KH
3734 /* Restore face of the iterator to what they were before the
3735 display vector entry (these entries may contain faces). */
5f5c8ee5 3736 it->face_id = it->saved_face_id;
286bcbc9 3737
5f5c8ee5
GM
3738 if (it->dpvec + it->current.dpvec_index == it->dpend)
3739 {
3740 if (it->s)
3741 it->method = next_element_from_c_string;
3742 else if (STRINGP (it->string))
3743 it->method = next_element_from_string;
3744 else
3745 it->method = next_element_from_buffer;
3746
3747 it->dpvec = NULL;
3748 it->current.dpvec_index = -1;
3749
312246d1
GM
3750 /* Skip over characters which were displayed via IT->dpvec. */
3751 if (it->dpvec_char_len < 0)
3752 reseat_at_next_visible_line_start (it, 1);
3753 else if (it->dpvec_char_len > 0)
5f5c8ee5
GM
3754 {
3755 it->len = it->dpvec_char_len;
3756 set_iterator_to_next (it);
3757 }
3758 }
3759 }
3760 else if (it->method == next_element_from_string)
3761 {
3762 /* Current display element is a character from a Lisp string. */
3763 xassert (it->s == NULL && STRINGP (it->string));
3764 IT_STRING_BYTEPOS (*it) += it->len;
3765 IT_STRING_CHARPOS (*it) += 1;
3766
3767 consider_string_end:
3768
3769 if (it->current.overlay_string_index >= 0)
3770 {
3771 /* IT->string is an overlay string. Advance to the
3772 next, if there is one. */
3773 if (IT_STRING_CHARPOS (*it) >= XSTRING (it->string)->size)
3774 next_overlay_string (it);
3775 }
3776 else
3777 {
3778 /* IT->string is not an overlay string. If we reached
3779 its end, and there is something on IT->stack, proceed
3780 with what is on the stack. This can be either another
3781 string, this time an overlay string, or a buffer. */
3782 if (IT_STRING_CHARPOS (*it) == XSTRING (it->string)->size
3783 && it->sp > 0)
3784 {
3785 pop_it (it);
3786 if (!STRINGP (it->string))
3787 it->method = next_element_from_buffer;
3788 }
3789 }
3790 }
3791 else if (it->method == next_element_from_image
3792 || it->method == next_element_from_stretch)
3793 {
3794 /* The position etc with which we have to proceed are on
3795 the stack. The position may be at the end of a string,
3796 if the `display' property takes up the whole string. */
3797 pop_it (it);
3798 it->image_id = 0;
3799 if (STRINGP (it->string))
3800 {
3801 it->method = next_element_from_string;
3802 goto consider_string_end;
3803 }
3804 else
3805 it->method = next_element_from_buffer;
3806 }
3807 else
3808 /* There are no other methods defined, so this should be a bug. */
3809 abort ();
3810
3811 /* Reset flags indicating start and end of a sequence of
3812 characters with box. */
3813 it->start_of_box_run_p = it->end_of_box_run_p = 0;
3814
3815 xassert (it->method != next_element_from_string
3816 || (STRINGP (it->string)
3817 && IT_STRING_CHARPOS (*it) >= 0));
3818}
3819
3820
3821/* Load IT's display element fields with information about the next
3822 display element which comes from a display table entry or from the
3823 result of translating a control character to one of the forms `^C'
3824 or `\003'. IT->dpvec holds the glyphs to return as characters. */
3825
3826static int
3827next_element_from_display_vector (it)
3828 struct it *it;
3829{
3830 /* Precondition. */
3831 xassert (it->dpvec && it->current.dpvec_index >= 0);
3832
3833 /* Remember the current face id in case glyphs specify faces.
3834 IT's face is restored in set_iterator_to_next. */
3835 it->saved_face_id = it->face_id;
3836
3837 if (INTEGERP (*it->dpvec)
3838 && GLYPH_CHAR_VALID_P (XFASTINT (*it->dpvec)))
3839 {
3840 int lface_id;
3841 GLYPH g;
3842
3843 g = XFASTINT (it->dpvec[it->current.dpvec_index]);
3844 it->c = FAST_GLYPH_CHAR (g);
c5924f47 3845 it->len = CHAR_BYTES (it->c);
5f5c8ee5
GM
3846
3847 /* The entry may contain a face id to use. Such a face id is
3848 the id of a Lisp face, not a realized face. A face id of
969065c3 3849 zero means no face is specified. */
5f5c8ee5
GM
3850 lface_id = FAST_GLYPH_FACE (g);
3851 if (lface_id)
3852 {
969065c3 3853 /* The function returns -1 if lface_id is invalid. */
5f5c8ee5
GM
3854 int face_id = ascii_face_of_lisp_face (it->f, lface_id);
3855 if (face_id >= 0)
969065c3 3856 it->face_id = face_id;
5f5c8ee5
GM
3857 }
3858 }
3859 else
3860 /* Display table entry is invalid. Return a space. */
3861 it->c = ' ', it->len = 1;
3862
3863 /* Don't change position and object of the iterator here. They are
3864 still the values of the character that had this display table
3865 entry or was translated, and that's what we want. */
3866 it->what = IT_CHARACTER;
3867 return 1;
3868}
3869
3870
3871/* Load IT with the next display element from Lisp string IT->string.
3872 IT->current.string_pos is the current position within the string.
3873 If IT->current.overlay_string_index >= 0, the Lisp string is an
3874 overlay string. */
3875
3876static int
3877next_element_from_string (it)
3878 struct it *it;
3879{
3880 struct text_pos position;
3881
3882 xassert (STRINGP (it->string));
3883 xassert (IT_STRING_CHARPOS (*it) >= 0);
3884 position = it->current.string_pos;
3885
3886 /* Time to check for invisible text? */
3887 if (IT_STRING_CHARPOS (*it) < it->end_charpos
3888 && IT_STRING_CHARPOS (*it) == it->stop_charpos)
3889 {
3890 handle_stop (it);
3891
3892 /* Since a handler may have changed IT->method, we must
3893 recurse here. */
3894 return get_next_display_element (it);
3895 }
3896
3897 if (it->current.overlay_string_index >= 0)
3898 {
3899 /* Get the next character from an overlay string. In overlay
3900 strings, There is no field width or padding with spaces to
3901 do. */
3902 if (IT_STRING_CHARPOS (*it) >= XSTRING (it->string)->size)
3903 {
3904 it->what = IT_EOB;
3905 return 0;
3906 }
3907 else if (STRING_MULTIBYTE (it->string))
3908 {
3909 int remaining = (STRING_BYTES (XSTRING (it->string))
3910 - IT_STRING_BYTEPOS (*it));
3911 unsigned char *s = (XSTRING (it->string)->data
3912 + IT_STRING_BYTEPOS (*it));
4fdb80f2 3913 it->c = string_char_and_length (s, remaining, &it->len);
5f5c8ee5
GM
3914 }
3915 else
3916 {
3917 it->c = XSTRING (it->string)->data[IT_STRING_BYTEPOS (*it)];
3918 it->len = 1;
3919 }
3920 }
3921 else
3922 {
3923 /* Get the next character from a Lisp string that is not an
3924 overlay string. Such strings come from the mode line, for
3925 example. We may have to pad with spaces, or truncate the
3926 string. See also next_element_from_c_string. */
3927 if (IT_STRING_CHARPOS (*it) >= it->end_charpos)
3928 {
3929 it->what = IT_EOB;
3930 return 0;
3931 }
3932 else if (IT_STRING_CHARPOS (*it) >= it->string_nchars)
3933 {
3934 /* Pad with spaces. */
3935 it->c = ' ', it->len = 1;
3936 CHARPOS (position) = BYTEPOS (position) = -1;
3937 }
3938 else if (STRING_MULTIBYTE (it->string))
3939 {
3940 int maxlen = (STRING_BYTES (XSTRING (it->string))
3941 - IT_STRING_BYTEPOS (*it));
3942 unsigned char *s = (XSTRING (it->string)->data
3943 + IT_STRING_BYTEPOS (*it));
4fdb80f2 3944 it->c = string_char_and_length (s, maxlen, &it->len);
5f5c8ee5
GM
3945 }
3946 else
3947 {
3948 it->c = XSTRING (it->string)->data[IT_STRING_BYTEPOS (*it)];
3949 it->len = 1;
3950 }
3951 }
3952
3953 /* Record what we have and where it came from. Note that we store a
3954 buffer position in IT->position although it could arguably be a
3955 string position. */
3956 it->what = IT_CHARACTER;
3957 it->object = it->string;
3958 it->position = position;
3959 return 1;
3960}
3961
3962
3963/* Load IT with next display element from C string IT->s.
3964 IT->string_nchars is the maximum number of characters to return
3965 from the string. IT->end_charpos may be greater than
3966 IT->string_nchars when this function is called, in which case we
3967 may have to return padding spaces. Value is zero if end of string
3968 reached, including padding spaces. */
3969
3970static int
3971next_element_from_c_string (it)
3972 struct it *it;
3973{
3974 int success_p = 1;
3975
3976 xassert (it->s);
3977 it->what = IT_CHARACTER;
3978 BYTEPOS (it->position) = CHARPOS (it->position) = 0;
3979 it->object = Qnil;
3980
3981 /* IT's position can be greater IT->string_nchars in case a field
3982 width or precision has been specified when the iterator was
3983 initialized. */
3984 if (IT_CHARPOS (*it) >= it->end_charpos)
3985 {
3986 /* End of the game. */
3987 it->what = IT_EOB;
3988 success_p = 0;
3989 }
3990 else if (IT_CHARPOS (*it) >= it->string_nchars)
3991 {
3992 /* Pad with spaces. */
3993 it->c = ' ', it->len = 1;
3994 BYTEPOS (it->position) = CHARPOS (it->position) = -1;
3995 }
3996 else if (it->multibyte_p)
3997 {
3998 /* Implementation note: The calls to strlen apparently aren't a
3999 performance problem because there is no noticeable performance
4000 difference between Emacs running in unibyte or multibyte mode. */
4001 int maxlen = strlen (it->s) - IT_BYTEPOS (*it);
4fdb80f2
GM
4002 it->c = string_char_and_length (it->s + IT_BYTEPOS (*it),
4003 maxlen, &it->len);
5f5c8ee5
GM
4004 }
4005 else
4006 it->c = it->s[IT_BYTEPOS (*it)], it->len = 1;
4007
4008 return success_p;
4009}
4010
4011
4012/* Set up IT to return characters from an ellipsis, if appropriate.
4013 The definition of the ellipsis glyphs may come from a display table
4014 entry. This function Fills IT with the first glyph from the
4015 ellipsis if an ellipsis is to be displayed. */
4016
13f19968 4017static int
5f5c8ee5
GM
4018next_element_from_ellipsis (it)
4019 struct it *it;
4020{
13f19968 4021 if (it->selective_display_ellipsis_p)
5f5c8ee5 4022 {
13f19968
GM
4023 if (it->dp && VECTORP (DISP_INVIS_VECTOR (it->dp)))
4024 {
4025 /* Use the display table definition for `...'. Invalid glyphs
4026 will be handled by the method returning elements from dpvec. */
4027 struct Lisp_Vector *v = XVECTOR (DISP_INVIS_VECTOR (it->dp));
4028 it->dpvec_char_len = it->len;
4029 it->dpvec = v->contents;
4030 it->dpend = v->contents + v->size;
4031 it->current.dpvec_index = 0;
4032 it->method = next_element_from_display_vector;
4033 }
4034 else
4035 {
4036 /* Use default `...' which is stored in default_invis_vector. */
4037 it->dpvec_char_len = it->len;
4038 it->dpvec = default_invis_vector;
4039 it->dpend = default_invis_vector + 3;
4040 it->current.dpvec_index = 0;
4041 it->method = next_element_from_display_vector;
4042 }
5f5c8ee5 4043 }
13f19968
GM
4044 else
4045 reseat_at_next_visible_line_start (it, 1);
4046
4047 return get_next_display_element (it);
5f5c8ee5
GM
4048}
4049
4050
4051/* Deliver an image display element. The iterator IT is already
4052 filled with image information (done in handle_display_prop). Value
4053 is always 1. */
4054
4055
4056static int
4057next_element_from_image (it)
4058 struct it *it;
4059{
4060 it->what = IT_IMAGE;
4061 return 1;
4062}
4063
4064
4065/* Fill iterator IT with next display element from a stretch glyph
4066 property. IT->object is the value of the text property. Value is
4067 always 1. */
4068
4069static int
4070next_element_from_stretch (it)
4071 struct it *it;
4072{
4073 it->what = IT_STRETCH;
4074 return 1;
4075}
4076
4077
4078/* Load IT with the next display element from current_buffer. Value
4079 is zero if end of buffer reached. IT->stop_charpos is the next
4080 position at which to stop and check for text properties or buffer
4081 end. */
4082
4083static int
4084next_element_from_buffer (it)
4085 struct it *it;
4086{
4087 int success_p = 1;
4088
4089 /* Check this assumption, otherwise, we would never enter the
4090 if-statement, below. */
4091 xassert (IT_CHARPOS (*it) >= BEGV
4092 && IT_CHARPOS (*it) <= it->stop_charpos);
4093
4094 if (IT_CHARPOS (*it) >= it->stop_charpos)
4095 {
4096 if (IT_CHARPOS (*it) >= it->end_charpos)
4097 {
4098 int overlay_strings_follow_p;
4099
4100 /* End of the game, except when overlay strings follow that
4101 haven't been returned yet. */
4102 if (it->overlay_strings_at_end_processed_p)
4103 overlay_strings_follow_p = 0;
4104 else
4105 {
4106 it->overlay_strings_at_end_processed_p = 1;
c880678e 4107 overlay_strings_follow_p = get_overlay_strings (it);
5f5c8ee5
GM
4108 }
4109
4110 if (overlay_strings_follow_p)
4111 success_p = get_next_display_element (it);
4112 else
4113 {
4114 it->what = IT_EOB;
4115 it->position = it->current.pos;
4116 success_p = 0;
4117 }
4118 }
4119 else
4120 {
4121 handle_stop (it);
4122 return get_next_display_element (it);
4123 }
4124 }
4125 else
4126 {
4127 /* No face changes, overlays etc. in sight, so just return a
4128 character from current_buffer. */
4129 unsigned char *p;
4130
4131 /* Maybe run the redisplay end trigger hook. Performance note:
4132 This doesn't seem to cost measurable time. */
4133 if (it->redisplay_end_trigger_charpos
4134 && it->glyph_row
4135 && IT_CHARPOS (*it) >= it->redisplay_end_trigger_charpos)
4136 run_redisplay_end_trigger_hook (it);
4137
4138 /* Get the next character, maybe multibyte. */
4139 p = BYTE_POS_ADDR (IT_BYTEPOS (*it));
260a86a0 4140 if (it->multibyte_p && !ASCII_BYTE_P (*p))
5f5c8ee5
GM
4141 {
4142 int maxlen = ((IT_BYTEPOS (*it) >= GPT_BYTE ? ZV_BYTE : GPT_BYTE)
4143 - IT_BYTEPOS (*it));
4fdb80f2 4144 it->c = string_char_and_length (p, maxlen, &it->len);
5f5c8ee5
GM
4145 }
4146 else
4147 it->c = *p, it->len = 1;
4148
4149 /* Record what we have and where it came from. */
4150 it->what = IT_CHARACTER;;
4151 it->object = it->w->buffer;
4152 it->position = it->current.pos;
4153
4154 /* Normally we return the character found above, except when we
4155 really want to return an ellipsis for selective display. */
4156 if (it->selective)
4157 {
4158 if (it->c == '\n')
4159 {
4160 /* A value of selective > 0 means hide lines indented more
4161 than that number of columns. */
4162 if (it->selective > 0
4163 && IT_CHARPOS (*it) + 1 < ZV
4164 && indented_beyond_p (IT_CHARPOS (*it) + 1,
4165 IT_BYTEPOS (*it) + 1,
4166 it->selective))
312246d1 4167 {
13f19968 4168 success_p = next_element_from_ellipsis (it);
312246d1
GM
4169 it->dpvec_char_len = -1;
4170 }
5f5c8ee5
GM
4171 }
4172 else if (it->c == '\r' && it->selective == -1)
4173 {
4174 /* A value of selective == -1 means that everything from the
4175 CR to the end of the line is invisible, with maybe an
4176 ellipsis displayed for it. */
13f19968 4177 success_p = next_element_from_ellipsis (it);
312246d1 4178 it->dpvec_char_len = -1;
5f5c8ee5
GM
4179 }
4180 }
4181 }
4182
4183 /* Value is zero if end of buffer reached. */
c880678e 4184 xassert (!success_p || it->what != IT_CHARACTER || it->len > 0);
5f5c8ee5
GM
4185 return success_p;
4186}
4187
4188
4189/* Run the redisplay end trigger hook for IT. */
4190
4191static void
4192run_redisplay_end_trigger_hook (it)
4193 struct it *it;
4194{
4195 Lisp_Object args[3];
4196
4197 /* IT->glyph_row should be non-null, i.e. we should be actually
4198 displaying something, or otherwise we should not run the hook. */
4199 xassert (it->glyph_row);
4200
4201 /* Set up hook arguments. */
4202 args[0] = Qredisplay_end_trigger_functions;
4203 args[1] = it->window;
4204 XSETINT (args[2], it->redisplay_end_trigger_charpos);
4205 it->redisplay_end_trigger_charpos = 0;
4206
4207 /* Since we are *trying* to run these functions, don't try to run
4208 them again, even if they get an error. */
4209 it->w->redisplay_end_trigger = Qnil;
4210 Frun_hook_with_args (3, args);
4211
4212 /* Notice if it changed the face of the character we are on. */
4213 handle_face_prop (it);
4214}
4215
4216
260a86a0
KH
4217/* Deliver a composition display element. The iterator IT is already
4218 filled with composition information (done in
4219 handle_composition_prop). Value is always 1. */
4220
4221static int
4222next_element_from_composition (it)
4223 struct it *it;
4224{
4225 it->what = IT_COMPOSITION;
4226 it->position = (STRINGP (it->string)
4227 ? it->current.string_pos
4228 : it->current.pos);
4229 return 1;
4230}
4231
4232
5f5c8ee5
GM
4233\f
4234/***********************************************************************
4235 Moving an iterator without producing glyphs
4236 ***********************************************************************/
4237
4238/* Move iterator IT to a specified buffer or X position within one
4239 line on the display without producing glyphs.
4240
4241 Begin to skip at IT's current position. Skip to TO_CHARPOS or TO_X
4242 whichever is reached first.
4243
4244 TO_CHARPOS <= 0 means no TO_CHARPOS is specified.
4245
4246 TO_X < 0 means that no TO_X is specified. TO_X is normally a value
4247 0 <= TO_X <= IT->last_visible_x. This means in particular, that
4248 TO_X includes the amount by which a window is horizontally
4249 scrolled.
4250
4251 Value is
4252
4253 MOVE_POS_MATCH_OR_ZV
4254 - when TO_POS or ZV was reached.
4255
4256 MOVE_X_REACHED
4257 -when TO_X was reached before TO_POS or ZV were reached.
4258
4259 MOVE_LINE_CONTINUED
4260 - when we reached the end of the display area and the line must
4261 be continued.
4262
4263 MOVE_LINE_TRUNCATED
4264 - when we reached the end of the display area and the line is
4265 truncated.
4266
4267 MOVE_NEWLINE_OR_CR
4268 - when we stopped at a line end, i.e. a newline or a CR and selective
4269 display is on. */
4270
701552dd 4271static enum move_it_result
5f5c8ee5
GM
4272move_it_in_display_line_to (it, to_charpos, to_x, op)
4273 struct it *it;
4274 int to_charpos, to_x, op;
4275{
4276 enum move_it_result result = MOVE_UNDEFINED;
4277 struct glyph_row *saved_glyph_row;
4278
4279 /* Don't produce glyphs in produce_glyphs. */
4280 saved_glyph_row = it->glyph_row;
4281 it->glyph_row = NULL;
4282
5f5c8ee5
GM
4283 while (1)
4284 {
47589c8c 4285 int x, i, ascent, descent;
5f5c8ee5
GM
4286
4287 /* Stop when ZV or TO_CHARPOS reached. */
4288 if (!get_next_display_element (it)
4289 || ((op & MOVE_TO_POS) != 0
4290 && BUFFERP (it->object)
4291 && IT_CHARPOS (*it) >= to_charpos))
4292 {
4293 result = MOVE_POS_MATCH_OR_ZV;
4294 break;
4295 }
4296
4297 /* The call to produce_glyphs will get the metrics of the
4298 display element IT is loaded with. We record in x the
4299 x-position before this display element in case it does not
4300 fit on the line. */
4301 x = it->current_x;
47589c8c
GM
4302
4303 /* Remember the line height so far in case the next element doesn't
4304 fit on the line. */
4305 if (!it->truncate_lines_p)
4306 {
4307 ascent = it->max_ascent;
4308 descent = it->max_descent;
4309 }
4310
5f5c8ee5
GM
4311 PRODUCE_GLYPHS (it);
4312
4313 if (it->area != TEXT_AREA)
4314 {
4315 set_iterator_to_next (it);
4316 continue;
4317 }
4318
4319 /* The number of glyphs we get back in IT->nglyphs will normally
4320 be 1 except when IT->c is (i) a TAB, or (ii) a multi-glyph
4321 character on a terminal frame, or (iii) a line end. For the
4322 second case, IT->nglyphs - 1 padding glyphs will be present
4323 (on X frames, there is only one glyph produced for a
4324 composite character.
4325
4326 The behavior implemented below means, for continuation lines,
4327 that as many spaces of a TAB as fit on the current line are
4328 displayed there. For terminal frames, as many glyphs of a
4329 multi-glyph character are displayed in the current line, too.
4330 This is what the old redisplay code did, and we keep it that
4331 way. Under X, the whole shape of a complex character must
4332 fit on the line or it will be completely displayed in the
4333 next line.
4334
4335 Note that both for tabs and padding glyphs, all glyphs have
4336 the same width. */
4337 if (it->nglyphs)
4338 {
4339 /* More than one glyph or glyph doesn't fit on line. All
4340 glyphs have the same width. */
4341 int single_glyph_width = it->pixel_width / it->nglyphs;
4342 int new_x;
4343
4344 for (i = 0; i < it->nglyphs; ++i, x = new_x)
4345 {
4346 new_x = x + single_glyph_width;
4347
4348 /* We want to leave anything reaching TO_X to the caller. */
4349 if ((op & MOVE_TO_X) && new_x > to_x)
4350 {
4351 it->current_x = x;
4352 result = MOVE_X_REACHED;
4353 break;
4354 }
4355 else if (/* Lines are continued. */
4356 !it->truncate_lines_p
4357 && (/* And glyph doesn't fit on the line. */
4358 new_x > it->last_visible_x
4359 /* Or it fits exactly and we're on a window
4360 system frame. */
4361 || (new_x == it->last_visible_x
4362 && FRAME_WINDOW_P (it->f))))
4363 {
4364 if (/* IT->hpos == 0 means the very first glyph
4365 doesn't fit on the line, e.g. a wide image. */
4366 it->hpos == 0
4367 || (new_x == it->last_visible_x
4368 && FRAME_WINDOW_P (it->f)))
4369 {
4370 ++it->hpos;
4371 it->current_x = new_x;
4372 if (i == it->nglyphs - 1)
4373 set_iterator_to_next (it);
4374 }
4375 else
47589c8c
GM
4376 {
4377 it->current_x = x;
4378 it->max_ascent = ascent;
4379 it->max_descent = descent;
4380 }
4381
4382 TRACE_MOVE ((stderr, "move_it_in: continued at %d\n",
4383 IT_CHARPOS (*it)));
5f5c8ee5
GM
4384 result = MOVE_LINE_CONTINUED;
4385 break;
4386 }
4387 else if (new_x > it->first_visible_x)
4388 {
4389 /* Glyph is visible. Increment number of glyphs that
4390 would be displayed. */
4391 ++it->hpos;
4392 }
4393 else
4394 {
4395 /* Glyph is completely off the left margin of the display
4396 area. Nothing to do. */
4397 }
4398 }
4399
4400 if (result != MOVE_UNDEFINED)
4401 break;
4402 }
4403 else if ((op & MOVE_TO_X) && it->current_x >= to_x)
4404 {
4405 /* Stop when TO_X specified and reached. This check is
4406 necessary here because of lines consisting of a line end,
4407 only. The line end will not produce any glyphs and we
4408 would never get MOVE_X_REACHED. */
4409 xassert (it->nglyphs == 0);
4410 result = MOVE_X_REACHED;
4411 break;
4412 }
4413
4414 /* Is this a line end? If yes, we're done. */
4415 if (ITERATOR_AT_END_OF_LINE_P (it))
4416 {
4417 result = MOVE_NEWLINE_OR_CR;
4418 break;
4419 }
4420
4421 /* The current display element has been consumed. Advance
4422 to the next. */
4423 set_iterator_to_next (it);
4424
4425 /* Stop if lines are truncated and IT's current x-position is
4426 past the right edge of the window now. */
4427 if (it->truncate_lines_p
4428 && it->current_x >= it->last_visible_x)
4429 {
4430 result = MOVE_LINE_TRUNCATED;
4431 break;
4432 }
4433 }
4434
4435 /* Restore the iterator settings altered at the beginning of this
4436 function. */
4437 it->glyph_row = saved_glyph_row;
4438 return result;
4439}
4440
4441
4442/* Move IT forward to a specified buffer position TO_CHARPOS, TO_X,
4443 TO_Y, TO_VPOS. OP is a bit-mask that specifies where to stop. See
4444 the description of enum move_operation_enum.
4445
4446 If TO_CHARPOS is in invisible text, e.g. a truncated part of a
4447 screen line, this function will set IT to the next position >
4448 TO_CHARPOS. */
4449
4450void
4451move_it_to (it, to_charpos, to_x, to_y, to_vpos, op)
4452 struct it *it;
4453 int to_charpos, to_x, to_y, to_vpos;
4454 int op;
4455{
4456 enum move_it_result skip, skip2 = MOVE_X_REACHED;
4457 int line_height;
47589c8c 4458 int reached = 0;
5f5c8ee5 4459
47589c8c 4460 for (;;)
5f5c8ee5
GM
4461 {
4462 if (op & MOVE_TO_VPOS)
4463 {
4464 /* If no TO_CHARPOS and no TO_X specified, stop at the
4465 start of the line TO_VPOS. */
4466 if ((op & (MOVE_TO_X | MOVE_TO_POS)) == 0)
4467 {
4468 if (it->vpos == to_vpos)
47589c8c
GM
4469 {
4470 reached = 1;
4471 break;
4472 }
4473 else
4474 skip = move_it_in_display_line_to (it, -1, -1, 0);
5f5c8ee5
GM
4475 }
4476 else
4477 {
4478 /* TO_VPOS >= 0 means stop at TO_X in the line at
4479 TO_VPOS, or at TO_POS, whichever comes first. */
47589c8c
GM
4480 if (it->vpos == to_vpos)
4481 {
4482 reached = 2;
4483 break;
4484 }
4485
5f5c8ee5
GM
4486 skip = move_it_in_display_line_to (it, to_charpos, to_x, op);
4487
4488 if (skip == MOVE_POS_MATCH_OR_ZV || it->vpos == to_vpos)
47589c8c
GM
4489 {
4490 reached = 3;
4491 break;
4492 }
5f5c8ee5
GM
4493 else if (skip == MOVE_X_REACHED && it->vpos != to_vpos)
4494 {
4495 /* We have reached TO_X but not in the line we want. */
4496 skip = move_it_in_display_line_to (it, to_charpos,
4497 -1, MOVE_TO_POS);
4498 if (skip == MOVE_POS_MATCH_OR_ZV)
47589c8c
GM
4499 {
4500 reached = 4;
4501 break;
4502 }
5f5c8ee5
GM
4503 }
4504 }
4505 }
4506 else if (op & MOVE_TO_Y)
4507 {
4508 struct it it_backup;
5f5c8ee5
GM
4509
4510 /* TO_Y specified means stop at TO_X in the line containing
4511 TO_Y---or at TO_CHARPOS if this is reached first. The
4512 problem is that we can't really tell whether the line
4513 contains TO_Y before we have completely scanned it, and
4514 this may skip past TO_X. What we do is to first scan to
4515 TO_X.
4516
4517 If TO_X is not specified, use a TO_X of zero. The reason
4518 is to make the outcome of this function more predictable.
4519 If we didn't use TO_X == 0, we would stop at the end of
4520 the line which is probably not what a caller would expect
4521 to happen. */
4522 skip = move_it_in_display_line_to (it, to_charpos,
4523 ((op & MOVE_TO_X)
4524 ? to_x : 0),
4525 (MOVE_TO_X
4526 | (op & MOVE_TO_POS)));
4527
4528 /* If TO_CHARPOS is reached or ZV, we don't have to do more. */
4529 if (skip == MOVE_POS_MATCH_OR_ZV)
47589c8c
GM
4530 {
4531 reached = 5;
4532 break;
4533 }
5f5c8ee5
GM
4534
4535 /* If TO_X was reached, we would like to know whether TO_Y
4536 is in the line. This can only be said if we know the
4537 total line height which requires us to scan the rest of
4538 the line. */
5f5c8ee5
GM
4539 if (skip == MOVE_X_REACHED)
4540 {
4541 it_backup = *it;
47589c8c 4542 TRACE_MOVE ((stderr, "move_it: from %d\n", IT_CHARPOS (*it)));
5f5c8ee5
GM
4543 skip2 = move_it_in_display_line_to (it, to_charpos, -1,
4544 op & MOVE_TO_POS);
47589c8c 4545 TRACE_MOVE ((stderr, "move_it: to %d\n", IT_CHARPOS (*it)));
5f5c8ee5
GM
4546 }
4547
4548 /* Now, decide whether TO_Y is in this line. */
4549 line_height = it->max_ascent + it->max_descent;
47589c8c 4550 TRACE_MOVE ((stderr, "move_it: line_height = %d\n", line_height));
5f5c8ee5
GM
4551
4552 if (to_y >= it->current_y
4553 && to_y < it->current_y + line_height)
4554 {
4555 if (skip == MOVE_X_REACHED)
4556 /* If TO_Y is in this line and TO_X was reached above,
4557 we scanned too far. We have to restore IT's settings
4558 to the ones before skipping. */
4559 *it = it_backup;
47589c8c 4560 reached = 6;
5f5c8ee5
GM
4561 }
4562 else if (skip == MOVE_X_REACHED)
4563 {
4564 skip = skip2;
4565 if (skip == MOVE_POS_MATCH_OR_ZV)
47589c8c 4566 reached = 7;
5f5c8ee5
GM
4567 }
4568
47589c8c 4569 if (reached)
5f5c8ee5
GM
4570 break;
4571 }
4572 else
4573 skip = move_it_in_display_line_to (it, to_charpos, -1, MOVE_TO_POS);
4574
4575 switch (skip)
4576 {
4577 case MOVE_POS_MATCH_OR_ZV:
47589c8c
GM
4578 reached = 8;
4579 goto out;
5f5c8ee5
GM
4580
4581 case MOVE_NEWLINE_OR_CR:
4582 set_iterator_to_next (it);
4583 it->continuation_lines_width = 0;
4584 break;
4585
4586 case MOVE_LINE_TRUNCATED:
4587 it->continuation_lines_width = 0;
312246d1 4588 reseat_at_next_visible_line_start (it, 0);
5f5c8ee5
GM
4589 if ((op & MOVE_TO_POS) != 0
4590 && IT_CHARPOS (*it) > to_charpos)
47589c8c
GM
4591 {
4592 reached = 9;
4593 goto out;
4594 }
5f5c8ee5
GM
4595 break;
4596
4597 case MOVE_LINE_CONTINUED:
4598 it->continuation_lines_width += it->current_x;
4599 break;
4600
4601 default:
4602 abort ();
4603 }
4604
4605 /* Reset/increment for the next run. */
4606 recenter_overlay_lists (current_buffer, IT_CHARPOS (*it));
4607 it->current_x = it->hpos = 0;
4608 it->current_y += it->max_ascent + it->max_descent;
4609 ++it->vpos;
4610 last_height = it->max_ascent + it->max_descent;
4611 last_max_ascent = it->max_ascent;
4612 it->max_ascent = it->max_descent = 0;
4613 }
47589c8c
GM
4614
4615 out:
4616
4617 TRACE_MOVE ((stderr, "move_it_to: reached %d\n", reached));
5f5c8ee5
GM
4618}
4619
4620
4621/* Move iterator IT backward by a specified y-distance DY, DY >= 0.
4622
4623 If DY > 0, move IT backward at least that many pixels. DY = 0
4624 means move IT backward to the preceding line start or BEGV. This
4625 function may move over more than DY pixels if IT->current_y - DY
4626 ends up in the middle of a line; in this case IT->current_y will be
4627 set to the top of the line moved to. */
4628
4629void
4630move_it_vertically_backward (it, dy)
4631 struct it *it;
4632 int dy;
4633{
4634 int nlines, h, line_height;
4635 struct it it2;
4636 int start_pos = IT_CHARPOS (*it);
4637
4638 xassert (dy >= 0);
4639
4640 /* Estimate how many newlines we must move back. */
4641 nlines = max (1, dy / CANON_Y_UNIT (it->f));
4642
4643 /* Set the iterator's position that many lines back. */
4644 while (nlines-- && IT_CHARPOS (*it) > BEGV)
4645 back_to_previous_visible_line_start (it);
4646
4647 /* Reseat the iterator here. When moving backward, we don't want
4648 reseat to skip forward over invisible text, set up the iterator
4649 to deliver from overlay strings at the new position etc. So,
4650 use reseat_1 here. */
4651 reseat_1 (it, it->current.pos, 1);
4652
4653 /* We are now surely at a line start. */
4654 it->current_x = it->hpos = 0;
4655
4656 /* Move forward and see what y-distance we moved. First move to the
4657 start of the next line so that we get its height. We need this
4658 height to be able to tell whether we reached the specified
4659 y-distance. */
4660 it2 = *it;
4661 it2.max_ascent = it2.max_descent = 0;
4662 move_it_to (&it2, start_pos, -1, -1, it2.vpos + 1,
4663 MOVE_TO_POS | MOVE_TO_VPOS);
4664 xassert (IT_CHARPOS (*it) >= BEGV);
4665 line_height = it2.max_ascent + it2.max_descent;
47589c8c 4666
5f5c8ee5
GM
4667 move_it_to (&it2, start_pos, -1, -1, -1, MOVE_TO_POS);
4668 xassert (IT_CHARPOS (*it) >= BEGV);
4669 h = it2.current_y - it->current_y;
4670 nlines = it2.vpos - it->vpos;
4671
4672 /* Correct IT's y and vpos position. */
4673 it->vpos -= nlines;
4674 it->current_y -= h;
4675
4676 if (dy == 0)
4677 {
4678 /* DY == 0 means move to the start of the screen line. The
4679 value of nlines is > 0 if continuation lines were involved. */
4680 if (nlines > 0)
4681 move_it_by_lines (it, nlines, 1);
4682 xassert (IT_CHARPOS (*it) <= start_pos);
4683 }
4684 else if (nlines)
4685 {
4686 /* The y-position we try to reach. Note that h has been
4687 subtracted in front of the if-statement. */
4688 int target_y = it->current_y + h - dy;
4689
4690 /* If we did not reach target_y, try to move further backward if
4691 we can. If we moved too far backward, try to move forward. */
4692 if (target_y < it->current_y
4693 && IT_CHARPOS (*it) > BEGV)
4694 {
4695 move_it_vertically (it, target_y - it->current_y);
4696 xassert (IT_CHARPOS (*it) >= BEGV);
4697 }
4698 else if (target_y >= it->current_y + line_height
4699 && IT_CHARPOS (*it) < ZV)
4700 {
4701 move_it_vertically (it, target_y - (it->current_y + line_height));
4702 xassert (IT_CHARPOS (*it) >= BEGV);
4703 }
4704 }
4705}
4706
4707
4708/* Move IT by a specified amount of pixel lines DY. DY negative means
4709 move backwards. DY = 0 means move to start of screen line. At the
4710 end, IT will be on the start of a screen line. */
4711
4712void
4713move_it_vertically (it, dy)
4714 struct it *it;
4715 int dy;
4716{
4717 if (dy <= 0)
4718 move_it_vertically_backward (it, -dy);
4719 else if (dy > 0)
4720 {
47589c8c 4721 TRACE_MOVE ((stderr, "move_it_v: from %d, %d\n", IT_CHARPOS (*it), dy));
5f5c8ee5
GM
4722 move_it_to (it, ZV, -1, it->current_y + dy, -1,
4723 MOVE_TO_POS | MOVE_TO_Y);
47589c8c 4724 TRACE_MOVE ((stderr, "move_it_v: to %d\n", IT_CHARPOS (*it)));
5f5c8ee5
GM
4725
4726 /* If buffer ends in ZV without a newline, move to the start of
4727 the line to satisfy the post-condition. */
4728 if (IT_CHARPOS (*it) == ZV
4729 && FETCH_BYTE (IT_BYTEPOS (*it) - 1) != '\n')
4730 move_it_by_lines (it, 0, 0);
4731 }
4732}
4733
4734
4735/* Return non-zero if some text between buffer positions START_CHARPOS
4736 and END_CHARPOS is invisible. IT->window is the window for text
4737 property lookup. */
4738
4739static int
4740invisible_text_between_p (it, start_charpos, end_charpos)
4741 struct it *it;
4742 int start_charpos, end_charpos;
4743{
5f5c8ee5
GM
4744 Lisp_Object prop, limit;
4745 int invisible_found_p;
4746
4747 xassert (it != NULL && start_charpos <= end_charpos);
4748
4749 /* Is text at START invisible? */
4750 prop = Fget_char_property (make_number (start_charpos), Qinvisible,
4751 it->window);
4752 if (TEXT_PROP_MEANS_INVISIBLE (prop))
4753 invisible_found_p = 1;
4754 else
4755 {
016b5642
MB
4756 limit = Fnext_single_char_property_change (make_number (start_charpos),
4757 Qinvisible, Qnil,
4758 make_number (end_charpos));
5f5c8ee5
GM
4759 invisible_found_p = XFASTINT (limit) < end_charpos;
4760 }
4761
4762 return invisible_found_p;
5f5c8ee5
GM
4763}
4764
4765
4766/* Move IT by a specified number DVPOS of screen lines down. DVPOS
4767 negative means move up. DVPOS == 0 means move to the start of the
4768 screen line. NEED_Y_P non-zero means calculate IT->current_y. If
4769 NEED_Y_P is zero, IT->current_y will be left unchanged.
4770
4771 Further optimization ideas: If we would know that IT->f doesn't use
4772 a face with proportional font, we could be faster for
4773 truncate-lines nil. */
4774
4775void
4776move_it_by_lines (it, dvpos, need_y_p)
4777 struct it *it;
4778 int dvpos, need_y_p;
4779{
4780 struct position pos;
4781
4782 if (!FRAME_WINDOW_P (it->f))
4783 {
4784 struct text_pos textpos;
4785
4786 /* We can use vmotion on frames without proportional fonts. */
4787 pos = *vmotion (IT_CHARPOS (*it), dvpos, it->w);
4788 SET_TEXT_POS (textpos, pos.bufpos, pos.bytepos);
4789 reseat (it, textpos, 1);
4790 it->vpos += pos.vpos;
4791 it->current_y += pos.vpos;
4792 }
4793 else if (dvpos == 0)
4794 {
4795 /* DVPOS == 0 means move to the start of the screen line. */
4796 move_it_vertically_backward (it, 0);
4797 xassert (it->current_x == 0 && it->hpos == 0);
4798 }
4799 else if (dvpos > 0)
4800 {
4801 /* If there are no continuation lines, and if there is no
4802 selective display, try the simple method of moving forward
4803 DVPOS newlines, then see where we are. */
4804 if (!need_y_p && it->truncate_lines_p && it->selective == 0)
4805 {
4806 int shortage = 0, charpos;
4807
4808 if (FETCH_BYTE (IT_BYTEPOS (*it) == '\n'))
4809 charpos = IT_CHARPOS (*it) + 1;
4810 else
4811 charpos = scan_buffer ('\n', IT_CHARPOS (*it), 0, dvpos,
4812 &shortage, 0);
4813
4814 if (!invisible_text_between_p (it, IT_CHARPOS (*it), charpos))
4815 {
4816 struct text_pos pos;
4817 CHARPOS (pos) = charpos;
4818 BYTEPOS (pos) = CHAR_TO_BYTE (charpos);
4819 reseat (it, pos, 1);
4820 it->vpos += dvpos - shortage;
4821 it->hpos = it->current_x = 0;
4822 return;
4823 }
4824 }
4825
4826 move_it_to (it, -1, -1, -1, it->vpos + dvpos, MOVE_TO_VPOS);
4827 }
4828 else
4829 {
4830 struct it it2;
4831 int start_charpos, i;
4832
4833 /* If there are no continuation lines, and if there is no
4834 selective display, try the simple method of moving backward
4835 -DVPOS newlines. */
4836 if (!need_y_p && it->truncate_lines_p && it->selective == 0)
4837 {
4838 int shortage;
4839 int charpos = IT_CHARPOS (*it);
4840 int bytepos = IT_BYTEPOS (*it);
4841
4842 /* If in the middle of a line, go to its start. */
4843 if (charpos > BEGV && FETCH_BYTE (bytepos - 1) != '\n')
4844 {
4845 charpos = find_next_newline_no_quit (charpos, -1);
4846 bytepos = CHAR_TO_BYTE (charpos);
4847 }
4848
4849 if (charpos == BEGV)
4850 {
4851 struct text_pos pos;
4852 CHARPOS (pos) = charpos;
4853 BYTEPOS (pos) = bytepos;
4854 reseat (it, pos, 1);
4855 it->hpos = it->current_x = 0;
4856 return;
4857 }
4858 else
4859 {
4860 charpos = scan_buffer ('\n', charpos - 1, 0, dvpos, &shortage, 0);
4861 if (!invisible_text_between_p (it, charpos, IT_CHARPOS (*it)))
4862 {
4863 struct text_pos pos;
4864 CHARPOS (pos) = charpos;
4865 BYTEPOS (pos) = CHAR_TO_BYTE (charpos);
4866 reseat (it, pos, 1);
4867 it->vpos += dvpos + (shortage ? shortage - 1 : 0);
4868 it->hpos = it->current_x = 0;
4869 return;
4870 }
4871 }
4872 }
4873
4874 /* Go back -DVPOS visible lines and reseat the iterator there. */
4875 start_charpos = IT_CHARPOS (*it);
4876 for (i = -dvpos; i && IT_CHARPOS (*it) > BEGV; --i)
4877 back_to_previous_visible_line_start (it);
4878 reseat (it, it->current.pos, 1);
4879 it->current_x = it->hpos = 0;
4880
4881 /* Above call may have moved too far if continuation lines
4882 are involved. Scan forward and see if it did. */
4883 it2 = *it;
4884 it2.vpos = it2.current_y = 0;
4885 move_it_to (&it2, start_charpos, -1, -1, -1, MOVE_TO_POS);
4886 it->vpos -= it2.vpos;
4887 it->current_y -= it2.current_y;
4888 it->current_x = it->hpos = 0;
4889
4890 /* If we moved too far, move IT some lines forward. */
4891 if (it2.vpos > -dvpos)
4892 {
4893 int delta = it2.vpos + dvpos;
4894 move_it_to (it, -1, -1, -1, it->vpos + delta, MOVE_TO_VPOS);
4895 }
4896 }
4897}
4898
4899
4900\f
4901/***********************************************************************
4902 Messages
4903 ***********************************************************************/
4904
4905
937248bc
GM
4906/* Add a message with format string FORMAT and arguments ARG1 and ARG2
4907 to *Messages*. */
4908
4909void
4910add_to_log (format, arg1, arg2)
4911 char *format;
4912 Lisp_Object arg1, arg2;
4913{
4914 Lisp_Object args[3];
4915 Lisp_Object msg, fmt;
4916 char *buffer;
4917 int len;
4918 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
4919
4920 fmt = msg = Qnil;
4921 GCPRO4 (fmt, msg, arg1, arg2);
4922
4923 args[0] = fmt = build_string (format);
4924 args[1] = arg1;
4925 args[2] = arg2;
6fc556fd 4926 msg = Fformat (3, args);
937248bc
GM
4927
4928 len = STRING_BYTES (XSTRING (msg)) + 1;
4929 buffer = (char *) alloca (len);
4930 strcpy (buffer, XSTRING (msg)->data);
4931
796184bc 4932 message_dolog (buffer, len - 1, 1, 0);
937248bc
GM
4933 UNGCPRO;
4934}
4935
4936
5f5c8ee5
GM
4937/* Output a newline in the *Messages* buffer if "needs" one. */
4938
4939void
4940message_log_maybe_newline ()
4941{
4942 if (message_log_need_newline)
4943 message_dolog ("", 0, 1, 0);
4944}
4945
4946
4947/* Add a string M of length LEN to the message log, optionally
4948 terminated with a newline when NLFLAG is non-zero. MULTIBYTE, if
4949 nonzero, means interpret the contents of M as multibyte. This
4950 function calls low-level routines in order to bypass text property
4951 hooks, etc. which might not be safe to run. */
4952
4953void
4954message_dolog (m, len, nlflag, multibyte)
4955 char *m;
4956 int len, nlflag, multibyte;
4957{
4958 if (!NILP (Vmessage_log_max))
4959 {
4960 struct buffer *oldbuf;
4961 Lisp_Object oldpoint, oldbegv, oldzv;
4962 int old_windows_or_buffers_changed = windows_or_buffers_changed;
4963 int point_at_end = 0;
4964 int zv_at_end = 0;
4965 Lisp_Object old_deactivate_mark, tem;
4966 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
4967
4968 old_deactivate_mark = Vdeactivate_mark;
4969 oldbuf = current_buffer;
6a94510a 4970 Fset_buffer (Fget_buffer_create (Vmessages_buffer_name));
5f5c8ee5
GM
4971 current_buffer->undo_list = Qt;
4972
4973 oldpoint = Fpoint_marker ();
4974 oldbegv = Fpoint_min_marker ();
4975 oldzv = Fpoint_max_marker ();
4976 GCPRO4 (oldpoint, oldbegv, oldzv, old_deactivate_mark);
4977
4978 if (PT == Z)
4979 point_at_end = 1;
4980 if (ZV == Z)
4981 zv_at_end = 1;
4982
4983 BEGV = BEG;
4984 BEGV_BYTE = BEG_BYTE;
4985 ZV = Z;
4986 ZV_BYTE = Z_BYTE;
4987 TEMP_SET_PT_BOTH (Z, Z_BYTE);
4988
4989 /* Insert the string--maybe converting multibyte to single byte
4990 or vice versa, so that all the text fits the buffer. */
4991 if (multibyte
4992 && NILP (current_buffer->enable_multibyte_characters))
4993 {
4994 int i, c, nbytes;
4995 unsigned char work[1];
4996
4997 /* Convert a multibyte string to single-byte
4998 for the *Message* buffer. */
4999 for (i = 0; i < len; i += nbytes)
5000 {
4fdb80f2 5001 c = string_char_and_length (m + i, len - i, &nbytes);
5f5c8ee5
GM
5002 work[0] = (SINGLE_BYTE_CHAR_P (c)
5003 ? c
5004 : multibyte_char_to_unibyte (c, Qnil));
5005 insert_1_both (work, 1, 1, 1, 0, 0);
5006 }
5007 }
5008 else if (! multibyte
5009 && ! NILP (current_buffer->enable_multibyte_characters))
5010 {
5011 int i, c, nbytes;
5012 unsigned char *msg = (unsigned char *) m;
260a86a0 5013 unsigned char str[MAX_MULTIBYTE_LENGTH];
5f5c8ee5
GM
5014 /* Convert a single-byte string to multibyte
5015 for the *Message* buffer. */
5016 for (i = 0; i < len; i++)
5017 {
5018 c = unibyte_char_to_multibyte (msg[i]);
260a86a0
KH
5019 nbytes = CHAR_STRING (c, str);
5020 insert_1_both (str, 1, nbytes, 1, 0, 0);
5f5c8ee5
GM
5021 }
5022 }
5023 else if (len)
5024 insert_1 (m, len, 1, 0, 0);
5025
5026 if (nlflag)
5027 {
5028 int this_bol, this_bol_byte, prev_bol, prev_bol_byte, dup;
5029 insert_1 ("\n", 1, 1, 0, 0);
5030
5031 scan_newline (Z, Z_BYTE, BEG, BEG_BYTE, -2, 0);
5032 this_bol = PT;
5033 this_bol_byte = PT_BYTE;
5034
5035 if (this_bol > BEG)
5036 {
5037 scan_newline (PT, PT_BYTE, BEG, BEG_BYTE, -2, 0);
5038 prev_bol = PT;
5039 prev_bol_byte = PT_BYTE;
5040
5041 dup = message_log_check_duplicate (prev_bol, prev_bol_byte,
5042 this_bol, this_bol_byte);
5043 if (dup)
5044 {
5045 del_range_both (prev_bol, prev_bol_byte,
5046 this_bol, this_bol_byte, 0);
5047 if (dup > 1)
5048 {
5049 char dupstr[40];
5050 int duplen;
5051
5052 /* If you change this format, don't forget to also
5053 change message_log_check_duplicate. */
5054 sprintf (dupstr, " [%d times]", dup);
5055 duplen = strlen (dupstr);
5056 TEMP_SET_PT_BOTH (Z - 1, Z_BYTE - 1);
5057 insert_1 (dupstr, duplen, 1, 0, 1);
5058 }
5059 }
5060 }
5061
5062 if (NATNUMP (Vmessage_log_max))
5063 {
5064 scan_newline (Z, Z_BYTE, BEG, BEG_BYTE,
5065 -XFASTINT (Vmessage_log_max) - 1, 0);
5066 del_range_both (BEG, BEG_BYTE, PT, PT_BYTE, 0);
5067 }
5068 }
5069 BEGV = XMARKER (oldbegv)->charpos;
5070 BEGV_BYTE = marker_byte_position (oldbegv);
5071
5072 if (zv_at_end)
5073 {
5074 ZV = Z;
5075 ZV_BYTE = Z_BYTE;
5076 }
5077 else
5078 {
5079 ZV = XMARKER (oldzv)->charpos;
5080 ZV_BYTE = marker_byte_position (oldzv);
5081 }
5082
5083 if (point_at_end)
5084 TEMP_SET_PT_BOTH (Z, Z_BYTE);
5085 else
5086 /* We can't do Fgoto_char (oldpoint) because it will run some
5087 Lisp code. */
5088 TEMP_SET_PT_BOTH (XMARKER (oldpoint)->charpos,
5089 XMARKER (oldpoint)->bytepos);
5090
5091 UNGCPRO;
5092 free_marker (oldpoint);
5093 free_marker (oldbegv);
5094 free_marker (oldzv);
5095
5096 tem = Fget_buffer_window (Fcurrent_buffer (), Qt);
5097 set_buffer_internal (oldbuf);
5098 if (NILP (tem))
5099 windows_or_buffers_changed = old_windows_or_buffers_changed;
5100 message_log_need_newline = !nlflag;
5101 Vdeactivate_mark = old_deactivate_mark;
5102 }
5103}
5104
5105
5106/* We are at the end of the buffer after just having inserted a newline.
5107 (Note: We depend on the fact we won't be crossing the gap.)
5108 Check to see if the most recent message looks a lot like the previous one.
5109 Return 0 if different, 1 if the new one should just replace it, or a
5110 value N > 1 if we should also append " [N times]". */
5111
5112static int
5113message_log_check_duplicate (prev_bol, prev_bol_byte, this_bol, this_bol_byte)
5114 int prev_bol, this_bol;
5115 int prev_bol_byte, this_bol_byte;
5116{
5117 int i;
5118 int len = Z_BYTE - 1 - this_bol_byte;
5119 int seen_dots = 0;
5120 unsigned char *p1 = BUF_BYTE_ADDRESS (current_buffer, prev_bol_byte);
5121 unsigned char *p2 = BUF_BYTE_ADDRESS (current_buffer, this_bol_byte);
5122
5123 for (i = 0; i < len; i++)
5124 {
5125 if (i >= 3 && p1[i-3] == '.' && p1[i-2] == '.' && p1[i-1] == '.'
5126 && p1[i] != '\n')
5127 seen_dots = 1;
5128 if (p1[i] != p2[i])
5129 return seen_dots;
5130 }
5131 p1 += len;
5132 if (*p1 == '\n')
5133 return 2;
5134 if (*p1++ == ' ' && *p1++ == '[')
5135 {
5136 int n = 0;
5137 while (*p1 >= '0' && *p1 <= '9')
5138 n = n * 10 + *p1++ - '0';
5139 if (strncmp (p1, " times]\n", 8) == 0)
5140 return n+1;
5141 }
5142 return 0;
5143}
5144
5145
5146/* Display an echo area message M with a specified length of LEN
5147 chars. The string may include null characters. If M is 0, clear
5148 out any existing message, and let the mini-buffer text show through.
5149
5150 The buffer M must continue to exist until after the echo area gets
5151 cleared or some other message gets displayed there. This means do
5152 not pass text that is stored in a Lisp string; do not pass text in
5153 a buffer that was alloca'd. */
5154
5155void
5156message2 (m, len, multibyte)
5157 char *m;
5158 int len;
5159 int multibyte;
5160{
5161 /* First flush out any partial line written with print. */
5162 message_log_maybe_newline ();
5163 if (m)
5164 message_dolog (m, len, 1, multibyte);
5165 message2_nolog (m, len, multibyte);
5166}
5167
5168
5169/* The non-logging counterpart of message2. */
5170
5171void
5172message2_nolog (m, len, multibyte)
5173 char *m;
5174 int len;
5175{
886bd6f2 5176 struct frame *sf = SELECTED_FRAME ();
5f5c8ee5
GM
5177 message_enable_multibyte = multibyte;
5178
5179 if (noninteractive)
5180 {
5181 if (noninteractive_need_newline)
5182 putc ('\n', stderr);
5183 noninteractive_need_newline = 0;
5184 if (m)
5185 fwrite (m, len, 1, stderr);
5186 if (cursor_in_echo_area == 0)
5187 fprintf (stderr, "\n");
5188 fflush (stderr);
5189 }
5190 /* A null message buffer means that the frame hasn't really been
5191 initialized yet. Error messages get reported properly by
5192 cmd_error, so this must be just an informative message; toss it. */
5193 else if (INTERACTIVE
886bd6f2
GM
5194 && sf->glyphs_initialized_p
5195 && FRAME_MESSAGE_BUF (sf))
5f5c8ee5
GM
5196 {
5197 Lisp_Object mini_window;
5198 struct frame *f;
5199
5200 /* Get the frame containing the mini-buffer
5201 that the selected frame is using. */
886bd6f2 5202 mini_window = FRAME_MINIBUF_WINDOW (sf);
5f5c8ee5
GM
5203 f = XFRAME (WINDOW_FRAME (XWINDOW (mini_window)));
5204
5205 FRAME_SAMPLE_VISIBILITY (f);
886bd6f2 5206 if (FRAME_VISIBLE_P (sf)
5f5c8ee5
GM
5207 && ! FRAME_VISIBLE_P (f))
5208 Fmake_frame_visible (WINDOW_FRAME (XWINDOW (mini_window)));
5209
5210 if (m)
5211 {
c6e89d6c 5212 set_message (m, Qnil, len, multibyte);
5f5c8ee5
GM
5213 if (minibuffer_auto_raise)
5214 Fraise_frame (WINDOW_FRAME (XWINDOW (mini_window)));
5215 }
5216 else
c6e89d6c 5217 clear_message (1, 1);
5f5c8ee5 5218
c6e89d6c 5219 do_pending_window_change (0);
5f5c8ee5 5220 echo_area_display (1);
c6e89d6c 5221 do_pending_window_change (0);
5f5c8ee5
GM
5222 if (frame_up_to_date_hook != 0 && ! gc_in_progress)
5223 (*frame_up_to_date_hook) (f);
5224 }
5225}
5226
5227
c6e89d6c
GM
5228/* Display an echo area message M with a specified length of NBYTES
5229 bytes. The string may include null characters. If M is not a
5f5c8ee5
GM
5230 string, clear out any existing message, and let the mini-buffer
5231 text show through. */
5232
5233void
c6e89d6c 5234message3 (m, nbytes, multibyte)
5f5c8ee5 5235 Lisp_Object m;
c6e89d6c 5236 int nbytes;
5f5c8ee5
GM
5237 int multibyte;
5238{
5239 struct gcpro gcpro1;
5240
5241 GCPRO1 (m);
5242
5243 /* First flush out any partial line written with print. */
5244 message_log_maybe_newline ();
5245 if (STRINGP (m))
c6e89d6c
GM
5246 message_dolog (XSTRING (m)->data, nbytes, 1, multibyte);
5247 message3_nolog (m, nbytes, multibyte);
5f5c8ee5
GM
5248
5249 UNGCPRO;
5250}
5251
5252
5253/* The non-logging version of message3. */
5254
5255void
c6e89d6c 5256message3_nolog (m, nbytes, multibyte)
5f5c8ee5 5257 Lisp_Object m;
c6e89d6c 5258 int nbytes, multibyte;
5f5c8ee5 5259{
886bd6f2 5260 struct frame *sf = SELECTED_FRAME ();
5f5c8ee5
GM
5261 message_enable_multibyte = multibyte;
5262
5263 if (noninteractive)
5264 {
5265 if (noninteractive_need_newline)
5266 putc ('\n', stderr);
5267 noninteractive_need_newline = 0;
5268 if (STRINGP (m))
c6e89d6c 5269 fwrite (XSTRING (m)->data, nbytes, 1, stderr);
5f5c8ee5
GM
5270 if (cursor_in_echo_area == 0)
5271 fprintf (stderr, "\n");
5272 fflush (stderr);
5273 }
5274 /* A null message buffer means that the frame hasn't really been
5275 initialized yet. Error messages get reported properly by
5276 cmd_error, so this must be just an informative message; toss it. */
5277 else if (INTERACTIVE
886bd6f2
GM
5278 && sf->glyphs_initialized_p
5279 && FRAME_MESSAGE_BUF (sf))
5f5c8ee5
GM
5280 {
5281 Lisp_Object mini_window;
c6e89d6c 5282 Lisp_Object frame;
5f5c8ee5
GM
5283 struct frame *f;
5284
5285 /* Get the frame containing the mini-buffer
5286 that the selected frame is using. */
886bd6f2 5287 mini_window = FRAME_MINIBUF_WINDOW (sf);
c6e89d6c
GM
5288 frame = XWINDOW (mini_window)->frame;
5289 f = XFRAME (frame);
5f5c8ee5
GM
5290
5291 FRAME_SAMPLE_VISIBILITY (f);
886bd6f2 5292 if (FRAME_VISIBLE_P (sf)
c6e89d6c
GM
5293 && !FRAME_VISIBLE_P (f))
5294 Fmake_frame_visible (frame);
5f5c8ee5 5295
c6e89d6c 5296 if (STRINGP (m) && XSTRING (m)->size)
5f5c8ee5 5297 {
c6e89d6c 5298 set_message (NULL, m, nbytes, multibyte);
468155d7
GM
5299 if (minibuffer_auto_raise)
5300 Fraise_frame (frame);
5f5c8ee5
GM
5301 }
5302 else
c6e89d6c 5303 clear_message (1, 1);
5f5c8ee5 5304
c6e89d6c 5305 do_pending_window_change (0);
5f5c8ee5 5306 echo_area_display (1);
c6e89d6c 5307 do_pending_window_change (0);
5f5c8ee5
GM
5308 if (frame_up_to_date_hook != 0 && ! gc_in_progress)
5309 (*frame_up_to_date_hook) (f);
5310 }
5311}
5312
5313
5314/* Display a null-terminated echo area message M. If M is 0, clear
5315 out any existing message, and let the mini-buffer text show through.
5316
5317 The buffer M must continue to exist until after the echo area gets
5318 cleared or some other message gets displayed there. Do not pass
5319 text that is stored in a Lisp string. Do not pass text in a buffer
5320 that was alloca'd. */
5321
5322void
5323message1 (m)
5324 char *m;
5325{
5326 message2 (m, (m ? strlen (m) : 0), 0);
5327}
5328
5329
5330/* The non-logging counterpart of message1. */
5331
5332void
5333message1_nolog (m)
5334 char *m;
5335{
5336 message2_nolog (m, (m ? strlen (m) : 0), 0);
5337}
5338
5339/* Display a message M which contains a single %s
5340 which gets replaced with STRING. */
5341
5342void
5343message_with_string (m, string, log)
5344 char *m;
5345 Lisp_Object string;
5346 int log;
5347{
5348 if (noninteractive)
5349 {
5350 if (m)
5351 {
5352 if (noninteractive_need_newline)
5353 putc ('\n', stderr);
5354 noninteractive_need_newline = 0;
5355 fprintf (stderr, m, XSTRING (string)->data);
5356 if (cursor_in_echo_area == 0)
5357 fprintf (stderr, "\n");
5358 fflush (stderr);
5359 }
5360 }
5361 else if (INTERACTIVE)
5362 {
5363 /* The frame whose minibuffer we're going to display the message on.
5364 It may be larger than the selected frame, so we need
5365 to use its buffer, not the selected frame's buffer. */
5366 Lisp_Object mini_window;
886bd6f2 5367 struct frame *f, *sf = SELECTED_FRAME ();
5f5c8ee5
GM
5368
5369 /* Get the frame containing the minibuffer
5370 that the selected frame is using. */
886bd6f2 5371 mini_window = FRAME_MINIBUF_WINDOW (sf);
5f5c8ee5
GM
5372 f = XFRAME (WINDOW_FRAME (XWINDOW (mini_window)));
5373
5374 /* A null message buffer means that the frame hasn't really been
5375 initialized yet. Error messages get reported properly by
5376 cmd_error, so this must be just an informative message; toss it. */
5377 if (FRAME_MESSAGE_BUF (f))
5378 {
5379 int len;
5380 char *a[1];
5381 a[0] = (char *) XSTRING (string)->data;
5382
5383 len = doprnt (FRAME_MESSAGE_BUF (f),
5384 FRAME_MESSAGE_BUF_SIZE (f), m, (char *)0, 3, a);
5385
5386 if (log)
5387 message2 (FRAME_MESSAGE_BUF (f), len,
5388 STRING_MULTIBYTE (string));
5389 else
5390 message2_nolog (FRAME_MESSAGE_BUF (f), len,
5391 STRING_MULTIBYTE (string));
5392
5393 /* Print should start at the beginning of the message
5394 buffer next time. */
5395 message_buf_print = 0;
5396 }
5397 }
5398}
5399
5400
5f5c8ee5
GM
5401/* Dump an informative message to the minibuf. If M is 0, clear out
5402 any existing message, and let the mini-buffer text show through. */
5403
5404/* VARARGS 1 */
5405void
5406message (m, a1, a2, a3)
5407 char *m;
5408 EMACS_INT a1, a2, a3;
5409{
5410 if (noninteractive)
5411 {
5412 if (m)
5413 {
5414 if (noninteractive_need_newline)
5415 putc ('\n', stderr);
5416 noninteractive_need_newline = 0;
5417 fprintf (stderr, m, a1, a2, a3);
5418 if (cursor_in_echo_area == 0)
5419 fprintf (stderr, "\n");
5420 fflush (stderr);
5421 }
5422 }
5423 else if (INTERACTIVE)
5424 {
5425 /* The frame whose mini-buffer we're going to display the message
5426 on. It may be larger than the selected frame, so we need to
5427 use its buffer, not the selected frame's buffer. */
5428 Lisp_Object mini_window;
886bd6f2 5429 struct frame *f, *sf = SELECTED_FRAME ();
5f5c8ee5
GM
5430
5431 /* Get the frame containing the mini-buffer
5432 that the selected frame is using. */
886bd6f2 5433 mini_window = FRAME_MINIBUF_WINDOW (sf);
5f5c8ee5
GM
5434 f = XFRAME (WINDOW_FRAME (XWINDOW (mini_window)));
5435
5436 /* A null message buffer means that the frame hasn't really been
5437 initialized yet. Error messages get reported properly by
5438 cmd_error, so this must be just an informative message; toss
5439 it. */
5440 if (FRAME_MESSAGE_BUF (f))
5441 {
5442 if (m)
5443 {
5444 int len;
5445#ifdef NO_ARG_ARRAY
5446 char *a[3];
5447 a[0] = (char *) a1;
5448 a[1] = (char *) a2;
5449 a[2] = (char *) a3;
5450
5451 len = doprnt (FRAME_MESSAGE_BUF (f),
5452 FRAME_MESSAGE_BUF_SIZE (f), m, (char *)0, 3, a);
5453#else
5454 len = doprnt (FRAME_MESSAGE_BUF (f),
5455 FRAME_MESSAGE_BUF_SIZE (f), m, (char *)0, 3,
5456 (char **) &a1);
5457#endif /* NO_ARG_ARRAY */
5458
5459 message2 (FRAME_MESSAGE_BUF (f), len, 0);
5460 }
5461 else
5462 message1 (0);
5463
5464 /* Print should start at the beginning of the message
5465 buffer next time. */
5466 message_buf_print = 0;
5467 }
5468 }
5469}
5470
5471
5472/* The non-logging version of message. */
5473
5474void
5475message_nolog (m, a1, a2, a3)
5476 char *m;
5477 EMACS_INT a1, a2, a3;
5478{
5479 Lisp_Object old_log_max;
5480 old_log_max = Vmessage_log_max;
5481 Vmessage_log_max = Qnil;
5482 message (m, a1, a2, a3);
5483 Vmessage_log_max = old_log_max;
5484}
5485
5486
c6e89d6c
GM
5487/* Display the current message in the current mini-buffer. This is
5488 only called from error handlers in process.c, and is not time
5489 critical. */
5f5c8ee5
GM
5490
5491void
5492update_echo_area ()
5493{
c6e89d6c
GM
5494 if (!NILP (echo_area_buffer[0]))
5495 {
5496 Lisp_Object string;
5497 string = Fcurrent_message ();
5498 message3 (string, XSTRING (string)->size,
5499 !NILP (current_buffer->enable_multibyte_characters));
5500 }
5501}
5502
5503
5bcfeb49
GM
5504/* Make sure echo area buffers in echo_buffers[] are life. If they
5505 aren't, make new ones. */
5506
5507static void
5508ensure_echo_area_buffers ()
5509{
5510 int i;
5511
5512 for (i = 0; i < 2; ++i)
5513 if (!BUFFERP (echo_buffer[i])
5514 || NILP (XBUFFER (echo_buffer[i])->name))
5515 {
5516 char name[30];
ff3d9573
GM
5517 Lisp_Object old_buffer;
5518 int j;
5519
5520 old_buffer = echo_buffer[i];
5bcfeb49
GM
5521 sprintf (name, " *Echo Area %d*", i);
5522 echo_buffer[i] = Fget_buffer_create (build_string (name));
ad4f174e 5523 XBUFFER (echo_buffer[i])->truncate_lines = Qnil;
ff3d9573
GM
5524
5525 for (j = 0; j < 2; ++j)
5526 if (EQ (old_buffer, echo_area_buffer[j]))
5527 echo_area_buffer[j] = echo_buffer[i];
5bcfeb49
GM
5528 }
5529}
5530
5531
23a96c77 5532/* Call FN with args A1..A4 with either the current or last displayed
c6e89d6c
GM
5533 echo_area_buffer as current buffer.
5534
5535 WHICH zero means use the current message buffer
5536 echo_area_buffer[0]. If that is nil, choose a suitable buffer
5537 from echo_buffer[] and clear it.
5538
5539 WHICH > 0 means use echo_area_buffer[1]. If that is nil, choose a
5540 suitable buffer from echo_buffer[] and clear it.
5541
5542 If WHICH < 0, set echo_area_buffer[1] to echo_area_buffer[0], so
5543 that the current message becomes the last displayed one, make
5544 choose a suitable buffer for echo_area_buffer[0], and clear it.
5545
5546 Value is what FN returns. */
5547
5548static int
23a96c77 5549with_echo_area_buffer (w, which, fn, a1, a2, a3, a4)
c6e89d6c
GM
5550 struct window *w;
5551 int which;
23dd2d97
KR
5552 int (*fn) P_ ((EMACS_INT, Lisp_Object, EMACS_INT, EMACS_INT));
5553 EMACS_INT a1;
5554 Lisp_Object a2;
5555 EMACS_INT a3, a4;
c6e89d6c
GM
5556{
5557 Lisp_Object buffer;
15e26c76 5558 int this_one, the_other, clear_buffer_p, rc;
c6e89d6c
GM
5559 int count = specpdl_ptr - specpdl;
5560
5561 /* If buffers aren't life, make new ones. */
5bcfeb49 5562 ensure_echo_area_buffers ();
c6e89d6c
GM
5563
5564 clear_buffer_p = 0;
5565
5566 if (which == 0)
5567 this_one = 0, the_other = 1;
5568 else if (which > 0)
5569 this_one = 1, the_other = 0;
5f5c8ee5 5570 else
c6e89d6c
GM
5571 {
5572 this_one = 0, the_other = 1;
5573 clear_buffer_p = 1;
5574
5575 /* We need a fresh one in case the current echo buffer equals
5576 the one containing the last displayed echo area message. */
5577 if (!NILP (echo_area_buffer[this_one])
5578 && EQ (echo_area_buffer[this_one], echo_area_buffer[the_other]))
5579 echo_area_buffer[this_one] = Qnil;
c6e89d6c
GM
5580 }
5581
5582 /* Choose a suitable buffer from echo_buffer[] is we don't
5583 have one. */
5584 if (NILP (echo_area_buffer[this_one]))
5585 {
5586 echo_area_buffer[this_one]
5587 = (EQ (echo_area_buffer[the_other], echo_buffer[this_one])
5588 ? echo_buffer[the_other]
5589 : echo_buffer[this_one]);
5590 clear_buffer_p = 1;
5591 }
5592
5593 buffer = echo_area_buffer[this_one];
5594
5595 record_unwind_protect (unwind_with_echo_area_buffer,
5596 with_echo_area_buffer_unwind_data (w));
5597
5598 /* Make the echo area buffer current. Note that for display
5599 purposes, it is not necessary that the displayed window's buffer
5600 == current_buffer, except for text property lookup. So, let's
5601 only set that buffer temporarily here without doing a full
5602 Fset_window_buffer. We must also change w->pointm, though,
5603 because otherwise an assertions in unshow_buffer fails, and Emacs
5604 aborts. */
9142dd5b 5605 set_buffer_internal_1 (XBUFFER (buffer));
c6e89d6c
GM
5606 if (w)
5607 {
5608 w->buffer = buffer;
5609 set_marker_both (w->pointm, buffer, BEG, BEG_BYTE);
5610 }
ad4f174e 5611
c6e89d6c
GM
5612 current_buffer->undo_list = Qt;
5613 current_buffer->read_only = Qnil;
5614
5615 if (clear_buffer_p && Z > BEG)
5616 del_range (BEG, Z);
5617
5618 xassert (BEGV >= BEG);
5619 xassert (ZV <= Z && ZV >= BEGV);
5620
23a96c77 5621 rc = fn (a1, a2, a3, a4);
c6e89d6c
GM
5622
5623 xassert (BEGV >= BEG);
5624 xassert (ZV <= Z && ZV >= BEGV);
5625
5626 unbind_to (count, Qnil);
5627 return rc;
5f5c8ee5
GM
5628}
5629
5630
c6e89d6c
GM
5631/* Save state that should be preserved around the call to the function
5632 FN called in with_echo_area_buffer. */
5f5c8ee5 5633
c6e89d6c
GM
5634static Lisp_Object
5635with_echo_area_buffer_unwind_data (w)
5636 struct window *w;
5f5c8ee5 5637{
c6e89d6c
GM
5638 int i = 0;
5639 Lisp_Object vector;
5f5c8ee5 5640
c6e89d6c
GM
5641 /* Reduce consing by keeping one vector in
5642 Vwith_echo_area_save_vector. */
5643 vector = Vwith_echo_area_save_vector;
5644 Vwith_echo_area_save_vector = Qnil;
5645
5646 if (NILP (vector))
9142dd5b 5647 vector = Fmake_vector (make_number (7), Qnil);
c6e89d6c
GM
5648
5649 XSETBUFFER (XVECTOR (vector)->contents[i], current_buffer); ++i;
5650 XVECTOR (vector)->contents[i++] = Vdeactivate_mark;
5651 XVECTOR (vector)->contents[i++] = make_number (windows_or_buffers_changed);
c6e89d6c
GM
5652
5653 if (w)
5654 {
5655 XSETWINDOW (XVECTOR (vector)->contents[i], w); ++i;
5656 XVECTOR (vector)->contents[i++] = w->buffer;
5657 XVECTOR (vector)->contents[i++]
5658 = make_number (XMARKER (w->pointm)->charpos);
5659 XVECTOR (vector)->contents[i++]
5660 = make_number (XMARKER (w->pointm)->bytepos);
5661 }
5662 else
5663 {
5664 int end = i + 4;
5665 while (i < end)
5666 XVECTOR (vector)->contents[i++] = Qnil;
5667 }
5f5c8ee5 5668
c6e89d6c
GM
5669 xassert (i == XVECTOR (vector)->size);
5670 return vector;
5671}
5f5c8ee5 5672
5f5c8ee5 5673
c6e89d6c
GM
5674/* Restore global state from VECTOR which was created by
5675 with_echo_area_buffer_unwind_data. */
5676
5677static Lisp_Object
5678unwind_with_echo_area_buffer (vector)
5679 Lisp_Object vector;
5680{
5681 int i = 0;
5682
9142dd5b 5683 set_buffer_internal_1 (XBUFFER (XVECTOR (vector)->contents[i])); ++i;
c6e89d6c
GM
5684 Vdeactivate_mark = XVECTOR (vector)->contents[i]; ++i;
5685 windows_or_buffers_changed = XFASTINT (XVECTOR (vector)->contents[i]); ++i;
c6e89d6c
GM
5686
5687 if (WINDOWP (XVECTOR (vector)->contents[i]))
5688 {
5689 struct window *w;
5690 Lisp_Object buffer, charpos, bytepos;
5691
5692 w = XWINDOW (XVECTOR (vector)->contents[i]); ++i;
5693 buffer = XVECTOR (vector)->contents[i]; ++i;
5694 charpos = XVECTOR (vector)->contents[i]; ++i;
5695 bytepos = XVECTOR (vector)->contents[i]; ++i;
5696
5697 w->buffer = buffer;
5698 set_marker_both (w->pointm, buffer,
5699 XFASTINT (charpos), XFASTINT (bytepos));
5700 }
5701
5702 Vwith_echo_area_save_vector = vector;
5703 return Qnil;
5704}
5705
5706
5707/* Set up the echo area for use by print functions. MULTIBYTE_P
5708 non-zero means we will print multibyte. */
5709
5710void
5711setup_echo_area_for_printing (multibyte_p)
5712 int multibyte_p;
5713{
5bcfeb49
GM
5714 ensure_echo_area_buffers ();
5715
c6e89d6c
GM
5716 if (!message_buf_print)
5717 {
5718 /* A message has been output since the last time we printed.
5719 Choose a fresh echo area buffer. */
5720 if (EQ (echo_area_buffer[1], echo_buffer[0]))
5721 echo_area_buffer[0] = echo_buffer[1];
5722 else
5723 echo_area_buffer[0] = echo_buffer[0];
5724
5725 /* Switch to that buffer and clear it. */
5726 set_buffer_internal (XBUFFER (echo_area_buffer[0]));
5727 if (Z > BEG)
5728 del_range (BEG, Z);
5729 TEMP_SET_PT_BOTH (BEG, BEG_BYTE);
5730
5731 /* Set up the buffer for the multibyteness we need. */
5732 if (multibyte_p
5733 != !NILP (current_buffer->enable_multibyte_characters))
5734 Fset_buffer_multibyte (multibyte_p ? Qt : Qnil);
5735
5736 /* Raise the frame containing the echo area. */
5737 if (minibuffer_auto_raise)
5738 {
886bd6f2 5739 struct frame *sf = SELECTED_FRAME ();
c6e89d6c 5740 Lisp_Object mini_window;
886bd6f2 5741 mini_window = FRAME_MINIBUF_WINDOW (sf);
c6e89d6c
GM
5742 Fraise_frame (WINDOW_FRAME (XWINDOW (mini_window)));
5743 }
5744
8a4e3c0c 5745 message_log_maybe_newline ();
c6e89d6c
GM
5746 message_buf_print = 1;
5747 }
fa77249f
GM
5748 else
5749 {
5750 if (NILP (echo_area_buffer[0]))
5751 {
5752 if (EQ (echo_area_buffer[1], echo_buffer[0]))
5753 echo_area_buffer[0] = echo_buffer[1];
5754 else
5755 echo_area_buffer[0] = echo_buffer[0];
5756 }
5757
5758 if (current_buffer != XBUFFER (echo_area_buffer[0]))
5759 /* Someone switched buffers between print requests. */
5760 set_buffer_internal (XBUFFER (echo_area_buffer[0]));
5761 }
c6e89d6c
GM
5762}
5763
5764
dd2eb166
GM
5765/* Display an echo area message in window W. Value is non-zero if W's
5766 height is changed. If display_last_displayed_message_p is
5767 non-zero, display the message that was last displayed, otherwise
5768 display the current message. */
c6e89d6c
GM
5769
5770static int
5771display_echo_area (w)
5772 struct window *w;
5773{
25edb08f
GM
5774 int i, no_message_p, window_height_changed_p, count;
5775
5776 /* Temporarily disable garbage collections while displaying the echo
5777 area. This is done because a GC can print a message itself.
5778 That message would modify the echo area buffer's contents while a
5779 redisplay of the buffer is going on, and seriously confuse
5780 redisplay. */
5781 count = inhibit_garbage_collection ();
dd2eb166
GM
5782
5783 /* If there is no message, we must call display_echo_area_1
5784 nevertheless because it resizes the window. But we will have to
5785 reset the echo_area_buffer in question to nil at the end because
5786 with_echo_area_buffer will sets it to an empty buffer. */
5787 i = display_last_displayed_message_p ? 1 : 0;
5788 no_message_p = NILP (echo_area_buffer[i]);
5789
5790 window_height_changed_p
5791 = with_echo_area_buffer (w, display_last_displayed_message_p,
23a96c77 5792 display_echo_area_1,
23dd2d97 5793 (EMACS_INT) w, Qnil, 0, 0);
dd2eb166
GM
5794
5795 if (no_message_p)
5796 echo_area_buffer[i] = Qnil;
25edb08f
GM
5797
5798 unbind_to (count, Qnil);
dd2eb166 5799 return window_height_changed_p;
c6e89d6c
GM
5800}
5801
5802
5803/* Helper for display_echo_area. Display the current buffer which
23a96c77
GM
5804 contains the current echo area message in window W, a mini-window,
5805 a pointer to which is passed in A1. A2..A4 are currently not used.
c6e89d6c
GM
5806 Change the height of W so that all of the message is displayed.
5807 Value is non-zero if height of W was changed. */
5808
5809static int
23a96c77 5810display_echo_area_1 (a1, a2, a3, a4)
23dd2d97
KR
5811 EMACS_INT a1;
5812 Lisp_Object a2;
5813 EMACS_INT a3, a4;
c6e89d6c 5814{
23a96c77 5815 struct window *w = (struct window *) a1;
c6e89d6c 5816 Lisp_Object window;
c6e89d6c
GM
5817 struct text_pos start;
5818 int window_height_changed_p = 0;
5819
5820 /* Do this before displaying, so that we have a large enough glyph
5821 matrix for the display. */
92a90e89 5822 window_height_changed_p = resize_mini_window (w, 0);
c6e89d6c
GM
5823
5824 /* Display. */
5825 clear_glyph_matrix (w->desired_matrix);
5826 XSETWINDOW (window, w);
5827 SET_TEXT_POS (start, BEG, BEG_BYTE);
5828 try_window (window, start);
5829
c6e89d6c
GM
5830 return window_height_changed_p;
5831}
5832
5833
92a90e89
GM
5834/* Resize the echo area window to exactly the size needed for the
5835 currently displayed message, if there is one. */
5836
5837void
5838resize_echo_area_axactly ()
5839{
5840 if (BUFFERP (echo_area_buffer[0])
5841 && WINDOWP (echo_area_window))
5842 {
5843 struct window *w = XWINDOW (echo_area_window);
5844 int resized_p;
5845
23a96c77 5846 resized_p = with_echo_area_buffer (w, 0, resize_mini_window_1,
23dd2d97 5847 (EMACS_INT) w, Qnil, 0, 0);
92a90e89
GM
5848 if (resized_p)
5849 {
5850 ++windows_or_buffers_changed;
5851 ++update_mode_lines;
5852 redisplay_internal (0);
5853 }
5854 }
5855}
5856
5857
23a96c77
GM
5858/* Callback function for with_echo_area_buffer, when used from
5859 resize_echo_area_axactly. A1 contains a pointer to the window to
5860 resize, A2 to A4 are not used. Value is what resize_mini_window
5861 returns. */
5862
5863static int
5864resize_mini_window_1 (a1, a2, a3, a4)
23dd2d97
KR
5865 EMACS_INT a1;
5866 Lisp_Object a2;
5867 EMACS_INT a3, a4;
23a96c77
GM
5868{
5869 return resize_mini_window ((struct window *) a1, 1);
5870}
5871
5872
92a90e89
GM
5873/* Resize mini-window W to fit the size of its contents. EXACT:P
5874 means size the window exactly to the size needed. Otherwise, it's
5875 only enlarged until W's buffer is empty. Value is non-zero if
5876 the window height has been changed. */
c6e89d6c 5877
9472f927 5878int
92a90e89 5879resize_mini_window (w, exact_p)
c6e89d6c 5880 struct window *w;
92a90e89 5881 int exact_p;
c6e89d6c
GM
5882{
5883 struct frame *f = XFRAME (w->frame);
5884 int window_height_changed_p = 0;
5885
5886 xassert (MINI_WINDOW_P (w));
97cafc0f
GM
5887
5888 /* Nil means don't try to resize. */
00f6d59e
GM
5889 if (NILP (Vmax_mini_window_height)
5890 || (FRAME_X_P (f) && f->output_data.x == NULL))
97cafc0f 5891 return 0;
c6e89d6c
GM
5892
5893 if (!FRAME_MINIBUF_ONLY_P (f))
5894 {
5895 struct it it;
dd2eb166
GM
5896 struct window *root = XWINDOW (FRAME_ROOT_WINDOW (f));
5897 int total_height = XFASTINT (root->height) + XFASTINT (w->height);
5898 int height, max_height;
5899 int unit = CANON_Y_UNIT (f);
5900 struct text_pos start;
9142dd5b 5901
c6e89d6c 5902 init_iterator (&it, w, BEGV, BEGV_BYTE, NULL, DEFAULT_FACE_ID);
c6e89d6c 5903
dd2eb166
GM
5904 /* Compute the max. number of lines specified by the user. */
5905 if (FLOATP (Vmax_mini_window_height))
5906 max_height = XFLOATINT (Vmax_mini_window_height) * total_height;
5907 else if (INTEGERP (Vmax_mini_window_height))
5908 max_height = XINT (Vmax_mini_window_height);
97cafc0f
GM
5909 else
5910 max_height = total_height / 4;
dd2eb166
GM
5911
5912 /* Correct that max. height if it's bogus. */
5913 max_height = max (1, max_height);
5914 max_height = min (total_height, max_height);
5915
5916 /* Find out the height of the text in the window. */
ad4f174e
GM
5917 if (it.truncate_lines_p)
5918 height = 1;
55b064bd 5919 else
ad4f174e
GM
5920 {
5921 last_height = 0;
5922 move_it_to (&it, ZV, -1, -1, -1, MOVE_TO_POS);
5923 if (it.max_ascent == 0 && it.max_descent == 0)
5924 height = it.current_y + last_height;
5925 else
5926 height = it.current_y + it.max_ascent + it.max_descent;
3c4b7685 5927 height -= it.extra_line_spacing;
ad4f174e
GM
5928 height = (height + unit - 1) / unit;
5929 }
dd2eb166
GM
5930
5931 /* Compute a suitable window start. */
5932 if (height > max_height)
5933 {
5934 height = max_height;
5935 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID);
5936 move_it_vertically_backward (&it, (height - 1) * unit);
5937 start = it.current.pos;
5938 }
5939 else
5940 SET_TEXT_POS (start, BEGV, BEGV_BYTE);
5941 SET_MARKER_FROM_TEXT_POS (w->start, start);
c59c668a 5942
9472f927
GM
5943 /* Let it grow only, until we display an empty message, in which
5944 case the window shrinks again. */
da448723 5945 if (height > XFASTINT (w->height))
dd2eb166 5946 {
d2c48e86 5947 int old_height = XFASTINT (w->height);
da448723
GM
5948 freeze_window_starts (f, 1);
5949 grow_mini_window (w, height - XFASTINT (w->height));
5950 window_height_changed_p = XFASTINT (w->height) != old_height;
5951 }
5952 else if (height < XFASTINT (w->height)
5953 && (exact_p || BEGV == ZV))
5954 {
5955 int old_height = XFASTINT (w->height);
5956 freeze_window_starts (f, 0);
5957 shrink_mini_window (w);
d2c48e86 5958 window_height_changed_p = XFASTINT (w->height) != old_height;
9142dd5b 5959 }
c6e89d6c
GM
5960 }
5961
5962 return window_height_changed_p;
5963}
5964
5965
5966/* Value is the current message, a string, or nil if there is no
5967 current message. */
5968
5969Lisp_Object
5970current_message ()
5971{
5972 Lisp_Object msg;
5973
5974 if (NILP (echo_area_buffer[0]))
5975 msg = Qnil;
5976 else
5977 {
23a96c77 5978 with_echo_area_buffer (0, 0, current_message_1,
23dd2d97 5979 (EMACS_INT) &msg, Qnil, 0, 0);
c6e89d6c
GM
5980 if (NILP (msg))
5981 echo_area_buffer[0] = Qnil;
5982 }
5983
5984 return msg;
5985}
5986
5987
5988static int
23a96c77 5989current_message_1 (a1, a2, a3, a4)
23dd2d97
KR
5990 EMACS_INT a1;
5991 Lisp_Object a2;
5992 EMACS_INT a3, a4;
c6e89d6c 5993{
23a96c77
GM
5994 Lisp_Object *msg = (Lisp_Object *) a1;
5995
c6e89d6c
GM
5996 if (Z > BEG)
5997 *msg = make_buffer_string (BEG, Z, 1);
5998 else
5999 *msg = Qnil;
6000 return 0;
6001}
6002
6003
6004/* Push the current message on Vmessage_stack for later restauration
6005 by restore_message. Value is non-zero if the current message isn't
6006 empty. This is a relatively infrequent operation, so it's not
6007 worth optimizing. */
6008
6009int
6010push_message ()
6011{
6012 Lisp_Object msg;
6013 msg = current_message ();
6014 Vmessage_stack = Fcons (msg, Vmessage_stack);
6015 return STRINGP (msg);
6016}
6017
6018
6019/* Restore message display from the top of Vmessage_stack. */
6020
6021void
6022restore_message ()
6023{
6024 Lisp_Object msg;
6025
6026 xassert (CONSP (Vmessage_stack));
6027 msg = XCAR (Vmessage_stack);
6028 if (STRINGP (msg))
6029 message3_nolog (msg, STRING_BYTES (XSTRING (msg)), STRING_MULTIBYTE (msg));
6030 else
6031 message3_nolog (msg, 0, 0);
6032}
6033
6034
6035/* Pop the top-most entry off Vmessage_stack. */
6036
6037void
6038pop_message ()
6039{
6040 xassert (CONSP (Vmessage_stack));
6041 Vmessage_stack = XCDR (Vmessage_stack);
6042}
6043
6044
6045/* Check that Vmessage_stack is nil. Called from emacs.c when Emacs
6046 exits. If the stack is not empty, we have a missing pop_message
6047 somewhere. */
6048
6049void
6050check_message_stack ()
6051{
6052 if (!NILP (Vmessage_stack))
6053 abort ();
6054}
6055
6056
6057/* Truncate to NCHARS what will be displayed in the echo area the next
6058 time we display it---but don't redisplay it now. */
6059
6060void
6061truncate_echo_area (nchars)
6062 int nchars;
6063{
6064 if (nchars == 0)
6065 echo_area_buffer[0] = Qnil;
6066 /* A null message buffer means that the frame hasn't really been
6067 initialized yet. Error messages get reported properly by
6068 cmd_error, so this must be just an informative message; toss it. */
6069 else if (!noninteractive
6070 && INTERACTIVE
c6e89d6c 6071 && !NILP (echo_area_buffer[0]))
886bd6f2
GM
6072 {
6073 struct frame *sf = SELECTED_FRAME ();
6074 if (FRAME_MESSAGE_BUF (sf))
23dd2d97 6075 with_echo_area_buffer (0, 0, truncate_message_1, nchars, Qnil, 0, 0);
886bd6f2 6076 }
c6e89d6c
GM
6077}
6078
6079
6080/* Helper function for truncate_echo_area. Truncate the current
6081 message to at most NCHARS characters. */
6082
6083static int
23a96c77 6084truncate_message_1 (nchars, a2, a3, a4)
23dd2d97
KR
6085 EMACS_INT nchars;
6086 Lisp_Object a2;
6087 EMACS_INT a3, a4;
c6e89d6c
GM
6088{
6089 if (BEG + nchars < Z)
6090 del_range (BEG + nchars, Z);
6091 if (Z == BEG)
6092 echo_area_buffer[0] = Qnil;
6093 return 0;
6094}
6095
6096
6097/* Set the current message to a substring of S or STRING.
6098
6099 If STRING is a Lisp string, set the message to the first NBYTES
6100 bytes from STRING. NBYTES zero means use the whole string. If
6101 STRING is multibyte, the message will be displayed multibyte.
6102
6103 If S is not null, set the message to the first LEN bytes of S. LEN
6104 zero means use the whole string. MULTIBYTE_P non-zero means S is
6105 multibyte. Display the message multibyte in that case. */
6106
6107void
6108set_message (s, string, nbytes, multibyte_p)
6109 char *s;
6110 Lisp_Object string;
6111 int nbytes;
6112{
6113 message_enable_multibyte
6114 = ((s && multibyte_p)
6115 || (STRINGP (string) && STRING_MULTIBYTE (string)));
6116
23a96c77
GM
6117 with_echo_area_buffer (0, -1, set_message_1,
6118 (EMACS_INT) s, string, nbytes, multibyte_p);
c6e89d6c
GM
6119 message_buf_print = 0;
6120}
6121
6122
6123/* Helper function for set_message. Arguments have the same meaning
23a96c77
GM
6124 as there, with A1 corresponding to S and A2 corresponding to STRING
6125 This function is called with the echo area buffer being
c6e89d6c
GM
6126 current. */
6127
6128static int
23a96c77 6129set_message_1 (a1, a2, nbytes, multibyte_p)
23dd2d97
KR
6130 EMACS_INT a1;
6131 Lisp_Object a2;
6132 EMACS_INT nbytes, multibyte_p;
c6e89d6c 6133{
23a96c77 6134 char *s = (char *) a1;
23dd2d97 6135 Lisp_Object string = a2;
23a96c77 6136
c6e89d6c
GM
6137 xassert (BEG == Z);
6138
6139 /* Change multibyteness of the echo buffer appropriately. */
6140 if (message_enable_multibyte
6141 != !NILP (current_buffer->enable_multibyte_characters))
6142 Fset_buffer_multibyte (message_enable_multibyte ? Qt : Qnil);
6143
ad4f174e
GM
6144 current_buffer->truncate_lines = message_truncate_lines ? Qt : Qnil;
6145
c6e89d6c
GM
6146 /* Insert new message at BEG. */
6147 TEMP_SET_PT_BOTH (BEG, BEG_BYTE);
6148
6149 if (STRINGP (string))
6150 {
6151 int nchars;
6152
6153 if (nbytes == 0)
6154 nbytes = XSTRING (string)->size_byte;
6155 nchars = string_byte_to_char (string, nbytes);
6156
6157 /* This function takes care of single/multibyte conversion. We
6158 just have to ensure that the echo area buffer has the right
6159 setting of enable_multibyte_characters. */
6160 insert_from_string (string, 0, 0, nchars, nbytes, 1);
6161 }
6162 else if (s)
6163 {
6164 if (nbytes == 0)
6165 nbytes = strlen (s);
6166
6167 if (multibyte_p && NILP (current_buffer->enable_multibyte_characters))
6168 {
6169 /* Convert from multi-byte to single-byte. */
6170 int i, c, n;
6171 unsigned char work[1];
6172
6173 /* Convert a multibyte string to single-byte. */
6174 for (i = 0; i < nbytes; i += n)
6175 {
6176 c = string_char_and_length (s + i, nbytes - i, &n);
6177 work[0] = (SINGLE_BYTE_CHAR_P (c)
6178 ? c
6179 : multibyte_char_to_unibyte (c, Qnil));
6180 insert_1_both (work, 1, 1, 1, 0, 0);
6181 }
6182 }
6183 else if (!multibyte_p
6184 && !NILP (current_buffer->enable_multibyte_characters))
6185 {
6186 /* Convert from single-byte to multi-byte. */
6187 int i, c, n;
6188 unsigned char *msg = (unsigned char *) s;
260a86a0 6189 unsigned char str[MAX_MULTIBYTE_LENGTH];
c6e89d6c
GM
6190
6191 /* Convert a single-byte string to multibyte. */
6192 for (i = 0; i < nbytes; i++)
6193 {
6194 c = unibyte_char_to_multibyte (msg[i]);
260a86a0
KH
6195 n = CHAR_STRING (c, str);
6196 insert_1_both (str, 1, n, 1, 0, 0);
c6e89d6c
GM
6197 }
6198 }
6199 else
6200 insert_1 (s, nbytes, 1, 0, 0);
6201 }
6202
6203 return 0;
6204}
6205
6206
6207/* Clear messages. CURRENT_P non-zero means clear the current
6208 message. LAST_DISPLAYED_P non-zero means clear the message
6209 last displayed. */
6210
6211void
6212clear_message (current_p, last_displayed_p)
6213 int current_p, last_displayed_p;
6214{
6215 if (current_p)
6216 echo_area_buffer[0] = Qnil;
6217
6218 if (last_displayed_p)
6219 echo_area_buffer[1] = Qnil;
6220
6221 message_buf_print = 0;
6222}
6223
6224/* Clear garbaged frames.
6225
6226 This function is used where the old redisplay called
6227 redraw_garbaged_frames which in turn called redraw_frame which in
6228 turn called clear_frame. The call to clear_frame was a source of
6229 flickering. I believe a clear_frame is not necessary. It should
6230 suffice in the new redisplay to invalidate all current matrices,
6231 and ensure a complete redisplay of all windows. */
6232
6233static void
6234clear_garbaged_frames ()
6235{
5f5c8ee5
GM
6236 if (frame_garbaged)
6237 {
5f5c8ee5
GM
6238 Lisp_Object tail, frame;
6239
6240 FOR_EACH_FRAME (tail, frame)
6241 {
6242 struct frame *f = XFRAME (frame);
6243
6244 if (FRAME_VISIBLE_P (f) && FRAME_GARBAGED_P (f))
6245 {
6246 clear_current_matrices (f);
6247 f->garbaged = 0;
6248 }
6249 }
6250
6251 frame_garbaged = 0;
6252 ++windows_or_buffers_changed;
6253 }
c6e89d6c 6254}
5f5c8ee5 6255
5f5c8ee5 6256
886bd6f2
GM
6257/* Redisplay the echo area of the selected frame. If UPDATE_FRAME_P
6258 is non-zero update selected_frame. Value is non-zero if the
c6e89d6c 6259 mini-windows height has been changed. */
5f5c8ee5 6260
c6e89d6c
GM
6261static int
6262echo_area_display (update_frame_p)
6263 int update_frame_p;
6264{
6265 Lisp_Object mini_window;
6266 struct window *w;
6267 struct frame *f;
6268 int window_height_changed_p = 0;
886bd6f2 6269 struct frame *sf = SELECTED_FRAME ();
c6e89d6c 6270
886bd6f2 6271 mini_window = FRAME_MINIBUF_WINDOW (sf);
c6e89d6c
GM
6272 w = XWINDOW (mini_window);
6273 f = XFRAME (WINDOW_FRAME (w));
6274
6275 /* Don't display if frame is invisible or not yet initialized. */
6276 if (!FRAME_VISIBLE_P (f) || !f->glyphs_initialized_p)
6277 return 0;
5f5c8ee5 6278
1ab3e082 6279#ifdef HAVE_WINDOW_SYSTEM
c6e89d6c
GM
6280 /* When Emacs starts, selected_frame may be a visible terminal
6281 frame, even if we run under a window system. If we let this
6282 through, a message would be displayed on the terminal. */
622e3754
GM
6283 if (EQ (selected_frame, Vterminal_frame)
6284 && !NILP (Vwindow_system))
c6e89d6c 6285 return 0;
1ab3e082 6286#endif /* HAVE_WINDOW_SYSTEM */
c6e89d6c
GM
6287
6288 /* Redraw garbaged frames. */
6289 if (frame_garbaged)
6290 clear_garbaged_frames ();
6291
6292 if (!NILP (echo_area_buffer[0]) || minibuf_level == 0)
6293 {
6294 echo_area_window = mini_window;
6295 window_height_changed_p = display_echo_area (w);
5f5c8ee5 6296 w->must_be_updated_p = 1;
c59c668a 6297
5f5c8ee5
GM
6298 if (update_frame_p)
6299 {
9f50252b
GM
6300 /* Not called from redisplay_internal. If we changed window
6301 configuration, we must redisplay thoroughly, of course.
6302
6303 Likewise if input is pending, because the pending input
6304 can have interrupted a previous redisplay, or redisplay
6305 wasn't called because of the pending input (see
6306 keyboard.c). In both cases, we would display the message
6307 fine, but the rest of the display would be garbage.
6308
6309 Otherwise, we can do with updating just what we displayed
c59c668a 6310 above. */
9f50252b
GM
6311
6312 if (window_height_changed_p || detect_input_pending ())
c59c668a 6313 {
9f50252b
GM
6314 int count = specpdl_ptr - specpdl;
6315
6316 specbind (Qredisplay_dont_pause, Qt);
c59c668a
GM
6317 ++windows_or_buffers_changed;
6318 ++update_mode_lines;
6319 redisplay_internal (0);
9f50252b 6320 unbind_to (count, Qnil);
c59c668a
GM
6321 }
6322 else if (FRAME_WINDOW_P (f))
5f5c8ee5
GM
6323 {
6324 update_single_window (w, 1);
6325 rif->flush_display (f);
6326 }
6327 else
6328 update_frame (f, 1, 1);
6329 }
6330 }
6331 else if (!EQ (mini_window, selected_window))
6332 windows_or_buffers_changed++;
c59c668a
GM
6333
6334 /* Last displayed message is now the current message. */
dd2eb166
GM
6335 echo_area_buffer[1] = echo_area_buffer[0];
6336
5f5c8ee5
GM
6337 /* Prevent redisplay optimization in redisplay_internal by resetting
6338 this_line_start_pos. This is done because the mini-buffer now
6339 displays the message instead of its buffer text. */
6340 if (EQ (mini_window, selected_window))
6341 CHARPOS (this_line_start_pos) = 0;
c6e89d6c
GM
6342
6343 return window_height_changed_p;
5f5c8ee5
GM
6344}
6345
6346
6347\f
6348/***********************************************************************
6349 Frame Titles
6350 ***********************************************************************/
6351
6352
6353#ifdef HAVE_WINDOW_SYSTEM
6354
6355/* A buffer for constructing frame titles in it; allocated from the
6356 heap in init_xdisp and resized as needed in store_frame_title_char. */
6357
6358static char *frame_title_buf;
6359
6360/* The buffer's end, and a current output position in it. */
6361
6362static char *frame_title_buf_end;
6363static char *frame_title_ptr;
6364
6365
6366/* Store a single character C for the frame title in frame_title_buf.
6367 Re-allocate frame_title_buf if necessary. */
6368
6369static void
6370store_frame_title_char (c)
6371 char c;
6372{
6373 /* If output position has reached the end of the allocated buffer,
6374 double the buffer's size. */
6375 if (frame_title_ptr == frame_title_buf_end)
6376 {
6377 int len = frame_title_ptr - frame_title_buf;
6378 int new_size = 2 * len * sizeof *frame_title_buf;
6379 frame_title_buf = (char *) xrealloc (frame_title_buf, new_size);
6380 frame_title_buf_end = frame_title_buf + new_size;
6381 frame_title_ptr = frame_title_buf + len;
6382 }
6383
6384 *frame_title_ptr++ = c;
6385}
6386
6387
6388/* Store part of a frame title in frame_title_buf, beginning at
6389 frame_title_ptr. STR is the string to store. Do not copy more
6390 than PRECISION number of bytes from STR; PRECISION <= 0 means copy
6391 the whole string. Pad with spaces until FIELD_WIDTH number of
6392 characters have been copied; FIELD_WIDTH <= 0 means don't pad.
6393 Called from display_mode_element when it is used to build a frame
6394 title. */
6395
6396static int
6397store_frame_title (str, field_width, precision)
6398 unsigned char *str;
6399 int field_width, precision;
6400{
6401 int n = 0;
6402
6403 /* Copy at most PRECISION chars from STR. */
6404 while ((precision <= 0 || n < precision)
6405 && *str)
6406 {
6407 store_frame_title_char (*str++);
6408 ++n;
6409 }
6410
6411 /* Fill up with spaces until FIELD_WIDTH reached. */
6412 while (field_width > 0
6413 && n < field_width)
6414 {
6415 store_frame_title_char (' ');
6416 ++n;
6417 }
6418
6419 return n;
6420}
6421
6422
6423/* Set the title of FRAME, if it has changed. The title format is
6424 Vicon_title_format if FRAME is iconified, otherwise it is
6425 frame_title_format. */
6426
6427static void
6428x_consider_frame_title (frame)
6429 Lisp_Object frame;
6430{
6431 struct frame *f = XFRAME (frame);
6432
6433 if (FRAME_WINDOW_P (f)
6434 || FRAME_MINIBUF_ONLY_P (f)
6435 || f->explicit_name)
6436 {
6437 /* Do we have more than one visible frame on this X display? */
6438 Lisp_Object tail;
6439 Lisp_Object fmt;
6440 struct buffer *obuf;
6441 int len;
6442 struct it it;
6443
9472f927 6444 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
5f5c8ee5 6445 {
9472f927 6446 struct frame *tf = XFRAME (XCAR (tail));
5f5c8ee5
GM
6447
6448 if (tf != f
6449 && FRAME_KBOARD (tf) == FRAME_KBOARD (f)
6450 && !FRAME_MINIBUF_ONLY_P (tf)
6451 && (FRAME_VISIBLE_P (tf) || FRAME_ICONIFIED_P (tf)))
6452 break;
6453 }
6454
6455 /* Set global variable indicating that multiple frames exist. */
6456 multiple_frames = CONSP (tail);
6457
6458 /* Switch to the buffer of selected window of the frame. Set up
6459 frame_title_ptr so that display_mode_element will output into it;
6460 then display the title. */
6461 obuf = current_buffer;
6462 Fset_buffer (XWINDOW (f->selected_window)->buffer);
6463 fmt = FRAME_ICONIFIED_P (f) ? Vicon_title_format : Vframe_title_format;
6464 frame_title_ptr = frame_title_buf;
6465 init_iterator (&it, XWINDOW (f->selected_window), -1, -1,
6466 NULL, DEFAULT_FACE_ID);
6467 len = display_mode_element (&it, 0, -1, -1, fmt);
6468 frame_title_ptr = NULL;
6469 set_buffer_internal (obuf);
6470
6471 /* Set the title only if it's changed. This avoids consing in
6472 the common case where it hasn't. (If it turns out that we've
6473 already wasted too much time by walking through the list with
6474 display_mode_element, then we might need to optimize at a
6475 higher level than this.) */
6476 if (! STRINGP (f->name)
6477 || STRING_BYTES (XSTRING (f->name)) != len
6478 || bcmp (frame_title_buf, XSTRING (f->name)->data, len) != 0)
6479 x_implicitly_set_name (f, make_string (frame_title_buf, len), Qnil);
6480 }
6481}
6482
6483#else /* not HAVE_WINDOW_SYSTEM */
6484
6485#define frame_title_ptr ((char *)0)
6486#define store_frame_title(str, mincol, maxcol) 0
6487
6488#endif /* not HAVE_WINDOW_SYSTEM */
6489
6490
6491
6492\f
6493/***********************************************************************
6494 Menu Bars
6495 ***********************************************************************/
6496
6497
6498/* Prepare for redisplay by updating menu-bar item lists when
6499 appropriate. This can call eval. */
6500
6501void
6502prepare_menu_bars ()
6503{
6504 int all_windows;
6505 struct gcpro gcpro1, gcpro2;
6506 struct frame *f;
6507 struct frame *tooltip_frame;
6508
6509#ifdef HAVE_X_WINDOWS
6510 tooltip_frame = tip_frame;
6511#else
6512 tooltip_frame = NULL;
6513#endif
6514
6515 /* Update all frame titles based on their buffer names, etc. We do
6516 this before the menu bars so that the buffer-menu will show the
6517 up-to-date frame titles. */
6518#ifdef HAVE_WINDOW_SYSTEM
6519 if (windows_or_buffers_changed || update_mode_lines)
6520 {
6521 Lisp_Object tail, frame;
6522
6523 FOR_EACH_FRAME (tail, frame)
6524 {
6525 f = XFRAME (frame);
6526 if (f != tooltip_frame
6527 && (FRAME_VISIBLE_P (f) || FRAME_ICONIFIED_P (f)))
6528 x_consider_frame_title (frame);
6529 }
6530 }
6531#endif /* HAVE_WINDOW_SYSTEM */
6532
6533 /* Update the menu bar item lists, if appropriate. This has to be
6534 done before any actual redisplay or generation of display lines. */
6535 all_windows = (update_mode_lines
6536 || buffer_shared > 1
6537 || windows_or_buffers_changed);
6538 if (all_windows)
6539 {
6540 Lisp_Object tail, frame;
6541 int count = specpdl_ptr - specpdl;
6542
6543 record_unwind_protect (Fset_match_data, Fmatch_data (Qnil, Qnil));
6544
6545 FOR_EACH_FRAME (tail, frame)
6546 {
6547 f = XFRAME (frame);
6548
6549 /* Ignore tooltip frame. */
6550 if (f == tooltip_frame)
6551 continue;
6552
6553 /* If a window on this frame changed size, report that to
6554 the user and clear the size-change flag. */
6555 if (FRAME_WINDOW_SIZES_CHANGED (f))
6556 {
6557 Lisp_Object functions;
6558
6559 /* Clear flag first in case we get an error below. */
6560 FRAME_WINDOW_SIZES_CHANGED (f) = 0;
6561 functions = Vwindow_size_change_functions;
6562 GCPRO2 (tail, functions);
6563
6564 while (CONSP (functions))
6565 {
6566 call1 (XCAR (functions), frame);
6567 functions = XCDR (functions);
6568 }
6569 UNGCPRO;
6570 }
6571
6572 GCPRO1 (tail);
6573 update_menu_bar (f, 0);
6574#ifdef HAVE_WINDOW_SYSTEM
e037b9ec 6575 update_tool_bar (f, 0);
5f5c8ee5
GM
6576#endif
6577 UNGCPRO;
6578 }
6579
6580 unbind_to (count, Qnil);
6581 }
6582 else
6583 {
886bd6f2
GM
6584 struct frame *sf = SELECTED_FRAME ();
6585 update_menu_bar (sf, 1);
5f5c8ee5 6586#ifdef HAVE_WINDOW_SYSTEM
886bd6f2 6587 update_tool_bar (sf, 1);
5f5c8ee5
GM
6588#endif
6589 }
6590
6591 /* Motif needs this. See comment in xmenu.c. Turn it off when
6592 pending_menu_activation is not defined. */
6593#ifdef USE_X_TOOLKIT
6594 pending_menu_activation = 0;
6595#endif
6596}
6597
6598
6599/* Update the menu bar item list for frame F. This has to be done
6600 before we start to fill in any display lines, because it can call
6601 eval.
6602
6603 If SAVE_MATCH_DATA is non-zero, we must save and restore it here. */
6604
6605static void
6606update_menu_bar (f, save_match_data)
6607 struct frame *f;
6608 int save_match_data;
6609{
6610 Lisp_Object window;
6611 register struct window *w;
6612
6613 window = FRAME_SELECTED_WINDOW (f);
6614 w = XWINDOW (window);
6615
6616 if (update_mode_lines)
6617 w->update_mode_line = Qt;
6618
6619 if (FRAME_WINDOW_P (f)
6620 ?
6621#if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI)
6622 FRAME_EXTERNAL_MENU_BAR (f)
6623#else
6624 FRAME_MENU_BAR_LINES (f) > 0
6625#endif
6626 : FRAME_MENU_BAR_LINES (f) > 0)
6627 {
6628 /* If the user has switched buffers or windows, we need to
6629 recompute to reflect the new bindings. But we'll
6630 recompute when update_mode_lines is set too; that means
6631 that people can use force-mode-line-update to request
6632 that the menu bar be recomputed. The adverse effect on
6633 the rest of the redisplay algorithm is about the same as
6634 windows_or_buffers_changed anyway. */
6635 if (windows_or_buffers_changed
6636 || !NILP (w->update_mode_line)
6637 || ((BUF_SAVE_MODIFF (XBUFFER (w->buffer))
6638 < BUF_MODIFF (XBUFFER (w->buffer)))
6639 != !NILP (w->last_had_star))
6640 || ((!NILP (Vtransient_mark_mode)
6641 && !NILP (XBUFFER (w->buffer)->mark_active))
6642 != !NILP (w->region_showing)))
6643 {
6644 struct buffer *prev = current_buffer;
6645 int count = specpdl_ptr - specpdl;
6646
6647 set_buffer_internal_1 (XBUFFER (w->buffer));
6648 if (save_match_data)
6649 record_unwind_protect (Fset_match_data, Fmatch_data (Qnil, Qnil));
6650 if (NILP (Voverriding_local_map_menu_flag))
6651 {
6652 specbind (Qoverriding_terminal_local_map, Qnil);
6653 specbind (Qoverriding_local_map, Qnil);
6654 }
6655
6656 /* Run the Lucid hook. */
6657 call1 (Vrun_hooks, Qactivate_menubar_hook);
6658
6659 /* If it has changed current-menubar from previous value,
6660 really recompute the menu-bar from the value. */
6661 if (! NILP (Vlucid_menu_bar_dirty_flag))
6662 call0 (Qrecompute_lucid_menubar);
6663
6664 safe_run_hooks (Qmenu_bar_update_hook);
6665 FRAME_MENU_BAR_ITEMS (f) = menu_bar_items (FRAME_MENU_BAR_ITEMS (f));
6666
6667 /* Redisplay the menu bar in case we changed it. */
6668#if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI)
6669 if (FRAME_WINDOW_P (f))
6670 set_frame_menubar (f, 0, 0);
6671 else
6672 /* On a terminal screen, the menu bar is an ordinary screen
6673 line, and this makes it get updated. */
6674 w->update_mode_line = Qt;
6675#else /* ! (USE_X_TOOLKIT || HAVE_NTGUI) */
6676 /* In the non-toolkit version, the menu bar is an ordinary screen
6677 line, and this makes it get updated. */
6678 w->update_mode_line = Qt;
6679#endif /* ! (USE_X_TOOLKIT || HAVE_NTGUI) */
6680
6681 unbind_to (count, Qnil);
6682 set_buffer_internal_1 (prev);
6683 }
6684 }
6685}
6686
6687
6688\f
6689/***********************************************************************
e037b9ec 6690 Tool-bars
5f5c8ee5
GM
6691 ***********************************************************************/
6692
6693#ifdef HAVE_WINDOW_SYSTEM
6694
e037b9ec 6695/* Update the tool-bar item list for frame F. This has to be done
5f5c8ee5
GM
6696 before we start to fill in any display lines. Called from
6697 prepare_menu_bars. If SAVE_MATCH_DATA is non-zero, we must save
6698 and restore it here. */
6699
6700static void
e037b9ec 6701update_tool_bar (f, save_match_data)
5f5c8ee5
GM
6702 struct frame *f;
6703 int save_match_data;
6704{
e037b9ec
GM
6705 if (WINDOWP (f->tool_bar_window)
6706 && XFASTINT (XWINDOW (f->tool_bar_window)->height) > 0)
5f5c8ee5
GM
6707 {
6708 Lisp_Object window;
6709 struct window *w;
6710
6711 window = FRAME_SELECTED_WINDOW (f);
6712 w = XWINDOW (window);
6713
6714 /* If the user has switched buffers or windows, we need to
6715 recompute to reflect the new bindings. But we'll
6716 recompute when update_mode_lines is set too; that means
6717 that people can use force-mode-line-update to request
6718 that the menu bar be recomputed. The adverse effect on
6719 the rest of the redisplay algorithm is about the same as
6720 windows_or_buffers_changed anyway. */
6721 if (windows_or_buffers_changed
6722 || !NILP (w->update_mode_line)
6723 || ((BUF_SAVE_MODIFF (XBUFFER (w->buffer))
6724 < BUF_MODIFF (XBUFFER (w->buffer)))
6725 != !NILP (w->last_had_star))
6726 || ((!NILP (Vtransient_mark_mode)
6727 && !NILP (XBUFFER (w->buffer)->mark_active))
6728 != !NILP (w->region_showing)))
6729 {
6730 struct buffer *prev = current_buffer;
6731 int count = specpdl_ptr - specpdl;
a2889657 6732
5f5c8ee5
GM
6733 /* Set current_buffer to the buffer of the selected
6734 window of the frame, so that we get the right local
6735 keymaps. */
6736 set_buffer_internal_1 (XBUFFER (w->buffer));
1f40cad2 6737
5f5c8ee5
GM
6738 /* Save match data, if we must. */
6739 if (save_match_data)
6740 record_unwind_protect (Fset_match_data, Fmatch_data (Qnil, Qnil));
6741
6742 /* Make sure that we don't accidentally use bogus keymaps. */
6743 if (NILP (Voverriding_local_map_menu_flag))
6744 {
6745 specbind (Qoverriding_terminal_local_map, Qnil);
6746 specbind (Qoverriding_local_map, Qnil);
1f40cad2 6747 }
1f40cad2 6748
e037b9ec
GM
6749 /* Build desired tool-bar items from keymaps. */
6750 f->desired_tool_bar_items
6751 = tool_bar_items (f->desired_tool_bar_items,
6752 &f->n_desired_tool_bar_items);
5f5c8ee5 6753
e037b9ec 6754 /* Redisplay the tool-bar in case we changed it. */
5f5c8ee5
GM
6755 w->update_mode_line = Qt;
6756
6757 unbind_to (count, Qnil);
6758 set_buffer_internal_1 (prev);
81d478f3 6759 }
a2889657
JB
6760 }
6761}
6762
6c4429a5 6763
e037b9ec
GM
6764/* Set F->desired_tool_bar_string to a Lisp string representing frame
6765 F's desired tool-bar contents. F->desired_tool_bar_items must have
5f5c8ee5
GM
6766 been set up previously by calling prepare_menu_bars. */
6767
a2889657 6768static void
e037b9ec 6769build_desired_tool_bar_string (f)
5f5c8ee5 6770 struct frame *f;
a2889657 6771{
5f5c8ee5
GM
6772 int i, size, size_needed, string_idx;
6773 struct gcpro gcpro1, gcpro2, gcpro3;
6774 Lisp_Object image, plist, props;
a2889657 6775
5f5c8ee5
GM
6776 image = plist = props = Qnil;
6777 GCPRO3 (image, plist, props);
a2889657 6778
e037b9ec 6779 /* Prepare F->desired_tool_bar_string. If we can reuse it, do so.
5f5c8ee5
GM
6780 Otherwise, make a new string. */
6781
6782 /* The size of the string we might be able to reuse. */
e037b9ec
GM
6783 size = (STRINGP (f->desired_tool_bar_string)
6784 ? XSTRING (f->desired_tool_bar_string)->size
5f5c8ee5
GM
6785 : 0);
6786
6787 /* Each image in the string we build is preceded by a space,
6788 and there is a space at the end. */
e037b9ec 6789 size_needed = f->n_desired_tool_bar_items + 1;
5f5c8ee5 6790
e037b9ec 6791 /* Reuse f->desired_tool_bar_string, if possible. */
5f5c8ee5 6792 if (size < size_needed)
6fc556fd
KR
6793 f->desired_tool_bar_string = Fmake_string (make_number (size_needed),
6794 make_number (' '));
5f5c8ee5
GM
6795 else
6796 {
6797 props = list4 (Qdisplay, Qnil, Qmenu_item, Qnil);
6798 Fremove_text_properties (make_number (0), make_number (size),
e037b9ec 6799 props, f->desired_tool_bar_string);
5f5c8ee5 6800 }
a2889657 6801
5f5c8ee5 6802 /* Put a `display' property on the string for the images to display,
e037b9ec
GM
6803 put a `menu_item' property on tool-bar items with a value that
6804 is the index of the item in F's tool-bar item vector. */
5f5c8ee5 6805 for (i = 0, string_idx = 0;
e037b9ec 6806 i < f->n_desired_tool_bar_items;
5f5c8ee5 6807 ++i, string_idx += 1)
a2889657 6808 {
5f5c8ee5 6809#define PROP(IDX) \
e037b9ec
GM
6810 (XVECTOR (f->desired_tool_bar_items) \
6811 ->contents[i * TOOL_BAR_ITEM_NSLOTS + (IDX)])
5f5c8ee5 6812
e037b9ec
GM
6813 int enabled_p = !NILP (PROP (TOOL_BAR_ITEM_ENABLED_P));
6814 int selected_p = !NILP (PROP (TOOL_BAR_ITEM_SELECTED_P));
5f5c8ee5
GM
6815 int margin, relief;
6816 extern Lisp_Object QCrelief, QCmargin, QCalgorithm, Qimage;
6817 extern Lisp_Object Qlaplace;
6818
6819 /* If image is a vector, choose the image according to the
6820 button state. */
e037b9ec 6821 image = PROP (TOOL_BAR_ITEM_IMAGES);
5f5c8ee5
GM
6822 if (VECTORP (image))
6823 {
e037b9ec 6824 enum tool_bar_item_image idx;
5f5c8ee5
GM
6825
6826 if (enabled_p)
6827 idx = (selected_p
e037b9ec
GM
6828 ? TOOL_BAR_IMAGE_ENABLED_SELECTED
6829 : TOOL_BAR_IMAGE_ENABLED_DESELECTED);
5f5c8ee5
GM
6830 else
6831 idx = (selected_p
e037b9ec
GM
6832 ? TOOL_BAR_IMAGE_DISABLED_SELECTED
6833 : TOOL_BAR_IMAGE_DISABLED_DESELECTED);
5f5c8ee5
GM
6834
6835 xassert (XVECTOR (image)->size >= idx);
6836 image = XVECTOR (image)->contents[idx];
6837 }
6838
6839 /* Ignore invalid image specifications. */
6840 if (!valid_image_p (image))
6841 continue;
6842
e037b9ec 6843 /* Display the tool-bar button pressed, or depressed. */
5f5c8ee5
GM
6844 plist = Fcopy_sequence (XCDR (image));
6845
6846 /* Compute margin and relief to draw. */
e037b9ec
GM
6847 relief = tool_bar_button_relief > 0 ? tool_bar_button_relief : 3;
6848 margin = relief + max (0, tool_bar_button_margin);
5f5c8ee5 6849
e037b9ec 6850 if (auto_raise_tool_bar_buttons_p)
5f5c8ee5
GM
6851 {
6852 /* Add a `:relief' property to the image spec if the item is
6853 selected. */
6854 if (selected_p)
6855 {
6856 plist = Fplist_put (plist, QCrelief, make_number (-relief));
6857 margin -= relief;
6858 }
6859 }
6860 else
6861 {
6862 /* If image is selected, display it pressed, i.e. with a
6863 negative relief. If it's not selected, display it with a
6864 raised relief. */
6865 plist = Fplist_put (plist, QCrelief,
6866 (selected_p
6867 ? make_number (-relief)
6868 : make_number (relief)));
6869 margin -= relief;
6870 }
6871
6872 /* Put a margin around the image. */
6873 if (margin)
6874 plist = Fplist_put (plist, QCmargin, make_number (margin));
6875
6876 /* If button is not enabled, make the image appear disabled by
6877 applying an appropriate algorithm to it. */
6878 if (!enabled_p)
6879 plist = Fplist_put (plist, QCalgorithm, Qlaplace);
6880
6881 /* Put a `display' text property on the string for the image to
6882 display. Put a `menu-item' property on the string that gives
e037b9ec 6883 the start of this item's properties in the tool-bar items
5f5c8ee5
GM
6884 vector. */
6885 image = Fcons (Qimage, plist);
6886 props = list4 (Qdisplay, image,
e037b9ec 6887 Qmenu_item, make_number (i * TOOL_BAR_ITEM_NSLOTS)),
5f5c8ee5
GM
6888 Fadd_text_properties (make_number (string_idx),
6889 make_number (string_idx + 1),
e037b9ec 6890 props, f->desired_tool_bar_string);
5f5c8ee5 6891#undef PROP
a2889657
JB
6892 }
6893
5f5c8ee5
GM
6894 UNGCPRO;
6895}
6896
6897
e037b9ec 6898/* Display one line of the tool-bar of frame IT->f. */
5f5c8ee5
GM
6899
6900static void
e037b9ec 6901display_tool_bar_line (it)
5f5c8ee5
GM
6902 struct it *it;
6903{
6904 struct glyph_row *row = it->glyph_row;
6905 int max_x = it->last_visible_x;
6906 struct glyph *last;
6907
6908 prepare_desired_row (row);
6909 row->y = it->current_y;
6910
6911 while (it->current_x < max_x)
a2889657 6912 {
5f5c8ee5 6913 int x_before, x, n_glyphs_before, i, nglyphs;
a2f016e3 6914
5f5c8ee5
GM
6915 /* Get the next display element. */
6916 if (!get_next_display_element (it))
6917 break;
73af359d 6918
5f5c8ee5
GM
6919 /* Produce glyphs. */
6920 x_before = it->current_x;
6921 n_glyphs_before = it->glyph_row->used[TEXT_AREA];
6922 PRODUCE_GLYPHS (it);
daa37602 6923
5f5c8ee5
GM
6924 nglyphs = it->glyph_row->used[TEXT_AREA] - n_glyphs_before;
6925 i = 0;
6926 x = x_before;
6927 while (i < nglyphs)
6928 {
6929 struct glyph *glyph = row->glyphs[TEXT_AREA] + n_glyphs_before + i;
6930
6931 if (x + glyph->pixel_width > max_x)
6932 {
6933 /* Glyph doesn't fit on line. */
6934 it->glyph_row->used[TEXT_AREA] = n_glyphs_before + i;
6935 it->current_x = x;
6936 goto out;
6937 }
daa37602 6938
5f5c8ee5
GM
6939 ++it->hpos;
6940 x += glyph->pixel_width;
6941 ++i;
6942 }
6943
6944 /* Stop at line ends. */
6945 if (ITERATOR_AT_END_OF_LINE_P (it))
6946 break;
6947
6948 set_iterator_to_next (it);
a2889657 6949 }
a2889657 6950
5f5c8ee5 6951 out:;
a2889657 6952
5f5c8ee5
GM
6953 row->displays_text_p = row->used[TEXT_AREA] != 0;
6954 extend_face_to_end_of_line (it);
6955 last = row->glyphs[TEXT_AREA] + row->used[TEXT_AREA] - 1;
6956 last->right_box_line_p = 1;
6957 compute_line_metrics (it);
6958
e037b9ec 6959 /* If line is empty, make it occupy the rest of the tool-bar. */
5f5c8ee5
GM
6960 if (!row->displays_text_p)
6961 {
312246d1
GM
6962 row->height = row->phys_height = it->last_visible_y - row->y;
6963 row->ascent = row->phys_ascent = 0;
5f5c8ee5
GM
6964 }
6965
6966 row->full_width_p = 1;
6967 row->continued_p = 0;
6968 row->truncated_on_left_p = 0;
6969 row->truncated_on_right_p = 0;
6970
6971 it->current_x = it->hpos = 0;
6972 it->current_y += row->height;
6973 ++it->vpos;
6974 ++it->glyph_row;
a2889657 6975}
96a410bc 6976
5f5c8ee5 6977
e037b9ec 6978/* Value is the number of screen lines needed to make all tool-bar
5f5c8ee5 6979 items of frame F visible. */
96a410bc 6980
d39b6696 6981static int
e037b9ec 6982tool_bar_lines_needed (f)
5f5c8ee5 6983 struct frame *f;
d39b6696 6984{
e037b9ec 6985 struct window *w = XWINDOW (f->tool_bar_window);
5f5c8ee5
GM
6986 struct it it;
6987
e037b9ec
GM
6988 /* Initialize an iterator for iteration over
6989 F->desired_tool_bar_string in the tool-bar window of frame F. */
6990 init_iterator (&it, w, -1, -1, w->desired_matrix->rows, TOOL_BAR_FACE_ID);
5f5c8ee5
GM
6991 it.first_visible_x = 0;
6992 it.last_visible_x = FRAME_WINDOW_WIDTH (f) * CANON_X_UNIT (f);
e037b9ec 6993 reseat_to_string (&it, NULL, f->desired_tool_bar_string, 0, 0, 0, -1);
5f5c8ee5
GM
6994
6995 while (!ITERATOR_AT_END_P (&it))
6996 {
6997 it.glyph_row = w->desired_matrix->rows;
6998 clear_glyph_row (it.glyph_row);
e037b9ec 6999 display_tool_bar_line (&it);
5f5c8ee5
GM
7000 }
7001
7002 return (it.current_y + CANON_Y_UNIT (f) - 1) / CANON_Y_UNIT (f);
d39b6696 7003}
96a410bc 7004
5f5c8ee5 7005
e037b9ec 7006/* Display the tool-bar of frame F. Value is non-zero if tool-bar's
5f5c8ee5
GM
7007 height should be changed. */
7008
7009static int
e037b9ec 7010redisplay_tool_bar (f)
5f5c8ee5 7011 struct frame *f;
96a410bc 7012{
5f5c8ee5
GM
7013 struct window *w;
7014 struct it it;
7015 struct glyph_row *row;
7016 int change_height_p = 0;
7017
e037b9ec
GM
7018 /* If frame hasn't a tool-bar window or if it is zero-height, don't
7019 do anything. This means you must start with tool-bar-lines
5f5c8ee5 7020 non-zero to get the auto-sizing effect. Or in other words, you
e037b9ec
GM
7021 can turn off tool-bars by specifying tool-bar-lines zero. */
7022 if (!WINDOWP (f->tool_bar_window)
7023 || (w = XWINDOW (f->tool_bar_window),
5f5c8ee5
GM
7024 XFASTINT (w->height) == 0))
7025 return 0;
96a410bc 7026
e037b9ec
GM
7027 /* Set up an iterator for the tool-bar window. */
7028 init_iterator (&it, w, -1, -1, w->desired_matrix->rows, TOOL_BAR_FACE_ID);
5f5c8ee5
GM
7029 it.first_visible_x = 0;
7030 it.last_visible_x = FRAME_WINDOW_WIDTH (f) * CANON_X_UNIT (f);
7031 row = it.glyph_row;
3450d04c 7032
e037b9ec
GM
7033 /* Build a string that represents the contents of the tool-bar. */
7034 build_desired_tool_bar_string (f);
7035 reseat_to_string (&it, NULL, f->desired_tool_bar_string, 0, 0, 0, -1);
3450d04c 7036
e037b9ec 7037 /* Display as many lines as needed to display all tool-bar items. */
5f5c8ee5 7038 while (it.current_y < it.last_visible_y)
e037b9ec 7039 display_tool_bar_line (&it);
3450d04c 7040
e037b9ec 7041 /* It doesn't make much sense to try scrolling in the tool-bar
5f5c8ee5
GM
7042 window, so don't do it. */
7043 w->desired_matrix->no_scrolling_p = 1;
7044 w->must_be_updated_p = 1;
3450d04c 7045
e037b9ec 7046 if (auto_resize_tool_bars_p)
5f5c8ee5
GM
7047 {
7048 int nlines;
7049
7050 /* If there are blank lines at the end, except for a partially
7051 visible blank line at the end that is smaller than
e037b9ec 7052 CANON_Y_UNIT, change the tool-bar's height. */
5f5c8ee5
GM
7053 row = it.glyph_row - 1;
7054 if (!row->displays_text_p
7055 && row->height >= CANON_Y_UNIT (f))
7056 change_height_p = 1;
7057
e037b9ec
GM
7058 /* If row displays tool-bar items, but is partially visible,
7059 change the tool-bar's height. */
5f5c8ee5
GM
7060 if (row->displays_text_p
7061 && MATRIX_ROW_BOTTOM_Y (row) > it.last_visible_y)
7062 change_height_p = 1;
7063
e037b9ec 7064 /* Resize windows as needed by changing the `tool-bar-lines'
5f5c8ee5
GM
7065 frame parameter. */
7066 if (change_height_p
e037b9ec 7067 && (nlines = tool_bar_lines_needed (f),
5f5c8ee5
GM
7068 nlines != XFASTINT (w->height)))
7069 {
e037b9ec 7070 extern Lisp_Object Qtool_bar_lines;
5f5c8ee5
GM
7071 Lisp_Object frame;
7072
7073 XSETFRAME (frame, f);
7074 clear_glyph_matrix (w->desired_matrix);
7075 Fmodify_frame_parameters (frame,
e037b9ec 7076 Fcons (Fcons (Qtool_bar_lines,
5f5c8ee5
GM
7077 make_number (nlines)),
7078 Qnil));
7079 fonts_changed_p = 1;
7080 }
7081 }
3450d04c 7082
5f5c8ee5 7083 return change_height_p;
96a410bc 7084}
90adcf20 7085
5f5c8ee5 7086
e037b9ec
GM
7087/* Get information about the tool-bar item which is displayed in GLYPH
7088 on frame F. Return in *PROP_IDX the index where tool-bar item
7089 properties start in F->current_tool_bar_items. Value is zero if
7090 GLYPH doesn't display a tool-bar item. */
5f5c8ee5
GM
7091
7092int
e037b9ec 7093tool_bar_item_info (f, glyph, prop_idx)
5f5c8ee5
GM
7094 struct frame *f;
7095 struct glyph *glyph;
7096 int *prop_idx;
90adcf20 7097{
5f5c8ee5
GM
7098 Lisp_Object prop;
7099 int success_p;
7100
7101 /* Get the text property `menu-item' at pos. The value of that
7102 property is the start index of this item's properties in
e037b9ec 7103 F->current_tool_bar_items. */
5f5c8ee5 7104 prop = Fget_text_property (make_number (glyph->charpos),
e037b9ec 7105 Qmenu_item, f->current_tool_bar_string);
5f5c8ee5
GM
7106 if (INTEGERP (prop))
7107 {
7108 *prop_idx = XINT (prop);
7109 success_p = 1;
7110 }
7111 else
7112 success_p = 0;
90adcf20 7113
5f5c8ee5
GM
7114 return success_p;
7115}
7116
7117#endif /* HAVE_WINDOW_SYSTEM */
90adcf20 7118
feb0c42f 7119
5f5c8ee5
GM
7120\f
7121/************************************************************************
7122 Horizontal scrolling
7123 ************************************************************************/
feb0c42f 7124
5f5c8ee5
GM
7125static int hscroll_window_tree P_ ((Lisp_Object));
7126static int hscroll_windows P_ ((Lisp_Object));
feb0c42f 7127
5f5c8ee5
GM
7128/* For all leaf windows in the window tree rooted at WINDOW, set their
7129 hscroll value so that PT is (i) visible in the window, and (ii) so
7130 that it is not within a certain margin at the window's left and
7131 right border. Value is non-zero if any window's hscroll has been
7132 changed. */
7133
7134static int
7135hscroll_window_tree (window)
7136 Lisp_Object window;
7137{
7138 int hscrolled_p = 0;
7139
7140 while (WINDOWP (window))
90adcf20 7141 {
5f5c8ee5
GM
7142 struct window *w = XWINDOW (window);
7143
7144 if (WINDOWP (w->hchild))
7145 hscrolled_p |= hscroll_window_tree (w->hchild);
7146 else if (WINDOWP (w->vchild))
7147 hscrolled_p |= hscroll_window_tree (w->vchild);
7148 else if (w->cursor.vpos >= 0)
7149 {
7150 int hscroll_margin, text_area_x, text_area_y;
7151 int text_area_width, text_area_height;
92a90e89
GM
7152 struct glyph_row *current_cursor_row
7153 = MATRIX_ROW (w->current_matrix, w->cursor.vpos);
7154 struct glyph_row *desired_cursor_row
7155 = MATRIX_ROW (w->desired_matrix, w->cursor.vpos);
7156 struct glyph_row *cursor_row
7157 = (desired_cursor_row->enabled_p
7158 ? desired_cursor_row
7159 : current_cursor_row);
a2725ab2 7160
5f5c8ee5
GM
7161 window_box (w, TEXT_AREA, &text_area_x, &text_area_y,
7162 &text_area_width, &text_area_height);
90adcf20 7163
5f5c8ee5
GM
7164 /* Scroll when cursor is inside this scroll margin. */
7165 hscroll_margin = 5 * CANON_X_UNIT (XFRAME (w->frame));
7166
7167 if ((XFASTINT (w->hscroll)
7168 && w->cursor.x < hscroll_margin)
92a90e89
GM
7169 || (cursor_row->enabled_p
7170 && cursor_row->truncated_on_right_p
5f5c8ee5 7171 && (w->cursor.x > text_area_width - hscroll_margin)))
08b610e4 7172 {
5f5c8ee5
GM
7173 struct it it;
7174 int hscroll;
7175 struct buffer *saved_current_buffer;
7176 int pt;
7177
7178 /* Find point in a display of infinite width. */
7179 saved_current_buffer = current_buffer;
7180 current_buffer = XBUFFER (w->buffer);
7181
7182 if (w == XWINDOW (selected_window))
7183 pt = BUF_PT (current_buffer);
7184 else
08b610e4 7185 {
5f5c8ee5
GM
7186 pt = marker_position (w->pointm);
7187 pt = max (BEGV, pt);
7188 pt = min (ZV, pt);
7189 }
7190
7191 /* Move iterator to pt starting at cursor_row->start in
7192 a line with infinite width. */
7193 init_to_row_start (&it, w, cursor_row);
7194 it.last_visible_x = INFINITY;
7195 move_it_in_display_line_to (&it, pt, -1, MOVE_TO_POS);
7196 current_buffer = saved_current_buffer;
7197
7198 /* Center cursor in window. */
7199 hscroll = (max (0, it.current_x - text_area_width / 2)
7200 / CANON_X_UNIT (it.f));
7201
7202 /* Don't call Fset_window_hscroll if value hasn't
7203 changed because it will prevent redisplay
7204 optimizations. */
7205 if (XFASTINT (w->hscroll) != hscroll)
7206 {
7207 Fset_window_hscroll (window, make_number (hscroll));
7208 hscrolled_p = 1;
08b610e4 7209 }
08b610e4 7210 }
08b610e4 7211 }
a2725ab2 7212
5f5c8ee5 7213 window = w->next;
90adcf20 7214 }
cd6dfed6 7215
5f5c8ee5
GM
7216 /* Value is non-zero if hscroll of any leaf window has been changed. */
7217 return hscrolled_p;
7218}
7219
7220
7221/* Set hscroll so that cursor is visible and not inside horizontal
7222 scroll margins for all windows in the tree rooted at WINDOW. See
7223 also hscroll_window_tree above. Value is non-zero if any window's
7224 hscroll has been changed. If it has, desired matrices on the frame
7225 of WINDOW are cleared. */
7226
7227static int
7228hscroll_windows (window)
7229 Lisp_Object window;
7230{
d475bcb8
GM
7231 int hscrolled_p;
7232
7233 if (automatic_hscrolling_p)
7234 {
7235 hscrolled_p = hscroll_window_tree (window);
7236 if (hscrolled_p)
7237 clear_desired_matrices (XFRAME (WINDOW_FRAME (XWINDOW (window))));
7238 }
7239 else
7240 hscrolled_p = 0;
5f5c8ee5 7241 return hscrolled_p;
90adcf20 7242}
5f5c8ee5
GM
7243
7244
90adcf20 7245\f
5f5c8ee5
GM
7246/************************************************************************
7247 Redisplay
7248 ************************************************************************/
7249
7250/* Variables holding some state of redisplay if GLYPH_DEBUG is defined
7251 to a non-zero value. This is sometimes handy to have in a debugger
7252 session. */
7253
7254#if GLYPH_DEBUG
a2889657 7255
5f5c8ee5
GM
7256/* First and last unchanged row for try_window_id. */
7257
7258int debug_first_unchanged_at_end_vpos;
7259int debug_last_unchanged_at_beg_vpos;
7260
7261/* Delta vpos and y. */
7262
7263int debug_dvpos, debug_dy;
7264
7265/* Delta in characters and bytes for try_window_id. */
7266
7267int debug_delta, debug_delta_bytes;
7268
7269/* Values of window_end_pos and window_end_vpos at the end of
7270 try_window_id. */
7271
7272int debug_end_pos, debug_end_vpos;
7273
7274/* Append a string to W->desired_matrix->method. FMT is a printf
7275 format string. A1...A9 are a supplement for a variable-length
7276 argument list. If trace_redisplay_p is non-zero also printf the
7277 resulting string to stderr. */
7278
7279static void
7280debug_method_add (w, fmt, a1, a2, a3, a4, a5, a6, a7, a8, a9)
7281 struct window *w;
7282 char *fmt;
7283 int a1, a2, a3, a4, a5, a6, a7, a8, a9;
7284{
7285 char buffer[512];
7286 char *method = w->desired_matrix->method;
7287 int len = strlen (method);
7288 int size = sizeof w->desired_matrix->method;
7289 int remaining = size - len - 1;
7290
7291 sprintf (buffer, fmt, a1, a2, a3, a4, a5, a6, a7, a8, a9);
7292 if (len && remaining)
7293 {
7294 method[len] = '|';
7295 --remaining, ++len;
7296 }
7297
7298 strncpy (method + len, buffer, remaining);
7299
7300 if (trace_redisplay_p)
7301 fprintf (stderr, "%p (%s): %s\n",
7302 w,
7303 ((BUFFERP (w->buffer)
7304 && STRINGP (XBUFFER (w->buffer)->name))
7305 ? (char *) XSTRING (XBUFFER (w->buffer)->name)->data
7306 : "no buffer"),
7307 buffer);
7308}
a2889657 7309
5f5c8ee5 7310#endif /* GLYPH_DEBUG */
90adcf20 7311
a2889657 7312
5f5c8ee5
GM
7313/* This counter is used to clear the face cache every once in a while
7314 in redisplay_internal. It is incremented for each redisplay.
7315 Every CLEAR_FACE_CACHE_COUNT full redisplays, the face cache is
7316 cleared. */
0d231165 7317
5f5c8ee5 7318#define CLEAR_FACE_CACHE_COUNT 10000
463f6b91
RS
7319static int clear_face_cache_count;
7320
20de20dc 7321/* Record the previous terminal frame we displayed. */
5f5c8ee5
GM
7322
7323static struct frame *previous_terminal_frame;
7324
7325/* Non-zero while redisplay_internal is in progress. */
7326
7327int redisplaying_p;
7328
7329
7330/* Value is non-zero if all changes in window W, which displays
7331 current_buffer, are in the text between START and END. START is a
7332 buffer position, END is given as a distance from Z. Used in
7333 redisplay_internal for display optimization. */
7334
7335static INLINE int
7336text_outside_line_unchanged_p (w, start, end)
7337 struct window *w;
7338 int start, end;
7339{
7340 int unchanged_p = 1;
7341
7342 /* If text or overlays have changed, see where. */
7343 if (XFASTINT (w->last_modified) < MODIFF
7344 || XFASTINT (w->last_overlay_modified) < OVERLAY_MODIFF)
7345 {
7346 /* Gap in the line? */
7347 if (GPT < start || Z - GPT < end)
7348 unchanged_p = 0;
7349
7350 /* Changes start in front of the line, or end after it? */
7351 if (unchanged_p
9142dd5b
GM
7352 && (BEG_UNCHANGED < start - 1
7353 || END_UNCHANGED < end))
5f5c8ee5
GM
7354 unchanged_p = 0;
7355
7356 /* If selective display, can't optimize if changes start at the
7357 beginning of the line. */
7358 if (unchanged_p
7359 && INTEGERP (current_buffer->selective_display)
7360 && XINT (current_buffer->selective_display) > 0
9142dd5b 7361 && (BEG_UNCHANGED < start || GPT <= start))
5f5c8ee5
GM
7362 unchanged_p = 0;
7363 }
7364
7365 return unchanged_p;
7366}
7367
7368
7369/* Do a frame update, taking possible shortcuts into account. This is
7370 the main external entry point for redisplay.
7371
7372 If the last redisplay displayed an echo area message and that message
7373 is no longer requested, we clear the echo area or bring back the
7374 mini-buffer if that is in use. */
20de20dc 7375
a2889657
JB
7376void
7377redisplay ()
e9874cee
RS
7378{
7379 redisplay_internal (0);
7380}
7381
260a86a0
KH
7382/* Return 1 if point moved out of or into a composition. Otherwise
7383 return 0. PREV_BUF and PREV_PT are the last point buffer and
7384 position. BUF and PT are the current point buffer and position. */
7385
7386int
7387check_point_in_composition (prev_buf, prev_pt, buf, pt)
7388 struct buffer *prev_buf, *buf;
7389 int prev_pt, pt;
7390{
7391 int start, end;
7392 Lisp_Object prop;
7393 Lisp_Object buffer;
7394
7395 XSETBUFFER (buffer, buf);
7396 /* Check a composition at the last point if point moved within the
7397 same buffer. */
7398 if (prev_buf == buf)
7399 {
7400 if (prev_pt == pt)
7401 /* Point didn't move. */
7402 return 0;
7403
7404 if (prev_pt > BUF_BEGV (buf) && prev_pt < BUF_ZV (buf)
7405 && find_composition (prev_pt, -1, &start, &end, &prop, buffer)
7406 && COMPOSITION_VALID_P (start, end, prop)
7407 && start < prev_pt && end > prev_pt)
7408 /* The last point was within the composition. Return 1 iff
7409 point moved out of the composition. */
7410 return (pt <= start || pt >= end);
7411 }
7412
7413 /* Check a composition at the current point. */
7414 return (pt > BUF_BEGV (buf) && pt < BUF_ZV (buf)
7415 && find_composition (pt, -1, &start, &end, &prop, buffer)
7416 && COMPOSITION_VALID_P (start, end, prop)
7417 && start < pt && end > pt);
7418}
5f5c8ee5 7419
9142dd5b
GM
7420/* Reconsider the setting of B->clip_changed which is displayed
7421 in window W. */
7422
7423static INLINE void
7424reconsider_clip_changes (w, b)
7425 struct window *w;
7426 struct buffer *b;
7427{
7428 if (b->prevent_redisplay_optimizations_p)
7429 b->clip_changed = 1;
7430 else if (b->clip_changed
7431 && !NILP (w->window_end_valid)
7432 && w->current_matrix->buffer == b
7433 && w->current_matrix->zv == BUF_ZV (b)
7434 && w->current_matrix->begv == BUF_BEGV (b))
7435 b->clip_changed = 0;
260a86a0
KH
7436
7437 /* If display wasn't paused, and W is not a tool bar window, see if
7438 point has been moved into or out of a composition. In that case,
7439 we set b->clip_changed to 1 to force updating the screen. If
7440 b->clip_changed has already been set to 1, we can skip this
7441 check. */
7442 if (!b->clip_changed
7443 && BUFFERP (w->buffer) && !NILP (w->window_end_valid))
7444 {
7445 int pt;
7446
7447 if (w == XWINDOW (selected_window))
7448 pt = BUF_PT (current_buffer);
7449 else
7450 pt = marker_position (w->pointm);
7451
7452 if ((w->current_matrix->buffer != XBUFFER (w->buffer)
6fc556fd 7453 || pt != XINT (w->last_point))
260a86a0 7454 && check_point_in_composition (w->current_matrix->buffer,
6fc556fd 7455 XINT (w->last_point),
260a86a0
KH
7456 XBUFFER (w->buffer), pt))
7457 b->clip_changed = 1;
7458 }
9142dd5b
GM
7459}
7460
7461
5f5c8ee5
GM
7462/* If PRESERVE_ECHO_AREA is nonzero, it means this redisplay is not in
7463 response to any user action; therefore, we should preserve the echo
7464 area. (Actually, our caller does that job.) Perhaps in the future
7465 avoid recentering windows if it is not necessary; currently that
7466 causes some problems. */
e9874cee
RS
7467
7468static void
7469redisplay_internal (preserve_echo_area)
7470 int preserve_echo_area;
a2889657 7471{
5f5c8ee5
GM
7472 struct window *w = XWINDOW (selected_window);
7473 struct frame *f = XFRAME (w->frame);
7474 int pause;
a2889657 7475 int must_finish = 0;
5f5c8ee5 7476 struct text_pos tlbufpos, tlendpos;
89819bdd 7477 int number_of_visible_frames;
28514cd9 7478 int count;
886bd6f2 7479 struct frame *sf = SELECTED_FRAME ();
a2889657 7480
5f5c8ee5
GM
7481 /* Non-zero means redisplay has to consider all windows on all
7482 frames. Zero means, only selected_window is considered. */
7483 int consider_all_windows_p;
7484
7485 TRACE ((stderr, "redisplay_internal %d\n", redisplaying_p));
7486
7487 /* No redisplay if running in batch mode or frame is not yet fully
7488 initialized, or redisplay is explicitly turned off by setting
7489 Vinhibit_redisplay. */
7490 if (noninteractive
7491 || !NILP (Vinhibit_redisplay)
7492 || !f->glyphs_initialized_p)
a2889657
JB
7493 return;
7494
5f5c8ee5
GM
7495 /* The flag redisplay_performed_directly_p is set by
7496 direct_output_for_insert when it already did the whole screen
7497 update necessary. */
7498 if (redisplay_performed_directly_p)
7499 {
7500 redisplay_performed_directly_p = 0;
7501 if (!hscroll_windows (selected_window))
7502 return;
7503 }
7504
15f0cf78
RS
7505#ifdef USE_X_TOOLKIT
7506 if (popup_activated ())
7507 return;
7508#endif
7509
28514cd9 7510 /* I don't think this happens but let's be paranoid. */
5f5c8ee5 7511 if (redisplaying_p)
735c094c
KH
7512 return;
7513
28514cd9
GM
7514 /* Record a function that resets redisplaying_p to its old value
7515 when we leave this function. */
7516 count = specpdl_ptr - specpdl;
7517 record_unwind_protect (unwind_redisplay, make_number (redisplaying_p));
7518 ++redisplaying_p;
7519
8b32d885
RS
7520 retry:
7521
9142dd5b
GM
7522 reconsider_clip_changes (w, current_buffer);
7523
5f5c8ee5
GM
7524 /* If new fonts have been loaded that make a glyph matrix adjustment
7525 necessary, do it. */
7526 if (fonts_changed_p)
7527 {
7528 adjust_glyphs (NULL);
7529 ++windows_or_buffers_changed;
7530 fonts_changed_p = 0;
7531 }
7532
886bd6f2
GM
7533 if (! FRAME_WINDOW_P (sf)
7534 && previous_terminal_frame != sf)
20de20dc 7535 {
5f5c8ee5
GM
7536 /* Since frames on an ASCII terminal share the same display
7537 area, displaying a different frame means redisplay the whole
7538 thing. */
20de20dc 7539 windows_or_buffers_changed++;
886bd6f2
GM
7540 SET_FRAME_GARBAGED (sf);
7541 XSETFRAME (Vterminal_frame, sf);
20de20dc 7542 }
886bd6f2 7543 previous_terminal_frame = sf;
20de20dc 7544
5f5c8ee5
GM
7545 /* Set the visible flags for all frames. Do this before checking
7546 for resized or garbaged frames; they want to know if their frames
7547 are visible. See the comment in frame.h for
7548 FRAME_SAMPLE_VISIBILITY. */
d724d989 7549 {
35f56f96 7550 Lisp_Object tail, frame;
d724d989 7551
89819bdd
RS
7552 number_of_visible_frames = 0;
7553
35f56f96 7554 FOR_EACH_FRAME (tail, frame)
f82aff7c 7555 {
5f5c8ee5
GM
7556 struct frame *f = XFRAME (frame);
7557
7558 FRAME_SAMPLE_VISIBILITY (f);
7559 if (FRAME_VISIBLE_P (f))
7560 ++number_of_visible_frames;
7561 clear_desired_matrices (f);
f82aff7c 7562 }
d724d989
JB
7563 }
7564
44fa5b1e 7565 /* Notice any pending interrupt request to change frame size. */
c6e89d6c 7566 do_pending_window_change (1);
a2889657 7567
5f5c8ee5 7568 /* Clear frames marked as garbaged. */
44fa5b1e 7569 if (frame_garbaged)
c6e89d6c 7570 clear_garbaged_frames ();
a2889657 7571
e037b9ec 7572 /* Build menubar and tool-bar items. */
f82aff7c
RS
7573 prepare_menu_bars ();
7574
28995e67 7575 if (windows_or_buffers_changed)
a2889657
JB
7576 update_mode_lines++;
7577
538f13d4
RS
7578 /* Detect case that we need to write or remove a star in the mode line. */
7579 if ((SAVE_MODIFF < MODIFF) != !NILP (w->last_had_star))
a2889657
JB
7580 {
7581 w->update_mode_line = Qt;
7582 if (buffer_shared > 1)
7583 update_mode_lines++;
7584 }
7585
5f5c8ee5 7586 /* If %c is in the mode line, update it if needed. */
28995e67
RS
7587 if (!NILP (w->column_number_displayed)
7588 /* This alternative quickly identifies a common case
7589 where no change is needed. */
7590 && !(PT == XFASTINT (w->last_point)
8850a573
RS
7591 && XFASTINT (w->last_modified) >= MODIFF
7592 && XFASTINT (w->last_overlay_modified) >= OVERLAY_MODIFF)
28995e67
RS
7593 && XFASTINT (w->column_number_displayed) != current_column ())
7594 w->update_mode_line = Qt;
7595
44fa5b1e 7596 FRAME_SCROLL_BOTTOM_VPOS (XFRAME (w->frame)) = -1;
a2889657 7597
5f5c8ee5
GM
7598 /* The variable buffer_shared is set in redisplay_window and
7599 indicates that we redisplay a buffer in different windows. See
7600 there. */
7601 consider_all_windows_p = update_mode_lines || buffer_shared > 1;
a2889657
JB
7602
7603 /* If specs for an arrow have changed, do thorough redisplay
7604 to ensure we remove any arrow that should no longer exist. */
d45de95b 7605 if (! EQ (COERCE_MARKER (Voverlay_arrow_position), last_arrow_position)
ded34426 7606 || ! EQ (Voverlay_arrow_string, last_arrow_string))
5f5c8ee5 7607 consider_all_windows_p = windows_or_buffers_changed = 1;
a2889657 7608
90adcf20
RS
7609 /* Normally the message* functions will have already displayed and
7610 updated the echo area, but the frame may have been trashed, or
7611 the update may have been preempted, so display the echo area
c6e89d6c
GM
7612 again here. Checking both message buffers captures the case that
7613 the echo area should be cleared. */
7614 if (!NILP (echo_area_buffer[0]) || !NILP (echo_area_buffer[1]))
90adcf20 7615 {
c6e89d6c 7616 int window_height_changed_p = echo_area_display (0);
90adcf20 7617 must_finish = 1;
dd2eb166 7618
c6e89d6c
GM
7619 if (fonts_changed_p)
7620 goto retry;
7621 else if (window_height_changed_p)
7622 {
7623 consider_all_windows_p = 1;
7624 ++update_mode_lines;
7625 ++windows_or_buffers_changed;
9142dd5b
GM
7626
7627 /* If window configuration was changed, frames may have been
7628 marked garbaged. Clear them or we will experience
7629 surprises wrt scrolling. */
7630 if (frame_garbaged)
7631 clear_garbaged_frames ();
c6e89d6c 7632 }
90adcf20 7633 }
dd2eb166
GM
7634 else if (w == XWINDOW (minibuf_window)
7635 && (current_buffer->clip_changed
7636 || XFASTINT (w->last_modified) < MODIFF
7637 || XFASTINT (w->last_overlay_modified) < OVERLAY_MODIFF)
92a90e89 7638 && resize_mini_window (w, 0))
c6e89d6c
GM
7639 {
7640 /* Resized active mini-window to fit the size of what it is
dd2eb166
GM
7641 showing if its contents might have changed. */
7642 must_finish = 1;
7643 consider_all_windows_p = 1;
c6e89d6c 7644 ++windows_or_buffers_changed;
dd2eb166 7645 ++update_mode_lines;
9142dd5b
GM
7646
7647 /* If window configuration was changed, frames may have been
7648 marked garbaged. Clear them or we will experience
7649 surprises wrt scrolling. */
7650 if (frame_garbaged)
7651 clear_garbaged_frames ();
c6e89d6c
GM
7652 }
7653
90adcf20 7654
5f5c8ee5
GM
7655 /* If showing the region, and mark has changed, we must redisplay
7656 the whole window. The assignment to this_line_start_pos prevents
7657 the optimization directly below this if-statement. */
bd66d1ba
RS
7658 if (((!NILP (Vtransient_mark_mode)
7659 && !NILP (XBUFFER (w->buffer)->mark_active))
7660 != !NILP (w->region_showing))
82d04750
JB
7661 || (!NILP (w->region_showing)
7662 && !EQ (w->region_showing,
7663 Fmarker_position (XBUFFER (w->buffer)->mark))))
5f5c8ee5
GM
7664 CHARPOS (this_line_start_pos) = 0;
7665
7666 /* Optimize the case that only the line containing the cursor in the
7667 selected window has changed. Variables starting with this_ are
7668 set in display_line and record information about the line
7669 containing the cursor. */
7670 tlbufpos = this_line_start_pos;
7671 tlendpos = this_line_end_pos;
7672 if (!consider_all_windows_p
7673 && CHARPOS (tlbufpos) > 0
7674 && NILP (w->update_mode_line)
73af359d 7675 && !current_buffer->clip_changed
44fa5b1e 7676 && FRAME_VISIBLE_P (XFRAME (w->frame))
f21ef775 7677 && !FRAME_OBSCURED_P (XFRAME (w->frame))
5f5c8ee5 7678 /* Make sure recorded data applies to current buffer, etc. */
a2889657
JB
7679 && this_line_buffer == current_buffer
7680 && current_buffer == XBUFFER (w->buffer)
265a9e55 7681 && NILP (w->force_start)
5f5c8ee5
GM
7682 /* Point must be on the line that we have info recorded about. */
7683 && PT >= CHARPOS (tlbufpos)
7684 && PT <= Z - CHARPOS (tlendpos)
a2889657
JB
7685 /* All text outside that line, including its final newline,
7686 must be unchanged */
5f5c8ee5
GM
7687 && text_outside_line_unchanged_p (w, CHARPOS (tlbufpos),
7688 CHARPOS (tlendpos)))
7689 {
7690 if (CHARPOS (tlbufpos) > BEGV
7691 && FETCH_BYTE (BYTEPOS (tlbufpos) - 1) != '\n'
7692 && (CHARPOS (tlbufpos) == ZV
7693 || FETCH_BYTE (BYTEPOS (tlbufpos)) == '\n'))
a2889657
JB
7694 /* Former continuation line has disappeared by becoming empty */
7695 goto cancel;
7696 else if (XFASTINT (w->last_modified) < MODIFF
8850a573 7697 || XFASTINT (w->last_overlay_modified) < OVERLAY_MODIFF
a2889657
JB
7698 || MINI_WINDOW_P (w))
7699 {
1c9241f5
KH
7700 /* We have to handle the case of continuation around a
7701 wide-column character (See the comment in indent.c around
7702 line 885).
7703
7704 For instance, in the following case:
7705
7706 -------- Insert --------
7707 K_A_N_\\ `a' K_A_N_a\ `X_' are wide-column chars.
7708 J_I_ ==> J_I_ `^^' are cursors.
7709 ^^ ^^
7710 -------- --------
7711
7712 As we have to redraw the line above, we should goto cancel. */
7713
5f5c8ee5
GM
7714 struct it it;
7715 int line_height_before = this_line_pixel_height;
7716
7717 /* Note that start_display will handle the case that the
7718 line starting at tlbufpos is a continuation lines. */
7719 start_display (&it, w, tlbufpos);
7720
7721 /* Implementation note: It this still necessary? */
7722 if (it.current_x != this_line_start_x)
1c9241f5
KH
7723 goto cancel;
7724
5f5c8ee5
GM
7725 TRACE ((stderr, "trying display optimization 1\n"));
7726 w->cursor.vpos = -1;
a2889657 7727 overlay_arrow_seen = 0;
5f5c8ee5
GM
7728 it.vpos = this_line_vpos;
7729 it.current_y = this_line_y;
7730 it.glyph_row = MATRIX_ROW (w->desired_matrix, this_line_vpos);
7731 display_line (&it);
7732
a2889657 7733 /* If line contains point, is not continued,
5f5c8ee5
GM
7734 and ends at same distance from eob as before, we win */
7735 if (w->cursor.vpos >= 0
7736 /* Line is not continued, otherwise this_line_start_pos
7737 would have been set to 0 in display_line. */
7738 && CHARPOS (this_line_start_pos)
7739 /* Line ends as before. */
7740 && CHARPOS (this_line_end_pos) == CHARPOS (tlendpos)
7741 /* Line has same height as before. Otherwise other lines
7742 would have to be shifted up or down. */
7743 && this_line_pixel_height == line_height_before)
a2889657 7744 {
5f5c8ee5
GM
7745 /* If this is not the window's last line, we must adjust
7746 the charstarts of the lines below. */
7747 if (it.current_y < it.last_visible_y)
7748 {
7749 struct glyph_row *row
7750 = MATRIX_ROW (w->current_matrix, this_line_vpos + 1);
7751 int delta, delta_bytes;
7752
7753 if (Z - CHARPOS (tlendpos) == ZV)
7754 {
7755 /* This line ends at end of (accessible part of)
7756 buffer. There is no newline to count. */
7757 delta = (Z
7758 - CHARPOS (tlendpos)
7759 - MATRIX_ROW_START_CHARPOS (row));
7760 delta_bytes = (Z_BYTE
7761 - BYTEPOS (tlendpos)
7762 - MATRIX_ROW_START_BYTEPOS (row));
7763 }
7764 else
7765 {
7766 /* This line ends in a newline. Must take
7767 account of the newline and the rest of the
7768 text that follows. */
7769 delta = (Z
7770 - CHARPOS (tlendpos)
7771 - MATRIX_ROW_START_CHARPOS (row));
7772 delta_bytes = (Z_BYTE
7773 - BYTEPOS (tlendpos)
7774 - MATRIX_ROW_START_BYTEPOS (row));
7775 }
7776
f2d86d7a
GM
7777 increment_matrix_positions (w->current_matrix,
7778 this_line_vpos + 1,
7779 w->current_matrix->nrows,
7780 delta, delta_bytes);
85bcef6c 7781 }
46db8486 7782
5f5c8ee5
GM
7783 /* If this row displays text now but previously didn't,
7784 or vice versa, w->window_end_vpos may have to be
7785 adjusted. */
7786 if ((it.glyph_row - 1)->displays_text_p)
7787 {
7788 if (XFASTINT (w->window_end_vpos) < this_line_vpos)
7789 XSETINT (w->window_end_vpos, this_line_vpos);
7790 }
7791 else if (XFASTINT (w->window_end_vpos) == this_line_vpos
7792 && this_line_vpos > 0)
7793 XSETINT (w->window_end_vpos, this_line_vpos - 1);
7794 w->window_end_valid = Qnil;
7795
7796 /* Update hint: No need to try to scroll in update_window. */
7797 w->desired_matrix->no_scrolling_p = 1;
7798
7799#if GLYPH_DEBUG
7800 *w->desired_matrix->method = 0;
7801 debug_method_add (w, "optimization 1");
7802#endif
a2889657
JB
7803 goto update;
7804 }
7805 else
7806 goto cancel;
7807 }
5f5c8ee5
GM
7808 else if (/* Cursor position hasn't changed. */
7809 PT == XFASTINT (w->last_point)
b6f0fe04
RS
7810 /* Make sure the cursor was last displayed
7811 in this window. Otherwise we have to reposition it. */
5f5c8ee5
GM
7812 && 0 <= w->cursor.vpos
7813 && XINT (w->height) > w->cursor.vpos)
a2889657
JB
7814 {
7815 if (!must_finish)
7816 {
c6e89d6c 7817 do_pending_window_change (1);
5f5c8ee5
GM
7818
7819 /* We used to always goto end_of_redisplay here, but this
7820 isn't enough if we have a blinking cursor. */
7821 if (w->cursor_off_p == w->last_cursor_off_p)
7822 goto end_of_redisplay;
a2889657
JB
7823 }
7824 goto update;
7825 }
8b51f1e3
KH
7826 /* If highlighting the region, or if the cursor is in the echo area,
7827 then we can't just move the cursor. */
bd66d1ba
RS
7828 else if (! (!NILP (Vtransient_mark_mode)
7829 && !NILP (current_buffer->mark_active))
293a54ce
RS
7830 && (w == XWINDOW (current_buffer->last_selected_window)
7831 || highlight_nonselected_windows)
8b51f1e3 7832 && NILP (w->region_showing)
8f897821 7833 && NILP (Vshow_trailing_whitespace)
8b51f1e3 7834 && !cursor_in_echo_area)
a2889657 7835 {
5f5c8ee5
GM
7836 struct it it;
7837 struct glyph_row *row;
7838
7839 /* Skip from tlbufpos to PT and see where it is. Note that
7840 PT may be in invisible text. If so, we will end at the
7841 next visible position. */
7842 init_iterator (&it, w, CHARPOS (tlbufpos), BYTEPOS (tlbufpos),
7843 NULL, DEFAULT_FACE_ID);
7844 it.current_x = this_line_start_x;
7845 it.current_y = this_line_y;
7846 it.vpos = this_line_vpos;
7847
7848 /* The call to move_it_to stops in front of PT, but
7849 moves over before-strings. */
7850 move_it_to (&it, PT, -1, -1, -1, MOVE_TO_POS);
7851
7852 if (it.vpos == this_line_vpos
7853 && (row = MATRIX_ROW (w->current_matrix, this_line_vpos),
7854 row->enabled_p))
a2889657 7855 {
5f5c8ee5
GM
7856 xassert (this_line_vpos == it.vpos);
7857 xassert (this_line_y == it.current_y);
7858 set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0);
a2889657
JB
7859 goto update;
7860 }
7861 else
7862 goto cancel;
7863 }
5f5c8ee5 7864
a2889657 7865 cancel:
5f5c8ee5
GM
7866 /* Text changed drastically or point moved off of line. */
7867 SET_MATRIX_ROW_ENABLED_P (w->desired_matrix, this_line_vpos, 0);
a2889657
JB
7868 }
7869
5f5c8ee5
GM
7870 CHARPOS (this_line_start_pos) = 0;
7871 consider_all_windows_p |= buffer_shared > 1;
7872 ++clear_face_cache_count;
a2889657 7873
5f5c8ee5
GM
7874
7875 /* Build desired matrices. If consider_all_windows_p is non-zero,
7876 do it for all windows on all frames. Otherwise do it for
7877 selected_window, only. */
463f6b91 7878
5f5c8ee5 7879 if (consider_all_windows_p)
a2889657 7880 {
35f56f96 7881 Lisp_Object tail, frame;
a2889657 7882
5f5c8ee5
GM
7883 /* Clear the face cache eventually. */
7884 if (clear_face_cache_count > CLEAR_FACE_CACHE_COUNT)
463f6b91 7885 {
5f5c8ee5 7886 clear_face_cache (0);
463f6b91
RS
7887 clear_face_cache_count = 0;
7888 }
31b24551 7889
5f5c8ee5
GM
7890 /* Recompute # windows showing selected buffer. This will be
7891 incremented each time such a window is displayed. */
a2889657
JB
7892 buffer_shared = 0;
7893
35f56f96 7894 FOR_EACH_FRAME (tail, frame)
30c566e4 7895 {
5f5c8ee5 7896 struct frame *f = XFRAME (frame);
886bd6f2 7897 if (FRAME_WINDOW_P (f) || f == sf)
9769686d 7898 {
5f5c8ee5
GM
7899 /* Mark all the scroll bars to be removed; we'll redeem
7900 the ones we want when we redisplay their windows. */
9769686d
RS
7901 if (condemn_scroll_bars_hook)
7902 (*condemn_scroll_bars_hook) (f);
30c566e4 7903
f21ef775 7904 if (FRAME_VISIBLE_P (f) && !FRAME_OBSCURED_P (f))
5f5c8ee5 7905 redisplay_windows (FRAME_ROOT_WINDOW (f));
30c566e4 7906
5f5c8ee5
GM
7907 /* Any scroll bars which redisplay_windows should have
7908 nuked should now go away. */
9769686d
RS
7909 if (judge_scroll_bars_hook)
7910 (*judge_scroll_bars_hook) (f);
7911 }
30c566e4 7912 }
a2889657 7913 }
886bd6f2
GM
7914 else if (FRAME_VISIBLE_P (sf)
7915 && !FRAME_OBSCURED_P (sf))
5f5c8ee5
GM
7916 redisplay_window (selected_window, 1);
7917
7918
7919 /* Compare desired and current matrices, perform output. */
7920
7921update:
7922
7923 /* If fonts changed, display again. */
7924 if (fonts_changed_p)
7925 goto retry;
a2889657 7926
a2889657
JB
7927 /* Prevent various kinds of signals during display update.
7928 stdio is not robust about handling signals,
7929 which can cause an apparent I/O error. */
7930 if (interrupt_input)
7931 unrequest_sigio ();
7932 stop_polling ();
7933
5f5c8ee5 7934 if (consider_all_windows_p)
a2889657
JB
7935 {
7936 Lisp_Object tail;
92a90e89
GM
7937 struct frame *f;
7938 int hscrolled_p;
a2889657
JB
7939
7940 pause = 0;
92a90e89 7941 hscrolled_p = 0;
a2889657 7942
92a90e89 7943 /* See if we have to hscroll. */
9472f927 7944 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
92a90e89
GM
7945 if (FRAMEP (XCAR (tail)))
7946 {
7947 f = XFRAME (XCAR (tail));
7948
7949 if ((FRAME_WINDOW_P (f)
886bd6f2 7950 || f == sf)
92a90e89
GM
7951 && FRAME_VISIBLE_P (f)
7952 && !FRAME_OBSCURED_P (f)
7953 && hscroll_windows (f->root_window))
7954 hscrolled_p = 1;
7955 }
7956
7957 if (hscrolled_p)
7958 goto retry;
a2889657 7959
92a90e89
GM
7960 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
7961 {
9472f927 7962 if (!FRAMEP (XCAR (tail)))
a2889657
JB
7963 continue;
7964
9472f927 7965 f = XFRAME (XCAR (tail));
1af9f229 7966
886bd6f2 7967 if ((FRAME_WINDOW_P (f) || f == sf)
f21ef775 7968 && FRAME_VISIBLE_P (f) && !FRAME_OBSCURED_P (f))
a2889657 7969 {
5f5c8ee5
GM
7970 /* Mark all windows as to be updated. */
7971 set_window_update_flags (XWINDOW (f->root_window), 1);
44fa5b1e 7972 pause |= update_frame (f, 0, 0);
a2889657 7973 if (!pause)
efc63ef0
RS
7974 {
7975 mark_window_display_accurate (f->root_window, 1);
7976 if (frame_up_to_date_hook != 0)
7977 (*frame_up_to_date_hook) (f);
7978 }
a2889657
JB
7979 }
7980 }
7981 }
7982 else
6e8290aa 7983 {
886bd6f2
GM
7984 if (FRAME_VISIBLE_P (sf)
7985 && !FRAME_OBSCURED_P (sf))
5f5c8ee5 7986 {
92a90e89
GM
7987 if (hscroll_windows (selected_window))
7988 goto retry;
7989
5f5c8ee5 7990 XWINDOW (selected_window)->must_be_updated_p = 1;
886bd6f2 7991 pause = update_frame (sf, 0, 0);
5f5c8ee5 7992 }
4d641a15
KH
7993 else
7994 pause = 0;
d724d989 7995
8de2d90b 7996 /* We may have called echo_area_display at the top of this
44fa5b1e
JB
7997 function. If the echo area is on another frame, that may
7998 have put text on a frame other than the selected one, so the
7999 above call to update_frame would not have caught it. Catch
8de2d90b
JB
8000 it here. */
8001 {
84faf44c 8002 Lisp_Object mini_window;
5f5c8ee5 8003 struct frame *mini_frame;
84faf44c 8004
886bd6f2 8005 mini_window = FRAME_MINIBUF_WINDOW (sf);
84faf44c 8006 mini_frame = XFRAME (WINDOW_FRAME (XWINDOW (mini_window)));
8de2d90b 8007
886bd6f2 8008 if (mini_frame != sf && FRAME_WINDOW_P (mini_frame))
5f5c8ee5
GM
8009 {
8010 XWINDOW (mini_window)->must_be_updated_p = 1;
8011 pause |= update_frame (mini_frame, 0, 0);
8012 if (!pause && hscroll_windows (mini_window))
8013 goto retry;
8014 }
8de2d90b 8015 }
6e8290aa 8016 }
a2889657 8017
5f5c8ee5
GM
8018 /* If display was paused because of pending input, make sure we do a
8019 thorough update the next time. */
a2889657
JB
8020 if (pause)
8021 {
5f5c8ee5
GM
8022 /* Prevent the optimization at the beginning of
8023 redisplay_internal that tries a single-line update of the
8024 line containing the cursor in the selected window. */
8025 CHARPOS (this_line_start_pos) = 0;
8026
8027 /* Let the overlay arrow be updated the next time. */
265a9e55 8028 if (!NILP (last_arrow_position))
a2889657
JB
8029 {
8030 last_arrow_position = Qt;
8031 last_arrow_string = Qt;
8032 }
5f5c8ee5
GM
8033
8034 /* If we pause after scrolling, some rows in the current
8035 matrices of some windows are not valid. */
8036 if (!WINDOW_FULL_WIDTH_P (w)
8037 && !FRAME_WINDOW_P (XFRAME (w->frame)))
a2889657
JB
8038 update_mode_lines = 1;
8039 }
8040
5f5c8ee5
GM
8041 /* Now text on frame agrees with windows, so put info into the
8042 windows for partial redisplay to follow. */
a2889657
JB
8043 if (!pause)
8044 {
8045 register struct buffer *b = XBUFFER (w->buffer);
8046
9142dd5b
GM
8047 BUF_UNCHANGED_MODIFIED (b) = BUF_MODIFF (b);
8048 BUF_OVERLAY_UNCHANGED_MODIFIED (b) = BUF_OVERLAY_MODIFF (b);
8049 BUF_BEG_UNCHANGED (b) = BUF_GPT (b) - BUF_BEG (b);
8050 BUF_END_UNCHANGED (b) = BUF_Z (b) - BUF_GPT (b);
a2889657 8051
5f5c8ee5 8052 if (consider_all_windows_p)
886bd6f2 8053 mark_window_display_accurate (FRAME_ROOT_WINDOW (sf), 1);
a2889657
JB
8054 else
8055 {
5f5c8ee5
GM
8056 XSETFASTINT (w->last_point, BUF_PT (b));
8057 w->last_cursor = w->cursor;
8058 w->last_cursor_off_p = w->cursor_off_p;
8059
28995e67 8060 b->clip_changed = 0;
9142dd5b 8061 b->prevent_redisplay_optimizations_p = 0;
a2889657 8062 w->update_mode_line = Qnil;
c2213350 8063 XSETFASTINT (w->last_modified, BUF_MODIFF (b));
8850a573 8064 XSETFASTINT (w->last_overlay_modified, BUF_OVERLAY_MODIFF (b));
538f13d4
RS
8065 w->last_had_star
8066 = (BUF_MODIFF (XBUFFER (w->buffer)) > BUF_SAVE_MODIFF (XBUFFER (w->buffer))
8067 ? Qt : Qnil);
3ee4159a
RS
8068
8069 /* Record if we are showing a region, so can make sure to
8070 update it fully at next redisplay. */
8071 w->region_showing = (!NILP (Vtransient_mark_mode)
293a54ce
RS
8072 && (w == XWINDOW (current_buffer->last_selected_window)
8073 || highlight_nonselected_windows)
3ee4159a
RS
8074 && !NILP (XBUFFER (w->buffer)->mark_active)
8075 ? Fmarker_position (XBUFFER (w->buffer)->mark)
8076 : Qnil);
8077
d2f84654 8078 w->window_end_valid = w->buffer;
d45de95b 8079 last_arrow_position = COERCE_MARKER (Voverlay_arrow_position);
a2889657 8080 last_arrow_string = Voverlay_arrow_string;
efc63ef0 8081 if (frame_up_to_date_hook != 0)
886bd6f2 8082 (*frame_up_to_date_hook) (sf);
9142dd5b
GM
8083
8084 w->current_matrix->buffer = b;
8085 w->current_matrix->begv = BUF_BEGV (b);
8086 w->current_matrix->zv = BUF_ZV (b);
a2889657 8087 }
15e26c76 8088
a2889657
JB
8089 update_mode_lines = 0;
8090 windows_or_buffers_changed = 0;
8091 }
8092
5f5c8ee5
GM
8093 /* Start SIGIO interrupts coming again. Having them off during the
8094 code above makes it less likely one will discard output, but not
8095 impossible, since there might be stuff in the system buffer here.
a2889657 8096 But it is much hairier to try to do anything about that. */
a2889657
JB
8097 if (interrupt_input)
8098 request_sigio ();
8099 start_polling ();
8100
5f5c8ee5
GM
8101 /* If a frame has become visible which was not before, redisplay
8102 again, so that we display it. Expose events for such a frame
8103 (which it gets when becoming visible) don't call the parts of
8104 redisplay constructing glyphs, so simply exposing a frame won't
8105 display anything in this case. So, we have to display these
8106 frames here explicitly. */
11c52c4f
RS
8107 if (!pause)
8108 {
8109 Lisp_Object tail, frame;
8110 int new_count = 0;
8111
8112 FOR_EACH_FRAME (tail, frame)
8113 {
8114 int this_is_visible = 0;
8e83f802
RS
8115
8116 if (XFRAME (frame)->visible)
8117 this_is_visible = 1;
8118 FRAME_SAMPLE_VISIBILITY (XFRAME (frame));
8119 if (XFRAME (frame)->visible)
8120 this_is_visible = 1;
11c52c4f
RS
8121
8122 if (this_is_visible)
8123 new_count++;
8124 }
8125
89819bdd 8126 if (new_count != number_of_visible_frames)
11c52c4f
RS
8127 windows_or_buffers_changed++;
8128 }
8129
44fa5b1e 8130 /* Change frame size now if a change is pending. */
c6e89d6c 8131 do_pending_window_change (1);
d8e242fd 8132
8b32d885
RS
8133 /* If we just did a pending size change, or have additional
8134 visible frames, redisplay again. */
3c8c72e0 8135 if (windows_or_buffers_changed && !pause)
8b32d885 8136 goto retry;
5f5c8ee5
GM
8137
8138 end_of_redisplay:;
c6e89d6c 8139
28514cd9 8140 unbind_to (count, Qnil);
a2889657
JB
8141}
8142
5f5c8ee5
GM
8143
8144/* Redisplay, but leave alone any recent echo area message unless
8145 another message has been requested in its place.
a2889657
JB
8146
8147 This is useful in situations where you need to redisplay but no
8148 user action has occurred, making it inappropriate for the message
8149 area to be cleared. See tracking_off and
8150 wait_reading_process_input for examples of these situations. */
8151
8991bb31 8152void
a2889657
JB
8153redisplay_preserve_echo_area ()
8154{
c6e89d6c 8155 if (!NILP (echo_area_buffer[1]))
a2889657 8156 {
c6e89d6c
GM
8157 /* We have a previously displayed message, but no current
8158 message. Redisplay the previous message. */
8159 display_last_displayed_message_p = 1;
e9874cee 8160 redisplay_internal (1);
c6e89d6c 8161 display_last_displayed_message_p = 0;
a2889657
JB
8162 }
8163 else
e9874cee 8164 redisplay_internal (1);
a2889657
JB
8165}
8166
5f5c8ee5 8167
28514cd9
GM
8168/* Function registered with record_unwind_protect in
8169 redisplay_internal. Clears the flag indicating that a redisplay is
8170 in progress. */
8171
8172static Lisp_Object
8173unwind_redisplay (old_redisplaying_p)
8174 Lisp_Object old_redisplaying_p;
8175{
8176 redisplaying_p = XFASTINT (old_redisplaying_p);
c6e89d6c 8177 return Qnil;
28514cd9
GM
8178}
8179
8180
5f5c8ee5
GM
8181/* Mark the display of windows in the window tree rooted at WINDOW as
8182 accurate or inaccurate. If FLAG is non-zero mark display of WINDOW
8183 as accurate. If FLAG is zero arrange for WINDOW to be redisplayed
8184 the next time redisplay_internal is called. */
8185
a2889657 8186void
5f5c8ee5 8187mark_window_display_accurate (window, accurate_p)
a2889657 8188 Lisp_Object window;
5f5c8ee5 8189 int accurate_p;
a2889657 8190{
5f5c8ee5
GM
8191 struct window *w;
8192
8193 for (; !NILP (window); window = w->next)
a2889657
JB
8194 {
8195 w = XWINDOW (window);
8196
5f5c8ee5 8197 if (BUFFERP (w->buffer))
bd66d1ba 8198 {
5f5c8ee5
GM
8199 struct buffer *b = XBUFFER (w->buffer);
8200
c2213350 8201 XSETFASTINT (w->last_modified,
5f5c8ee5 8202 accurate_p ? BUF_MODIFF (b) : 0);
8850a573 8203 XSETFASTINT (w->last_overlay_modified,
5f5c8ee5
GM
8204 accurate_p ? BUF_OVERLAY_MODIFF (b) : 0);
8205 w->last_had_star = (BUF_MODIFF (b) > BUF_SAVE_MODIFF (b)
8206 ? Qt : Qnil);
bd66d1ba 8207
5f5c8ee5
GM
8208#if 0 /* I don't think this is necessary because display_line does it.
8209 Let's check it. */
bd66d1ba
RS
8210 /* Record if we are showing a region, so can make sure to
8211 update it fully at next redisplay. */
5f5c8ee5
GM
8212 w->region_showing
8213 = (!NILP (Vtransient_mark_mode)
8214 && (w == XWINDOW (current_buffer->last_selected_window)
8215 || highlight_nonselected_windows)
8216 && (!NILP (b->mark_active)
8217 ? Fmarker_position (b->mark)
8218 : Qnil));
8219#endif
8220
8221 if (accurate_p)
8222 {
8223 b->clip_changed = 0;
9142dd5b
GM
8224 b->prevent_redisplay_optimizations_p = 0;
8225 w->current_matrix->buffer = b;
8226 w->current_matrix->begv = BUF_BEGV (b);
8227 w->current_matrix->zv = BUF_ZV (b);
5f5c8ee5
GM
8228 w->last_cursor = w->cursor;
8229 w->last_cursor_off_p = w->cursor_off_p;
8230 if (w == XWINDOW (selected_window))
6fc556fd 8231 w->last_point = make_number (BUF_PT (b));
5f5c8ee5 8232 else
6fc556fd 8233 w->last_point = make_number (XMARKER (w->pointm)->charpos);
5f5c8ee5 8234 }
bd66d1ba
RS
8235 }
8236
d2f84654 8237 w->window_end_valid = w->buffer;
a2889657
JB
8238 w->update_mode_line = Qnil;
8239
265a9e55 8240 if (!NILP (w->vchild))
5f5c8ee5 8241 mark_window_display_accurate (w->vchild, accurate_p);
265a9e55 8242 if (!NILP (w->hchild))
5f5c8ee5 8243 mark_window_display_accurate (w->hchild, accurate_p);
a2889657
JB
8244 }
8245
5f5c8ee5 8246 if (accurate_p)
a2889657 8247 {
d45de95b 8248 last_arrow_position = COERCE_MARKER (Voverlay_arrow_position);
a2889657
JB
8249 last_arrow_string = Voverlay_arrow_string;
8250 }
8251 else
8252 {
5f5c8ee5
GM
8253 /* Force a thorough redisplay the next time by setting
8254 last_arrow_position and last_arrow_string to t, which is
8255 unequal to any useful value of Voverlay_arrow_... */
a2889657
JB
8256 last_arrow_position = Qt;
8257 last_arrow_string = Qt;
8258 }
8259}
5f5c8ee5
GM
8260
8261
8262/* Return value in display table DP (Lisp_Char_Table *) for character
8263 C. Since a display table doesn't have any parent, we don't have to
8264 follow parent. Do not call this function directly but use the
8265 macro DISP_CHAR_VECTOR. */
8266
8267Lisp_Object
8268disp_char_vector (dp, c)
8269 struct Lisp_Char_Table *dp;
8270 int c;
8271{
8272 int code[4], i;
8273 Lisp_Object val;
8274
8275 if (SINGLE_BYTE_CHAR_P (c))
8276 return (dp->contents[c]);
8277
c5924f47 8278 SPLIT_CHAR (c, code[0], code[1], code[2]);
260a86a0
KH
8279 if (code[1] < 32)
8280 code[1] = -1;
8281 else if (code[2] < 32)
8282 code[2] = -1;
5f5c8ee5
GM
8283
8284 /* Here, the possible range of code[0] (== charset ID) is
8285 128..max_charset. Since the top level char table contains data
8286 for multibyte characters after 256th element, we must increment
8287 code[0] by 128 to get a correct index. */
8288 code[0] += 128;
8289 code[3] = -1; /* anchor */
8290
8291 for (i = 0; code[i] >= 0; i++, dp = XCHAR_TABLE (val))
8292 {
8293 val = dp->contents[code[i]];
8294 if (!SUB_CHAR_TABLE_P (val))
8295 return (NILP (val) ? dp->defalt : val);
8296 }
8297
8298 /* Here, val is a sub char table. We return the default value of
8299 it. */
8300 return (dp->defalt);
8301}
8302
8303
a2889657 8304\f
5f5c8ee5
GM
8305/***********************************************************************
8306 Window Redisplay
8307 ***********************************************************************/
a2725ab2 8308
5f5c8ee5 8309/* Redisplay all leaf windows in the window tree rooted at WINDOW. */
90adcf20
RS
8310
8311static void
5f5c8ee5
GM
8312redisplay_windows (window)
8313 Lisp_Object window;
90adcf20 8314{
5f5c8ee5
GM
8315 while (!NILP (window))
8316 {
8317 struct window *w = XWINDOW (window);
8318
8319 if (!NILP (w->hchild))
8320 redisplay_windows (w->hchild);
8321 else if (!NILP (w->vchild))
8322 redisplay_windows (w->vchild);
8323 else
8324 redisplay_window (window, 0);
a2725ab2 8325
5f5c8ee5
GM
8326 window = w->next;
8327 }
8328}
8329
8330
8331/* Set cursor position of W. PT is assumed to be displayed in ROW.
8332 DELTA is the number of bytes by which positions recorded in ROW
8333 differ from current buffer positions. */
8334
8335void
8336set_cursor_from_row (w, row, matrix, delta, delta_bytes, dy, dvpos)
8337 struct window *w;
8338 struct glyph_row *row;
8339 struct glyph_matrix *matrix;
8340 int delta, delta_bytes, dy, dvpos;
8341{
8342 struct glyph *glyph = row->glyphs[TEXT_AREA];
8343 struct glyph *end = glyph + row->used[TEXT_AREA];
8344 int x = row->x;
8345 int pt_old = PT - delta;
8346
8347 /* Skip over glyphs not having an object at the start of the row.
8348 These are special glyphs like truncation marks on terminal
8349 frames. */
8350 if (row->displays_text_p)
8351 while (glyph < end
6fc556fd 8352 && INTEGERP (glyph->object)
5f5c8ee5
GM
8353 && glyph->charpos < 0)
8354 {
8355 x += glyph->pixel_width;
8356 ++glyph;
8357 }
8358
8359 while (glyph < end
6fc556fd 8360 && !INTEGERP (glyph->object)
5f5c8ee5
GM
8361 && (!BUFFERP (glyph->object)
8362 || glyph->charpos < pt_old))
8363 {
8364 x += glyph->pixel_width;
8365 ++glyph;
8366 }
8367
8368 w->cursor.hpos = glyph - row->glyphs[TEXT_AREA];
8369 w->cursor.x = x;
8370 w->cursor.vpos = MATRIX_ROW_VPOS (row, matrix) + dvpos;
8371 w->cursor.y = row->y + dy;
8372
8373 if (w == XWINDOW (selected_window))
8374 {
8375 if (!row->continued_p
8376 && !MATRIX_ROW_CONTINUATION_LINE_P (row)
8377 && row->x == 0)
8378 {
8379 this_line_buffer = XBUFFER (w->buffer);
8380
8381 CHARPOS (this_line_start_pos)
8382 = MATRIX_ROW_START_CHARPOS (row) + delta;
8383 BYTEPOS (this_line_start_pos)
8384 = MATRIX_ROW_START_BYTEPOS (row) + delta_bytes;
8385
8386 CHARPOS (this_line_end_pos)
8387 = Z - (MATRIX_ROW_END_CHARPOS (row) + delta);
8388 BYTEPOS (this_line_end_pos)
8389 = Z_BYTE - (MATRIX_ROW_END_BYTEPOS (row) + delta_bytes);
8390
8391 this_line_y = w->cursor.y;
8392 this_line_pixel_height = row->height;
8393 this_line_vpos = w->cursor.vpos;
8394 this_line_start_x = row->x;
8395 }
8396 else
8397 CHARPOS (this_line_start_pos) = 0;
8398 }
8399}
8400
8401
8402/* Run window scroll functions, if any, for WINDOW with new window
756a3cb6
RS
8403 start STARTP. Sets the window start of WINDOW to that position.
8404
8405 We assume that the window's buffer is really current. */
5f5c8ee5
GM
8406
8407static INLINE struct text_pos
8408run_window_scroll_functions (window, startp)
8409 Lisp_Object window;
8410 struct text_pos startp;
8411{
8412 struct window *w = XWINDOW (window);
8413 SET_MARKER_FROM_TEXT_POS (w->start, startp);
756a3cb6
RS
8414
8415 if (current_buffer != XBUFFER (w->buffer))
8416 abort ();
8417
5f5c8ee5
GM
8418 if (!NILP (Vwindow_scroll_functions))
8419 {
8420 run_hook_with_args_2 (Qwindow_scroll_functions, window,
8421 make_number (CHARPOS (startp)));
8422 SET_TEXT_POS_FROM_MARKER (startp, w->start);
756a3cb6
RS
8423 /* In case the hook functions switch buffers. */
8424 if (current_buffer != XBUFFER (w->buffer))
8425 set_buffer_internal_1 (XBUFFER (w->buffer));
5f5c8ee5 8426 }
90adcf20 8427
5f5c8ee5
GM
8428 return startp;
8429}
8430
8431
8432/* Modify the desired matrix of window W and W->vscroll so that the
8433 line containing the cursor is fully visible. */
8434
8435static void
8436make_cursor_line_fully_visible (w)
8437 struct window *w;
8438{
8439 struct glyph_matrix *matrix;
8440 struct glyph_row *row;
b28cb6ed 8441 int window_height, header_line_height;
5f5c8ee5
GM
8442
8443 /* It's not always possible to find the cursor, e.g, when a window
8444 is full of overlay strings. Don't do anything in that case. */
8445 if (w->cursor.vpos < 0)
8446 return;
8447
8448 matrix = w->desired_matrix;
8449 row = MATRIX_ROW (matrix, w->cursor.vpos);
8450
b28cb6ed
GM
8451 /* If the cursor row is not partially visible, there's nothing
8452 to do. */
8453 if (!MATRIX_ROW_PARTIALLY_VISIBLE_P (row))
8454 return;
8455
8456 /* If the row the cursor is in is taller than the window's height,
8457 it's not clear what to do, so do nothing. */
8458 window_height = window_box_height (w);
8459 if (row->height >= window_height)
8460 return;
8461
8462 if (MATRIX_ROW_PARTIALLY_VISIBLE_AT_TOP_P (w, row))
5f5c8ee5
GM
8463 {
8464 int dy = row->height - row->visible_height;
8465 w->vscroll = 0;
8466 w->cursor.y += dy;
8467 shift_glyph_matrix (w, matrix, 0, matrix->nrows, dy);
8468 }
b28cb6ed 8469 else /* MATRIX_ROW_PARTIALLY_VISIBLE_AT_BOTTOM_P (w, row)) */
5f5c8ee5
GM
8470 {
8471 int dy = - (row->height - row->visible_height);
8472 w->vscroll = dy;
8473 w->cursor.y += dy;
8474 shift_glyph_matrix (w, matrix, 0, matrix->nrows, dy);
8475 }
b28cb6ed 8476
5f5c8ee5
GM
8477 /* When we change the cursor y-position of the selected window,
8478 change this_line_y as well so that the display optimization for
8479 the cursor line of the selected window in redisplay_internal uses
8480 the correct y-position. */
8481 if (w == XWINDOW (selected_window))
8482 this_line_y = w->cursor.y;
8483}
8484
8485
8486/* Try scrolling PT into view in window WINDOW. JUST_THIS_ONE_P
8487 non-zero means only WINDOW is redisplayed in redisplay_internal.
8488 TEMP_SCROLL_STEP has the same meaning as scroll_step, and is used
8489 in redisplay_window to bring a partially visible line into view in
8490 the case that only the cursor has moved.
8491
8492 Value is
8493
8494 1 if scrolling succeeded
8495
8496 0 if scrolling didn't find point.
8497
8498 -1 if new fonts have been loaded so that we must interrupt
8499 redisplay, adjust glyph matrices, and try again. */
8500
8501static int
8502try_scrolling (window, just_this_one_p, scroll_conservatively,
8503 scroll_step, temp_scroll_step)
8504 Lisp_Object window;
8505 int just_this_one_p;
8506 int scroll_conservatively, scroll_step;
8507 int temp_scroll_step;
8508{
8509 struct window *w = XWINDOW (window);
8510 struct frame *f = XFRAME (w->frame);
8511 struct text_pos scroll_margin_pos;
8512 struct text_pos pos;
8513 struct text_pos startp;
8514 struct it it;
8515 Lisp_Object window_end;
8516 int this_scroll_margin;
8517 int dy = 0;
8518 int scroll_max;
8519 int line_height, rc;
8520 int amount_to_scroll = 0;
8521 Lisp_Object aggressive;
8522 int height;
8523
8524#if GLYPH_DEBUG
8525 debug_method_add (w, "try_scrolling");
78614721 8526#endif
5f5c8ee5
GM
8527
8528 SET_TEXT_POS_FROM_MARKER (startp, w->start);
8529
8530 /* Compute scroll margin height in pixels. We scroll when point is
8531 within this distance from the top or bottom of the window. */
8532 if (scroll_margin > 0)
90adcf20 8533 {
5f5c8ee5
GM
8534 this_scroll_margin = min (scroll_margin, XINT (w->height) / 4);
8535 this_scroll_margin *= CANON_Y_UNIT (f);
8536 }
8537 else
8538 this_scroll_margin = 0;
8539
8540 /* Compute how much we should try to scroll maximally to bring point
8541 into view. */
8542 if (scroll_step)
8543 scroll_max = scroll_step;
8544 else if (scroll_conservatively)
8545 scroll_max = scroll_conservatively;
8546 else if (temp_scroll_step)
8547 scroll_max = temp_scroll_step;
8548 else if (NUMBERP (current_buffer->scroll_down_aggressively)
8549 || NUMBERP (current_buffer->scroll_up_aggressively))
8550 /* We're trying to scroll because of aggressive scrolling
8551 but no scroll_step is set. Choose an arbitrary one. Maybe
8552 there should be a variable for this. */
8553 scroll_max = 10;
8554 else
8555 scroll_max = 0;
8556 scroll_max *= CANON_Y_UNIT (f);
8557
8558 /* Decide whether we have to scroll down. Start at the window end
8559 and move this_scroll_margin up to find the position of the scroll
8560 margin. */
8561 window_end = Fwindow_end (window, Qt);
8562 CHARPOS (scroll_margin_pos) = XINT (window_end);
8563 BYTEPOS (scroll_margin_pos) = CHAR_TO_BYTE (CHARPOS (scroll_margin_pos));
8564 if (this_scroll_margin)
8565 {
8566 start_display (&it, w, scroll_margin_pos);
8567 move_it_vertically (&it, - this_scroll_margin);
8568 scroll_margin_pos = it.current.pos;
8569 }
8570
8571 if (PT >= CHARPOS (scroll_margin_pos))
8572 {
8573 int y0;
8574
8575 /* Point is in the scroll margin at the bottom of the window, or
8576 below. Compute a new window start that makes point visible. */
47589c8c 8577
5f5c8ee5
GM
8578 /* Compute the distance from the scroll margin to PT.
8579 Give up if the distance is greater than scroll_max. */
8580 start_display (&it, w, scroll_margin_pos);
8581 y0 = it.current_y;
8582 move_it_to (&it, PT, 0, it.last_visible_y, -1,
8583 MOVE_TO_POS | MOVE_TO_X | MOVE_TO_Y);
8584 line_height = (it.max_ascent + it.max_descent
8585 ? it.max_ascent + it.max_descent
8586 : last_height);
8587 dy = it.current_y + line_height - y0;
47589c8c 8588
5f5c8ee5
GM
8589 if (dy > scroll_max)
8590 return 0;
8591
8592 /* Move the window start down. If scrolling conservatively,
8593 move it just enough down to make point visible. If
8594 scroll_step is set, move it down by scroll_step. */
8595 start_display (&it, w, startp);
8596
8597 if (scroll_conservatively)
8598 amount_to_scroll = dy;
8599 else if (scroll_step || temp_scroll_step)
8600 amount_to_scroll = scroll_max;
8601 else
90adcf20 8602 {
5f5c8ee5
GM
8603 aggressive = current_buffer->scroll_down_aggressively;
8604 height = (WINDOW_DISPLAY_HEIGHT_NO_MODE_LINE (w)
045dee35 8605 - WINDOW_DISPLAY_HEADER_LINE_HEIGHT (w));
5f5c8ee5
GM
8606 if (NUMBERP (aggressive))
8607 amount_to_scroll = XFLOATINT (aggressive) * height;
8608 }
a2725ab2 8609
5f5c8ee5
GM
8610 if (amount_to_scroll <= 0)
8611 return 0;
a2725ab2 8612
5f5c8ee5
GM
8613 move_it_vertically (&it, amount_to_scroll);
8614 startp = it.current.pos;
8615 }
8616 else
8617 {
8618 /* See if point is inside the scroll margin at the top of the
8619 window. */
8620 scroll_margin_pos = startp;
8621 if (this_scroll_margin)
8622 {
8623 start_display (&it, w, startp);
8624 move_it_vertically (&it, this_scroll_margin);
8625 scroll_margin_pos = it.current.pos;
8626 }
8627
8628 if (PT < CHARPOS (scroll_margin_pos))
8629 {
8630 /* Point is in the scroll margin at the top of the window or
8631 above what is displayed in the window. */
8632 int y0;
8633
8634 /* Compute the vertical distance from PT to the scroll
8635 margin position. Give up if distance is greater than
8636 scroll_max. */
8637 SET_TEXT_POS (pos, PT, PT_BYTE);
8638 start_display (&it, w, pos);
8639 y0 = it.current_y;
8640 move_it_to (&it, CHARPOS (scroll_margin_pos), 0,
8641 it.last_visible_y, -1,
8642 MOVE_TO_POS | MOVE_TO_X | MOVE_TO_Y);
8643 dy = it.current_y - y0;
8644 if (dy > scroll_max)
8645 return 0;
8646
8647 /* Compute new window start. */
8648 start_display (&it, w, startp);
8649
8650 if (scroll_conservatively)
8651 amount_to_scroll = dy;
8652 else if (scroll_step || temp_scroll_step)
8653 amount_to_scroll = scroll_max;
538f13d4 8654 else
5f5c8ee5
GM
8655 {
8656 aggressive = current_buffer->scroll_up_aggressively;
8657 height = (WINDOW_DISPLAY_HEIGHT_NO_MODE_LINE (w)
045dee35 8658 - WINDOW_DISPLAY_HEADER_LINE_HEIGHT (w));
5f5c8ee5
GM
8659 if (NUMBERP (aggressive))
8660 amount_to_scroll = XFLOATINT (aggressive) * height;
8661 }
a2725ab2 8662
5f5c8ee5
GM
8663 if (amount_to_scroll <= 0)
8664 return 0;
8665
8666 move_it_vertically (&it, - amount_to_scroll);
8667 startp = it.current.pos;
90adcf20
RS
8668 }
8669 }
a2889657 8670
5f5c8ee5
GM
8671 /* Run window scroll functions. */
8672 startp = run_window_scroll_functions (window, startp);
90adcf20 8673
5f5c8ee5
GM
8674 /* Display the window. Give up if new fonts are loaded, or if point
8675 doesn't appear. */
8676 if (!try_window (window, startp))
8677 rc = -1;
8678 else if (w->cursor.vpos < 0)
8679 {
8680 clear_glyph_matrix (w->desired_matrix);
8681 rc = 0;
8682 }
8683 else
8684 {
8685 /* Maybe forget recorded base line for line number display. */
8686 if (!just_this_one_p
8687 || current_buffer->clip_changed
9142dd5b 8688 || BEG_UNCHANGED < CHARPOS (startp))
5f5c8ee5
GM
8689 w->base_line_number = Qnil;
8690
8691 /* If cursor ends up on a partially visible line, shift display
8692 lines up or down. */
8693 make_cursor_line_fully_visible (w);
8694 rc = 1;
8695 }
8696
8697 return rc;
a2889657
JB
8698}
8699
5f5c8ee5
GM
8700
8701/* Compute a suitable window start for window W if display of W starts
8702 on a continuation line. Value is non-zero if a new window start
8703 was computed.
8704
8705 The new window start will be computed, based on W's width, starting
8706 from the start of the continued line. It is the start of the
8707 screen line with the minimum distance from the old start W->start. */
8708
8709static int
8710compute_window_start_on_continuation_line (w)
8711 struct window *w;
1f1ff51d 8712{
5f5c8ee5
GM
8713 struct text_pos pos, start_pos;
8714 int window_start_changed_p = 0;
1f1ff51d 8715
5f5c8ee5 8716 SET_TEXT_POS_FROM_MARKER (start_pos, w->start);
1f1ff51d 8717
5f5c8ee5
GM
8718 /* If window start is on a continuation line... Window start may be
8719 < BEGV in case there's invisible text at the start of the
8720 buffer (M-x rmail, for example). */
8721 if (CHARPOS (start_pos) > BEGV
8722 && FETCH_BYTE (BYTEPOS (start_pos) - 1) != '\n')
1f1ff51d 8723 {
5f5c8ee5
GM
8724 struct it it;
8725 struct glyph_row *row;
f3751a65
GM
8726
8727 /* Handle the case that the window start is out of range. */
8728 if (CHARPOS (start_pos) < BEGV)
8729 SET_TEXT_POS (start_pos, BEGV, BEGV_BYTE);
8730 else if (CHARPOS (start_pos) > ZV)
8731 SET_TEXT_POS (start_pos, ZV, ZV_BYTE);
5f5c8ee5
GM
8732
8733 /* Find the start of the continued line. This should be fast
8734 because scan_buffer is fast (newline cache). */
045dee35 8735 row = w->desired_matrix->rows + (WINDOW_WANTS_HEADER_LINE_P (w) ? 1 : 0);
5f5c8ee5
GM
8736 init_iterator (&it, w, CHARPOS (start_pos), BYTEPOS (start_pos),
8737 row, DEFAULT_FACE_ID);
8738 reseat_at_previous_visible_line_start (&it);
8739
8740 /* If the line start is "too far" away from the window start,
8741 say it takes too much time to compute a new window start. */
8742 if (CHARPOS (start_pos) - IT_CHARPOS (it)
8743 < XFASTINT (w->height) * XFASTINT (w->width))
8744 {
8745 int min_distance, distance;
8746
8747 /* Move forward by display lines to find the new window
8748 start. If window width was enlarged, the new start can
8749 be expected to be > the old start. If window width was
8750 decreased, the new window start will be < the old start.
8751 So, we're looking for the display line start with the
8752 minimum distance from the old window start. */
8753 pos = it.current.pos;
8754 min_distance = INFINITY;
8755 while ((distance = abs (CHARPOS (start_pos) - IT_CHARPOS (it))),
8756 distance < min_distance)
8757 {
8758 min_distance = distance;
8759 pos = it.current.pos;
8760 move_it_by_lines (&it, 1, 0);
8761 }
8762
8763 /* Set the window start there. */
8764 SET_MARKER_FROM_TEXT_POS (w->start, pos);
8765 window_start_changed_p = 1;
8766 }
1f1ff51d 8767 }
5f5c8ee5
GM
8768
8769 return window_start_changed_p;
1f1ff51d
KH
8770}
8771
5f5c8ee5 8772
47589c8c
GM
8773/* Try cursor movement in case text has not changes in window WINDOW,
8774 with window start STARTP. Value is
8775
8776 1 if successful
8777
8778 0 if this method cannot be used
8779
8780 -1 if we know we have to scroll the display. *SCROLL_STEP is
8781 set to 1, under certain circumstances, if we want to scroll as
8782 if scroll-step were set to 1. See the code. */
8783
8784static int
8785try_cursor_movement (window, startp, scroll_step)
8786 Lisp_Object window;
8787 struct text_pos startp;
8788 int *scroll_step;
8789{
8790 struct window *w = XWINDOW (window);
8791 struct frame *f = XFRAME (w->frame);
8792 int rc = 0;
8793
8794 /* Handle case where text has not changed, only point, and it has
8795 not moved off the frame. */
8796 if (/* Point may be in this window. */
8797 PT >= CHARPOS (startp)
8798 /* If we don't check this, we are called to move the cursor in a
8799 horizontally split window with a current matrix that doesn't
8800 fit the display. */
8801 && !windows_or_buffers_changed
8802 /* Selective display hasn't changed. */
8803 && !current_buffer->clip_changed
8804 /* If force-mode-line-update was called, really redisplay;
8805 that's how redisplay is forced after e.g. changing
8806 buffer-invisibility-spec. */
8807 && NILP (w->update_mode_line)
8808 /* Can't use this case if highlighting a region. When a
8809 region exists, cursor movement has to do more than just
8810 set the cursor. */
8811 && !(!NILP (Vtransient_mark_mode)
8812 && !NILP (current_buffer->mark_active))
8813 && NILP (w->region_showing)
8814 && NILP (Vshow_trailing_whitespace)
8815 /* Right after splitting windows, last_point may be nil. */
8816 && INTEGERP (w->last_point)
8817 /* This code is not used for mini-buffer for the sake of the case
8818 of redisplaying to replace an echo area message; since in
8819 that case the mini-buffer contents per se are usually
8820 unchanged. This code is of no real use in the mini-buffer
8821 since the handling of this_line_start_pos, etc., in redisplay
8822 handles the same cases. */
8823 && !EQ (window, minibuf_window)
8824 /* When splitting windows or for new windows, it happens that
8825 redisplay is called with a nil window_end_vpos or one being
8826 larger than the window. This should really be fixed in
8827 window.c. I don't have this on my list, now, so we do
8828 approximately the same as the old redisplay code. --gerd. */
8829 && INTEGERP (w->window_end_vpos)
8830 && XFASTINT (w->window_end_vpos) < w->current_matrix->nrows
8831 && (FRAME_WINDOW_P (f)
8832 || !MARKERP (Voverlay_arrow_position)
8833 || current_buffer != XMARKER (Voverlay_arrow_position)->buffer))
8834 {
8835 int this_scroll_margin;
8836 struct glyph_row *row;
8837
8838#if GLYPH_DEBUG
8839 debug_method_add (w, "cursor movement");
8840#endif
8841
8842 /* Scroll if point within this distance from the top or bottom
8843 of the window. This is a pixel value. */
8844 this_scroll_margin = max (0, scroll_margin);
8845 this_scroll_margin = min (this_scroll_margin, XFASTINT (w->height) / 4);
8846 this_scroll_margin *= CANON_Y_UNIT (f);
8847
8848 /* Start with the row the cursor was displayed during the last
8849 not paused redisplay. Give up if that row is not valid. */
8850 if (w->last_cursor.vpos >= w->current_matrix->nrows)
8851 rc = -1;
8852 else
8853 {
8854 row = MATRIX_ROW (w->current_matrix, w->last_cursor.vpos);
8855 if (row->mode_line_p)
8856 ++row;
8857 if (!row->enabled_p)
8858 rc = -1;
8859 }
8860
8861 if (rc == 0)
8862 {
8863 int scroll_p = 0;
8864
8865 if (PT > XFASTINT (w->last_point))
8866 {
8867 /* Point has moved forward. */
8868 int last_y = window_text_bottom_y (w) - this_scroll_margin;
8869
8870 while (MATRIX_ROW_END_CHARPOS (row) < PT
8871 && MATRIX_ROW_BOTTOM_Y (row) < last_y)
8872 {
8873 xassert (row->enabled_p);
8874 ++row;
8875 }
8876
8877 /* The end position of a row equals the start position
8878 of the next row. If PT is there, we would rather
8879 display it in the next line. Exceptions are when the
8880 row ends in the middle of a character, or ends in
8881 ZV. */
8882 if (MATRIX_ROW_BOTTOM_Y (row) < last_y
8883 && MATRIX_ROW_END_CHARPOS (row) == PT
8884 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row)
8885 && !row->ends_at_zv_p)
8886 {
8887 xassert (row->enabled_p);
8888 ++row;
8889 }
8890
8891 /* If within the scroll margin, scroll. Note that
8892 MATRIX_ROW_BOTTOM_Y gives the pixel position at which
8893 the next line would be drawn, and that
8894 this_scroll_margin can be zero. */
8895 if (MATRIX_ROW_BOTTOM_Y (row) > last_y
8896 || PT > MATRIX_ROW_END_CHARPOS (row)
8897 /* Line is completely visible last line in window
8898 and PT is to be set in the next line. */
8899 || (MATRIX_ROW_BOTTOM_Y (row) == last_y
8900 && PT == MATRIX_ROW_END_CHARPOS (row)
8901 && !row->ends_at_zv_p
8902 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row)))
8903 scroll_p = 1;
8904 }
8905 else if (PT < XFASTINT (w->last_point))
8906 {
8907 /* Cursor has to be moved backward. Note that PT >=
8908 CHARPOS (startp) because of the outer
8909 if-statement. */
8910 while (!row->mode_line_p
8911 && (MATRIX_ROW_START_CHARPOS (row) > PT
8912 || (MATRIX_ROW_START_CHARPOS (row) == PT
8913 && MATRIX_ROW_STARTS_IN_MIDDLE_OF_CHAR_P (row)))
8914 && (row->y > this_scroll_margin
8915 || CHARPOS (startp) == BEGV))
8916 {
8917 xassert (row->enabled_p);
8918 --row;
8919 }
8920
8921 /* Consider the following case: Window starts at BEGV,
8922 there is invisible, intangible text at BEGV, so that
8923 display starts at some point START > BEGV. It can
8924 happen that we are called with PT somewhere between
8925 BEGV and START. Try to handle that case. */
8926 if (row < w->current_matrix->rows
8927 || row->mode_line_p)
8928 {
8929 row = w->current_matrix->rows;
8930 if (row->mode_line_p)
8931 ++row;
8932 }
8933
8934 /* Due to newlines in overlay strings, we may have to
8935 skip forward over overlay strings. */
8936 while (MATRIX_ROW_END_CHARPOS (row) == PT
8937 && MATRIX_ROW_ENDS_IN_OVERLAY_STRING_P (row)
8938 && !row->ends_at_zv_p)
8939 ++row;
8940
8941 /* If within the scroll margin, scroll. */
8942 if (row->y < this_scroll_margin
8943 && CHARPOS (startp) != BEGV)
8944 scroll_p = 1;
8945 }
8946
8947 if (PT < MATRIX_ROW_START_CHARPOS (row)
8948 || PT > MATRIX_ROW_END_CHARPOS (row))
8949 {
8950 /* if PT is not in the glyph row, give up. */
8951 rc = -1;
8952 }
440fc135 8953 else if (MATRIX_ROW_PARTIALLY_VISIBLE_P (row))
47589c8c
GM
8954 {
8955 /* If we end up in a partially visible line, let's make it
8956 fully visible, except when it's taller than the window,
8957 in which case we can't do much about it. */
440fc135
GM
8958 if (row->height > window_box_height (w))
8959 {
8960 *scroll_step = 1;
8961 rc = -1;
8962 }
8963 else
8964 {
8965 set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0);
8966 try_window (window, startp);
8967 make_cursor_line_fully_visible (w);
8968 rc = 1;
8969 }
47589c8c
GM
8970 }
8971 else if (scroll_p)
8972 rc = -1;
8973 else
8974 {
8975 set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0);
8976 rc = 1;
8977 }
8978 }
8979 }
8980
8981 return rc;
8982}
8983
8984
5f5c8ee5
GM
8985/* Redisplay leaf window WINDOW. JUST_THIS_ONE_P non-zero means only
8986 selected_window is redisplayed. */
90adcf20 8987
a2889657 8988static void
5f5c8ee5 8989redisplay_window (window, just_this_one_p)
a2889657 8990 Lisp_Object window;
5f5c8ee5 8991 int just_this_one_p;
a2889657 8992{
5f5c8ee5
GM
8993 struct window *w = XWINDOW (window);
8994 struct frame *f = XFRAME (w->frame);
8995 struct buffer *buffer = XBUFFER (w->buffer);
a2889657 8996 struct buffer *old = current_buffer;
5f5c8ee5 8997 struct text_pos lpoint, opoint, startp;
e481f960 8998 int update_mode_line;
5f5c8ee5
GM
8999 int tem;
9000 struct it it;
9001 /* Record it now because it's overwritten. */
9002 int current_matrix_up_to_date_p = 0;
5f5c8ee5 9003 int temp_scroll_step = 0;
2e54982e 9004 int count = specpdl_ptr - specpdl;
47589c8c 9005 int rc;
a2889657 9006
5f5c8ee5
GM
9007 SET_TEXT_POS (lpoint, PT, PT_BYTE);
9008 opoint = lpoint;
a2889657 9009
5f5c8ee5
GM
9010 /* W must be a leaf window here. */
9011 xassert (!NILP (w->buffer));
9012#if GLYPH_DEBUG
9013 *w->desired_matrix->method = 0;
9014#endif
2e54982e
RS
9015
9016 specbind (Qinhibit_point_motion_hooks, Qt);
9142dd5b
GM
9017
9018 reconsider_clip_changes (w, buffer);
9019
5f5c8ee5
GM
9020 /* Has the mode line to be updated? */
9021 update_mode_line = (!NILP (w->update_mode_line)
9022 || update_mode_lines
9023 || buffer->clip_changed);
8de2d90b
JB
9024
9025 if (MINI_WINDOW_P (w))
9026 {
5f5c8ee5 9027 if (w == XWINDOW (echo_area_window)
c6e89d6c 9028 && !NILP (echo_area_buffer[0]))
5f5c8ee5
GM
9029 {
9030 if (update_mode_line)
9031 /* We may have to update a tty frame's menu bar or a
e037b9ec 9032 tool-bar. Example `M-x C-h C-h C-g'. */
5f5c8ee5
GM
9033 goto finish_menu_bars;
9034 else
9035 /* We've already displayed the echo area glyphs in this window. */
9036 goto finish_scroll_bars;
9037 }
73af359d 9038 else if (w != XWINDOW (minibuf_window))
8de2d90b 9039 {
5f5c8ee5
GM
9040 /* W is a mini-buffer window, but it's not the currently
9041 active one, so clear it. */
9042 int yb = window_text_bottom_y (w);
9043 struct glyph_row *row;
9044 int y;
9045
9046 for (y = 0, row = w->desired_matrix->rows;
9047 y < yb;
9048 y += row->height, ++row)
9049 blank_row (w, row, y);
88f22aff 9050 goto finish_scroll_bars;
8de2d90b
JB
9051 }
9052 }
a2889657 9053
5f5c8ee5
GM
9054 /* Otherwise set up data on this window; select its buffer and point
9055 value. */
6a93695f
GM
9056 /* Really select the buffer, for the sake of buffer-local
9057 variables. */
9058 set_buffer_internal_1 (XBUFFER (w->buffer));
5f5c8ee5
GM
9059 SET_TEXT_POS (opoint, PT, PT_BYTE);
9060
9061 current_matrix_up_to_date_p
9062 = (!NILP (w->window_end_valid)
9063 && !current_buffer->clip_changed
9064 && XFASTINT (w->last_modified) >= MODIFF
9065 && XFASTINT (w->last_overlay_modified) >= OVERLAY_MODIFF);
e481f960 9066
5f5c8ee5
GM
9067 /* When windows_or_buffers_changed is non-zero, we can't rely on
9068 the window end being valid, so set it to nil there. */
9069 if (windows_or_buffers_changed)
9070 {
9071 /* If window starts on a continuation line, maybe adjust the
9072 window start in case the window's width changed. */
9073 if (XMARKER (w->start)->buffer == current_buffer)
9074 compute_window_start_on_continuation_line (w);
9075
9076 w->window_end_valid = Qnil;
9077 }
12adba34 9078
5f5c8ee5
GM
9079 /* Some sanity checks. */
9080 CHECK_WINDOW_END (w);
9081 if (Z == Z_BYTE && CHARPOS (opoint) != BYTEPOS (opoint))
12adba34 9082 abort ();
5f5c8ee5 9083 if (BYTEPOS (opoint) < CHARPOS (opoint))
12adba34 9084 abort ();
a2889657 9085
28995e67
RS
9086 /* If %c is in mode line, update it if needed. */
9087 if (!NILP (w->column_number_displayed)
9088 /* This alternative quickly identifies a common case
9089 where no change is needed. */
9090 && !(PT == XFASTINT (w->last_point)
8850a573
RS
9091 && XFASTINT (w->last_modified) >= MODIFF
9092 && XFASTINT (w->last_overlay_modified) >= OVERLAY_MODIFF)
28995e67
RS
9093 && XFASTINT (w->column_number_displayed) != current_column ())
9094 update_mode_line = 1;
9095
5f5c8ee5
GM
9096 /* Count number of windows showing the selected buffer. An indirect
9097 buffer counts as its base buffer. */
9098 if (!just_this_one_p)
42640f83
RS
9099 {
9100 struct buffer *current_base, *window_base;
9101 current_base = current_buffer;
9102 window_base = XBUFFER (XWINDOW (selected_window)->buffer);
9103 if (current_base->base_buffer)
9104 current_base = current_base->base_buffer;
9105 if (window_base->base_buffer)
9106 window_base = window_base->base_buffer;
9107 if (current_base == window_base)
9108 buffer_shared++;
9109 }
a2889657 9110
5f5c8ee5
GM
9111 /* Point refers normally to the selected window. For any other
9112 window, set up appropriate value. */
a2889657
JB
9113 if (!EQ (window, selected_window))
9114 {
12adba34
RS
9115 int new_pt = XMARKER (w->pointm)->charpos;
9116 int new_pt_byte = marker_byte_position (w->pointm);
f67a0f51 9117 if (new_pt < BEGV)
a2889657 9118 {
f67a0f51 9119 new_pt = BEGV;
12adba34
RS
9120 new_pt_byte = BEGV_BYTE;
9121 set_marker_both (w->pointm, Qnil, BEGV, BEGV_BYTE);
a2889657 9122 }
f67a0f51 9123 else if (new_pt > (ZV - 1))
a2889657 9124 {
f67a0f51 9125 new_pt = ZV;
12adba34
RS
9126 new_pt_byte = ZV_BYTE;
9127 set_marker_both (w->pointm, Qnil, ZV, ZV_BYTE);
a2889657 9128 }
5f5c8ee5 9129
f67a0f51 9130 /* We don't use SET_PT so that the point-motion hooks don't run. */
12adba34 9131 TEMP_SET_PT_BOTH (new_pt, new_pt_byte);
a2889657
JB
9132 }
9133
f4faa47c 9134 /* If any of the character widths specified in the display table
5f5c8ee5
GM
9135 have changed, invalidate the width run cache. It's true that
9136 this may be a bit late to catch such changes, but the rest of
f4faa47c
JB
9137 redisplay goes (non-fatally) haywire when the display table is
9138 changed, so why should we worry about doing any better? */
9139 if (current_buffer->width_run_cache)
9140 {
f908610f 9141 struct Lisp_Char_Table *disptab = buffer_display_table ();
f4faa47c
JB
9142
9143 if (! disptab_matches_widthtab (disptab,
9144 XVECTOR (current_buffer->width_table)))
9145 {
9146 invalidate_region_cache (current_buffer,
9147 current_buffer->width_run_cache,
9148 BEG, Z);
9149 recompute_width_table (current_buffer, disptab);
9150 }
9151 }
9152
a2889657 9153 /* If window-start is screwed up, choose a new one. */
a2889657
JB
9154 if (XMARKER (w->start)->buffer != current_buffer)
9155 goto recenter;
9156
5f5c8ee5 9157 SET_TEXT_POS_FROM_MARKER (startp, w->start);
a2889657 9158
cf0df6ab
RS
9159 /* If someone specified a new starting point but did not insist,
9160 check whether it can be used. */
cfad01b4
GM
9161 if (!NILP (w->optional_new_start)
9162 && CHARPOS (startp) >= BEGV
9163 && CHARPOS (startp) <= ZV)
cf0df6ab
RS
9164 {
9165 w->optional_new_start = Qnil;
5f5c8ee5
GM
9166 start_display (&it, w, startp);
9167 move_it_to (&it, PT, 0, it.last_visible_y, -1,
9168 MOVE_TO_POS | MOVE_TO_X | MOVE_TO_Y);
9169 if (IT_CHARPOS (it) == PT)
cf0df6ab
RS
9170 w->force_start = Qt;
9171 }
9172
8de2d90b 9173 /* Handle case where place to start displaying has been specified,
aa6d10fa 9174 unless the specified location is outside the accessible range. */
9472f927
GM
9175 if (!NILP (w->force_start)
9176 || w->frozen_window_start_p)
a2889657 9177 {
e63574d7 9178 w->force_start = Qnil;
5f5c8ee5 9179 w->vscroll = 0;
b5174a51 9180 w->window_end_valid = Qnil;
5f5c8ee5
GM
9181
9182 /* Forget any recorded base line for line number display. */
9183 if (!current_matrix_up_to_date_p
9184 || current_buffer->clip_changed)
9185 w->base_line_number = Qnil;
9186
75c43375
RS
9187 /* Redisplay the mode line. Select the buffer properly for that.
9188 Also, run the hook window-scroll-functions
9189 because we have scrolled. */
e63574d7
RS
9190 /* Note, we do this after clearing force_start because
9191 if there's an error, it is better to forget about force_start
9192 than to get into an infinite loop calling the hook functions
9193 and having them get more errors. */
75c43375
RS
9194 if (!update_mode_line
9195 || ! NILP (Vwindow_scroll_functions))
e481f960 9196 {
e481f960
RS
9197 update_mode_line = 1;
9198 w->update_mode_line = Qt;
5f5c8ee5 9199 startp = run_window_scroll_functions (window, startp);
e481f960 9200 }
5f5c8ee5 9201
c2213350 9202 XSETFASTINT (w->last_modified, 0);
8850a573 9203 XSETFASTINT (w->last_overlay_modified, 0);
5f5c8ee5
GM
9204 if (CHARPOS (startp) < BEGV)
9205 SET_TEXT_POS (startp, BEGV, BEGV_BYTE);
9206 else if (CHARPOS (startp) > ZV)
9207 SET_TEXT_POS (startp, ZV, ZV_BYTE);
9208
9209 /* Redisplay, then check if cursor has been set during the
9210 redisplay. Give up if new fonts were loaded. */
9211 if (!try_window (window, startp))
9212 {
9213 w->force_start = Qt;
9214 clear_glyph_matrix (w->desired_matrix);
9215 goto restore_buffers;
9216 }
9217
9472f927 9218 if (w->cursor.vpos < 0 && !w->frozen_window_start_p)
5f5c8ee5 9219 {
b28cb6ed
GM
9220 /* If point does not appear, try to move point so it does
9221 appear. The desired matrix has been built above, so we
9222 can use it here. */
9223 int window_height;
9224 struct glyph_row *row;
9225
9226 window_height = window_box_height (w) / 2;
9227 row = MATRIX_FIRST_TEXT_ROW (w->desired_matrix);
9228 while (MATRIX_ROW_BOTTOM_Y (row) < window_height)
5f5c8ee5
GM
9229 ++row;
9230
9231 TEMP_SET_PT_BOTH (MATRIX_ROW_START_CHARPOS (row),
9232 MATRIX_ROW_START_BYTEPOS (row));
9233
90adcf20 9234 if (w != XWINDOW (selected_window))
12adba34 9235 set_marker_both (w->pointm, Qnil, PT, PT_BYTE);
5f5c8ee5
GM
9236 else if (current_buffer == old)
9237 SET_TEXT_POS (lpoint, PT, PT_BYTE);
9238
9239 set_cursor_from_row (w, row, w->desired_matrix, 0, 0, 0, 0);
9240
9241 /* If we are highlighting the region, then we just changed
9242 the region, so redisplay to show it. */
df0b5ea1
RS
9243 if (!NILP (Vtransient_mark_mode)
9244 && !NILP (current_buffer->mark_active))
6f27fa9b 9245 {
5f5c8ee5
GM
9246 clear_glyph_matrix (w->desired_matrix);
9247 if (!try_window (window, startp))
9248 goto restore_buffers;
6f27fa9b 9249 }
a2889657 9250 }
5f5c8ee5
GM
9251
9252 make_cursor_line_fully_visible (w);
9253#if GLYPH_DEBUG
9254 debug_method_add (w, "forced window start");
9255#endif
a2889657
JB
9256 goto done;
9257 }
9258
5f5c8ee5
GM
9259 /* Handle case where text has not changed, only point, and it has
9260 not moved off the frame. */
9261 if (current_matrix_up_to_date_p
47589c8c
GM
9262 && (rc = try_cursor_movement (window, startp, &temp_scroll_step),
9263 rc != 0))
a2889657 9264 {
47589c8c 9265 if (rc == -1)
5f5c8ee5 9266 goto try_to_scroll;
47589c8c
GM
9267 else
9268 goto done;
a2889657
JB
9269 }
9270 /* If current starting point was originally the beginning of a line
9271 but no longer is, find a new starting point. */
265a9e55 9272 else if (!NILP (w->start_at_line_beg)
5f5c8ee5
GM
9273 && !(CHARPOS (startp) <= BEGV
9274 || FETCH_BYTE (BYTEPOS (startp) - 1) == '\n'))
a2889657 9275 {
5f5c8ee5
GM
9276#if GLYPH_DEBUG
9277 debug_method_add (w, "recenter 1");
9278#endif
a2889657
JB
9279 goto recenter;
9280 }
5f5c8ee5
GM
9281
9282 /* Try scrolling with try_window_id. */
9142dd5b
GM
9283 else if (/* Windows and buffers haven't changed. */
9284 !windows_or_buffers_changed
5f5c8ee5
GM
9285 /* Window must be either use window-based redisplay or
9286 be full width. */
9287 && (FRAME_WINDOW_P (f)
c59c668a 9288 || (line_ins_del_ok && WINDOW_FULL_WIDTH_P (w)))
5f5c8ee5
GM
9289 && !MINI_WINDOW_P (w)
9290 /* Point is not known NOT to appear in window. */
9291 && PT >= CHARPOS (startp)
a2889657 9292 && XFASTINT (w->last_modified)
5f5c8ee5
GM
9293 /* Window is not hscrolled. */
9294 && XFASTINT (w->hscroll) == 0
9295 /* Selective display has not changed. */
9296 && !current_buffer->clip_changed
9297 /* Current matrix is up to date. */
9298 && !NILP (w->window_end_valid)
9299 /* Can't use this case if highlighting a region because
9300 a cursor movement will do more than just set the cursor. */
bd66d1ba
RS
9301 && !(!NILP (Vtransient_mark_mode)
9302 && !NILP (current_buffer->mark_active))
9303 && NILP (w->region_showing)
8f897821 9304 && NILP (Vshow_trailing_whitespace)
5f5c8ee5 9305 /* Overlay arrow position and string not changed. */
d45de95b 9306 && EQ (last_arrow_position, COERCE_MARKER (Voverlay_arrow_position))
a2889657 9307 && EQ (last_arrow_string, Voverlay_arrow_string)
5f5c8ee5
GM
9308 /* Value is > 0 if update has been done, it is -1 if we
9309 know that the same window start will not work. It is 0
9310 if unsuccessful for some other reason. */
9311 && (tem = try_window_id (w)) != 0)
a2889657 9312 {
5f5c8ee5 9313#if GLYPH_DEBUG
ef121659 9314 debug_method_add (w, "try_window_id %d", tem);
5f5c8ee5
GM
9315#endif
9316
9317 if (fonts_changed_p)
9318 goto restore_buffers;
a2889657
JB
9319 if (tem > 0)
9320 goto done;
ef121659 9321
5f5c8ee5
GM
9322 /* Otherwise try_window_id has returned -1 which means that we
9323 don't want the alternative below this comment to execute. */
a2889657 9324 }
5f5c8ee5
GM
9325 else if (CHARPOS (startp) >= BEGV
9326 && CHARPOS (startp) <= ZV
9327 && PT >= CHARPOS (startp)
9328 && (CHARPOS (startp) < ZV
e9874cee 9329 /* Avoid starting at end of buffer. */
5f5c8ee5 9330 || CHARPOS (startp) == BEGV
8850a573
RS
9331 || (XFASTINT (w->last_modified) >= MODIFF
9332 && XFASTINT (w->last_overlay_modified) >= OVERLAY_MODIFF)))
a2889657 9333 {
5f5c8ee5
GM
9334#if GLYPH_DEBUG
9335 debug_method_add (w, "same window start");
9336#endif
9337
9338 /* Try to redisplay starting at same place as before.
9339 If point has not moved off frame, accept the results. */
9340 if (!current_matrix_up_to_date_p
9341 /* Don't use try_window_reusing_current_matrix in this case
15e26c76
GM
9342 because a window scroll function can have changed the
9343 buffer. */
5f5c8ee5
GM
9344 || !NILP (Vwindow_scroll_functions)
9345 || MINI_WINDOW_P (w)
9346 || !try_window_reusing_current_matrix (w))
9347 {
9348 IF_DEBUG (debug_method_add (w, "1"));
9349 try_window (window, startp);
9350 }
9351
9352 if (fonts_changed_p)
9353 goto restore_buffers;
9354
9355 if (w->cursor.vpos >= 0)
aa6d10fa 9356 {
5f5c8ee5
GM
9357 if (!just_this_one_p
9358 || current_buffer->clip_changed
9142dd5b 9359 || BEG_UNCHANGED < CHARPOS (startp))
aa6d10fa
RS
9360 /* Forget any recorded base line for line number display. */
9361 w->base_line_number = Qnil;
5f5c8ee5
GM
9362
9363 make_cursor_line_fully_visible (w);
aa6d10fa
RS
9364 goto done;
9365 }
a2889657 9366 else
5f5c8ee5 9367 clear_glyph_matrix (w->desired_matrix);
a2889657
JB
9368 }
9369
5f5c8ee5
GM
9370 try_to_scroll:
9371
c2213350 9372 XSETFASTINT (w->last_modified, 0);
8850a573 9373 XSETFASTINT (w->last_overlay_modified, 0);
5f5c8ee5 9374
e481f960
RS
9375 /* Redisplay the mode line. Select the buffer properly for that. */
9376 if (!update_mode_line)
9377 {
e481f960
RS
9378 update_mode_line = 1;
9379 w->update_mode_line = Qt;
9380 }
a2889657 9381
5f5c8ee5
GM
9382 /* Try to scroll by specified few lines. */
9383 if ((scroll_conservatively
9384 || scroll_step
9385 || temp_scroll_step
9386 || NUMBERP (current_buffer->scroll_up_aggressively)
9387 || NUMBERP (current_buffer->scroll_down_aggressively))
09cacf9c 9388 && !current_buffer->clip_changed
5f5c8ee5
GM
9389 && CHARPOS (startp) >= BEGV
9390 && CHARPOS (startp) <= ZV)
0789adb2 9391 {
5f5c8ee5
GM
9392 /* The function returns -1 if new fonts were loaded, 1 if
9393 successful, 0 if not successful. */
9394 int rc = try_scrolling (window, just_this_one_p,
9395 scroll_conservatively,
9396 scroll_step,
9397 temp_scroll_step);
9398 if (rc > 0)
9399 goto done;
9400 else if (rc < 0)
9401 goto restore_buffers;
9402 }
f9c8af06 9403
5f5c8ee5 9404 /* Finally, just choose place to start which centers point */
5936754e 9405
5f5c8ee5 9406 recenter:
44173109 9407
5f5c8ee5
GM
9408#if GLYPH_DEBUG
9409 debug_method_add (w, "recenter");
9410#endif
0789adb2 9411
5f5c8ee5 9412 /* w->vscroll = 0; */
0789adb2 9413
5f5c8ee5
GM
9414 /* Forget any previously recorded base line for line number display. */
9415 if (!current_matrix_up_to_date_p
9416 || current_buffer->clip_changed)
9417 w->base_line_number = Qnil;
9418
9419 /* Move backward half the height of the window. */
9420 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID);
9421 it.current_y = it.last_visible_y;
9422 move_it_vertically_backward (&it, it.last_visible_y / 2);
9423 xassert (IT_CHARPOS (it) >= BEGV);
9424
9425 /* The function move_it_vertically_backward may move over more
9426 than the specified y-distance. If it->w is small, e.g. a
9427 mini-buffer window, we may end up in front of the window's
9428 display area. Start displaying at the start of the line
9429 containing PT in this case. */
9430 if (it.current_y <= 0)
9431 {
9432 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID);
9433 move_it_vertically (&it, 0);
9434 xassert (IT_CHARPOS (it) <= PT);
9435 it.current_y = 0;
0789adb2
RS
9436 }
9437
5f5c8ee5
GM
9438 it.current_x = it.hpos = 0;
9439
9440 /* Set startp here explicitly in case that helps avoid an infinite loop
9441 in case the window-scroll-functions functions get errors. */
9442 set_marker_both (w->start, Qnil, IT_CHARPOS (it), IT_BYTEPOS (it));
9443
9444 /* Run scroll hooks. */
9445 startp = run_window_scroll_functions (window, it.current.pos);
9446
9447 /* Redisplay the window. */
9448 if (!current_matrix_up_to_date_p
9449 || windows_or_buffers_changed
9450 /* Don't use try_window_reusing_current_matrix in this case
9451 because it can have changed the buffer. */
9452 || !NILP (Vwindow_scroll_functions)
9453 || !just_this_one_p
9454 || MINI_WINDOW_P (w)
9455 || !try_window_reusing_current_matrix (w))
9456 try_window (window, startp);
9457
9458 /* If new fonts have been loaded (due to fontsets), give up. We
9459 have to start a new redisplay since we need to re-adjust glyph
9460 matrices. */
9461 if (fonts_changed_p)
9462 goto restore_buffers;
9463
9464 /* If cursor did not appear assume that the middle of the window is
9465 in the first line of the window. Do it again with the next line.
9466 (Imagine a window of height 100, displaying two lines of height
9467 60. Moving back 50 from it->last_visible_y will end in the first
9468 line.) */
9469 if (w->cursor.vpos < 0)
a2889657 9470 {
5f5c8ee5
GM
9471 if (!NILP (w->window_end_valid)
9472 && PT >= Z - XFASTINT (w->window_end_pos))
a2889657 9473 {
5f5c8ee5
GM
9474 clear_glyph_matrix (w->desired_matrix);
9475 move_it_by_lines (&it, 1, 0);
9476 try_window (window, it.current.pos);
a2889657 9477 }
5f5c8ee5 9478 else if (PT < IT_CHARPOS (it))
a2889657 9479 {
5f5c8ee5
GM
9480 clear_glyph_matrix (w->desired_matrix);
9481 move_it_by_lines (&it, -1, 0);
9482 try_window (window, it.current.pos);
9483 }
9484 else
9485 {
9486 /* Not much we can do about it. */
a2889657 9487 }
a2889657 9488 }
010494d0 9489
5f5c8ee5
GM
9490 /* Consider the following case: Window starts at BEGV, there is
9491 invisible, intangible text at BEGV, so that display starts at
9492 some point START > BEGV. It can happen that we are called with
9493 PT somewhere between BEGV and START. Try to handle that case. */
9494 if (w->cursor.vpos < 0)
835766b6 9495 {
5f5c8ee5
GM
9496 struct glyph_row *row = w->current_matrix->rows;
9497 if (row->mode_line_p)
9498 ++row;
9499 set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0);
835766b6 9500 }
5f5c8ee5
GM
9501
9502 make_cursor_line_fully_visible (w);
b5174a51 9503
74d481ac
GM
9504 done:
9505
5f5c8ee5
GM
9506 SET_TEXT_POS_FROM_MARKER (startp, w->start);
9507 w->start_at_line_beg = ((CHARPOS (startp) == BEGV
9508 || FETCH_BYTE (BYTEPOS (startp) - 1) == '\n')
9509 ? Qt : Qnil);
a2889657 9510
5f5c8ee5 9511 /* Display the mode line, if we must. */
e481f960 9512 if ((update_mode_line
aa6d10fa 9513 /* If window not full width, must redo its mode line
5f5c8ee5
GM
9514 if (a) the window to its side is being redone and
9515 (b) we do a frame-based redisplay. This is a consequence
9516 of how inverted lines are drawn in frame-based redisplay. */
9517 || (!just_this_one_p
9518 && !FRAME_WINDOW_P (f)
9519 && !WINDOW_FULL_WIDTH_P (w))
9520 /* Line number to display. */
155ef550 9521 || INTEGERP (w->base_line_pos)
5f5c8ee5 9522 /* Column number is displayed and different from the one displayed. */
155ef550
KH
9523 || (!NILP (w->column_number_displayed)
9524 && XFASTINT (w->column_number_displayed) != current_column ()))
5f5c8ee5
GM
9525 /* This means that the window has a mode line. */
9526 && (WINDOW_WANTS_MODELINE_P (w)
045dee35 9527 || WINDOW_WANTS_HEADER_LINE_P (w)))
5ba50c51 9528 {
5da11938
GM
9529 Lisp_Object old_selected_frame;
9530
9531 old_selected_frame = selected_frame;
9532
5da11938 9533 XSETFRAME (selected_frame, f);
5f5c8ee5 9534 display_mode_lines (w);
5da11938 9535 selected_frame = old_selected_frame;
5f5c8ee5
GM
9536
9537 /* If mode line height has changed, arrange for a thorough
9538 immediate redisplay using the correct mode line height. */
9539 if (WINDOW_WANTS_MODELINE_P (w)
9540 && CURRENT_MODE_LINE_HEIGHT (w) != DESIRED_MODE_LINE_HEIGHT (w))
5ba50c51 9541 {
5f5c8ee5
GM
9542 fonts_changed_p = 1;
9543 MATRIX_MODE_LINE_ROW (w->current_matrix)->height
9544 = DESIRED_MODE_LINE_HEIGHT (w);
5ba50c51 9545 }
5f5c8ee5
GM
9546
9547 /* If top line height has changed, arrange for a thorough
9548 immediate redisplay using the correct mode line height. */
045dee35
GM
9549 if (WINDOW_WANTS_HEADER_LINE_P (w)
9550 && CURRENT_HEADER_LINE_HEIGHT (w) != DESIRED_HEADER_LINE_HEIGHT (w))
5f5c8ee5
GM
9551 {
9552 fonts_changed_p = 1;
045dee35
GM
9553 MATRIX_HEADER_LINE_ROW (w->current_matrix)->height
9554 = DESIRED_HEADER_LINE_HEIGHT (w);
5f5c8ee5
GM
9555 }
9556
9557 if (fonts_changed_p)
9558 goto restore_buffers;
5ba50c51 9559 }
5f5c8ee5
GM
9560
9561 if (!line_number_displayed
9562 && !BUFFERP (w->base_line_pos))
aa6d10fa
RS
9563 {
9564 w->base_line_pos = Qnil;
9565 w->base_line_number = Qnil;
9566 }
a2889657 9567
5f5c8ee5
GM
9568 finish_menu_bars:
9569
7ce2c095 9570 /* When we reach a frame's selected window, redo the frame's menu bar. */
e481f960 9571 if (update_mode_line
5f5c8ee5
GM
9572 && EQ (FRAME_SELECTED_WINDOW (f), window))
9573 {
9574 int redisplay_menu_p = 0;
9575
9576 if (FRAME_WINDOW_P (f))
9577 {
dc937613 9578#if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI)
5f5c8ee5 9579 redisplay_menu_p = FRAME_EXTERNAL_MENU_BAR (f);
76412d64 9580#else
5f5c8ee5 9581 redisplay_menu_p = FRAME_MENU_BAR_LINES (f) > 0;
76412d64 9582#endif
5f5c8ee5
GM
9583 }
9584 else
9585 redisplay_menu_p = FRAME_MENU_BAR_LINES (f) > 0;
9586
9587 if (redisplay_menu_p)
9588 display_menu_bar (w);
9589
9590#ifdef HAVE_WINDOW_SYSTEM
e037b9ec
GM
9591 if (WINDOWP (f->tool_bar_window)
9592 && (FRAME_TOOL_BAR_LINES (f) > 0
9593 || auto_resize_tool_bars_p))
9594 redisplay_tool_bar (f);
5f5c8ee5
GM
9595#endif
9596 }
7ce2c095 9597
88f22aff 9598 finish_scroll_bars:
5f5c8ee5 9599
88f22aff 9600 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
30c566e4 9601 {
b1d1124b 9602 int start, end, whole;
30c566e4 9603
b1d1124b 9604 /* Calculate the start and end positions for the current window.
3505ea70
JB
9605 At some point, it would be nice to choose between scrollbars
9606 which reflect the whole buffer size, with special markers
9607 indicating narrowing, and scrollbars which reflect only the
9608 visible region.
9609
5f5c8ee5 9610 Note that mini-buffers sometimes aren't displaying any text. */
c6e89d6c 9611 if (!MINI_WINDOW_P (w)
5f5c8ee5 9612 || (w == XWINDOW (minibuf_window)
c6e89d6c 9613 && NILP (echo_area_buffer[0])))
b1d1124b 9614 {
8a9311d7 9615 whole = ZV - BEGV;
4d641a15 9616 start = marker_position (w->start) - BEGV;
b1d1124b
JB
9617 /* I don't think this is guaranteed to be right. For the
9618 moment, we'll pretend it is. */
5f5c8ee5 9619 end = (Z - XFASTINT (w->window_end_pos)) - BEGV;
3505ea70 9620
5f5c8ee5
GM
9621 if (end < start)
9622 end = start;
9623 if (whole < (end - start))
9624 whole = end - start;
b1d1124b
JB
9625 }
9626 else
9627 start = end = whole = 0;
30c566e4 9628
88f22aff 9629 /* Indicate what this scroll bar ought to be displaying now. */
7eb9ba41 9630 (*set_vertical_scroll_bar_hook) (w, end - start, whole, start);
30c566e4 9631
5f5c8ee5
GM
9632 /* Note that we actually used the scroll bar attached to this
9633 window, so it shouldn't be deleted at the end of redisplay. */
88f22aff 9634 (*redeem_scroll_bar_hook) (w);
30c566e4 9635 }
b1d1124b 9636
5f5c8ee5
GM
9637 restore_buffers:
9638
9639 /* Restore current_buffer and value of point in it. */
9640 TEMP_SET_PT_BOTH (CHARPOS (opoint), BYTEPOS (opoint));
6a93695f 9641 set_buffer_internal_1 (old);
5f5c8ee5 9642 TEMP_SET_PT_BOTH (CHARPOS (lpoint), BYTEPOS (lpoint));
2e54982e
RS
9643
9644 unbind_to (count, Qnil);
a2889657 9645}
a2889657 9646
5f5c8ee5
GM
9647
9648/* Build the complete desired matrix of WINDOW with a window start
9649 buffer position POS. Value is non-zero if successful. It is zero
9650 if fonts were loaded during redisplay which makes re-adjusting
9651 glyph matrices necessary. */
9652
9653int
a2889657
JB
9654try_window (window, pos)
9655 Lisp_Object window;
5f5c8ee5
GM
9656 struct text_pos pos;
9657{
9658 struct window *w = XWINDOW (window);
9659 struct it it;
9660 struct glyph_row *last_text_row = NULL;
9cbab4ff 9661
5f5c8ee5
GM
9662 /* Make POS the new window start. */
9663 set_marker_both (w->start, Qnil, CHARPOS (pos), BYTEPOS (pos));
12adba34 9664
5f5c8ee5
GM
9665 /* Mark cursor position as unknown. No overlay arrow seen. */
9666 w->cursor.vpos = -1;
a2889657 9667 overlay_arrow_seen = 0;
642eefc6 9668
5f5c8ee5
GM
9669 /* Initialize iterator and info to start at POS. */
9670 start_display (&it, w, pos);
a2889657 9671
5f5c8ee5
GM
9672 /* Display all lines of W. */
9673 while (it.current_y < it.last_visible_y)
9674 {
9675 if (display_line (&it))
9676 last_text_row = it.glyph_row - 1;
9677 if (fonts_changed_p)
9678 return 0;
9679 }
a2889657 9680
5f5c8ee5
GM
9681 /* If bottom moved off end of frame, change mode line percentage. */
9682 if (XFASTINT (w->window_end_pos) <= 0
9683 && Z != IT_CHARPOS (it))
a2889657
JB
9684 w->update_mode_line = Qt;
9685
5f5c8ee5
GM
9686 /* Set window_end_pos to the offset of the last character displayed
9687 on the window from the end of current_buffer. Set
9688 window_end_vpos to its row number. */
9689 if (last_text_row)
9690 {
9691 xassert (MATRIX_ROW_DISPLAYS_TEXT_P (last_text_row));
9692 w->window_end_bytepos
9693 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_text_row);
9694 XSETFASTINT (w->window_end_pos,
9695 Z - MATRIX_ROW_END_CHARPOS (last_text_row));
9696 XSETFASTINT (w->window_end_vpos,
9697 MATRIX_ROW_VPOS (last_text_row, w->desired_matrix));
9698 xassert (MATRIX_ROW (w->desired_matrix, XFASTINT (w->window_end_vpos))
9699 ->displays_text_p);
9700 }
9701 else
9702 {
9703 w->window_end_bytepos = 0;
9704 XSETFASTINT (w->window_end_pos, 0);
9705 XSETFASTINT (w->window_end_vpos, 0);
9706 }
9707
a2889657
JB
9708 /* But that is not valid info until redisplay finishes. */
9709 w->window_end_valid = Qnil;
5f5c8ee5 9710 return 1;
a2889657 9711}
5f5c8ee5
GM
9712
9713
a2889657 9714\f
5f5c8ee5
GM
9715/************************************************************************
9716 Window redisplay reusing current matrix when buffer has not changed
9717 ************************************************************************/
9718
9719/* Try redisplay of window W showing an unchanged buffer with a
9720 different window start than the last time it was displayed by
9721 reusing its current matrix. Value is non-zero if successful.
9722 W->start is the new window start. */
a2889657
JB
9723
9724static int
5f5c8ee5
GM
9725try_window_reusing_current_matrix (w)
9726 struct window *w;
a2889657 9727{
5f5c8ee5
GM
9728 struct frame *f = XFRAME (w->frame);
9729 struct glyph_row *row, *bottom_row;
9730 struct it it;
9731 struct run run;
9732 struct text_pos start, new_start;
9733 int nrows_scrolled, i;
9734 struct glyph_row *last_text_row;
9735 struct glyph_row *last_reused_text_row;
9736 struct glyph_row *start_row;
9737 int start_vpos, min_y, max_y;
9738
d18354b6
GM
9739
9740 if (/* This function doesn't handle terminal frames. */
9741 !FRAME_WINDOW_P (f)
9742 /* Don't try to reuse the display if windows have been split
9743 or such. */
9744 || windows_or_buffers_changed)
5f5c8ee5 9745 return 0;
a2889657 9746
5f5c8ee5
GM
9747 /* Can't do this if region may have changed. */
9748 if ((!NILP (Vtransient_mark_mode)
9749 && !NILP (current_buffer->mark_active))
8f897821
GM
9750 || !NILP (w->region_showing)
9751 || !NILP (Vshow_trailing_whitespace))
5f5c8ee5 9752 return 0;
a2889657 9753
5f5c8ee5 9754 /* If top-line visibility has changed, give up. */
045dee35
GM
9755 if (WINDOW_WANTS_HEADER_LINE_P (w)
9756 != MATRIX_HEADER_LINE_ROW (w->current_matrix)->mode_line_p)
5f5c8ee5
GM
9757 return 0;
9758
9759 /* Give up if old or new display is scrolled vertically. We could
9760 make this function handle this, but right now it doesn't. */
9761 start_row = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
9762 if (w->vscroll || MATRIX_ROW_PARTIALLY_VISIBLE_P (start_row))
9763 return 0;
9764
9765 /* The variable new_start now holds the new window start. The old
9766 start `start' can be determined from the current matrix. */
9767 SET_TEXT_POS_FROM_MARKER (new_start, w->start);
9768 start = start_row->start.pos;
9769 start_vpos = MATRIX_ROW_VPOS (start_row, w->current_matrix);
a2889657 9770
5f5c8ee5
GM
9771 /* Clear the desired matrix for the display below. */
9772 clear_glyph_matrix (w->desired_matrix);
9773
9774 if (CHARPOS (new_start) <= CHARPOS (start))
9775 {
9776 int first_row_y;
9777
9778 IF_DEBUG (debug_method_add (w, "twu1"));
9779
9780 /* Display up to a row that can be reused. The variable
9781 last_text_row is set to the last row displayed that displays
9782 text. */
9783 start_display (&it, w, new_start);
9784 first_row_y = it.current_y;
9785 w->cursor.vpos = -1;
9786 last_text_row = last_reused_text_row = NULL;
9787 while (it.current_y < it.last_visible_y
9788 && IT_CHARPOS (it) < CHARPOS (start)
9789 && !fonts_changed_p)
9790 if (display_line (&it))
9791 last_text_row = it.glyph_row - 1;
9792
9793 /* A value of current_y < last_visible_y means that we stopped
9794 at the previous window start, which in turn means that we
9795 have at least one reusable row. */
9796 if (it.current_y < it.last_visible_y)
a2889657 9797 {
5f5c8ee5
GM
9798 nrows_scrolled = it.vpos;
9799
9800 /* Find PT if not already found in the lines displayed. */
9801 if (w->cursor.vpos < 0)
a2889657 9802 {
5f5c8ee5
GM
9803 int dy = it.current_y - first_row_y;
9804
9805 row = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
9806 while (MATRIX_ROW_DISPLAYS_TEXT_P (row))
9807 {
9808 if (PT >= MATRIX_ROW_START_CHARPOS (row)
9809 && PT < MATRIX_ROW_END_CHARPOS (row))
9810 {
9811 set_cursor_from_row (w, row, w->current_matrix, 0, 0,
9812 dy, nrows_scrolled);
9813 break;
9814 }
9815
9816 if (MATRIX_ROW_BOTTOM_Y (row) + dy >= it.last_visible_y)
9817 break;
9818
9819 ++row;
9820 }
9821
9822 /* Give up if point was not found. This shouldn't
9823 happen often; not more often than with try_window
9824 itself. */
9825 if (w->cursor.vpos < 0)
9826 {
9827 clear_glyph_matrix (w->desired_matrix);
9828 return 0;
9829 }
a2889657 9830 }
5f5c8ee5
GM
9831
9832 /* Scroll the display. Do it before the current matrix is
9833 changed. The problem here is that update has not yet
9834 run, i.e. part of the current matrix is not up to date.
9835 scroll_run_hook will clear the cursor, and use the
9836 current matrix to get the height of the row the cursor is
9837 in. */
9838 run.current_y = first_row_y;
9839 run.desired_y = it.current_y;
9840 run.height = it.last_visible_y - it.current_y;
15e26c76
GM
9841 if (run.height > 0
9842 && run.current_y != run.desired_y)
a2889657 9843 {
5f5c8ee5
GM
9844 update_begin (f);
9845 rif->update_window_begin_hook (w);
64d1e7d3 9846 rif->clear_mouse_face (w);
5f5c8ee5 9847 rif->scroll_run_hook (w, &run);
64d1e7d3 9848 rif->update_window_end_hook (w, 0, 0);
5f5c8ee5 9849 update_end (f);
a2889657 9850 }
5f5c8ee5
GM
9851
9852 /* Shift current matrix down by nrows_scrolled lines. */
9853 bottom_row = MATRIX_BOTTOM_TEXT_ROW (w->current_matrix, w);
9854 rotate_matrix (w->current_matrix,
9855 start_vpos,
9856 MATRIX_ROW_VPOS (bottom_row, w->current_matrix),
9857 nrows_scrolled);
9858
9859 /* Disable lines not reused. */
9860 for (i = 0; i < it.vpos; ++i)
9861 MATRIX_ROW (w->current_matrix, i)->enabled_p = 0;
9862
9863 /* Re-compute Y positions. */
9864 row = MATRIX_FIRST_TEXT_ROW (w->current_matrix) + nrows_scrolled;
045dee35 9865 min_y = WINDOW_DISPLAY_HEADER_LINE_HEIGHT (w);
5f5c8ee5
GM
9866 max_y = it.last_visible_y;
9867 while (row < bottom_row)
d2f84654 9868 {
5f5c8ee5
GM
9869 row->y = it.current_y;
9870
9871 if (row->y < min_y)
9872 row->visible_height = row->height - (min_y - row->y);
9873 else if (row->y + row->height > max_y)
9874 row->visible_height
9875 = row->height - (row->y + row->height - max_y);
9876 else
9877 row->visible_height = row->height;
9878
9879 it.current_y += row->height;
9880 ++it.vpos;
9881
9882 if (MATRIX_ROW_DISPLAYS_TEXT_P (row))
9883 last_reused_text_row = row;
9884 if (MATRIX_ROW_BOTTOM_Y (row) >= it.last_visible_y)
9885 break;
9886 ++row;
d2f84654 9887 }
a2889657 9888 }
5f5c8ee5
GM
9889
9890 /* Update window_end_pos etc.; last_reused_text_row is the last
9891 reused row from the current matrix containing text, if any.
9892 The value of last_text_row is the last displayed line
9893 containing text. */
9894 if (last_reused_text_row)
a2889657 9895 {
5f5c8ee5
GM
9896 w->window_end_bytepos
9897 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_reused_text_row);
9898 XSETFASTINT (w->window_end_pos,
9899 Z - MATRIX_ROW_END_CHARPOS (last_reused_text_row));
9900 XSETFASTINT (w->window_end_vpos,
9901 MATRIX_ROW_VPOS (last_reused_text_row,
9902 w->current_matrix));
a2889657 9903 }
5f5c8ee5
GM
9904 else if (last_text_row)
9905 {
9906 w->window_end_bytepos
9907 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_text_row);
9908 XSETFASTINT (w->window_end_pos,
9909 Z - MATRIX_ROW_END_CHARPOS (last_text_row));
9910 XSETFASTINT (w->window_end_vpos,
9911 MATRIX_ROW_VPOS (last_text_row, w->desired_matrix));
9912 }
9913 else
9914 {
9915 /* This window must be completely empty. */
9916 w->window_end_bytepos = 0;
9917 XSETFASTINT (w->window_end_pos, 0);
9918 XSETFASTINT (w->window_end_vpos, 0);
9919 }
9920 w->window_end_valid = Qnil;
a2889657 9921
5f5c8ee5
GM
9922 /* Update hint: don't try scrolling again in update_window. */
9923 w->desired_matrix->no_scrolling_p = 1;
9924
9925#if GLYPH_DEBUG
9926 debug_method_add (w, "try_window_reusing_current_matrix 1");
9927#endif
9928 return 1;
a2889657 9929 }
5f5c8ee5
GM
9930 else if (CHARPOS (new_start) > CHARPOS (start))
9931 {
9932 struct glyph_row *pt_row, *row;
9933 struct glyph_row *first_reusable_row;
9934 struct glyph_row *first_row_to_display;
9935 int dy;
9936 int yb = window_text_bottom_y (w);
9937
9938 IF_DEBUG (debug_method_add (w, "twu2"));
9939
9940 /* Find the row starting at new_start, if there is one. Don't
9941 reuse a partially visible line at the end. */
9942 first_reusable_row = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
9943 while (first_reusable_row->enabled_p
9944 && MATRIX_ROW_BOTTOM_Y (first_reusable_row) < yb
9945 && (MATRIX_ROW_START_CHARPOS (first_reusable_row)
9946 < CHARPOS (new_start)))
9947 ++first_reusable_row;
9948
9949 /* Give up if there is no row to reuse. */
9950 if (MATRIX_ROW_BOTTOM_Y (first_reusable_row) >= yb
28514cd9
GM
9951 || !first_reusable_row->enabled_p
9952 || (MATRIX_ROW_START_CHARPOS (first_reusable_row)
9953 != CHARPOS (new_start)))
5f5c8ee5
GM
9954 return 0;
9955
5f5c8ee5
GM
9956 /* We can reuse fully visible rows beginning with
9957 first_reusable_row to the end of the window. Set
9958 first_row_to_display to the first row that cannot be reused.
9959 Set pt_row to the row containing point, if there is any. */
9960 first_row_to_display = first_reusable_row;
9961 pt_row = NULL;
9962 while (MATRIX_ROW_BOTTOM_Y (first_row_to_display) < yb)
9963 {
9964 if (PT >= MATRIX_ROW_START_CHARPOS (first_row_to_display)
9965 && PT < MATRIX_ROW_END_CHARPOS (first_row_to_display))
9966 pt_row = first_row_to_display;
a2889657 9967
5f5c8ee5
GM
9968 ++first_row_to_display;
9969 }
a2889657 9970
5f5c8ee5
GM
9971 /* Start displaying at the start of first_row_to_display. */
9972 xassert (first_row_to_display->y < yb);
9973 init_to_row_start (&it, w, first_row_to_display);
9974 nrows_scrolled = MATRIX_ROW_VPOS (first_reusable_row, w->current_matrix);
9975 it.vpos = (MATRIX_ROW_VPOS (first_row_to_display, w->current_matrix)
9976 - nrows_scrolled);
9977 it.current_y = first_row_to_display->y - first_reusable_row->y;
9978
9979 /* Display lines beginning with first_row_to_display in the
9980 desired matrix. Set last_text_row to the last row displayed
9981 that displays text. */
9982 it.glyph_row = MATRIX_ROW (w->desired_matrix, it.vpos);
9983 if (pt_row == NULL)
9984 w->cursor.vpos = -1;
9985 last_text_row = NULL;
9986 while (it.current_y < it.last_visible_y && !fonts_changed_p)
9987 if (display_line (&it))
9988 last_text_row = it.glyph_row - 1;
9989
9990 /* Give up If point isn't in a row displayed or reused. */
9991 if (w->cursor.vpos < 0)
9992 {
9993 clear_glyph_matrix (w->desired_matrix);
9994 return 0;
9995 }
12adba34 9996
5f5c8ee5
GM
9997 /* If point is in a reused row, adjust y and vpos of the cursor
9998 position. */
9999 if (pt_row)
10000 {
10001 w->cursor.vpos -= MATRIX_ROW_VPOS (first_reusable_row,
10002 w->current_matrix);
10003 w->cursor.y -= first_reusable_row->y;
a2889657
JB
10004 }
10005
5f5c8ee5
GM
10006 /* Scroll the display. */
10007 run.current_y = first_reusable_row->y;
045dee35 10008 run.desired_y = WINDOW_DISPLAY_HEADER_LINE_HEIGHT (w);
5f5c8ee5
GM
10009 run.height = it.last_visible_y - run.current_y;
10010 if (run.height)
10011 {
10012 struct frame *f = XFRAME (WINDOW_FRAME (w));
10013 update_begin (f);
10014 rif->update_window_begin_hook (w);
64d1e7d3 10015 rif->clear_mouse_face (w);
5f5c8ee5 10016 rif->scroll_run_hook (w, &run);
64d1e7d3 10017 rif->update_window_end_hook (w, 0, 0);
5f5c8ee5
GM
10018 update_end (f);
10019 }
a2889657 10020
5f5c8ee5
GM
10021 /* Adjust Y positions of reused rows. */
10022 bottom_row = MATRIX_BOTTOM_TEXT_ROW (w->current_matrix, w);
10023 row = first_reusable_row;
10024 dy = first_reusable_row->y;
045dee35 10025 min_y = WINDOW_DISPLAY_HEADER_LINE_HEIGHT (w);
5f5c8ee5
GM
10026 max_y = it.last_visible_y;
10027 while (row < first_row_to_display)
10028 {
10029 row->y -= dy;
10030 if (row->y < min_y)
10031 row->visible_height = row->height - (min_y - row->y);
10032 else if (row->y + row->height > max_y)
10033 row->visible_height
10034 = row->height - (row->y + row->height - max_y);
10035 else
10036 row->visible_height = row->height;
10037 ++row;
10038 }
a2889657 10039
5f5c8ee5
GM
10040 /* Disable rows not reused. */
10041 while (row < bottom_row)
10042 {
10043 row->enabled_p = 0;
10044 ++row;
10045 }
10046
10047 /* Scroll the current matrix. */
10048 xassert (nrows_scrolled > 0);
10049 rotate_matrix (w->current_matrix,
10050 start_vpos,
10051 MATRIX_ROW_VPOS (bottom_row, w->current_matrix),
10052 -nrows_scrolled);
10053
10054 /* Adjust window end. A null value of last_text_row means that
10055 the window end is in reused rows which in turn means that
10056 only its vpos can have changed. */
10057 if (last_text_row)
10058 {
10059 w->window_end_bytepos
10060 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_text_row);
10061 XSETFASTINT (w->window_end_pos,
10062 Z - MATRIX_ROW_END_CHARPOS (last_text_row));
10063 XSETFASTINT (w->window_end_vpos,
10064 MATRIX_ROW_VPOS (last_text_row, w->desired_matrix));
10065 }
10066 else
a2889657 10067 {
e8e536a9 10068 XSETFASTINT (w->window_end_vpos,
5f5c8ee5 10069 XFASTINT (w->window_end_vpos) - nrows_scrolled);
a2889657 10070 }
5f5c8ee5
GM
10071
10072 w->window_end_valid = Qnil;
10073 w->desired_matrix->no_scrolling_p = 1;
10074
10075#if GLYPH_DEBUG
10076 debug_method_add (w, "try_window_reusing_current_matrix 2");
10077#endif
10078 return 1;
a2889657 10079 }
5f5c8ee5
GM
10080
10081 return 0;
10082}
a2889657 10083
a2889657 10084
5f5c8ee5
GM
10085\f
10086/************************************************************************
10087 Window redisplay reusing current matrix when buffer has changed
10088 ************************************************************************/
10089
10090static struct glyph_row *get_last_unchanged_at_beg_row P_ ((struct window *));
10091static struct glyph_row *get_first_unchanged_at_end_row P_ ((struct window *,
10092 int *, int *));
10093static struct glyph_row *
10094find_last_row_displaying_text P_ ((struct glyph_matrix *, struct it *,
10095 struct glyph_row *));
10096
10097
10098/* Return the last row in MATRIX displaying text. If row START is
10099 non-null, start searching with that row. IT gives the dimensions
10100 of the display. Value is null if matrix is empty; otherwise it is
10101 a pointer to the row found. */
10102
10103static struct glyph_row *
10104find_last_row_displaying_text (matrix, it, start)
10105 struct glyph_matrix *matrix;
10106 struct it *it;
10107 struct glyph_row *start;
10108{
10109 struct glyph_row *row, *row_found;
10110
10111 /* Set row_found to the last row in IT->w's current matrix
10112 displaying text. The loop looks funny but think of partially
10113 visible lines. */
10114 row_found = NULL;
10115 row = start ? start : MATRIX_FIRST_TEXT_ROW (matrix);
10116 while (MATRIX_ROW_DISPLAYS_TEXT_P (row))
10117 {
10118 xassert (row->enabled_p);
10119 row_found = row;
10120 if (MATRIX_ROW_BOTTOM_Y (row) >= it->last_visible_y)
10121 break;
10122 ++row;
a2889657 10123 }
5f5c8ee5
GM
10124
10125 return row_found;
10126}
10127
a2889657 10128
5f5c8ee5
GM
10129/* Return the last row in the current matrix of W that is not affected
10130 by changes at the start of current_buffer that occurred since the
10131 last time W was redisplayed. Value is null if no such row exists.
a2889657 10132
5f5c8ee5
GM
10133 The global variable beg_unchanged has to contain the number of
10134 bytes unchanged at the start of current_buffer. BEG +
10135 beg_unchanged is the buffer position of the first changed byte in
10136 current_buffer. Characters at positions < BEG + beg_unchanged are
10137 at the same buffer positions as they were when the current matrix
10138 was built. */
10139
10140static struct glyph_row *
10141get_last_unchanged_at_beg_row (w)
10142 struct window *w;
10143{
9142dd5b 10144 int first_changed_pos = BEG + BEG_UNCHANGED;
5f5c8ee5
GM
10145 struct glyph_row *row;
10146 struct glyph_row *row_found = NULL;
10147 int yb = window_text_bottom_y (w);
10148
10149 /* Find the last row displaying unchanged text. */
10150 row = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
10151 while (MATRIX_ROW_DISPLAYS_TEXT_P (row)
10152 && MATRIX_ROW_START_CHARPOS (row) < first_changed_pos)
a2889657 10153 {
5f5c8ee5
GM
10154 if (/* If row ends before first_changed_pos, it is unchanged,
10155 except in some case. */
10156 MATRIX_ROW_END_CHARPOS (row) <= first_changed_pos
10157 /* When row ends in ZV and we write at ZV it is not
10158 unchanged. */
10159 && !row->ends_at_zv_p
10160 /* When first_changed_pos is the end of a continued line,
10161 row is not unchanged because it may be no longer
10162 continued. */
10163 && !(MATRIX_ROW_END_CHARPOS (row) == first_changed_pos
10164 && row->continued_p))
10165 row_found = row;
10166
10167 /* Stop if last visible row. */
10168 if (MATRIX_ROW_BOTTOM_Y (row) >= yb)
10169 break;
10170
10171 ++row;
a2889657
JB
10172 }
10173
5f5c8ee5 10174 return row_found;
a2889657 10175}
5f5c8ee5
GM
10176
10177
10178/* Find the first glyph row in the current matrix of W that is not
10179 affected by changes at the end of current_buffer since the last
10180 time the window was redisplayed. Return in *DELTA the number of
c59c668a
GM
10181 chars by which buffer positions in unchanged text at the end of
10182 current_buffer must be adjusted. Return in *DELTA_BYTES the
10183 corresponding number of bytes. Value is null if no such row
10184 exists, i.e. all rows are affected by changes. */
5f5c8ee5
GM
10185
10186static struct glyph_row *
10187get_first_unchanged_at_end_row (w, delta, delta_bytes)
10188 struct window *w;
10189 int *delta, *delta_bytes;
a2889657 10190{
5f5c8ee5
GM
10191 struct glyph_row *row;
10192 struct glyph_row *row_found = NULL;
c581d710 10193
5f5c8ee5 10194 *delta = *delta_bytes = 0;
b2a76982 10195
5f5c8ee5
GM
10196 /* A value of window_end_pos >= end_unchanged means that the window
10197 end is in the range of changed text. If so, there is no
10198 unchanged row at the end of W's current matrix. */
10199 xassert (!NILP (w->window_end_valid));
9142dd5b 10200 if (XFASTINT (w->window_end_pos) >= END_UNCHANGED)
5f5c8ee5
GM
10201 return NULL;
10202
10203 /* Set row to the last row in W's current matrix displaying text. */
10204 row = MATRIX_ROW (w->current_matrix, XFASTINT (w->window_end_vpos));
10205
5f5c8ee5
GM
10206 /* If matrix is entirely empty, no unchanged row exists. */
10207 if (MATRIX_ROW_DISPLAYS_TEXT_P (row))
10208 {
10209 /* The value of row is the last glyph row in the matrix having a
10210 meaningful buffer position in it. The end position of row
10211 corresponds to window_end_pos. This allows us to translate
10212 buffer positions in the current matrix to current buffer
10213 positions for characters not in changed text. */
10214 int Z_old = MATRIX_ROW_END_CHARPOS (row) + XFASTINT (w->window_end_pos);
10215 int Z_BYTE_old = MATRIX_ROW_END_BYTEPOS (row) + w->window_end_bytepos;
10216 int last_unchanged_pos, last_unchanged_pos_old;
10217 struct glyph_row *first_text_row
10218 = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
10219
10220 *delta = Z - Z_old;
10221 *delta_bytes = Z_BYTE - Z_BYTE_old;
10222
10223 /* Set last_unchanged_pos to the buffer position of the last
10224 character in the buffer that has not been changed. Z is the
10225 index + 1 of the last byte in current_buffer, i.e. by
10226 subtracting end_unchanged we get the index of the last
10227 unchanged character, and we have to add BEG to get its buffer
10228 position. */
9142dd5b 10229 last_unchanged_pos = Z - END_UNCHANGED + BEG;
5f5c8ee5
GM
10230 last_unchanged_pos_old = last_unchanged_pos - *delta;
10231
10232 /* Search backward from ROW for a row displaying a line that
10233 starts at a minimum position >= last_unchanged_pos_old. */
10234 while (row >= first_text_row)
10235 {
10236 xassert (row->enabled_p);
10237 xassert (MATRIX_ROW_DISPLAYS_TEXT_P (row));
10238
10239 if (MATRIX_ROW_START_CHARPOS (row) >= last_unchanged_pos_old)
10240 row_found = row;
10241 --row;
10242 }
10243 }
10244
10245 xassert (!row_found || MATRIX_ROW_DISPLAYS_TEXT_P (row_found));
10246 return row_found;
c581d710
RS
10247}
10248
c581d710 10249
5f5c8ee5
GM
10250/* Make sure that glyph rows in the current matrix of window W
10251 reference the same glyph memory as corresponding rows in the
10252 frame's frame matrix. This function is called after scrolling W's
10253 current matrix on a terminal frame in try_window_id and
10254 try_window_reusing_current_matrix. */
10255
10256static void
10257sync_frame_with_window_matrix_rows (w)
10258 struct window *w;
c581d710 10259{
5f5c8ee5
GM
10260 struct frame *f = XFRAME (w->frame);
10261 struct glyph_row *window_row, *window_row_end, *frame_row;
10262
10263 /* Preconditions: W must be a leaf window and full-width. Its frame
10264 must have a frame matrix. */
10265 xassert (NILP (w->hchild) && NILP (w->vchild));
10266 xassert (WINDOW_FULL_WIDTH_P (w));
10267 xassert (!FRAME_WINDOW_P (f));
10268
10269 /* If W is a full-width window, glyph pointers in W's current matrix
10270 have, by definition, to be the same as glyph pointers in the
10271 corresponding frame matrix. */
10272 window_row = w->current_matrix->rows;
10273 window_row_end = window_row + w->current_matrix->nrows;
10274 frame_row = f->current_matrix->rows + XFASTINT (w->top);
10275 while (window_row < window_row_end)
659a218f 10276 {
5f5c8ee5 10277 int area;
f002db93 10278
5f5c8ee5
GM
10279 for (area = LEFT_MARGIN_AREA; area <= LAST_AREA; ++area)
10280 frame_row->glyphs[area] = window_row->glyphs[area];
f002db93
GM
10281
10282 /* Disable frame rows whose corresponding window rows have
10283 been disabled in try_window_id. */
10284 if (!window_row->enabled_p)
10285 frame_row->enabled_p = 0;
10286
5f5c8ee5 10287 ++window_row, ++frame_row;
659a218f 10288 }
a2889657 10289}
5f5c8ee5
GM
10290
10291
e037b9ec
GM
10292/* Find the glyph row in window W containing CHARPOS. Consider all
10293 rows between START and END (not inclusive). END null means search
10294 all rows to the end of the display area of W. Value is the row
10295 containing CHARPOS or null. */
10296
10297static struct glyph_row *
10298row_containing_pos (w, charpos, start, end)
10299 struct window *w;
10300 int charpos;
10301 struct glyph_row *start, *end;
10302{
10303 struct glyph_row *row = start;
10304 int last_y;
10305
10306 /* If we happen to start on a header-line, skip that. */
10307 if (row->mode_line_p)
10308 ++row;
10309
10310 if ((end && row >= end) || !row->enabled_p)
10311 return NULL;
10312
10313 last_y = window_text_bottom_y (w);
10314
10315 while ((end == NULL || row < end)
10316 && (MATRIX_ROW_END_CHARPOS (row) < charpos
10317 /* The end position of a row equals the start
10318 position of the next row. If CHARPOS is there, we
10319 would rather display it in the next line, except
10320 when this line ends in ZV. */
10321 || (MATRIX_ROW_END_CHARPOS (row) == charpos
10322 && (MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row)
10323 || !row->ends_at_zv_p)))
10324 && MATRIX_ROW_BOTTOM_Y (row) < last_y)
10325 ++row;
10326
10327 /* Give up if CHARPOS not found. */
10328 if ((end && row >= end)
10329 || charpos < MATRIX_ROW_START_CHARPOS (row)
10330 || charpos > MATRIX_ROW_END_CHARPOS (row))
10331 row = NULL;
10332
10333 return row;
10334}
10335
10336
5f5c8ee5
GM
10337/* Try to redisplay window W by reusing its existing display. W's
10338 current matrix must be up to date when this function is called,
10339 i.e. window_end_valid must not be nil.
10340
10341 Value is
10342
10343 1 if display has been updated
10344 0 if otherwise unsuccessful
10345 -1 if redisplay with same window start is known not to succeed
10346
10347 The following steps are performed:
10348
10349 1. Find the last row in the current matrix of W that is not
10350 affected by changes at the start of current_buffer. If no such row
10351 is found, give up.
10352
10353 2. Find the first row in W's current matrix that is not affected by
10354 changes at the end of current_buffer. Maybe there is no such row.
10355
10356 3. Display lines beginning with the row + 1 found in step 1 to the
10357 row found in step 2 or, if step 2 didn't find a row, to the end of
10358 the window.
10359
10360 4. If cursor is not known to appear on the window, give up.
10361
10362 5. If display stopped at the row found in step 2, scroll the
10363 display and current matrix as needed.
10364
10365 6. Maybe display some lines at the end of W, if we must. This can
10366 happen under various circumstances, like a partially visible line
10367 becoming fully visible, or because newly displayed lines are displayed
10368 in smaller font sizes.
10369
10370 7. Update W's window end information. */
10371
10372 /* Check that window end is what we expect it to be. */
12adba34
RS
10373
10374static int
5f5c8ee5 10375try_window_id (w)
12adba34 10376 struct window *w;
12adba34 10377{
5f5c8ee5
GM
10378 struct frame *f = XFRAME (w->frame);
10379 struct glyph_matrix *current_matrix = w->current_matrix;
10380 struct glyph_matrix *desired_matrix = w->desired_matrix;
10381 struct glyph_row *last_unchanged_at_beg_row;
10382 struct glyph_row *first_unchanged_at_end_row;
10383 struct glyph_row *row;
10384 struct glyph_row *bottom_row;
10385 int bottom_vpos;
10386 struct it it;
10387 int delta = 0, delta_bytes = 0, stop_pos, dvpos, dy;
10388 struct text_pos start_pos;
10389 struct run run;
10390 int first_unchanged_at_end_vpos = 0;
10391 struct glyph_row *last_text_row, *last_text_row_at_end;
10392 struct text_pos start;
10393
10394 SET_TEXT_POS_FROM_MARKER (start, w->start);
10395
10396 /* Check pre-conditions. Window end must be valid, otherwise
10397 the current matrix would not be up to date. */
10398 xassert (!NILP (w->window_end_valid));
10399 xassert (FRAME_WINDOW_P (XFRAME (w->frame))
10400 || (line_ins_del_ok && WINDOW_FULL_WIDTH_P (w)));
10401
10402 /* Make sure beg_unchanged and end_unchanged are up to date. Do it
10403 only if buffer has really changed. The reason is that the gap is
10404 initially at Z for freshly visited files. The code below would
10405 set end_unchanged to 0 in that case. */
28ee91c0
GM
10406 if (MODIFF > SAVE_MODIFF
10407 /* This seems to happen sometimes after saving a buffer. */
10408 || BEG_UNCHANGED + END_UNCHANGED > Z_BYTE)
5f5c8ee5 10409 {
9142dd5b
GM
10410 if (GPT - BEG < BEG_UNCHANGED)
10411 BEG_UNCHANGED = GPT - BEG;
10412 if (Z - GPT < END_UNCHANGED)
10413 END_UNCHANGED = Z - GPT;
5f5c8ee5 10414 }
bf9249e3 10415
5f5c8ee5
GM
10416 /* If window starts after a line end, and the last change is in
10417 front of that newline, then changes don't affect the display.
f2d86d7a
GM
10418 This case happens with stealth-fontification. Note that although
10419 the display is unchanged, glyph positions in the matrix have to
10420 be adjusted, of course. */
5f5c8ee5
GM
10421 row = MATRIX_ROW (w->current_matrix, XFASTINT (w->window_end_vpos));
10422 if (CHARPOS (start) > BEGV
9142dd5b 10423 && Z - END_UNCHANGED < CHARPOS (start) - 1
5f5c8ee5
GM
10424 && FETCH_BYTE (BYTEPOS (start) - 1) == '\n'
10425 && PT < MATRIX_ROW_END_CHARPOS (row))
10426 {
f2d86d7a
GM
10427 struct glyph_row *r0 = MATRIX_FIRST_TEXT_ROW (current_matrix);
10428 int delta = CHARPOS (start) - MATRIX_ROW_START_CHARPOS (r0);
10429
10430 if (delta)
10431 {
10432 struct glyph_row *r1 = MATRIX_BOTTOM_TEXT_ROW (current_matrix, w);
10433 int delta_bytes = BYTEPOS (start) - MATRIX_ROW_START_BYTEPOS (r0);
10434
10435 increment_matrix_positions (w->current_matrix,
10436 MATRIX_ROW_VPOS (r0, current_matrix),
10437 MATRIX_ROW_VPOS (r1, current_matrix),
10438 delta, delta_bytes);
10439 }
10440
10441#if 0 /* If changes are all in front of the window start, the
10442 distance of the last displayed glyph from Z hasn't
10443 changed. */
5f5c8ee5
GM
10444 w->window_end_pos
10445 = make_number (Z - MATRIX_ROW_END_CHARPOS (row));
10446 w->window_end_bytepos
6fc556fd 10447 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (row);
f2d86d7a
GM
10448#endif
10449
5f5c8ee5
GM
10450 return 1;
10451 }
10452
10453 /* Return quickly if changes are all below what is displayed in the
10454 window, and if PT is in the window. */
9142dd5b 10455 if (BEG_UNCHANGED > MATRIX_ROW_END_CHARPOS (row)
5f5c8ee5
GM
10456 && PT < MATRIX_ROW_END_CHARPOS (row))
10457 {
10458 /* We have to update window end positions because the buffer's
10459 size has changed. */
10460 w->window_end_pos
10461 = make_number (Z - MATRIX_ROW_END_CHARPOS (row));
10462 w->window_end_bytepos
6fc556fd 10463 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (row);
ef121659
GM
10464
10465 row = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
10466 row = row_containing_pos (w, PT, row, NULL);
10467 set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0);
10468 return 2;
5f5c8ee5
GM
10469 }
10470
10471 /* Check that window start agrees with the start of the first glyph
10472 row in its current matrix. Check this after we know the window
10473 start is not in changed text, otherwise positions would not be
10474 comparable. */
10475 row = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
10476 if (!TEXT_POS_EQUAL_P (start, row->start.pos))
10477 return 0;
10478
5f5c8ee5
GM
10479 /* Compute the position at which we have to start displaying new
10480 lines. Some of the lines at the top of the window might be
10481 reusable because they are not displaying changed text. Find the
10482 last row in W's current matrix not affected by changes at the
10483 start of current_buffer. Value is null if changes start in the
10484 first line of window. */
10485 last_unchanged_at_beg_row = get_last_unchanged_at_beg_row (w);
10486 if (last_unchanged_at_beg_row)
10487 {
10488 init_to_row_end (&it, w, last_unchanged_at_beg_row);
10489 start_pos = it.current.pos;
10490
10491 /* Start displaying new lines in the desired matrix at the same
10492 vpos we would use in the current matrix, i.e. below
10493 last_unchanged_at_beg_row. */
10494 it.vpos = 1 + MATRIX_ROW_VPOS (last_unchanged_at_beg_row,
10495 current_matrix);
10496 it.glyph_row = MATRIX_ROW (desired_matrix, it.vpos);
10497 it.current_y = MATRIX_ROW_BOTTOM_Y (last_unchanged_at_beg_row);
10498
10499 xassert (it.hpos == 0 && it.current_x == 0);
10500 }
10501 else
10502 {
10503 /* There are no reusable lines at the start of the window.
10504 Start displaying in the first line. */
10505 start_display (&it, w, start);
10506 start_pos = it.current.pos;
10507 }
10508
5f5c8ee5
GM
10509 /* Find the first row that is not affected by changes at the end of
10510 the buffer. Value will be null if there is no unchanged row, in
10511 which case we must redisplay to the end of the window. delta
10512 will be set to the value by which buffer positions beginning with
10513 first_unchanged_at_end_row have to be adjusted due to text
10514 changes. */
10515 first_unchanged_at_end_row
10516 = get_first_unchanged_at_end_row (w, &delta, &delta_bytes);
10517 IF_DEBUG (debug_delta = delta);
10518 IF_DEBUG (debug_delta_bytes = delta_bytes);
10519
10520 /* Set stop_pos to the buffer position up to which we will have to
10521 display new lines. If first_unchanged_at_end_row != NULL, this
10522 is the buffer position of the start of the line displayed in that
10523 row. For first_unchanged_at_end_row == NULL, use 0 to indicate
10524 that we don't stop at a buffer position. */
10525 stop_pos = 0;
10526 if (first_unchanged_at_end_row)
10527 {
10528 xassert (last_unchanged_at_beg_row == NULL
10529 || first_unchanged_at_end_row >= last_unchanged_at_beg_row);
10530
10531 /* If this is a continuation line, move forward to the next one
10532 that isn't. Changes in lines above affect this line.
10533 Caution: this may move first_unchanged_at_end_row to a row
10534 not displaying text. */
10535 while (MATRIX_ROW_CONTINUATION_LINE_P (first_unchanged_at_end_row)
10536 && MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row)
10537 && (MATRIX_ROW_BOTTOM_Y (first_unchanged_at_end_row)
10538 < it.last_visible_y))
10539 ++first_unchanged_at_end_row;
10540
10541 if (!MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row)
10542 || (MATRIX_ROW_BOTTOM_Y (first_unchanged_at_end_row)
10543 >= it.last_visible_y))
10544 first_unchanged_at_end_row = NULL;
10545 else
10546 {
10547 stop_pos = (MATRIX_ROW_START_CHARPOS (first_unchanged_at_end_row)
10548 + delta);
10549 first_unchanged_at_end_vpos
10550 = MATRIX_ROW_VPOS (first_unchanged_at_end_row, current_matrix);
9142dd5b 10551 xassert (stop_pos >= Z - END_UNCHANGED);
5f5c8ee5
GM
10552 }
10553 }
10554 else if (last_unchanged_at_beg_row == NULL)
10555 return 0;
10556
10557
10558#if GLYPH_DEBUG
10559
10560 /* Either there is no unchanged row at the end, or the one we have
10561 now displays text. This is a necessary condition for the window
10562 end pos calculation at the end of this function. */
10563 xassert (first_unchanged_at_end_row == NULL
10564 || MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row));
10565
10566 debug_last_unchanged_at_beg_vpos
10567 = (last_unchanged_at_beg_row
10568 ? MATRIX_ROW_VPOS (last_unchanged_at_beg_row, current_matrix)
10569 : -1);
10570 debug_first_unchanged_at_end_vpos = first_unchanged_at_end_vpos;
10571
10572#endif /* GLYPH_DEBUG != 0 */
10573
10574
10575 /* Display new lines. Set last_text_row to the last new line
10576 displayed which has text on it, i.e. might end up as being the
10577 line where the window_end_vpos is. */
10578 w->cursor.vpos = -1;
10579 last_text_row = NULL;
10580 overlay_arrow_seen = 0;
10581 while (it.current_y < it.last_visible_y
10582 && !fonts_changed_p
10583 && (first_unchanged_at_end_row == NULL
10584 || IT_CHARPOS (it) < stop_pos))
10585 {
10586 if (display_line (&it))
10587 last_text_row = it.glyph_row - 1;
10588 }
10589
10590 if (fonts_changed_p)
10591 return -1;
10592
10593
10594 /* Compute differences in buffer positions, y-positions etc. for
10595 lines reused at the bottom of the window. Compute what we can
10596 scroll. */
ca42b2e8
GM
10597 if (first_unchanged_at_end_row
10598 /* No lines reused because we displayed everything up to the
10599 bottom of the window. */
10600 && it.current_y < it.last_visible_y)
5f5c8ee5
GM
10601 {
10602 dvpos = (it.vpos
10603 - MATRIX_ROW_VPOS (first_unchanged_at_end_row,
10604 current_matrix));
10605 dy = it.current_y - first_unchanged_at_end_row->y;
10606 run.current_y = first_unchanged_at_end_row->y;
10607 run.desired_y = run.current_y + dy;
10608 run.height = it.last_visible_y - max (run.current_y, run.desired_y);
10609 }
10610 else
ca42b2e8
GM
10611 {
10612 delta = dvpos = dy = run.current_y = run.desired_y = run.height = 0;
10613 first_unchanged_at_end_row = NULL;
10614 }
5f5c8ee5
GM
10615 IF_DEBUG (debug_dvpos = dvpos; debug_dy = dy);
10616
8f8ba186 10617
5f5c8ee5
GM
10618 /* Find the cursor if not already found. We have to decide whether
10619 PT will appear on this window (it sometimes doesn't, but this is
10620 not a very frequent case.) This decision has to be made before
10621 the current matrix is altered. A value of cursor.vpos < 0 means
10622 that PT is either in one of the lines beginning at
10623 first_unchanged_at_end_row or below the window. Don't care for
10624 lines that might be displayed later at the window end; as
10625 mentioned, this is not a frequent case. */
10626 if (w->cursor.vpos < 0)
10627 {
5f5c8ee5
GM
10628 /* Cursor in unchanged rows at the top? */
10629 if (PT < CHARPOS (start_pos)
10630 && last_unchanged_at_beg_row)
10631 {
e037b9ec
GM
10632 row = row_containing_pos (w, PT,
10633 MATRIX_FIRST_TEXT_ROW (w->current_matrix),
10634 last_unchanged_at_beg_row + 1);
10635 xassert (row && row <= last_unchanged_at_beg_row);
5f5c8ee5
GM
10636 set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0);
10637 }
10638
10639 /* Start from first_unchanged_at_end_row looking for PT. */
10640 else if (first_unchanged_at_end_row)
10641 {
e037b9ec
GM
10642 row = row_containing_pos (w, PT - delta,
10643 first_unchanged_at_end_row, NULL);
10644 if (row)
468155d7
GM
10645 set_cursor_from_row (w, row, w->current_matrix, delta,
10646 delta_bytes, dy, dvpos);
5f5c8ee5
GM
10647 }
10648
10649 /* Give up if cursor was not found. */
10650 if (w->cursor.vpos < 0)
10651 {
10652 clear_glyph_matrix (w->desired_matrix);
10653 return -1;
10654 }
10655 }
10656
10657 /* Don't let the cursor end in the scroll margins. */
10658 {
10659 int this_scroll_margin, cursor_height;
10660
10661 this_scroll_margin = max (0, scroll_margin);
10662 this_scroll_margin = min (this_scroll_margin,
10663 XFASTINT (w->height) / 4);
10664 this_scroll_margin *= CANON_Y_UNIT (it.f);
10665 cursor_height = MATRIX_ROW (w->desired_matrix, w->cursor.vpos)->height;
10666
10667 if ((w->cursor.y < this_scroll_margin
10668 && CHARPOS (start) > BEGV)
10669 /* Don't take scroll margin into account at the bottom because
10670 old redisplay didn't do it either. */
10671 || w->cursor.y + cursor_height > it.last_visible_y)
10672 {
10673 w->cursor.vpos = -1;
10674 clear_glyph_matrix (w->desired_matrix);
10675 return -1;
10676 }
10677 }
10678
10679 /* Scroll the display. Do it before changing the current matrix so
10680 that xterm.c doesn't get confused about where the cursor glyph is
10681 found. */
fa77249f 10682 if (dy && run.height)
5f5c8ee5
GM
10683 {
10684 update_begin (f);
10685
10686 if (FRAME_WINDOW_P (f))
10687 {
10688 rif->update_window_begin_hook (w);
64d1e7d3 10689 rif->clear_mouse_face (w);
5f5c8ee5 10690 rif->scroll_run_hook (w, &run);
64d1e7d3 10691 rif->update_window_end_hook (w, 0, 0);
5f5c8ee5
GM
10692 }
10693 else
10694 {
10695 /* Terminal frame. In this case, dvpos gives the number of
10696 lines to scroll by; dvpos < 0 means scroll up. */
10697 int first_unchanged_at_end_vpos
10698 = MATRIX_ROW_VPOS (first_unchanged_at_end_row, w->current_matrix);
10699 int from = XFASTINT (w->top) + first_unchanged_at_end_vpos;
10700 int end = XFASTINT (w->top) + window_internal_height (w);
10701
10702 /* Perform the operation on the screen. */
10703 if (dvpos > 0)
10704 {
10705 /* Scroll last_unchanged_at_beg_row to the end of the
10706 window down dvpos lines. */
10707 set_terminal_window (end);
10708
10709 /* On dumb terminals delete dvpos lines at the end
10710 before inserting dvpos empty lines. */
10711 if (!scroll_region_ok)
10712 ins_del_lines (end - dvpos, -dvpos);
10713
10714 /* Insert dvpos empty lines in front of
10715 last_unchanged_at_beg_row. */
10716 ins_del_lines (from, dvpos);
10717 }
10718 else if (dvpos < 0)
10719 {
10720 /* Scroll up last_unchanged_at_beg_vpos to the end of
10721 the window to last_unchanged_at_beg_vpos - |dvpos|. */
10722 set_terminal_window (end);
10723
10724 /* Delete dvpos lines in front of
10725 last_unchanged_at_beg_vpos. ins_del_lines will set
10726 the cursor to the given vpos and emit |dvpos| delete
10727 line sequences. */
10728 ins_del_lines (from + dvpos, dvpos);
10729
10730 /* On a dumb terminal insert dvpos empty lines at the
10731 end. */
10732 if (!scroll_region_ok)
10733 ins_del_lines (end + dvpos, -dvpos);
10734 }
10735
10736 set_terminal_window (0);
10737 }
10738
10739 update_end (f);
10740 }
10741
ca42b2e8
GM
10742 /* Shift reused rows of the current matrix to the right position.
10743 BOTTOM_ROW is the last + 1 row in the current matrix reserved for
10744 text. */
10745 bottom_row = MATRIX_BOTTOM_TEXT_ROW (current_matrix, w);
10746 bottom_vpos = MATRIX_ROW_VPOS (bottom_row, current_matrix);
5f5c8ee5
GM
10747 if (dvpos < 0)
10748 {
10749 rotate_matrix (current_matrix, first_unchanged_at_end_vpos + dvpos,
10750 bottom_vpos, dvpos);
10751 enable_glyph_matrix_rows (current_matrix, bottom_vpos + dvpos,
10752 bottom_vpos, 0);
10753 }
10754 else if (dvpos > 0)
10755 {
10756 rotate_matrix (current_matrix, first_unchanged_at_end_vpos,
10757 bottom_vpos, dvpos);
10758 enable_glyph_matrix_rows (current_matrix, first_unchanged_at_end_vpos,
10759 first_unchanged_at_end_vpos + dvpos, 0);
10760 }
10761
10762 /* For frame-based redisplay, make sure that current frame and window
10763 matrix are in sync with respect to glyph memory. */
10764 if (!FRAME_WINDOW_P (f))
10765 sync_frame_with_window_matrix_rows (w);
10766
10767 /* Adjust buffer positions in reused rows. */
10768 if (delta)
f2d86d7a
GM
10769 increment_matrix_positions (current_matrix,
10770 first_unchanged_at_end_vpos + dvpos,
10771 bottom_vpos, delta, delta_bytes);
5f5c8ee5
GM
10772
10773 /* Adjust Y positions. */
10774 if (dy)
10775 shift_glyph_matrix (w, current_matrix,
10776 first_unchanged_at_end_vpos + dvpos,
10777 bottom_vpos, dy);
10778
10779 if (first_unchanged_at_end_row)
10780 first_unchanged_at_end_row += dvpos;
10781
10782 /* If scrolling up, there may be some lines to display at the end of
10783 the window. */
10784 last_text_row_at_end = NULL;
10785 if (dy < 0)
10786 {
10787 /* Set last_row to the glyph row in the current matrix where the
10788 window end line is found. It has been moved up or down in
10789 the matrix by dvpos. */
10790 int last_vpos = XFASTINT (w->window_end_vpos) + dvpos;
10791 struct glyph_row *last_row = MATRIX_ROW (current_matrix, last_vpos);
10792
10793 /* If last_row is the window end line, it should display text. */
10794 xassert (last_row->displays_text_p);
10795
10796 /* If window end line was partially visible before, begin
10797 displaying at that line. Otherwise begin displaying with the
10798 line following it. */
10799 if (MATRIX_ROW_BOTTOM_Y (last_row) - dy >= it.last_visible_y)
10800 {
10801 init_to_row_start (&it, w, last_row);
10802 it.vpos = last_vpos;
10803 it.current_y = last_row->y;
10804 }
10805 else
10806 {
10807 init_to_row_end (&it, w, last_row);
10808 it.vpos = 1 + last_vpos;
10809 it.current_y = MATRIX_ROW_BOTTOM_Y (last_row);
10810 ++last_row;
10811 }
12adba34 10812
5f5c8ee5
GM
10813 /* We may start in a continuation line. If so, we have to get
10814 the right continuation_lines_width and current_x. */
10815 it.continuation_lines_width = last_row->continuation_lines_width;
10816 it.hpos = it.current_x = 0;
10817
10818 /* Display the rest of the lines at the window end. */
10819 it.glyph_row = MATRIX_ROW (desired_matrix, it.vpos);
10820 while (it.current_y < it.last_visible_y
10821 && !fonts_changed_p)
10822 {
10823 /* Is it always sure that the display agrees with lines in
10824 the current matrix? I don't think so, so we mark rows
10825 displayed invalid in the current matrix by setting their
10826 enabled_p flag to zero. */
10827 MATRIX_ROW (w->current_matrix, it.vpos)->enabled_p = 0;
10828 if (display_line (&it))
10829 last_text_row_at_end = it.glyph_row - 1;
10830 }
10831 }
12adba34 10832
5f5c8ee5
GM
10833 /* Update window_end_pos and window_end_vpos. */
10834 if (first_unchanged_at_end_row
10835 && first_unchanged_at_end_row->y < it.last_visible_y
10836 && !last_text_row_at_end)
10837 {
10838 /* Window end line if one of the preserved rows from the current
10839 matrix. Set row to the last row displaying text in current
10840 matrix starting at first_unchanged_at_end_row, after
10841 scrolling. */
10842 xassert (first_unchanged_at_end_row->displays_text_p);
10843 row = find_last_row_displaying_text (w->current_matrix, &it,
10844 first_unchanged_at_end_row);
10845 xassert (row && MATRIX_ROW_DISPLAYS_TEXT_P (row));
10846
10847 XSETFASTINT (w->window_end_pos, Z - MATRIX_ROW_END_CHARPOS (row));
10848 w->window_end_bytepos = Z_BYTE - MATRIX_ROW_END_BYTEPOS (row);
10849 XSETFASTINT (w->window_end_vpos,
10850 MATRIX_ROW_VPOS (row, w->current_matrix));
10851 }
10852 else if (last_text_row_at_end)
10853 {
10854 XSETFASTINT (w->window_end_pos,
10855 Z - MATRIX_ROW_END_CHARPOS (last_text_row_at_end));
10856 w->window_end_bytepos
10857 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_text_row_at_end);
10858 XSETFASTINT (w->window_end_vpos,
10859 MATRIX_ROW_VPOS (last_text_row_at_end, desired_matrix));
10860 }
10861 else if (last_text_row)
10862 {
10863 /* We have displayed either to the end of the window or at the
10864 end of the window, i.e. the last row with text is to be found
10865 in the desired matrix. */
10866 XSETFASTINT (w->window_end_pos,
10867 Z - MATRIX_ROW_END_CHARPOS (last_text_row));
10868 w->window_end_bytepos
10869 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_text_row);
10870 XSETFASTINT (w->window_end_vpos,
10871 MATRIX_ROW_VPOS (last_text_row, desired_matrix));
10872 }
10873 else if (first_unchanged_at_end_row == NULL
10874 && last_text_row == NULL
10875 && last_text_row_at_end == NULL)
10876 {
10877 /* Displayed to end of window, but no line containing text was
10878 displayed. Lines were deleted at the end of the window. */
10879 int vpos;
045dee35 10880 int header_line_p = WINDOW_WANTS_HEADER_LINE_P (w) ? 1 : 0;
5f5c8ee5
GM
10881
10882 for (vpos = XFASTINT (w->window_end_vpos); vpos > 0; --vpos)
045dee35
GM
10883 if ((w->desired_matrix->rows[vpos + header_line_p].enabled_p
10884 && w->desired_matrix->rows[vpos + header_line_p].displays_text_p)
10885 || (!w->desired_matrix->rows[vpos + header_line_p].enabled_p
10886 && w->current_matrix->rows[vpos + header_line_p].displays_text_p))
5f5c8ee5 10887 break;
12adba34 10888
5f5c8ee5
GM
10889 w->window_end_vpos = make_number (vpos);
10890 }
10891 else
10892 abort ();
10893
10894 IF_DEBUG (debug_end_pos = XFASTINT (w->window_end_pos);
10895 debug_end_vpos = XFASTINT (w->window_end_vpos));
12adba34 10896
5f5c8ee5
GM
10897 /* Record that display has not been completed. */
10898 w->window_end_valid = Qnil;
10899 w->desired_matrix->no_scrolling_p = 1;
ef121659 10900 return 3;
12adba34 10901}
0f9c0ff0 10902
a2889657 10903
5f5c8ee5
GM
10904\f
10905/***********************************************************************
10906 More debugging support
10907 ***********************************************************************/
a2889657 10908
5f5c8ee5 10909#if GLYPH_DEBUG
a2889657 10910
5f5c8ee5
GM
10911 void dump_glyph_row P_ ((struct glyph_matrix *, int, int));
10912static void dump_glyph_matrix P_ ((struct glyph_matrix *, int));
1c9241f5 10913
31b24551 10914
5f5c8ee5
GM
10915/* Dump the contents of glyph matrix MATRIX on stderr. If
10916 WITH_GLYPHS_P is non-zero, dump glyph contents as well. */
ca26e1c8 10917
5f85fa4e 10918static void
5f5c8ee5
GM
10919dump_glyph_matrix (matrix, with_glyphs_p)
10920 struct glyph_matrix *matrix;
10921 int with_glyphs_p;
10922{
efc63ef0 10923 int i;
5f5c8ee5
GM
10924 for (i = 0; i < matrix->nrows; ++i)
10925 dump_glyph_row (matrix, i, with_glyphs_p);
10926}
31b24551 10927
68a37fa8 10928
5f5c8ee5
GM
10929/* Dump the contents of glyph row at VPOS in MATRIX to stderr.
10930 WITH_GLYPH_SP non-zero means dump glyph contents, too. */
a2889657 10931
5f5c8ee5
GM
10932void
10933dump_glyph_row (matrix, vpos, with_glyphs_p)
10934 struct glyph_matrix *matrix;
10935 int vpos, with_glyphs_p;
10936{
10937 struct glyph_row *row;
10938
10939 if (vpos < 0 || vpos >= matrix->nrows)
10940 return;
10941
10942 row = MATRIX_ROW (matrix, vpos);
10943
b28cb6ed
GM
10944 fprintf (stderr, "Row Start End Used oEI><O\\CTZFes X Y W H V A P\n");
10945 fprintf (stderr, "=======================================================================\n");
5f5c8ee5 10946
b28cb6ed
GM
10947 fprintf (stderr, "%3d %5d %5d %4d %1.1d%1.1d%1.1d%1.1d%1.1d%1.1d%1 \
109481d%1.1d%1.1d%1.1d%1.1d%1.1d%1.1d %4d %4d %4d %4d %4d %4d %4d\n",
5f5c8ee5
GM
10949 row - matrix->rows,
10950 MATRIX_ROW_START_CHARPOS (row),
10951 MATRIX_ROW_END_CHARPOS (row),
10952 row->used[TEXT_AREA],
10953 row->contains_overlapping_glyphs_p,
10954 row->enabled_p,
10955 row->inverse_p,
10956 row->truncated_on_left_p,
10957 row->truncated_on_right_p,
10958 row->overlay_arrow_p,
10959 row->continued_p,
10960 MATRIX_ROW_CONTINUATION_LINE_P (row),
10961 row->displays_text_p,
10962 row->ends_at_zv_p,
10963 row->fill_line_p,
91004049
GM
10964 row->ends_in_middle_of_char_p,
10965 row->starts_in_middle_of_char_p,
5f5c8ee5
GM
10966 row->x,
10967 row->y,
b28cb6ed
GM
10968 row->pixel_width,
10969 row->height,
10970 row->visible_height,
10971 row->ascent,
10972 row->phys_ascent);
5f5c8ee5
GM
10973 fprintf (stderr, "%9d %5d\n", row->start.overlay_string_index,
10974 row->end.overlay_string_index);
10975 fprintf (stderr, "%9d %5d\n",
10976 CHARPOS (row->start.string_pos),
10977 CHARPOS (row->end.string_pos));
10978 fprintf (stderr, "%9d %5d\n", row->start.dpvec_index,
10979 row->end.dpvec_index);
10980
10981 if (with_glyphs_p)
bd66d1ba 10982 {
5f5c8ee5
GM
10983 struct glyph *glyph, *glyph_end;
10984 int prev_had_glyphs_p;
10985
10986 glyph = row->glyphs[TEXT_AREA];
10987 glyph_end = glyph + row->used[TEXT_AREA];
10988
10989 /* Glyph for a line end in text. */
10990 if (glyph == glyph_end && glyph->charpos > 0)
10991 ++glyph_end;
10992
10993 if (glyph < glyph_end)
bd66d1ba 10994 {
06568bbf 10995 fprintf (stderr, " Glyph Type Pos O W Code C Face LR\n");
5f5c8ee5 10996 prev_had_glyphs_p = 1;
bd66d1ba
RS
10997 }
10998 else
5f5c8ee5
GM
10999 prev_had_glyphs_p = 0;
11000
11001 while (glyph < glyph_end)
f7b4b63a 11002 {
5f5c8ee5
GM
11003 if (glyph->type == CHAR_GLYPH)
11004 {
11005 fprintf (stderr,
06568bbf 11006 " %5d %4c %6d %c %3d 0x%05x %c %4d %1.1d%1.1d\n",
5f5c8ee5
GM
11007 glyph - row->glyphs[TEXT_AREA],
11008 'C',
11009 glyph->charpos,
06568bbf
GM
11010 (BUFFERP (glyph->object)
11011 ? 'B'
11012 : (STRINGP (glyph->object)
11013 ? 'S'
11014 : '-')),
5f5c8ee5 11015 glyph->pixel_width,
43d120d8
KH
11016 glyph->u.ch,
11017 (glyph->u.ch < 0x80 && glyph->u.ch >= ' '
11018 ? glyph->u.ch
5f5c8ee5 11019 : '.'),
43d120d8 11020 glyph->face_id,
5f5c8ee5
GM
11021 glyph->left_box_line_p,
11022 glyph->right_box_line_p);
11023 }
11024 else if (glyph->type == STRETCH_GLYPH)
11025 {
11026 fprintf (stderr,
06568bbf 11027 " %5d %4c %6d %c %3d 0x%05x %c %4d %1.1d%1.1d\n",
5f5c8ee5
GM
11028 glyph - row->glyphs[TEXT_AREA],
11029 'S',
11030 glyph->charpos,
06568bbf
GM
11031 (BUFFERP (glyph->object)
11032 ? 'B'
11033 : (STRINGP (glyph->object)
11034 ? 'S'
11035 : '-')),
5f5c8ee5
GM
11036 glyph->pixel_width,
11037 0,
11038 '.',
bcdda9a4 11039 glyph->face_id,
5f5c8ee5
GM
11040 glyph->left_box_line_p,
11041 glyph->right_box_line_p);
11042 }
11043 else if (glyph->type == IMAGE_GLYPH)
11044 {
11045 fprintf (stderr,
06568bbf 11046 " %5d %4c %6d %c %3d 0x%05x %c %4d %1.1d%1.1d\n",
5f5c8ee5
GM
11047 glyph - row->glyphs[TEXT_AREA],
11048 'I',
11049 glyph->charpos,
06568bbf
GM
11050 (BUFFERP (glyph->object)
11051 ? 'B'
11052 : (STRINGP (glyph->object)
11053 ? 'S'
11054 : '-')),
5f5c8ee5 11055 glyph->pixel_width,
43d120d8 11056 glyph->u.img_id,
5f5c8ee5 11057 '.',
bcdda9a4 11058 glyph->face_id,
5f5c8ee5
GM
11059 glyph->left_box_line_p,
11060 glyph->right_box_line_p);
11061 }
11062 ++glyph;
f7b4b63a 11063 }
f4faa47c 11064 }
5f5c8ee5 11065}
f4faa47c 11066
a2889657 11067
5f5c8ee5
GM
11068DEFUN ("dump-glyph-matrix", Fdump_glyph_matrix,
11069 Sdump_glyph_matrix, 0, 1, "p",
11070 "Dump the current matrix of the selected window to stderr.\n\
11071Shows contents of glyph row structures. With non-nil optional\n\
11072parameter WITH-GLYPHS-P, dump glyphs as well.")
11073 (with_glyphs_p)
02513cdd 11074 Lisp_Object with_glyphs_p;
5f5c8ee5
GM
11075{
11076 struct window *w = XWINDOW (selected_window);
11077 struct buffer *buffer = XBUFFER (w->buffer);
11078
11079 fprintf (stderr, "PT = %d, BEGV = %d. ZV = %d\n",
11080 BUF_PT (buffer), BUF_BEGV (buffer), BUF_ZV (buffer));
11081 fprintf (stderr, "Cursor x = %d, y = %d, hpos = %d, vpos = %d\n",
11082 w->cursor.x, w->cursor.y, w->cursor.hpos, w->cursor.vpos);
11083 fprintf (stderr, "=============================================\n");
11084 dump_glyph_matrix (w->current_matrix, !NILP (with_glyphs_p));
11085 return Qnil;
11086}
1c2250c2 11087
1fca3fae 11088
5f5c8ee5
GM
11089DEFUN ("dump-glyph-row", Fdump_glyph_row, Sdump_glyph_row, 1, 1, "",
11090 "Dump glyph row ROW to stderr.")
11091 (row)
11092 Lisp_Object row;
11093{
11094 CHECK_NUMBER (row, 0);
11095 dump_glyph_row (XWINDOW (selected_window)->current_matrix, XINT (row), 1);
11096 return Qnil;
11097}
1fca3fae 11098
67481ae5 11099
e037b9ec 11100DEFUN ("dump-tool-bar-row", Fdump_tool_bar_row, Sdump_tool_bar_row,
5f5c8ee5
GM
11101 0, 0, "", "")
11102 ()
11103{
886bd6f2
GM
11104 struct frame *sf = SELECTED_FRAME ();
11105 struct glyph_matrix *m = (XWINDOW (sf->tool_bar_window)
5f5c8ee5
GM
11106 ->current_matrix);
11107 dump_glyph_row (m, 0, 1);
11108 return Qnil;
11109}
ca26e1c8 11110
0f9c0ff0 11111
5f5c8ee5
GM
11112DEFUN ("trace-redisplay-toggle", Ftrace_redisplay_toggle,
11113 Strace_redisplay_toggle, 0, 0, "",
11114 "Toggle tracing of redisplay.")
11115 ()
11116{
11117 trace_redisplay_p = !trace_redisplay_p;
11118 return Qnil;
11119}
bf9249e3
GM
11120
11121
11122DEFUN ("trace-to-stderr", Ftrace_to_stderr, Strace_to_stderr, 1, 1, "",
11123 "Print STRING to stderr.")
11124 (string)
11125 Lisp_Object string;
11126{
11127 CHECK_STRING (string, 0);
11128 fprintf (stderr, "%s", XSTRING (string)->data);
11129 return Qnil;
11130}
5f5c8ee5
GM
11131
11132#endif /* GLYPH_DEBUG */
ca26e1c8 11133
ca26e1c8 11134
5f5c8ee5
GM
11135\f
11136/***********************************************************************
11137 Building Desired Matrix Rows
11138 ***********************************************************************/
a2889657 11139
5f5c8ee5
GM
11140/* Return a temporary glyph row holding the glyphs of an overlay
11141 arrow. Only used for non-window-redisplay windows. */
ca26e1c8 11142
5f5c8ee5
GM
11143static struct glyph_row *
11144get_overlay_arrow_glyph_row (w)
11145 struct window *w;
11146{
11147 struct frame *f = XFRAME (WINDOW_FRAME (w));
11148 struct buffer *buffer = XBUFFER (w->buffer);
11149 struct buffer *old = current_buffer;
11150 unsigned char *arrow_string = XSTRING (Voverlay_arrow_string)->data;
11151 int arrow_len = XSTRING (Voverlay_arrow_string)->size;
11152 unsigned char *arrow_end = arrow_string + arrow_len;
11153 unsigned char *p;
11154 struct it it;
11155 int multibyte_p;
11156 int n_glyphs_before;
11157
11158 set_buffer_temp (buffer);
11159 init_iterator (&it, w, -1, -1, &scratch_glyph_row, DEFAULT_FACE_ID);
11160 it.glyph_row->used[TEXT_AREA] = 0;
11161 SET_TEXT_POS (it.position, 0, 0);
11162
11163 multibyte_p = !NILP (buffer->enable_multibyte_characters);
11164 p = arrow_string;
11165 while (p < arrow_end)
11166 {
11167 Lisp_Object face, ilisp;
11168
11169 /* Get the next character. */
11170 if (multibyte_p)
4fdb80f2 11171 it.c = string_char_and_length (p, arrow_len, &it.len);
5f5c8ee5
GM
11172 else
11173 it.c = *p, it.len = 1;
11174 p += it.len;
11175
11176 /* Get its face. */
11177 XSETFASTINT (ilisp, p - arrow_string);
11178 face = Fget_text_property (ilisp, Qface, Voverlay_arrow_string);
11179 it.face_id = compute_char_face (f, it.c, face);
11180
11181 /* Compute its width, get its glyphs. */
11182 n_glyphs_before = it.glyph_row->used[TEXT_AREA];
337042a9 11183 SET_TEXT_POS (it.position, -1, -1);
5f5c8ee5
GM
11184 PRODUCE_GLYPHS (&it);
11185
11186 /* If this character doesn't fit any more in the line, we have
11187 to remove some glyphs. */
11188 if (it.current_x > it.last_visible_x)
11189 {
11190 it.glyph_row->used[TEXT_AREA] = n_glyphs_before;
11191 break;
11192 }
11193 }
11194
11195 set_buffer_temp (old);
11196 return it.glyph_row;
11197}
ca26e1c8 11198
b0a0fbda 11199
5f5c8ee5
GM
11200/* Insert truncation glyphs at the start of IT->glyph_row. Truncation
11201 glyphs are only inserted for terminal frames since we can't really
11202 win with truncation glyphs when partially visible glyphs are
11203 involved. Which glyphs to insert is determined by
11204 produce_special_glyphs. */
67481ae5 11205
5f5c8ee5
GM
11206static void
11207insert_left_trunc_glyphs (it)
11208 struct it *it;
11209{
11210 struct it truncate_it;
11211 struct glyph *from, *end, *to, *toend;
11212
11213 xassert (!FRAME_WINDOW_P (it->f));
11214
11215 /* Get the truncation glyphs. */
11216 truncate_it = *it;
5f5c8ee5
GM
11217 truncate_it.current_x = 0;
11218 truncate_it.face_id = DEFAULT_FACE_ID;
11219 truncate_it.glyph_row = &scratch_glyph_row;
11220 truncate_it.glyph_row->used[TEXT_AREA] = 0;
11221 CHARPOS (truncate_it.position) = BYTEPOS (truncate_it.position) = -1;
6fc556fd 11222 truncate_it.object = make_number (0);
5f5c8ee5
GM
11223 produce_special_glyphs (&truncate_it, IT_TRUNCATION);
11224
11225 /* Overwrite glyphs from IT with truncation glyphs. */
11226 from = truncate_it.glyph_row->glyphs[TEXT_AREA];
11227 end = from + truncate_it.glyph_row->used[TEXT_AREA];
11228 to = it->glyph_row->glyphs[TEXT_AREA];
11229 toend = to + it->glyph_row->used[TEXT_AREA];
11230
11231 while (from < end)
11232 *to++ = *from++;
11233
11234 /* There may be padding glyphs left over. Remove them. */
11235 from = to;
11236 while (from < toend && CHAR_GLYPH_PADDING_P (*from))
11237 ++from;
11238 while (from < toend)
11239 *to++ = *from++;
11240
11241 it->glyph_row->used[TEXT_AREA] = to - it->glyph_row->glyphs[TEXT_AREA];
11242}
e0bfbde6 11243
e0bfbde6 11244
5f5c8ee5 11245/* Compute the pixel height and width of IT->glyph_row.
9c49d3d7 11246
5f5c8ee5
GM
11247 Most of the time, ascent and height of a display line will be equal
11248 to the max_ascent and max_height values of the display iterator
11249 structure. This is not the case if
67481ae5 11250
5f5c8ee5
GM
11251 1. We hit ZV without displaying anything. In this case, max_ascent
11252 and max_height will be zero.
1c9241f5 11253
5f5c8ee5
GM
11254 2. We have some glyphs that don't contribute to the line height.
11255 (The glyph row flag contributes_to_line_height_p is for future
11256 pixmap extensions).
f6fd109b 11257
5f5c8ee5
GM
11258 The first case is easily covered by using default values because in
11259 these cases, the line height does not really matter, except that it
11260 must not be zero. */
67481ae5 11261
5f5c8ee5
GM
11262static void
11263compute_line_metrics (it)
11264 struct it *it;
11265{
11266 struct glyph_row *row = it->glyph_row;
11267 int area, i;
1c2250c2 11268
5f5c8ee5
GM
11269 if (FRAME_WINDOW_P (it->f))
11270 {
045dee35 11271 int i, header_line_height;
1c2250c2 11272
5f5c8ee5
GM
11273 /* The line may consist of one space only, that was added to
11274 place the cursor on it. If so, the row's height hasn't been
11275 computed yet. */
11276 if (row->height == 0)
11277 {
11278 if (it->max_ascent + it->max_descent == 0)
312246d1 11279 it->max_descent = it->max_phys_descent = CANON_Y_UNIT (it->f);
5f5c8ee5
GM
11280 row->ascent = it->max_ascent;
11281 row->height = it->max_ascent + it->max_descent;
312246d1
GM
11282 row->phys_ascent = it->max_phys_ascent;
11283 row->phys_height = it->max_phys_ascent + it->max_phys_descent;
5f5c8ee5
GM
11284 }
11285
11286 /* Compute the width of this line. */
11287 row->pixel_width = row->x;
11288 for (i = 0; i < row->used[TEXT_AREA]; ++i)
11289 row->pixel_width += row->glyphs[TEXT_AREA][i].pixel_width;
11290
11291 xassert (row->pixel_width >= 0);
11292 xassert (row->ascent >= 0 && row->height > 0);
11293
312246d1
GM
11294 row->overlapping_p = (MATRIX_ROW_OVERLAPS_SUCC_P (row)
11295 || MATRIX_ROW_OVERLAPS_PRED_P (row));
11296
11297 /* If first line's physical ascent is larger than its logical
11298 ascent, use the physical ascent, and make the row taller.
11299 This makes accented characters fully visible. */
b28cb6ed 11300 if (row == MATRIX_FIRST_TEXT_ROW (it->w->desired_matrix)
312246d1
GM
11301 && row->phys_ascent > row->ascent)
11302 {
11303 row->height += row->phys_ascent - row->ascent;
11304 row->ascent = row->phys_ascent;
11305 }
11306
5f5c8ee5
GM
11307 /* Compute how much of the line is visible. */
11308 row->visible_height = row->height;
11309
045dee35
GM
11310 header_line_height = WINDOW_DISPLAY_HEADER_LINE_HEIGHT (it->w);
11311 if (row->y < header_line_height)
11312 row->visible_height -= header_line_height - row->y;
5f5c8ee5
GM
11313 else
11314 {
11315 int max_y = WINDOW_DISPLAY_HEIGHT_NO_MODE_LINE (it->w);
11316 if (row->y + row->height > max_y)
11317 row->visible_height -= row->y + row->height - max_y;
11318 }
11319 }
11320 else
11321 {
11322 row->pixel_width = row->used[TEXT_AREA];
312246d1
GM
11323 row->ascent = row->phys_ascent = 0;
11324 row->height = row->phys_height = row->visible_height = 1;
5f5c8ee5 11325 }
67481ae5 11326
5f5c8ee5
GM
11327 /* Compute a hash code for this row. */
11328 row->hash = 0;
11329 for (area = LEFT_MARGIN_AREA; area < LAST_AREA; ++area)
11330 for (i = 0; i < row->used[area]; ++i)
11331 row->hash = ((((row->hash << 4) + (row->hash >> 24)) & 0x0fffffff)
11332 + row->glyphs[area][i].u.val
43d120d8
KH
11333 + row->glyphs[area][i].face_id
11334 + row->glyphs[area][i].padding_p
5f5c8ee5 11335 + (row->glyphs[area][i].type << 2));
a2889657 11336
5f5c8ee5 11337 it->max_ascent = it->max_descent = 0;
312246d1 11338 it->max_phys_ascent = it->max_phys_descent = 0;
5f5c8ee5 11339}
12adba34 11340
ca26e1c8 11341
5f5c8ee5
GM
11342/* Append one space to the glyph row of iterator IT if doing a
11343 window-based redisplay. DEFAULT_FACE_P non-zero means let the
11344 space have the default face, otherwise let it have the same face as
80c6cb1f 11345 IT->face_id. Value is non-zero if a space was added.
c6e89d6c
GM
11346
11347 This function is called to make sure that there is always one glyph
11348 at the end of a glyph row that the cursor can be set on under
11349 window-systems. (If there weren't such a glyph we would not know
11350 how wide and tall a box cursor should be displayed).
11351
11352 At the same time this space let's a nicely handle clearing to the
11353 end of the line if the row ends in italic text. */
ca26e1c8 11354
80c6cb1f 11355static int
5f5c8ee5
GM
11356append_space (it, default_face_p)
11357 struct it *it;
11358 int default_face_p;
11359{
11360 if (FRAME_WINDOW_P (it->f))
11361 {
11362 int n = it->glyph_row->used[TEXT_AREA];
ca26e1c8 11363
5f5c8ee5
GM
11364 if (it->glyph_row->glyphs[TEXT_AREA] + n
11365 < it->glyph_row->glyphs[1 + TEXT_AREA])
a2889657 11366 {
5f5c8ee5
GM
11367 /* Save some values that must not be changed. */
11368 int saved_x = it->current_x;
11369 struct text_pos saved_pos;
11370 int saved_what = it->what;
11371 int saved_face_id = it->face_id;
5f5c8ee5 11372 Lisp_Object saved_object;
980806b6 11373 struct face *face;
5f5c8ee5
GM
11374
11375 saved_object = it->object;
11376 saved_pos = it->position;
11377
11378 it->what = IT_CHARACTER;
11379 bzero (&it->position, sizeof it->position);
6fc556fd 11380 it->object = make_number (0);
5f5c8ee5
GM
11381 it->c = ' ';
11382 it->len = 1;
5f5c8ee5
GM
11383
11384 if (default_face_p)
11385 it->face_id = DEFAULT_FACE_ID;
980806b6
KH
11386 face = FACE_FROM_ID (it->f, it->face_id);
11387 it->face_id = FACE_FOR_CHAR (it->f, face, 0);
1842fc1a 11388
5f5c8ee5
GM
11389 PRODUCE_GLYPHS (it);
11390
11391 it->current_x = saved_x;
11392 it->object = saved_object;
11393 it->position = saved_pos;
11394 it->what = saved_what;
11395 it->face_id = saved_face_id;
80c6cb1f 11396 return 1;
5f5c8ee5
GM
11397 }
11398 }
80c6cb1f
GM
11399
11400 return 0;
5f5c8ee5 11401}
12adba34 11402
1842fc1a 11403
5f5c8ee5
GM
11404/* Extend the face of the last glyph in the text area of IT->glyph_row
11405 to the end of the display line. Called from display_line.
11406 If the glyph row is empty, add a space glyph to it so that we
11407 know the face to draw. Set the glyph row flag fill_line_p. */
11408
11409static void
11410extend_face_to_end_of_line (it)
11411 struct it *it;
11412{
11413 struct face *face;
11414 struct frame *f = it->f;
1842fc1a 11415
5f5c8ee5
GM
11416 /* If line is already filled, do nothing. */
11417 if (it->current_x >= it->last_visible_x)
11418 return;
11419
11420 /* Face extension extends the background and box of IT->face_id
11421 to the end of the line. If the background equals the background
11422 of the frame, we haven't to do anything. */
11423 face = FACE_FROM_ID (f, it->face_id);
11424 if (FRAME_WINDOW_P (f)
11425 && face->box == FACE_NO_BOX
11426 && face->background == FRAME_BACKGROUND_PIXEL (f)
11427 && !face->stipple)
11428 return;
1842fc1a 11429
5f5c8ee5
GM
11430 /* Set the glyph row flag indicating that the face of the last glyph
11431 in the text area has to be drawn to the end of the text area. */
11432 it->glyph_row->fill_line_p = 1;
545e04f6 11433
980806b6
KH
11434 /* If current character of IT is not ASCII, make sure we have the
11435 ASCII face. This will be automatically undone the next time
11436 get_next_display_element returns a multibyte character. Note
11437 that the character will always be single byte in unibyte text. */
11438 if (!SINGLE_BYTE_CHAR_P (it->c))
5f5c8ee5 11439 {
980806b6 11440 it->face_id = FACE_FOR_CHAR (f, face, 0);
5f5c8ee5 11441 }
545e04f6 11442
5f5c8ee5
GM
11443 if (FRAME_WINDOW_P (f))
11444 {
11445 /* If the row is empty, add a space with the current face of IT,
11446 so that we know which face to draw. */
11447 if (it->glyph_row->used[TEXT_AREA] == 0)
a2889657 11448 {
5f5c8ee5 11449 it->glyph_row->glyphs[TEXT_AREA][0] = space_glyph;
43d120d8 11450 it->glyph_row->glyphs[TEXT_AREA][0].face_id = it->face_id;
5f5c8ee5 11451 it->glyph_row->used[TEXT_AREA] = 1;
a2889657 11452 }
5f5c8ee5
GM
11453 }
11454 else
11455 {
11456 /* Save some values that must not be changed. */
11457 int saved_x = it->current_x;
11458 struct text_pos saved_pos;
11459 Lisp_Object saved_object;
11460 int saved_what = it->what;
11461
11462 saved_object = it->object;
11463 saved_pos = it->position;
11464
11465 it->what = IT_CHARACTER;
11466 bzero (&it->position, sizeof it->position);
6fc556fd 11467 it->object = make_number (0);
5f5c8ee5
GM
11468 it->c = ' ';
11469 it->len = 1;
11470
11471 PRODUCE_GLYPHS (it);
11472
11473 while (it->current_x <= it->last_visible_x)
11474 PRODUCE_GLYPHS (it);
11475
11476 /* Don't count these blanks really. It would let us insert a left
11477 truncation glyph below and make us set the cursor on them, maybe. */
11478 it->current_x = saved_x;
11479 it->object = saved_object;
11480 it->position = saved_pos;
11481 it->what = saved_what;
11482 }
11483}
12adba34 11484
545e04f6 11485
5f5c8ee5
GM
11486/* Value is non-zero if text starting at CHARPOS in current_buffer is
11487 trailing whitespace. */
1c9241f5 11488
5f5c8ee5
GM
11489static int
11490trailing_whitespace_p (charpos)
11491 int charpos;
11492{
11493 int bytepos = CHAR_TO_BYTE (charpos);
11494 int c = 0;
7bbe686f 11495
5f5c8ee5
GM
11496 while (bytepos < ZV_BYTE
11497 && (c = FETCH_CHAR (bytepos),
11498 c == ' ' || c == '\t'))
11499 ++bytepos;
0d09d1e6 11500
8f897821
GM
11501 if (bytepos >= ZV_BYTE || c == '\n' || c == '\r')
11502 {
11503 if (bytepos != PT_BYTE)
11504 return 1;
11505 }
11506 return 0;
5f5c8ee5 11507}
31b24551 11508
545e04f6 11509
5f5c8ee5 11510/* Highlight trailing whitespace, if any, in ROW. */
545e04f6 11511
5f5c8ee5
GM
11512void
11513highlight_trailing_whitespace (f, row)
11514 struct frame *f;
11515 struct glyph_row *row;
11516{
11517 int used = row->used[TEXT_AREA];
11518
11519 if (used)
11520 {
11521 struct glyph *start = row->glyphs[TEXT_AREA];
11522 struct glyph *glyph = start + used - 1;
11523
11524 /* Skip over the space glyph inserted to display the
11525 cursor at the end of a line. */
11526 if (glyph->type == CHAR_GLYPH
43d120d8 11527 && glyph->u.ch == ' '
6fc556fd 11528 && INTEGERP (glyph->object))
5f5c8ee5
GM
11529 --glyph;
11530
11531 /* If last glyph is a space or stretch, and it's trailing
11532 whitespace, set the face of all trailing whitespace glyphs in
11533 IT->glyph_row to `trailing-whitespace'. */
11534 if (glyph >= start
11535 && BUFFERP (glyph->object)
11536 && (glyph->type == STRETCH_GLYPH
11537 || (glyph->type == CHAR_GLYPH
43d120d8 11538 && glyph->u.ch == ' '))
5f5c8ee5 11539 && trailing_whitespace_p (glyph->charpos))
545e04f6 11540 {
980806b6 11541 int face_id = lookup_named_face (f, Qtrailing_whitespace, 0);
5f5c8ee5
GM
11542
11543 while (glyph >= start
11544 && BUFFERP (glyph->object)
11545 && (glyph->type == STRETCH_GLYPH
11546 || (glyph->type == CHAR_GLYPH
43d120d8
KH
11547 && glyph->u.ch == ' ')))
11548 (glyph--)->face_id = face_id;
545e04f6 11549 }
a2889657 11550 }
5f5c8ee5 11551}
a2889657 11552
5fcbb24d 11553
5f5c8ee5
GM
11554/* Construct the glyph row IT->glyph_row in the desired matrix of
11555 IT->w from text at the current position of IT. See dispextern.h
11556 for an overview of struct it. Value is non-zero if
11557 IT->glyph_row displays text, as opposed to a line displaying ZV
11558 only. */
11559
11560static int
11561display_line (it)
11562 struct it *it;
11563{
11564 struct glyph_row *row = it->glyph_row;
11565
11566 /* We always start displaying at hpos zero even if hscrolled. */
11567 xassert (it->hpos == 0 && it->current_x == 0);
a2889657 11568
5f5c8ee5
GM
11569 /* We must not display in a row that's not a text row. */
11570 xassert (MATRIX_ROW_VPOS (row, it->w->desired_matrix)
11571 < it->w->desired_matrix->nrows);
12adba34 11572
5f5c8ee5
GM
11573 /* Is IT->w showing the region? */
11574 it->w->region_showing = it->region_beg_charpos > 0 ? Qt : Qnil;
12adba34 11575
5f5c8ee5
GM
11576 /* Clear the result glyph row and enable it. */
11577 prepare_desired_row (row);
12adba34 11578
5f5c8ee5
GM
11579 row->y = it->current_y;
11580 row->start = it->current;
11581 row->continuation_lines_width = it->continuation_lines_width;
11582 row->displays_text_p = 1;
91004049
GM
11583 row->starts_in_middle_of_char_p = it->starts_in_middle_of_char_p;
11584 it->starts_in_middle_of_char_p = 0;
5f5c8ee5
GM
11585
11586 /* Arrange the overlays nicely for our purposes. Usually, we call
11587 display_line on only one line at a time, in which case this
11588 can't really hurt too much, or we call it on lines which appear
11589 one after another in the buffer, in which case all calls to
11590 recenter_overlay_lists but the first will be pretty cheap. */
11591 recenter_overlay_lists (current_buffer, IT_CHARPOS (*it));
11592
5f5c8ee5
GM
11593 /* Move over display elements that are not visible because we are
11594 hscrolled. This may stop at an x-position < IT->first_visible_x
11595 if the first glyph is partially visible or if we hit a line end. */
11596 if (it->current_x < it->first_visible_x)
11597 move_it_in_display_line_to (it, ZV, it->first_visible_x,
11598 MOVE_TO_POS | MOVE_TO_X);
11599
11600 /* Get the initial row height. This is either the height of the
11601 text hscrolled, if there is any, or zero. */
11602 row->ascent = it->max_ascent;
11603 row->height = it->max_ascent + it->max_descent;
312246d1
GM
11604 row->phys_ascent = it->max_phys_ascent;
11605 row->phys_height = it->max_phys_ascent + it->max_phys_descent;
5f5c8ee5
GM
11606
11607 /* Loop generating characters. The loop is left with IT on the next
11608 character to display. */
11609 while (1)
11610 {
11611 int n_glyphs_before, hpos_before, x_before;
11612 int x, i, nglyphs;
e6819faf 11613 int ascent, descent, phys_ascent, phys_descent;
b28cb6ed 11614
5f5c8ee5
GM
11615 /* Retrieve the next thing to display. Value is zero if end of
11616 buffer reached. */
11617 if (!get_next_display_element (it))
11618 {
11619 /* Maybe add a space at the end of this line that is used to
1b335865
GM
11620 display the cursor there under X. Set the charpos of the
11621 first glyph of blank lines not corresponding to any text
11622 to -1. */
11623 if ((append_space (it, 1) && row->used[TEXT_AREA] == 1)
11624 || row->used[TEXT_AREA] == 0)
a2889657 11625 {
5f5c8ee5
GM
11626 row->glyphs[TEXT_AREA]->charpos = -1;
11627 row->displays_text_p = 0;
11628
11629 if (!NILP (XBUFFER (it->w->buffer)->indicate_empty_lines))
11630 row->indicate_empty_line_p = 1;
a2889657 11631 }
5f5c8ee5
GM
11632
11633 it->continuation_lines_width = 0;
11634 row->ends_at_zv_p = 1;
11635 break;
a2889657 11636 }
a2889657 11637
5f5c8ee5
GM
11638 /* Now, get the metrics of what we want to display. This also
11639 generates glyphs in `row' (which is IT->glyph_row). */
11640 n_glyphs_before = row->used[TEXT_AREA];
11641 x = it->current_x;
e6819faf
GM
11642
11643 /* Remember the line height so far in case the next element doesn't
11644 fit on the line. */
11645 if (!it->truncate_lines_p)
11646 {
11647 ascent = it->max_ascent;
11648 descent = it->max_descent;
11649 phys_ascent = it->max_phys_ascent;
11650 phys_descent = it->max_phys_descent;
11651 }
11652
5f5c8ee5 11653 PRODUCE_GLYPHS (it);
a2889657 11654
5f5c8ee5
GM
11655 /* If this display element was in marginal areas, continue with
11656 the next one. */
11657 if (it->area != TEXT_AREA)
a2889657 11658 {
5f5c8ee5
GM
11659 row->ascent = max (row->ascent, it->max_ascent);
11660 row->height = max (row->height, it->max_ascent + it->max_descent);
312246d1
GM
11661 row->phys_ascent = max (row->phys_ascent, it->max_phys_ascent);
11662 row->phys_height = max (row->phys_height,
11663 it->max_phys_ascent + it->max_phys_descent);
5f5c8ee5
GM
11664 set_iterator_to_next (it);
11665 continue;
11666 }
5936754e 11667
5f5c8ee5
GM
11668 /* Does the display element fit on the line? If we truncate
11669 lines, we should draw past the right edge of the window. If
11670 we don't truncate, we want to stop so that we can display the
11671 continuation glyph before the right margin. If lines are
11672 continued, there are two possible strategies for characters
11673 resulting in more than 1 glyph (e.g. tabs): Display as many
11674 glyphs as possible in this line and leave the rest for the
11675 continuation line, or display the whole element in the next
11676 line. Original redisplay did the former, so we do it also. */
11677 nglyphs = row->used[TEXT_AREA] - n_glyphs_before;
11678 hpos_before = it->hpos;
11679 x_before = x;
11680
11681 if (nglyphs == 1
11682 && it->current_x < it->last_visible_x)
11683 {
11684 ++it->hpos;
11685 row->ascent = max (row->ascent, it->max_ascent);
11686 row->height = max (row->height, it->max_ascent + it->max_descent);
312246d1
GM
11687 row->phys_ascent = max (row->phys_ascent, it->max_phys_ascent);
11688 row->phys_height = max (row->phys_height,
11689 it->max_phys_ascent + it->max_phys_descent);
5f5c8ee5
GM
11690 if (it->current_x - it->pixel_width < it->first_visible_x)
11691 row->x = x - it->first_visible_x;
11692 }
11693 else
11694 {
11695 int new_x;
11696 struct glyph *glyph;
11697
11698 for (i = 0; i < nglyphs; ++i, x = new_x)
b5bbc9a5 11699 {
5f5c8ee5
GM
11700 glyph = row->glyphs[TEXT_AREA] + n_glyphs_before + i;
11701 new_x = x + glyph->pixel_width;
11702
11703 if (/* Lines are continued. */
11704 !it->truncate_lines_p
11705 && (/* Glyph doesn't fit on the line. */
11706 new_x > it->last_visible_x
11707 /* Or it fits exactly on a window system frame. */
11708 || (new_x == it->last_visible_x
11709 && FRAME_WINDOW_P (it->f))))
a2889657 11710 {
5f5c8ee5
GM
11711 /* End of a continued line. */
11712
11713 if (it->hpos == 0
11714 || (new_x == it->last_visible_x
11715 && FRAME_WINDOW_P (it->f)))
11716 {
e6819faf
GM
11717 /* Current glyph is the only one on the line or
11718 fits exactly on the line. We must continue
11719 the line because we can't draw the cursor
11720 after the glyph. */
5f5c8ee5
GM
11721 row->continued_p = 1;
11722 it->current_x = new_x;
11723 it->continuation_lines_width += new_x;
11724 ++it->hpos;
11725 if (i == nglyphs - 1)
11726 set_iterator_to_next (it);
11727 }
3b3c4bf0
GM
11728 else if (CHAR_GLYPH_PADDING_P (*glyph)
11729 && !FRAME_WINDOW_P (it->f))
11730 {
11731 /* A padding glyph that doesn't fit on this line.
11732 This means the whole character doesn't fit
11733 on the line. */
11734 row->used[TEXT_AREA] = n_glyphs_before;
11735
11736 /* Fill the rest of the row with continuation
11737 glyphs like in 20.x. */
11738 while (row->glyphs[TEXT_AREA] + row->used[TEXT_AREA]
11739 < row->glyphs[1 + TEXT_AREA])
11740 produce_special_glyphs (it, IT_CONTINUATION);
11741
11742 row->continued_p = 1;
11743 it->current_x = x_before;
11744 it->continuation_lines_width += x_before;
11745
11746 /* Restore the height to what it was before the
11747 element not fitting on the line. */
11748 it->max_ascent = ascent;
11749 it->max_descent = descent;
11750 it->max_phys_ascent = phys_ascent;
11751 it->max_phys_descent = phys_descent;
11752 }
5f5c8ee5 11753 else
5936754e 11754 {
5f5c8ee5
GM
11755 /* Display element draws past the right edge of
11756 the window. Restore positions to values
11757 before the element. The next line starts
11758 with current_x before the glyph that could
11759 not be displayed, so that TAB works right. */
11760 row->used[TEXT_AREA] = n_glyphs_before + i;
11761
11762 /* Display continuation glyphs. */
11763 if (!FRAME_WINDOW_P (it->f))
11764 produce_special_glyphs (it, IT_CONTINUATION);
11765 row->continued_p = 1;
11766
11767 it->current_x = x;
11768 it->continuation_lines_width += x;
91004049
GM
11769 if (nglyphs > 1 && i > 0)
11770 {
11771 row->ends_in_middle_of_char_p = 1;
11772 it->starts_in_middle_of_char_p = 1;
11773 }
e6819faf
GM
11774
11775 /* Restore the height to what it was before the
11776 element not fitting on the line. */
11777 it->max_ascent = ascent;
11778 it->max_descent = descent;
11779 it->max_phys_ascent = phys_ascent;
11780 it->max_phys_descent = phys_descent;
5936754e 11781 }
e6819faf 11782
5f5c8ee5
GM
11783 break;
11784 }
11785 else if (new_x > it->first_visible_x)
11786 {
11787 /* Increment number of glyphs actually displayed. */
11788 ++it->hpos;
11789
11790 if (x < it->first_visible_x)
11791 /* Glyph is partially visible, i.e. row starts at
11792 negative X position. */
11793 row->x = x - it->first_visible_x;
11794 }
11795 else
11796 {
11797 /* Glyph is completely off the left margin of the
11798 window. This should not happen because of the
11799 move_it_in_display_line at the start of
11800 this function. */
11801 abort ();
a2889657 11802 }
a2889657 11803 }
5f5c8ee5
GM
11804
11805 row->ascent = max (row->ascent, it->max_ascent);
11806 row->height = max (row->height, it->max_ascent + it->max_descent);
312246d1
GM
11807 row->phys_ascent = max (row->phys_ascent, it->max_phys_ascent);
11808 row->phys_height = max (row->phys_height,
11809 it->max_phys_ascent + it->max_phys_descent);
5f5c8ee5
GM
11810
11811 /* End of this display line if row is continued. */
11812 if (row->continued_p)
11813 break;
a2889657 11814 }
a2889657 11815
5f5c8ee5
GM
11816 /* Is this a line end? If yes, we're also done, after making
11817 sure that a non-default face is extended up to the right
11818 margin of the window. */
11819 if (ITERATOR_AT_END_OF_LINE_P (it))
1c9241f5 11820 {
5f5c8ee5
GM
11821 int used_before = row->used[TEXT_AREA];
11822
11823 /* Add a space at the end of the line that is used to
11824 display the cursor there. */
11825 append_space (it, 0);
11826
11827 /* Extend the face to the end of the line. */
11828 extend_face_to_end_of_line (it);
11829
11830 /* Make sure we have the position. */
11831 if (used_before == 0)
11832 row->glyphs[TEXT_AREA]->charpos = CHARPOS (it->position);
11833
11834 /* Consume the line end. This skips over invisible lines. */
11835 set_iterator_to_next (it);
11836 it->continuation_lines_width = 0;
11837 break;
1c9241f5 11838 }
a2889657 11839
5f5c8ee5
GM
11840 /* Proceed with next display element. Note that this skips
11841 over lines invisible because of selective display. */
11842 set_iterator_to_next (it);
b1d1124b 11843
5f5c8ee5
GM
11844 /* If we truncate lines, we are done when the last displayed
11845 glyphs reach past the right margin of the window. */
11846 if (it->truncate_lines_p
11847 && (FRAME_WINDOW_P (it->f)
11848 ? (it->current_x >= it->last_visible_x)
11849 : (it->current_x > it->last_visible_x)))
75d13c64 11850 {
5f5c8ee5
GM
11851 /* Maybe add truncation glyphs. */
11852 if (!FRAME_WINDOW_P (it->f))
11853 {
11854 --it->glyph_row->used[TEXT_AREA];
11855 produce_special_glyphs (it, IT_TRUNCATION);
11856 }
11857
11858 row->truncated_on_right_p = 1;
11859 it->continuation_lines_width = 0;
312246d1 11860 reseat_at_next_visible_line_start (it, 0);
5f5c8ee5
GM
11861 row->ends_at_zv_p = FETCH_BYTE (IT_BYTEPOS (*it) - 1) != '\n';
11862 it->hpos = hpos_before;
11863 it->current_x = x_before;
11864 break;
75d13c64 11865 }
a2889657 11866 }
a2889657 11867
5f5c8ee5
GM
11868 /* If line is not empty and hscrolled, maybe insert truncation glyphs
11869 at the left window margin. */
11870 if (it->first_visible_x
11871 && IT_CHARPOS (*it) != MATRIX_ROW_START_CHARPOS (row))
11872 {
11873 if (!FRAME_WINDOW_P (it->f))
11874 insert_left_trunc_glyphs (it);
11875 row->truncated_on_left_p = 1;
11876 }
a2889657 11877
5f5c8ee5
GM
11878 /* If the start of this line is the overlay arrow-position, then
11879 mark this glyph row as the one containing the overlay arrow.
11880 This is clearly a mess with variable size fonts. It would be
11881 better to let it be displayed like cursors under X. */
e24c997d 11882 if (MARKERP (Voverlay_arrow_position)
a2889657 11883 && current_buffer == XMARKER (Voverlay_arrow_position)->buffer
5f5c8ee5
GM
11884 && (MATRIX_ROW_START_CHARPOS (row)
11885 == marker_position (Voverlay_arrow_position))
e24c997d 11886 && STRINGP (Voverlay_arrow_string)
a2889657
JB
11887 && ! overlay_arrow_seen)
11888 {
5f5c8ee5
GM
11889 /* Overlay arrow in window redisplay is a bitmap. */
11890 if (!FRAME_WINDOW_P (it->f))
c4628384 11891 {
5f5c8ee5
GM
11892 struct glyph_row *arrow_row = get_overlay_arrow_glyph_row (it->w);
11893 struct glyph *glyph = arrow_row->glyphs[TEXT_AREA];
11894 struct glyph *arrow_end = glyph + arrow_row->used[TEXT_AREA];
11895 struct glyph *p = row->glyphs[TEXT_AREA];
11896 struct glyph *p2, *end;
11897
11898 /* Copy the arrow glyphs. */
11899 while (glyph < arrow_end)
11900 *p++ = *glyph++;
11901
11902 /* Throw away padding glyphs. */
11903 p2 = p;
11904 end = row->glyphs[TEXT_AREA] + row->used[TEXT_AREA];
11905 while (p2 < end && CHAR_GLYPH_PADDING_P (*p2))
11906 ++p2;
11907 if (p2 > p)
212e4f87 11908 {
5f5c8ee5
GM
11909 while (p2 < end)
11910 *p++ = *p2++;
11911 row->used[TEXT_AREA] = p2 - row->glyphs[TEXT_AREA];
c4628384 11912 }
c4628384 11913 }
5f5c8ee5 11914
a2889657 11915 overlay_arrow_seen = 1;
5f5c8ee5 11916 row->overlay_arrow_p = 1;
a2889657
JB
11917 }
11918
5f5c8ee5
GM
11919 /* Compute pixel dimensions of this line. */
11920 compute_line_metrics (it);
11921
11922 /* Remember the position at which this line ends. */
11923 row->end = it->current;
11924
173cbca8 11925 /* Maybe set the cursor. */
5f5c8ee5
GM
11926 if (it->w->cursor.vpos < 0
11927 && PT >= MATRIX_ROW_START_CHARPOS (row)
173cbca8
GM
11928 && PT <= MATRIX_ROW_END_CHARPOS (row))
11929 {
11930 /* Also see redisplay_window, case cursor movement in unchanged
11931 window. */
11932 if (MATRIX_ROW_END_CHARPOS (row) == PT
11933 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row)
11934 && !row->ends_at_zv_p)
11935 ;
11936 else
11937 set_cursor_from_row (it->w, row, it->w->desired_matrix, 0, 0, 0, 0);
11938 }
5f5c8ee5
GM
11939
11940 /* Highlight trailing whitespace. */
8f897821 11941 if (!NILP (Vshow_trailing_whitespace))
5f5c8ee5
GM
11942 highlight_trailing_whitespace (it->f, it->glyph_row);
11943
11944 /* Prepare for the next line. This line starts horizontally at (X
11945 HPOS) = (0 0). Vertical positions are incremented. As a
11946 convenience for the caller, IT->glyph_row is set to the next
11947 row to be used. */
11948 it->current_x = it->hpos = 0;
11949 it->current_y += row->height;
11950 ++it->vpos;
11951 ++it->glyph_row;
11952 return row->displays_text_p;
a2889657 11953}
5f5c8ee5
GM
11954
11955
a2889657 11956\f
5f5c8ee5
GM
11957/***********************************************************************
11958 Menu Bar
11959 ***********************************************************************/
11960
11961/* Redisplay the menu bar in the frame for window W.
11962
11963 The menu bar of X frames that don't have X toolkit support is
11964 displayed in a special window W->frame->menu_bar_window.
11965
11966 The menu bar of terminal frames is treated specially as far as
11967 glyph matrices are concerned. Menu bar lines are not part of
11968 windows, so the update is done directly on the frame matrix rows
11969 for the menu bar. */
7ce2c095
RS
11970
11971static void
11972display_menu_bar (w)
11973 struct window *w;
11974{
5f5c8ee5
GM
11975 struct frame *f = XFRAME (WINDOW_FRAME (w));
11976 struct it it;
11977 Lisp_Object items;
8351baf2 11978 int i;
7ce2c095 11979
5f5c8ee5 11980 /* Don't do all this for graphical frames. */
dc937613 11981#ifdef HAVE_NTGUI
d129c4c2
KH
11982 if (!NILP (Vwindow_system))
11983 return;
dc937613 11984#endif
dc937613 11985#ifdef USE_X_TOOLKIT
d3413a53 11986 if (FRAME_X_P (f))
7ce2c095 11987 return;
5f5c8ee5
GM
11988#endif
11989
11990#ifdef USE_X_TOOLKIT
11991 xassert (!FRAME_WINDOW_P (f));
52377a47 11992 init_iterator (&it, w, -1, -1, f->desired_matrix->rows, MENU_FACE_ID);
5f5c8ee5
GM
11993 it.first_visible_x = 0;
11994 it.last_visible_x = FRAME_WINDOW_WIDTH (f) * CANON_X_UNIT (f);
11995#else /* not USE_X_TOOLKIT */
11996 if (FRAME_WINDOW_P (f))
11997 {
11998 /* Menu bar lines are displayed in the desired matrix of the
11999 dummy window menu_bar_window. */
12000 struct window *menu_w;
12001 xassert (WINDOWP (f->menu_bar_window));
12002 menu_w = XWINDOW (f->menu_bar_window);
12003 init_iterator (&it, menu_w, -1, -1, menu_w->desired_matrix->rows,
52377a47 12004 MENU_FACE_ID);
5f5c8ee5
GM
12005 it.first_visible_x = 0;
12006 it.last_visible_x = FRAME_WINDOW_WIDTH (f) * CANON_X_UNIT (f);
12007 }
12008 else
12009 {
12010 /* This is a TTY frame, i.e. character hpos/vpos are used as
12011 pixel x/y. */
12012 init_iterator (&it, w, -1, -1, f->desired_matrix->rows,
52377a47 12013 MENU_FACE_ID);
5f5c8ee5
GM
12014 it.first_visible_x = 0;
12015 it.last_visible_x = FRAME_WIDTH (f);
12016 }
12017#endif /* not USE_X_TOOLKIT */
12018
12019 /* Clear all rows of the menu bar. */
12020 for (i = 0; i < FRAME_MENU_BAR_LINES (f); ++i)
12021 {
12022 struct glyph_row *row = it.glyph_row + i;
12023 clear_glyph_row (row);
12024 row->enabled_p = 1;
12025 row->full_width_p = 1;
12026 }
7ce2c095 12027
5f5c8ee5
GM
12028 /* Make the first line of the menu bar appear in reverse video. */
12029 it.glyph_row->inverse_p = mode_line_inverse_video != 0;
7ce2c095 12030
5f5c8ee5
GM
12031 /* Display all items of the menu bar. */
12032 items = FRAME_MENU_BAR_ITEMS (it.f);
469937ac 12033 for (i = 0; i < XVECTOR (items)->size; i += 4)
7ce2c095 12034 {
5f5c8ee5
GM
12035 Lisp_Object string;
12036
12037 /* Stop at nil string. */
8351baf2
RS
12038 string = XVECTOR (items)->contents[i + 1];
12039 if (NILP (string))
12040 break;
2d66ad19 12041
5f5c8ee5
GM
12042 /* Remember where item was displayed. */
12043 XSETFASTINT (XVECTOR (items)->contents[i + 3], it.hpos);
7ce2c095 12044
5f5c8ee5
GM
12045 /* Display the item, pad with one space. */
12046 if (it.current_x < it.last_visible_x)
12047 display_string (NULL, string, Qnil, 0, 0, &it,
12048 XSTRING (string)->size + 1, 0, 0, -1);
7ce2c095
RS
12049 }
12050
2d66ad19 12051 /* Fill out the line with spaces. */
5f5c8ee5
GM
12052 if (it.current_x < it.last_visible_x)
12053 display_string ("", Qnil, Qnil, 0, 0, &it, -1, 0, 0, -1);
db6f348c 12054
5f5c8ee5
GM
12055 /* Compute the total height of the lines. */
12056 compute_line_metrics (&it);
7ce2c095 12057}
5f5c8ee5
GM
12058
12059
7ce2c095 12060\f
5f5c8ee5
GM
12061/***********************************************************************
12062 Mode Line
12063 ***********************************************************************/
12064
12065/* Display the mode and/or top line of window W. */
a2889657
JB
12066
12067static void
5f5c8ee5 12068display_mode_lines (w)
a2889657
JB
12069 struct window *w;
12070{
5f5c8ee5 12071 /* These will be set while the mode line specs are processed. */
aa6d10fa 12072 line_number_displayed = 0;
155ef550 12073 w->column_number_displayed = Qnil;
aa6d10fa 12074
5f5c8ee5 12075 if (WINDOW_WANTS_MODELINE_P (w))
045dee35
GM
12076 display_mode_line (w, MODE_LINE_FACE_ID,
12077 current_buffer->mode_line_format);
5f5c8ee5 12078
045dee35
GM
12079 if (WINDOW_WANTS_HEADER_LINE_P (w))
12080 display_mode_line (w, HEADER_LINE_FACE_ID,
12081 current_buffer->header_line_format);
5f5c8ee5 12082}
03b294dc 12083
03b294dc 12084
5f5c8ee5 12085/* Display mode or top line of window W. FACE_ID specifies which line
045dee35 12086 to display; it is either MODE_LINE_FACE_ID or HEADER_LINE_FACE_ID.
5f5c8ee5 12087 FORMAT is the mode line format to display. */
03b294dc 12088
5f5c8ee5
GM
12089static void
12090display_mode_line (w, face_id, format)
12091 struct window *w;
12092 enum face_id face_id;
12093 Lisp_Object format;
12094{
12095 struct it it;
12096 struct face *face;
03b294dc 12097
5f5c8ee5
GM
12098 init_iterator (&it, w, -1, -1, NULL, face_id);
12099 prepare_desired_row (it.glyph_row);
12100
12101 /* Temporarily make frame's keyboard the current kboard so that
12102 kboard-local variables in the mode_line_format will get the right
12103 values. */
12104 push_frame_kboard (it.f);
12105 display_mode_element (&it, 0, 0, 0, format);
12106 pop_frame_kboard ();
a2889657 12107
5f5c8ee5
GM
12108 /* Fill up with spaces. */
12109 display_string (" ", Qnil, Qnil, 0, 0, &it, 10000, -1, -1, 0);
12110
12111 compute_line_metrics (&it);
12112 it.glyph_row->full_width_p = 1;
12113 it.glyph_row->mode_line_p = 1;
12114 it.glyph_row->inverse_p = mode_line_inverse_video != 0;
12115 it.glyph_row->continued_p = 0;
12116 it.glyph_row->truncated_on_left_p = 0;
12117 it.glyph_row->truncated_on_right_p = 0;
12118
12119 /* Make a 3D mode-line have a shadow at its right end. */
12120 face = FACE_FROM_ID (it.f, face_id);
12121 extend_face_to_end_of_line (&it);
12122 if (face->box != FACE_NO_BOX)
d7eb09a0 12123 {
5f5c8ee5
GM
12124 struct glyph *last = (it.glyph_row->glyphs[TEXT_AREA]
12125 + it.glyph_row->used[TEXT_AREA] - 1);
12126 last->right_box_line_p = 1;
d7eb09a0 12127 }
a2889657
JB
12128}
12129
a2889657 12130
5f5c8ee5
GM
12131/* Contribute ELT to the mode line for window IT->w. How it
12132 translates into text depends on its data type.
a2889657 12133
5f5c8ee5 12134 IT describes the display environment in which we display, as usual.
a2889657
JB
12135
12136 DEPTH is the depth in recursion. It is used to prevent
12137 infinite recursion here.
12138
5f5c8ee5
GM
12139 FIELD_WIDTH is the number of characters the display of ELT should
12140 occupy in the mode line, and PRECISION is the maximum number of
12141 characters to display from ELT's representation. See
12142 display_string for details. *
a2889657 12143
5f5c8ee5 12144 Returns the hpos of the end of the text generated by ELT. */
a2889657
JB
12145
12146static int
5f5c8ee5
GM
12147display_mode_element (it, depth, field_width, precision, elt)
12148 struct it *it;
a2889657 12149 int depth;
5f5c8ee5
GM
12150 int field_width, precision;
12151 Lisp_Object elt;
a2889657 12152{
5f5c8ee5
GM
12153 int n = 0, field, prec;
12154
a2889657
JB
12155 tail_recurse:
12156 if (depth > 10)
12157 goto invalid;
12158
12159 depth++;
12160
0220c518 12161 switch (SWITCH_ENUM_CAST (XTYPE (elt)))
a2889657
JB
12162 {
12163 case Lisp_String:
12164 {
12165 /* A string: output it and check for %-constructs within it. */
5f5c8ee5
GM
12166 unsigned char c;
12167 unsigned char *this = XSTRING (elt)->data;
12168 unsigned char *lisp_string = this;
12169
12170 while ((precision <= 0 || n < precision)
12171 && *this
12172 && (frame_title_ptr
12173 || it->current_x < it->last_visible_x))
a2889657
JB
12174 {
12175 unsigned char *last = this;
5f5c8ee5
GM
12176
12177 /* Advance to end of string or next format specifier. */
a2889657
JB
12178 while ((c = *this++) != '\0' && c != '%')
12179 ;
5f5c8ee5 12180
a2889657
JB
12181 if (this - 1 != last)
12182 {
5f5c8ee5
GM
12183 /* Output to end of string or up to '%'. Field width
12184 is length of string. Don't output more than
12185 PRECISION allows us. */
12186 prec = --this - last;
12187 if (precision > 0 && prec > precision - n)
12188 prec = precision - n;
12189
d39b6696 12190 if (frame_title_ptr)
5f5c8ee5 12191 n += store_frame_title (last, prec, prec);
d39b6696 12192 else
5f5c8ee5
GM
12193 n += display_string (NULL, elt, Qnil, 0, last - lisp_string,
12194 it, 0, prec, 0, -1);
a2889657
JB
12195 }
12196 else /* c == '%' */
12197 {
5f5c8ee5
GM
12198 unsigned char *percent_position = this;
12199
12200 /* Get the specified minimum width. Zero means
12201 don't pad. */
12202 field = 0;
a2889657 12203 while ((c = *this++) >= '0' && c <= '9')
5f5c8ee5 12204 field = field * 10 + c - '0';
a2889657 12205
5f5c8ee5
GM
12206 /* Don't pad beyond the total padding allowed. */
12207 if (field_width - n > 0 && field > field_width - n)
12208 field = field_width - n;
a2889657 12209
5f5c8ee5
GM
12210 /* Note that either PRECISION <= 0 or N < PRECISION. */
12211 prec = precision - n;
12212
a2889657 12213 if (c == 'M')
5f5c8ee5
GM
12214 n += display_mode_element (it, depth, field, prec,
12215 Vglobal_mode_string);
a2889657 12216 else if (c != 0)
d39b6696 12217 {
5f5c8ee5
GM
12218 unsigned char *spec
12219 = decode_mode_spec (it->w, c, field, prec);
12220
d39b6696 12221 if (frame_title_ptr)
5f5c8ee5 12222 n += store_frame_title (spec, field, prec);
d39b6696 12223 else
5f5c8ee5
GM
12224 {
12225 int nglyphs_before
12226 = it->glyph_row->used[TEXT_AREA];
12227 int charpos
12228 = percent_position - XSTRING (elt)->data;
12229 int nwritten
12230 = display_string (spec, Qnil, elt, charpos, 0, it,
12231 field, prec, 0, -1);
12232
12233 /* Assign to the glyphs written above the
12234 string where the `%x' came from, position
12235 of the `%'. */
12236 if (nwritten > 0)
12237 {
12238 struct glyph *glyph
12239 = (it->glyph_row->glyphs[TEXT_AREA]
12240 + nglyphs_before);
12241 int i;
12242
12243 for (i = 0; i < nwritten; ++i)
12244 {
12245 glyph[i].object = elt;
12246 glyph[i].charpos = charpos;
12247 }
12248
12249 n += nwritten;
12250 }
12251 }
d39b6696 12252 }
a2889657
JB
12253 }
12254 }
12255 }
12256 break;
12257
12258 case Lisp_Symbol:
12259 /* A symbol: process the value of the symbol recursively
12260 as if it appeared here directly. Avoid error if symbol void.
12261 Special case: if value of symbol is a string, output the string
12262 literally. */
12263 {
12264 register Lisp_Object tem;
12265 tem = Fboundp (elt);
265a9e55 12266 if (!NILP (tem))
a2889657
JB
12267 {
12268 tem = Fsymbol_value (elt);
12269 /* If value is a string, output that string literally:
12270 don't check for % within it. */
e24c997d 12271 if (STRINGP (tem))
d39b6696 12272 {
5f5c8ee5
GM
12273 prec = XSTRING (tem)->size;
12274 if (precision > 0 && prec > precision - n)
12275 prec = precision - n;
d39b6696 12276 if (frame_title_ptr)
5f5c8ee5 12277 n += store_frame_title (XSTRING (tem)->data, -1, prec);
d39b6696 12278 else
5f5c8ee5
GM
12279 n += display_string (NULL, tem, Qnil, 0, 0, it,
12280 0, prec, 0, -1);
d39b6696 12281 }
a2889657 12282 else if (!EQ (tem, elt))
5f5c8ee5
GM
12283 {
12284 /* Give up right away for nil or t. */
12285 elt = tem;
12286 goto tail_recurse;
12287 }
a2889657
JB
12288 }
12289 }
12290 break;
12291
12292 case Lisp_Cons:
12293 {
12294 register Lisp_Object car, tem;
12295
12296 /* A cons cell: three distinct cases.
12297 If first element is a string or a cons, process all the elements
12298 and effectively concatenate them.
12299 If first element is a negative number, truncate displaying cdr to
12300 at most that many characters. If positive, pad (with spaces)
12301 to at least that many characters.
12302 If first element is a symbol, process the cadr or caddr recursively
12303 according to whether the symbol's value is non-nil or nil. */
9472f927 12304 car = XCAR (elt);
5f5c8ee5
GM
12305 if (EQ (car, QCeval) && CONSP (XCDR (elt)))
12306 {
12307 /* An element of the form (:eval FORM) means evaluate FORM
12308 and use the result as mode line elements. */
12309 struct gcpro gcpro1;
12310 Lisp_Object spec;
12311
12312 spec = eval_form (XCAR (XCDR (elt)));
12313 GCPRO1 (spec);
12314 n += display_mode_element (it, depth, field_width - n,
12315 precision - n, spec);
12316 UNGCPRO;
12317 }
12318 else if (SYMBOLP (car))
a2889657
JB
12319 {
12320 tem = Fboundp (car);
9472f927 12321 elt = XCDR (elt);
e24c997d 12322 if (!CONSP (elt))
a2889657
JB
12323 goto invalid;
12324 /* elt is now the cdr, and we know it is a cons cell.
12325 Use its car if CAR has a non-nil value. */
265a9e55 12326 if (!NILP (tem))
a2889657
JB
12327 {
12328 tem = Fsymbol_value (car);
265a9e55 12329 if (!NILP (tem))
9472f927
GM
12330 {
12331 elt = XCAR (elt);
12332 goto tail_recurse;
12333 }
a2889657
JB
12334 }
12335 /* Symbol's value is nil (or symbol is unbound)
12336 Get the cddr of the original list
12337 and if possible find the caddr and use that. */
9472f927 12338 elt = XCDR (elt);
265a9e55 12339 if (NILP (elt))
a2889657 12340 break;
e24c997d 12341 else if (!CONSP (elt))
a2889657 12342 goto invalid;
9472f927 12343 elt = XCAR (elt);
a2889657
JB
12344 goto tail_recurse;
12345 }
e24c997d 12346 else if (INTEGERP (car))
a2889657
JB
12347 {
12348 register int lim = XINT (car);
9472f927 12349 elt = XCDR (elt);
a2889657 12350 if (lim < 0)
5f5c8ee5
GM
12351 {
12352 /* Negative int means reduce maximum width. */
12353 if (precision <= 0)
12354 precision = -lim;
12355 else
12356 precision = min (precision, -lim);
12357 }
a2889657
JB
12358 else if (lim > 0)
12359 {
12360 /* Padding specified. Don't let it be more than
12361 current maximum. */
5f5c8ee5
GM
12362 if (precision > 0)
12363 lim = min (precision, lim);
12364
a2889657
JB
12365 /* If that's more padding than already wanted, queue it.
12366 But don't reduce padding already specified even if
12367 that is beyond the current truncation point. */
5f5c8ee5 12368 field_width = max (lim, field_width);
a2889657
JB
12369 }
12370 goto tail_recurse;
12371 }
e24c997d 12372 else if (STRINGP (car) || CONSP (car))
a2889657
JB
12373 {
12374 register int limit = 50;
5f5c8ee5
GM
12375 /* Limit is to protect against circular lists. */
12376 while (CONSP (elt)
12377 && --limit > 0
12378 && (precision <= 0 || n < precision))
a2889657 12379 {
5f5c8ee5 12380 n += display_mode_element (it, depth, field_width - n,
9472f927
GM
12381 precision - n, XCAR (elt));
12382 elt = XCDR (elt);
a2889657
JB
12383 }
12384 }
12385 }
12386 break;
12387
12388 default:
12389 invalid:
d39b6696 12390 if (frame_title_ptr)
5f5c8ee5 12391 n += store_frame_title ("*invalid*", 0, precision - n);
d39b6696 12392 else
5f5c8ee5
GM
12393 n += display_string ("*invalid*", Qnil, Qnil, 0, 0, it, 0,
12394 precision - n, 0, 0);
12395 return n;
a2889657
JB
12396 }
12397
5f5c8ee5
GM
12398 /* Pad to FIELD_WIDTH. */
12399 if (field_width > 0 && n < field_width)
12400 {
12401 if (frame_title_ptr)
12402 n += store_frame_title ("", field_width - n, 0);
12403 else
12404 n += display_string ("", Qnil, Qnil, 0, 0, it, field_width - n,
12405 0, 0, 0);
12406 }
12407
12408 return n;
a2889657 12409}
5f5c8ee5
GM
12410
12411
766525bc
RS
12412/* Write a null-terminated, right justified decimal representation of
12413 the positive integer D to BUF using a minimal field width WIDTH. */
12414
12415static void
12416pint2str (buf, width, d)
12417 register char *buf;
12418 register int width;
12419 register int d;
12420{
12421 register char *p = buf;
12422
12423 if (d <= 0)
5f5c8ee5 12424 *p++ = '0';
766525bc 12425 else
5f5c8ee5 12426 {
766525bc 12427 while (d > 0)
5f5c8ee5 12428 {
766525bc
RS
12429 *p++ = d % 10 + '0';
12430 d /= 10;
5f5c8ee5
GM
12431 }
12432 }
12433
12434 for (width -= (int) (p - buf); width > 0; --width)
12435 *p++ = ' ';
766525bc
RS
12436 *p-- = '\0';
12437 while (p > buf)
5f5c8ee5 12438 {
766525bc
RS
12439 d = *buf;
12440 *buf++ = *p;
12441 *p-- = d;
5f5c8ee5 12442 }
766525bc
RS
12443}
12444
5f5c8ee5 12445/* Set a mnemonic character for coding_system (Lisp symbol) in BUF.
1c9241f5
KH
12446 If EOL_FLAG is 1, set also a mnemonic character for end-of-line
12447 type of CODING_SYSTEM. Return updated pointer into BUF. */
12448
6693a99a 12449static unsigned char invalid_eol_type[] = "(*invalid*)";
d24715e8 12450
1c9241f5
KH
12451static char *
12452decode_mode_spec_coding (coding_system, buf, eol_flag)
12453 Lisp_Object coding_system;
12454 register char *buf;
12455 int eol_flag;
12456{
1e1078d6 12457 Lisp_Object val;
916848d8 12458 int multibyte = !NILP (current_buffer->enable_multibyte_characters);
302f2b38
EZ
12459 unsigned char *eol_str;
12460 int eol_str_len;
12461 /* The EOL conversion we are using. */
12462 Lisp_Object eoltype;
1e1078d6 12463
4a09dee0 12464 val = Fget (coding_system, Qcoding_system);
1c9241f5 12465
4a09dee0 12466 if (!VECTORP (val)) /* Not yet decided. */
1c9241f5 12467 {
916848d8
RS
12468 if (multibyte)
12469 *buf++ = '-';
21e989e3 12470 if (eol_flag)
302f2b38 12471 eoltype = eol_mnemonic_undecided;
1e1078d6 12472 /* Don't mention EOL conversion if it isn't decided. */
1c9241f5
KH
12473 }
12474 else
12475 {
1e1078d6
RS
12476 Lisp_Object eolvalue;
12477
12478 eolvalue = Fget (coding_system, Qeol_type);
12479
916848d8
RS
12480 if (multibyte)
12481 *buf++ = XFASTINT (XVECTOR (val)->contents[1]);
12482
1c9241f5
KH
12483 if (eol_flag)
12484 {
1e1078d6
RS
12485 /* The EOL conversion that is normal on this system. */
12486
12487 if (NILP (eolvalue)) /* Not yet decided. */
12488 eoltype = eol_mnemonic_undecided;
12489 else if (VECTORP (eolvalue)) /* Not yet decided. */
12490 eoltype = eol_mnemonic_undecided;
12491 else /* INTEGERP (eolvalue) -- 0:LF, 1:CRLF, 2:CR */
12492 eoltype = (XFASTINT (eolvalue) == 0
12493 ? eol_mnemonic_unix
12494 : (XFASTINT (eolvalue) == 1
12495 ? eol_mnemonic_dos : eol_mnemonic_mac));
302f2b38
EZ
12496 }
12497 }
5f5c8ee5 12498
302f2b38
EZ
12499 if (eol_flag)
12500 {
12501 /* Mention the EOL conversion if it is not the usual one. */
12502 if (STRINGP (eoltype))
12503 {
12504 eol_str = XSTRING (eoltype)->data;
12505 eol_str_len = XSTRING (eoltype)->size;
12506 }
f30b3499
KH
12507 else if (INTEGERP (eoltype)
12508 && CHAR_VALID_P (XINT (eoltype), 0))
12509 {
4a09dee0 12510 eol_str = (unsigned char *) alloca (MAX_MULTIBYTE_LENGTH);
260a86a0 12511 eol_str_len = CHAR_STRING (XINT (eoltype), eol_str);
f30b3499 12512 }
302f2b38
EZ
12513 else
12514 {
12515 eol_str = invalid_eol_type;
12516 eol_str_len = sizeof (invalid_eol_type) - 1;
1c9241f5 12517 }
f30b3499 12518 bcopy (eol_str, buf, eol_str_len);
302f2b38 12519 buf += eol_str_len;
1c9241f5 12520 }
302f2b38 12521
1c9241f5
KH
12522 return buf;
12523}
12524
a2889657 12525/* Return a string for the output of a mode line %-spec for window W,
5f5c8ee5
GM
12526 generated by character C. PRECISION >= 0 means don't return a
12527 string longer than that value. FIELD_WIDTH > 0 means pad the
12528 string returned with spaces to that value. */
a2889657 12529
11e82b76
JB
12530static char lots_of_dashes[] = "--------------------------------------------------------------------------------------------------------------------------------------------";
12531
a2889657 12532static char *
5f5c8ee5 12533decode_mode_spec (w, c, field_width, precision)
a2889657 12534 struct window *w;
68c45bf0 12535 register int c;
5f5c8ee5 12536 int field_width, precision;
a2889657 12537{
0b67772d 12538 Lisp_Object obj;
5f5c8ee5
GM
12539 struct frame *f = XFRAME (WINDOW_FRAME (w));
12540 char *decode_mode_spec_buf = f->decode_mode_spec_buffer;
d39b6696 12541 struct buffer *b = XBUFFER (w->buffer);
a2889657 12542
0b67772d 12543 obj = Qnil;
a2889657
JB
12544
12545 switch (c)
12546 {
1af9f229
RS
12547 case '*':
12548 if (!NILP (b->read_only))
12549 return "%";
12550 if (BUF_MODIFF (b) > BUF_SAVE_MODIFF (b))
12551 return "*";
12552 return "-";
12553
12554 case '+':
12555 /* This differs from %* only for a modified read-only buffer. */
12556 if (BUF_MODIFF (b) > BUF_SAVE_MODIFF (b))
12557 return "*";
12558 if (!NILP (b->read_only))
12559 return "%";
12560 return "-";
12561
12562 case '&':
12563 /* This differs from %* in ignoring read-only-ness. */
12564 if (BUF_MODIFF (b) > BUF_SAVE_MODIFF (b))
12565 return "*";
12566 return "-";
12567
12568 case '%':
12569 return "%";
12570
12571 case '[':
12572 {
12573 int i;
12574 char *p;
12575
12576 if (command_loop_level > 5)
12577 return "[[[... ";
12578 p = decode_mode_spec_buf;
12579 for (i = 0; i < command_loop_level; i++)
12580 *p++ = '[';
12581 *p = 0;
12582 return decode_mode_spec_buf;
12583 }
12584
12585 case ']':
12586 {
12587 int i;
12588 char *p;
12589
12590 if (command_loop_level > 5)
12591 return " ...]]]";
12592 p = decode_mode_spec_buf;
12593 for (i = 0; i < command_loop_level; i++)
12594 *p++ = ']';
12595 *p = 0;
12596 return decode_mode_spec_buf;
12597 }
12598
12599 case '-':
12600 {
1af9f229 12601 register int i;
5f5c8ee5
GM
12602
12603 /* Let lots_of_dashes be a string of infinite length. */
12604 if (field_width <= 0
12605 || field_width > sizeof (lots_of_dashes))
1af9f229 12606 {
5f5c8ee5
GM
12607 for (i = 0; i < FRAME_MESSAGE_BUF_SIZE (f) - 1; ++i)
12608 decode_mode_spec_buf[i] = '-';
12609 decode_mode_spec_buf[i] = '\0';
12610 return decode_mode_spec_buf;
1af9f229 12611 }
5f5c8ee5
GM
12612 else
12613 return lots_of_dashes;
1af9f229
RS
12614 }
12615
a2889657 12616 case 'b':
d39b6696 12617 obj = b->name;
a2889657
JB
12618 break;
12619
1af9f229
RS
12620 case 'c':
12621 {
12622 int col = current_column ();
12623 XSETFASTINT (w->column_number_displayed, col);
5f5c8ee5 12624 pint2str (decode_mode_spec_buf, field_width, col);
1af9f229
RS
12625 return decode_mode_spec_buf;
12626 }
12627
12628 case 'F':
12629 /* %F displays the frame name. */
5f5c8ee5 12630 if (!NILP (f->title))
95184b48 12631 return (char *) XSTRING (f->title)->data;
fd8ff63d 12632 if (f->explicit_name || ! FRAME_WINDOW_P (f))
95184b48 12633 return (char *) XSTRING (f->name)->data;
9c6da96f 12634 return "Emacs";
1af9f229 12635
a2889657 12636 case 'f':
d39b6696 12637 obj = b->filename;
a2889657
JB
12638 break;
12639
aa6d10fa
RS
12640 case 'l':
12641 {
12adba34
RS
12642 int startpos = XMARKER (w->start)->charpos;
12643 int startpos_byte = marker_byte_position (w->start);
12644 int line, linepos, linepos_byte, topline;
aa6d10fa 12645 int nlines, junk;
aa6d10fa
RS
12646 int height = XFASTINT (w->height);
12647
12648 /* If we decided that this buffer isn't suitable for line numbers,
12649 don't forget that too fast. */
12650 if (EQ (w->base_line_pos, w->buffer))
766525bc 12651 goto no_value;
5300fd39
RS
12652 /* But do forget it, if the window shows a different buffer now. */
12653 else if (BUFFERP (w->base_line_pos))
12654 w->base_line_pos = Qnil;
aa6d10fa
RS
12655
12656 /* If the buffer is very big, don't waste time. */
37d034d3 12657 if (INTEGERP (Vline_number_display_limit)
090703f4 12658 && BUF_ZV (b) - BUF_BEGV (b) > XINT (Vline_number_display_limit))
aa6d10fa
RS
12659 {
12660 w->base_line_pos = Qnil;
12661 w->base_line_number = Qnil;
766525bc 12662 goto no_value;
aa6d10fa
RS
12663 }
12664
12665 if (!NILP (w->base_line_number)
12666 && !NILP (w->base_line_pos)
12adba34 12667 && XFASTINT (w->base_line_pos) <= startpos)
aa6d10fa
RS
12668 {
12669 line = XFASTINT (w->base_line_number);
12670 linepos = XFASTINT (w->base_line_pos);
12adba34 12671 linepos_byte = buf_charpos_to_bytepos (b, linepos);
aa6d10fa
RS
12672 }
12673 else
12674 {
12675 line = 1;
d39b6696 12676 linepos = BUF_BEGV (b);
12adba34 12677 linepos_byte = BUF_BEGV_BYTE (b);
aa6d10fa
RS
12678 }
12679
12680 /* Count lines from base line to window start position. */
12adba34
RS
12681 nlines = display_count_lines (linepos, linepos_byte,
12682 startpos_byte,
12683 startpos, &junk);
aa6d10fa
RS
12684
12685 topline = nlines + line;
12686
12687 /* Determine a new base line, if the old one is too close
12688 or too far away, or if we did not have one.
12689 "Too close" means it's plausible a scroll-down would
12690 go back past it. */
d39b6696 12691 if (startpos == BUF_BEGV (b))
aa6d10fa 12692 {
c2213350
KH
12693 XSETFASTINT (w->base_line_number, topline);
12694 XSETFASTINT (w->base_line_pos, BUF_BEGV (b));
aa6d10fa
RS
12695 }
12696 else if (nlines < height + 25 || nlines > height * 3 + 50
d39b6696 12697 || linepos == BUF_BEGV (b))
aa6d10fa 12698 {
d39b6696 12699 int limit = BUF_BEGV (b);
12adba34 12700 int limit_byte = BUF_BEGV_BYTE (b);
aa6d10fa 12701 int position;
5d121aec 12702 int distance = (height * 2 + 30) * line_number_display_limit_width;
aa6d10fa
RS
12703
12704 if (startpos - distance > limit)
12adba34
RS
12705 {
12706 limit = startpos - distance;
12707 limit_byte = CHAR_TO_BYTE (limit);
12708 }
aa6d10fa 12709
12adba34
RS
12710 nlines = display_count_lines (startpos, startpos_byte,
12711 limit_byte,
12712 - (height * 2 + 30),
aa6d10fa
RS
12713 &position);
12714 /* If we couldn't find the lines we wanted within
5d121aec 12715 line_number_display_limit_width chars per line,
aa6d10fa 12716 give up on line numbers for this window. */
12adba34 12717 if (position == limit_byte && limit == startpos - distance)
aa6d10fa
RS
12718 {
12719 w->base_line_pos = w->buffer;
12720 w->base_line_number = Qnil;
766525bc 12721 goto no_value;
aa6d10fa
RS
12722 }
12723
c2213350 12724 XSETFASTINT (w->base_line_number, topline - nlines);
12adba34 12725 XSETFASTINT (w->base_line_pos, BYTE_TO_CHAR (position));
aa6d10fa
RS
12726 }
12727
12728 /* Now count lines from the start pos to point. */
12adba34
RS
12729 nlines = display_count_lines (startpos, startpos_byte,
12730 PT_BYTE, PT, &junk);
aa6d10fa
RS
12731
12732 /* Record that we did display the line number. */
12733 line_number_displayed = 1;
12734
12735 /* Make the string to show. */
5f5c8ee5 12736 pint2str (decode_mode_spec_buf, field_width, topline + nlines);
aa6d10fa 12737 return decode_mode_spec_buf;
766525bc
RS
12738 no_value:
12739 {
12740 char* p = decode_mode_spec_buf;
5f5c8ee5
GM
12741 int pad = field_width - 2;
12742 while (pad-- > 0)
12743 *p++ = ' ';
12744 *p++ = '?';
b357b9d4
KR
12745 *p++ = '?';
12746 *p = '\0';
766525bc
RS
12747 return decode_mode_spec_buf;
12748 }
aa6d10fa
RS
12749 }
12750 break;
12751
a2889657 12752 case 'm':
d39b6696 12753 obj = b->mode_name;
a2889657
JB
12754 break;
12755
12756 case 'n':
d39b6696 12757 if (BUF_BEGV (b) > BUF_BEG (b) || BUF_ZV (b) < BUF_Z (b))
a2889657
JB
12758 return " Narrow";
12759 break;
12760
a2889657
JB
12761 case 'p':
12762 {
12763 int pos = marker_position (w->start);
d39b6696 12764 int total = BUF_ZV (b) - BUF_BEGV (b);
a2889657 12765
d39b6696 12766 if (XFASTINT (w->window_end_pos) <= BUF_Z (b) - BUF_ZV (b))
a2889657 12767 {
d39b6696 12768 if (pos <= BUF_BEGV (b))
a2889657
JB
12769 return "All";
12770 else
12771 return "Bottom";
12772 }
d39b6696 12773 else if (pos <= BUF_BEGV (b))
a2889657
JB
12774 return "Top";
12775 else
12776 {
3c7d31b9
RS
12777 if (total > 1000000)
12778 /* Do it differently for a large value, to avoid overflow. */
12779 total = ((pos - BUF_BEGV (b)) + (total / 100) - 1) / (total / 100);
12780 else
12781 total = ((pos - BUF_BEGV (b)) * 100 + total - 1) / total;
a2889657
JB
12782 /* We can't normally display a 3-digit number,
12783 so get us a 2-digit number that is close. */
12784 if (total == 100)
12785 total = 99;
12786 sprintf (decode_mode_spec_buf, "%2d%%", total);
12787 return decode_mode_spec_buf;
12788 }
12789 }
12790
8ffcb79f
RS
12791 /* Display percentage of size above the bottom of the screen. */
12792 case 'P':
12793 {
12794 int toppos = marker_position (w->start);
d39b6696
KH
12795 int botpos = BUF_Z (b) - XFASTINT (w->window_end_pos);
12796 int total = BUF_ZV (b) - BUF_BEGV (b);
8ffcb79f 12797
d39b6696 12798 if (botpos >= BUF_ZV (b))
8ffcb79f 12799 {
d39b6696 12800 if (toppos <= BUF_BEGV (b))
8ffcb79f
RS
12801 return "All";
12802 else
12803 return "Bottom";
12804 }
12805 else
12806 {
3c7d31b9
RS
12807 if (total > 1000000)
12808 /* Do it differently for a large value, to avoid overflow. */
12809 total = ((botpos - BUF_BEGV (b)) + (total / 100) - 1) / (total / 100);
12810 else
12811 total = ((botpos - BUF_BEGV (b)) * 100 + total - 1) / total;
8ffcb79f
RS
12812 /* We can't normally display a 3-digit number,
12813 so get us a 2-digit number that is close. */
12814 if (total == 100)
12815 total = 99;
d39b6696 12816 if (toppos <= BUF_BEGV (b))
8ffcb79f
RS
12817 sprintf (decode_mode_spec_buf, "Top%2d%%", total);
12818 else
12819 sprintf (decode_mode_spec_buf, "%2d%%", total);
12820 return decode_mode_spec_buf;
12821 }
12822 }
12823
1af9f229
RS
12824 case 's':
12825 /* status of process */
12826 obj = Fget_buffer_process (w->buffer);
12827 if (NILP (obj))
12828 return "no process";
12829#ifdef subprocesses
12830 obj = Fsymbol_name (Fprocess_status (obj));
12831#endif
12832 break;
d39b6696 12833
1af9f229
RS
12834 case 't': /* indicate TEXT or BINARY */
12835#ifdef MODE_LINE_BINARY_TEXT
12836 return MODE_LINE_BINARY_TEXT (b);
12837#else
12838 return "T";
12839#endif
1c9241f5
KH
12840
12841 case 'z':
12842 /* coding-system (not including end-of-line format) */
12843 case 'Z':
12844 /* coding-system (including end-of-line type) */
12845 {
12846 int eol_flag = (c == 'Z');
539b4d41 12847 char *p = decode_mode_spec_buf;
1c9241f5 12848
d30e754b 12849 if (! FRAME_WINDOW_P (f))
1c9241f5 12850 {
11c52c4f
RS
12851 /* No need to mention EOL here--the terminal never needs
12852 to do EOL conversion. */
12853 p = decode_mode_spec_coding (keyboard_coding.symbol, p, 0);
12854 p = decode_mode_spec_coding (terminal_coding.symbol, p, 0);
1c9241f5 12855 }
f13c925f 12856 p = decode_mode_spec_coding (b->buffer_file_coding_system,
539b4d41 12857 p, eol_flag);
f13c925f 12858
11c52c4f 12859#if 0 /* This proves to be annoying; I think we can do without. -- rms. */
1c9241f5
KH
12860#ifdef subprocesses
12861 obj = Fget_buffer_process (Fcurrent_buffer ());
12862 if (PROCESSP (obj))
12863 {
12864 p = decode_mode_spec_coding (XPROCESS (obj)->decode_coding_system,
12865 p, eol_flag);
12866 p = decode_mode_spec_coding (XPROCESS (obj)->encode_coding_system,
12867 p, eol_flag);
12868 }
12869#endif /* subprocesses */
11c52c4f 12870#endif /* 0 */
1c9241f5
KH
12871 *p = 0;
12872 return decode_mode_spec_buf;
12873 }
a2889657 12874 }
d39b6696 12875
e24c997d 12876 if (STRINGP (obj))
a2889657
JB
12877 return (char *) XSTRING (obj)->data;
12878 else
12879 return "";
12880}
5f5c8ee5
GM
12881
12882
12adba34
RS
12883/* Count up to COUNT lines starting from START / START_BYTE.
12884 But don't go beyond LIMIT_BYTE.
12885 Return the number of lines thus found (always nonnegative).
59b49f63 12886
12adba34 12887 Set *BYTE_POS_PTR to 1 if we found COUNT lines, 0 if we hit LIMIT. */
59b49f63
RS
12888
12889static int
12adba34
RS
12890display_count_lines (start, start_byte, limit_byte, count, byte_pos_ptr)
12891 int start, start_byte, limit_byte, count;
12892 int *byte_pos_ptr;
59b49f63 12893{
59b49f63
RS
12894 register unsigned char *cursor;
12895 unsigned char *base;
12896
12897 register int ceiling;
12898 register unsigned char *ceiling_addr;
12adba34 12899 int orig_count = count;
59b49f63
RS
12900
12901 /* If we are not in selective display mode,
12902 check only for newlines. */
12adba34
RS
12903 int selective_display = (!NILP (current_buffer->selective_display)
12904 && !INTEGERP (current_buffer->selective_display));
59b49f63
RS
12905
12906 if (count > 0)
12adba34
RS
12907 {
12908 while (start_byte < limit_byte)
12909 {
12910 ceiling = BUFFER_CEILING_OF (start_byte);
12911 ceiling = min (limit_byte - 1, ceiling);
12912 ceiling_addr = BYTE_POS_ADDR (ceiling) + 1;
12913 base = (cursor = BYTE_POS_ADDR (start_byte));
12914 while (1)
12915 {
12916 if (selective_display)
12917 while (*cursor != '\n' && *cursor != 015 && ++cursor != ceiling_addr)
12918 ;
12919 else
12920 while (*cursor != '\n' && ++cursor != ceiling_addr)
12921 ;
12922
12923 if (cursor != ceiling_addr)
12924 {
12925 if (--count == 0)
12926 {
12927 start_byte += cursor - base + 1;
12928 *byte_pos_ptr = start_byte;
12929 return orig_count;
12930 }
12931 else
12932 if (++cursor == ceiling_addr)
12933 break;
12934 }
12935 else
12936 break;
12937 }
12938 start_byte += cursor - base;
12939 }
12940 }
59b49f63
RS
12941 else
12942 {
12adba34
RS
12943 while (start_byte > limit_byte)
12944 {
12945 ceiling = BUFFER_FLOOR_OF (start_byte - 1);
12946 ceiling = max (limit_byte, ceiling);
12947 ceiling_addr = BYTE_POS_ADDR (ceiling) - 1;
12948 base = (cursor = BYTE_POS_ADDR (start_byte - 1) + 1);
59b49f63
RS
12949 while (1)
12950 {
12adba34
RS
12951 if (selective_display)
12952 while (--cursor != ceiling_addr
12953 && *cursor != '\n' && *cursor != 015)
12954 ;
12955 else
12956 while (--cursor != ceiling_addr && *cursor != '\n')
12957 ;
12958
59b49f63
RS
12959 if (cursor != ceiling_addr)
12960 {
12961 if (++count == 0)
12962 {
12adba34
RS
12963 start_byte += cursor - base + 1;
12964 *byte_pos_ptr = start_byte;
12965 /* When scanning backwards, we should
12966 not count the newline posterior to which we stop. */
12967 return - orig_count - 1;
59b49f63
RS
12968 }
12969 }
12970 else
12971 break;
12972 }
12adba34
RS
12973 /* Here we add 1 to compensate for the last decrement
12974 of CURSOR, which took it past the valid range. */
12975 start_byte += cursor - base + 1;
59b49f63
RS
12976 }
12977 }
12978
12adba34 12979 *byte_pos_ptr = limit_byte;
aa6d10fa 12980
12adba34
RS
12981 if (count < 0)
12982 return - orig_count + count;
12983 return orig_count - count;
aa6d10fa 12984
12adba34 12985}
a2889657 12986
a2889657 12987
5f5c8ee5
GM
12988\f
12989/***********************************************************************
12990 Displaying strings
12991 ***********************************************************************/
278feba9 12992
5f5c8ee5 12993/* Display a NUL-terminated string, starting with index START.
a3788d53 12994
5f5c8ee5
GM
12995 If STRING is non-null, display that C string. Otherwise, the Lisp
12996 string LISP_STRING is displayed.
a2889657 12997
5f5c8ee5
GM
12998 If FACE_STRING is not nil, FACE_STRING_POS is a position in
12999 FACE_STRING. Display STRING or LISP_STRING with the face at
13000 FACE_STRING_POS in FACE_STRING:
a2889657 13001
5f5c8ee5
GM
13002 Display the string in the environment given by IT, but use the
13003 standard display table, temporarily.
a3788d53 13004
5f5c8ee5
GM
13005 FIELD_WIDTH is the minimum number of output glyphs to produce.
13006 If STRING has fewer characters than FIELD_WIDTH, pad to the right
13007 with spaces. If STRING has more characters, more than FIELD_WIDTH
13008 glyphs will be produced. FIELD_WIDTH <= 0 means don't pad.
13009
13010 PRECISION is the maximum number of characters to output from
13011 STRING. PRECISION < 0 means don't truncate the string.
a2889657 13012
5f5c8ee5 13013 This is roughly equivalent to printf format specifiers:
a2889657 13014
5f5c8ee5
GM
13015 FIELD_WIDTH PRECISION PRINTF
13016 ----------------------------------------
13017 -1 -1 %s
13018 -1 10 %.10s
13019 10 -1 %10s
13020 20 10 %20.10s
a2889657 13021
5f5c8ee5
GM
13022 MULTIBYTE zero means do not display multibyte chars, > 0 means do
13023 display them, and < 0 means obey the current buffer's value of
13024 enable_multibyte_characters.
278feba9 13025
5f5c8ee5 13026 Value is the number of glyphs produced. */
b1d1124b 13027
5f5c8ee5
GM
13028static int
13029display_string (string, lisp_string, face_string, face_string_pos,
13030 start, it, field_width, precision, max_x, multibyte)
13031 unsigned char *string;
13032 Lisp_Object lisp_string;
68c45bf0
PE
13033 Lisp_Object face_string;
13034 int face_string_pos;
5f5c8ee5
GM
13035 int start;
13036 struct it *it;
13037 int field_width, precision, max_x;
13038 int multibyte;
13039{
13040 int hpos_at_start = it->hpos;
13041 int saved_face_id = it->face_id;
13042 struct glyph_row *row = it->glyph_row;
13043
13044 /* Initialize the iterator IT for iteration over STRING beginning
13045 with index START. We assume that IT may be modified here (which
13046 means that display_line has to do something when displaying a
13047 mini-buffer prompt, which it does). */
13048 reseat_to_string (it, string, lisp_string, start,
13049 precision, field_width, multibyte);
13050
13051 /* If displaying STRING, set up the face of the iterator
13052 from LISP_STRING, if that's given. */
13053 if (STRINGP (face_string))
13054 {
13055 int endptr;
13056 struct face *face;
13057
13058 it->face_id
13059 = face_at_string_position (it->w, face_string, face_string_pos,
13060 0, it->region_beg_charpos,
13061 it->region_end_charpos,
13062 &endptr, it->base_face_id);
13063 face = FACE_FROM_ID (it->f, it->face_id);
13064 it->face_box_p = face->box != FACE_NO_BOX;
b1d1124b 13065 }
a2889657 13066
5f5c8ee5
GM
13067 /* Set max_x to the maximum allowed X position. Don't let it go
13068 beyond the right edge of the window. */
13069 if (max_x <= 0)
13070 max_x = it->last_visible_x;
13071 else
13072 max_x = min (max_x, it->last_visible_x);
efc63ef0 13073
5f5c8ee5
GM
13074 /* Skip over display elements that are not visible. because IT->w is
13075 hscrolled. */
13076 if (it->current_x < it->first_visible_x)
13077 move_it_in_display_line_to (it, 100000, it->first_visible_x,
13078 MOVE_TO_POS | MOVE_TO_X);
a2889657 13079
5f5c8ee5
GM
13080 row->ascent = it->max_ascent;
13081 row->height = it->max_ascent + it->max_descent;
312246d1
GM
13082 row->phys_ascent = it->max_phys_ascent;
13083 row->phys_height = it->max_phys_ascent + it->max_phys_descent;
1c9241f5 13084
5f5c8ee5
GM
13085 /* This condition is for the case that we are called with current_x
13086 past last_visible_x. */
13087 while (it->current_x < max_x)
a2889657 13088 {
5f5c8ee5 13089 int x_before, x, n_glyphs_before, i, nglyphs;
1c9241f5 13090
5f5c8ee5
GM
13091 /* Get the next display element. */
13092 if (!get_next_display_element (it))
90adcf20 13093 break;
1c9241f5 13094
5f5c8ee5
GM
13095 /* Produce glyphs. */
13096 x_before = it->current_x;
13097 n_glyphs_before = it->glyph_row->used[TEXT_AREA];
13098 PRODUCE_GLYPHS (it);
90adcf20 13099
5f5c8ee5
GM
13100 nglyphs = it->glyph_row->used[TEXT_AREA] - n_glyphs_before;
13101 i = 0;
13102 x = x_before;
13103 while (i < nglyphs)
a2889657 13104 {
5f5c8ee5
GM
13105 struct glyph *glyph = row->glyphs[TEXT_AREA] + n_glyphs_before + i;
13106
13107 if (!it->truncate_lines_p
13108 && x + glyph->pixel_width > max_x)
13109 {
13110 /* End of continued line or max_x reached. */
13111 it->glyph_row->used[TEXT_AREA] = n_glyphs_before + i;
13112 it->current_x = x;
13113 break;
13114 }
13115 else if (x + glyph->pixel_width > it->first_visible_x)
13116 {
13117 /* Glyph is at least partially visible. */
13118 ++it->hpos;
13119 if (x < it->first_visible_x)
13120 it->glyph_row->x = x - it->first_visible_x;
13121 }
13122 else
a2889657 13123 {
5f5c8ee5
GM
13124 /* Glyph is off the left margin of the display area.
13125 Should not happen. */
13126 abort ();
a2889657 13127 }
5f5c8ee5
GM
13128
13129 row->ascent = max (row->ascent, it->max_ascent);
13130 row->height = max (row->height, it->max_ascent + it->max_descent);
312246d1
GM
13131 row->phys_ascent = max (row->phys_ascent, it->max_phys_ascent);
13132 row->phys_height = max (row->phys_height,
13133 it->max_phys_ascent + it->max_phys_descent);
5f5c8ee5
GM
13134 x += glyph->pixel_width;
13135 ++i;
a2889657 13136 }
5f5c8ee5
GM
13137
13138 /* Stop if max_x reached. */
13139 if (i < nglyphs)
13140 break;
13141
13142 /* Stop at line ends. */
13143 if (ITERATOR_AT_END_OF_LINE_P (it))
a2889657 13144 {
5f5c8ee5
GM
13145 it->continuation_lines_width = 0;
13146 break;
a2889657 13147 }
1c9241f5 13148
5f5c8ee5 13149 set_iterator_to_next (it);
a688bb24 13150
5f5c8ee5
GM
13151 /* Stop if truncating at the right edge. */
13152 if (it->truncate_lines_p
13153 && it->current_x >= it->last_visible_x)
13154 {
13155 /* Add truncation mark, but don't do it if the line is
13156 truncated at a padding space. */
13157 if (IT_CHARPOS (*it) < it->string_nchars)
1c9241f5 13158 {
5f5c8ee5
GM
13159 if (!FRAME_WINDOW_P (it->f))
13160 produce_special_glyphs (it, IT_TRUNCATION);
13161 it->glyph_row->truncated_on_right_p = 1;
1c9241f5 13162 }
5f5c8ee5 13163 break;
1c9241f5 13164 }
a2889657
JB
13165 }
13166
5f5c8ee5
GM
13167 /* Maybe insert a truncation at the left. */
13168 if (it->first_visible_x
13169 && IT_CHARPOS (*it) > 0)
a2889657 13170 {
5f5c8ee5
GM
13171 if (!FRAME_WINDOW_P (it->f))
13172 insert_left_trunc_glyphs (it);
13173 it->glyph_row->truncated_on_left_p = 1;
a2889657
JB
13174 }
13175
5f5c8ee5
GM
13176 it->face_id = saved_face_id;
13177
13178 /* Value is number of columns displayed. */
13179 return it->hpos - hpos_at_start;
13180}
a2889657 13181
a2889657 13182
a2889657 13183\f
5f5c8ee5
GM
13184/* This is like a combination of memq and assq. Return 1 if PROPVAL
13185 appears as an element of LIST or as the car of an element of LIST.
13186 If PROPVAL is a list, compare each element against LIST in that
13187 way, and return 1 if any element of PROPVAL is found in LIST.
13188 Otherwise return 0. This function cannot quit. */
642eefc6
RS
13189
13190int
13191invisible_p (propval, list)
13192 register Lisp_Object propval;
13193 Lisp_Object list;
13194{
af460d46 13195 register Lisp_Object tail, proptail;
9472f927 13196 for (tail = list; CONSP (tail); tail = XCDR (tail))
642eefc6
RS
13197 {
13198 register Lisp_Object tem;
9472f927 13199 tem = XCAR (tail);
642eefc6
RS
13200 if (EQ (propval, tem))
13201 return 1;
9472f927 13202 if (CONSP (tem) && EQ (propval, XCAR (tem)))
642eefc6
RS
13203 return 1;
13204 }
af460d46
RS
13205 if (CONSP (propval))
13206 for (proptail = propval; CONSP (proptail);
9472f927 13207 proptail = XCDR (proptail))
af460d46
RS
13208 {
13209 Lisp_Object propelt;
9472f927
GM
13210 propelt = XCAR (proptail);
13211 for (tail = list; CONSP (tail); tail = XCDR (tail))
af460d46
RS
13212 {
13213 register Lisp_Object tem;
9472f927 13214 tem = XCAR (tail);
af460d46
RS
13215 if (EQ (propelt, tem))
13216 return 1;
9472f927 13217 if (CONSP (tem) && EQ (propelt, XCAR (tem)))
af460d46
RS
13218 return 1;
13219 }
13220 }
642eefc6
RS
13221 return 0;
13222}
13223
5f5c8ee5
GM
13224
13225/* Return 1 if PROPVAL appears as the car of an element of LIST and
13226 the cdr of that element is non-nil. If PROPVAL is a list, check
13227 each element of PROPVAL in that way, and the first time some
13228 element is found, return 1 if the cdr of that element is non-nil.
13229 Otherwise return 0. This function cannot quit. */
642eefc6
RS
13230
13231int
13232invisible_ellipsis_p (propval, list)
13233 register Lisp_Object propval;
13234 Lisp_Object list;
13235{
af460d46 13236 register Lisp_Object tail, proptail;
9472f927
GM
13237
13238 for (tail = list; CONSP (tail); tail = XCDR (tail))
642eefc6
RS
13239 {
13240 register Lisp_Object tem;
9472f927
GM
13241 tem = XCAR (tail);
13242 if (CONSP (tem) && EQ (propval, XCAR (tem)))
13243 return ! NILP (XCDR (tem));
642eefc6 13244 }
9472f927 13245
af460d46 13246 if (CONSP (propval))
9472f927 13247 for (proptail = propval; CONSP (proptail); proptail = XCDR (proptail))
af460d46
RS
13248 {
13249 Lisp_Object propelt;
9472f927
GM
13250 propelt = XCAR (proptail);
13251 for (tail = list; CONSP (tail); tail = XCDR (tail))
af460d46
RS
13252 {
13253 register Lisp_Object tem;
9472f927
GM
13254 tem = XCAR (tail);
13255 if (CONSP (tem) && EQ (propelt, XCAR (tem)))
13256 return ! NILP (XCDR (tem));
af460d46
RS
13257 }
13258 }
9472f927 13259
642eefc6
RS
13260 return 0;
13261}
5f5c8ee5
GM
13262
13263
642eefc6 13264\f
5f5c8ee5
GM
13265/***********************************************************************
13266 Initialization
13267 ***********************************************************************/
13268
a2889657
JB
13269void
13270syms_of_xdisp ()
13271{
c6e89d6c
GM
13272 Vwith_echo_area_save_vector = Qnil;
13273 staticpro (&Vwith_echo_area_save_vector);
5f5c8ee5 13274
c6e89d6c
GM
13275 Vmessage_stack = Qnil;
13276 staticpro (&Vmessage_stack);
13277
735c094c 13278 Qinhibit_redisplay = intern ("inhibit-redisplay");
c6e89d6c 13279 staticpro (&Qinhibit_redisplay);
735c094c 13280
5f5c8ee5
GM
13281#if GLYPH_DEBUG
13282 defsubr (&Sdump_glyph_matrix);
13283 defsubr (&Sdump_glyph_row);
e037b9ec 13284 defsubr (&Sdump_tool_bar_row);
5f5c8ee5 13285 defsubr (&Strace_redisplay_toggle);
bf9249e3 13286 defsubr (&Strace_to_stderr);
5f5c8ee5
GM
13287#endif
13288
cf074754
RS
13289 staticpro (&Qmenu_bar_update_hook);
13290 Qmenu_bar_update_hook = intern ("menu-bar-update-hook");
13291
d46fb96a 13292 staticpro (&Qoverriding_terminal_local_map);
7079aefa 13293 Qoverriding_terminal_local_map = intern ("overriding-terminal-local-map");
d46fb96a 13294
399164b4
KH
13295 staticpro (&Qoverriding_local_map);
13296 Qoverriding_local_map = intern ("overriding-local-map");
13297
75c43375
RS
13298 staticpro (&Qwindow_scroll_functions);
13299 Qwindow_scroll_functions = intern ("window-scroll-functions");
13300
e0bfbde6
RS
13301 staticpro (&Qredisplay_end_trigger_functions);
13302 Qredisplay_end_trigger_functions = intern ("redisplay-end-trigger-functions");
5f5c8ee5 13303
2e54982e
RS
13304 staticpro (&Qinhibit_point_motion_hooks);
13305 Qinhibit_point_motion_hooks = intern ("inhibit-point-motion-hooks");
13306
9499d71b
GM
13307 QCdata = intern (":data");
13308 staticpro (&QCdata);
5f5c8ee5 13309 Qdisplay = intern ("display");
f3751a65 13310 staticpro (&Qdisplay);
5f5c8ee5
GM
13311 Qspace_width = intern ("space-width");
13312 staticpro (&Qspace_width);
5f5c8ee5
GM
13313 Qraise = intern ("raise");
13314 staticpro (&Qraise);
13315 Qspace = intern ("space");
13316 staticpro (&Qspace);
f3751a65
GM
13317 Qmargin = intern ("margin");
13318 staticpro (&Qmargin);
5f5c8ee5 13319 Qleft_margin = intern ("left-margin");
f3751a65 13320 staticpro (&Qleft_margin);
5f5c8ee5 13321 Qright_margin = intern ("right-margin");
f3751a65 13322 staticpro (&Qright_margin);
5f5c8ee5
GM
13323 Qalign_to = intern ("align-to");
13324 staticpro (&Qalign_to);
13325 QCalign_to = intern (":align-to");
13326 staticpro (&QCalign_to);
5f5c8ee5
GM
13327 Qrelative_width = intern ("relative-width");
13328 staticpro (&Qrelative_width);
13329 QCrelative_width = intern (":relative-width");
13330 staticpro (&QCrelative_width);
13331 QCrelative_height = intern (":relative-height");
13332 staticpro (&QCrelative_height);
13333 QCeval = intern (":eval");
13334 staticpro (&QCeval);
d3acf96b 13335 Qwhen = intern ("when");
f3751a65 13336 staticpro (&Qwhen);
886bd6f2
GM
13337 QCfile = intern (":file");
13338 staticpro (&QCfile);
5f5c8ee5
GM
13339 Qfontified = intern ("fontified");
13340 staticpro (&Qfontified);
13341 Qfontification_functions = intern ("fontification-functions");
13342 staticpro (&Qfontification_functions);
5f5c8ee5
GM
13343 Qtrailing_whitespace = intern ("trailing-whitespace");
13344 staticpro (&Qtrailing_whitespace);
13345 Qimage = intern ("image");
13346 staticpro (&Qimage);
ad4f174e
GM
13347 Qmessage_truncate_lines = intern ("message-truncate-lines");
13348 staticpro (&Qmessage_truncate_lines);
5f5c8ee5 13349
a2889657
JB
13350 last_arrow_position = Qnil;
13351 last_arrow_string = Qnil;
f3751a65
GM
13352 staticpro (&last_arrow_position);
13353 staticpro (&last_arrow_string);
c6e89d6c
GM
13354
13355 echo_buffer[0] = echo_buffer[1] = Qnil;
13356 staticpro (&echo_buffer[0]);
13357 staticpro (&echo_buffer[1]);
13358
13359 echo_area_buffer[0] = echo_area_buffer[1] = Qnil;
13360 staticpro (&echo_area_buffer[0]);
13361 staticpro (&echo_area_buffer[1]);
a2889657 13362
6a94510a
GM
13363 Vmessages_buffer_name = build_string ("*Messages*");
13364 staticpro (&Vmessages_buffer_name);
13365
8f897821
GM
13366 DEFVAR_LISP ("show-trailing-whitespace", &Vshow_trailing_whitespace,
13367 "Non-nil means highlight trailing whitespace.\n\
13368The face used for trailing whitespace is `trailing-whitespace'.");
13369 Vshow_trailing_whitespace = Qnil;
13370
735c094c
KH
13371 DEFVAR_LISP ("inhibit-redisplay", &Vinhibit_redisplay,
13372 "Non-nil means don't actually do any redisplay.\n\
13373This is used for internal purposes.");
13374 Vinhibit_redisplay = Qnil;
13375
a2889657 13376 DEFVAR_LISP ("global-mode-string", &Vglobal_mode_string,
8c45d522 13377 "String (or mode line construct) included (normally) in `mode-line-format'.");
a2889657
JB
13378 Vglobal_mode_string = Qnil;
13379
13380 DEFVAR_LISP ("overlay-arrow-position", &Voverlay_arrow_position,
13381 "Marker for where to display an arrow on top of the buffer text.\n\
13382This must be the beginning of a line in order to work.\n\
13383See also `overlay-arrow-string'.");
13384 Voverlay_arrow_position = Qnil;
13385
13386 DEFVAR_LISP ("overlay-arrow-string", &Voverlay_arrow_string,
13387 "String to display as an arrow. See also `overlay-arrow-position'.");
13388 Voverlay_arrow_string = Qnil;
13389
13390 DEFVAR_INT ("scroll-step", &scroll_step,
13391 "*The number of lines to try scrolling a window by when point moves out.\n\
44fa5b1e
JB
13392If that fails to bring point back on frame, point is centered instead.\n\
13393If this is zero, point is always centered after it moves off frame.");
a2889657 13394
0789adb2 13395 DEFVAR_INT ("scroll-conservatively", &scroll_conservatively,
090f7baa
GM
13396 "*Scroll up to this many lines, to bring point back on screen.\n\
13397A value of zero means to scroll the text to center point vertically\n\
13398in the window.");
0789adb2
RS
13399 scroll_conservatively = 0;
13400
9afd2168
RS
13401 DEFVAR_INT ("scroll-margin", &scroll_margin,
13402 "*Number of lines of margin at the top and bottom of a window.\n\
13403Recenter the window whenever point gets within this many lines\n\
13404of the top or bottom of the window.");
13405 scroll_margin = 0;
13406
5f5c8ee5 13407#if GLYPH_DEBUG
a2889657 13408 DEFVAR_INT ("debug-end-pos", &debug_end_pos, "Don't ask");
5f5c8ee5 13409#endif
a2889657
JB
13410
13411 DEFVAR_BOOL ("truncate-partial-width-windows",
13412 &truncate_partial_width_windows,
44fa5b1e 13413 "*Non-nil means truncate lines in all windows less than full frame wide.");
a2889657
JB
13414 truncate_partial_width_windows = 1;
13415
13416 DEFVAR_BOOL ("mode-line-inverse-video", &mode_line_inverse_video,
13417 "*Non-nil means use inverse video for the mode line.");
13418 mode_line_inverse_video = 1;
aa6d10fa 13419
090703f4 13420 DEFVAR_LISP ("line-number-display-limit", &Vline_number_display_limit,
5f5c8ee5 13421 "*Maximum buffer size for which line number should be displayed.\n\
db4f2bfa 13422If the buffer is bigger than this, the line number does not appear\n\
090703f4
GM
13423in the mode line. A value of nil means no limit.");
13424 Vline_number_display_limit = Qnil;
fba9ce76 13425
090703f4
GM
13426 DEFVAR_INT ("line-number-display-limit-width",
13427 &line_number_display_limit_width,
5d121aec
KH
13428 "*Maximum line width (in characters) for line number display.\n\
13429If the average length of the lines near point is bigger than this, then the\n\
13430line number may be omitted from the mode line.");
13431 line_number_display_limit_width = 200;
13432
fba9ce76
RS
13433 DEFVAR_BOOL ("highlight-nonselected-windows", &highlight_nonselected_windows,
13434 "*Non-nil means highlight region even in nonselected windows.");
293a54ce 13435 highlight_nonselected_windows = 0;
d39b6696
KH
13436
13437 DEFVAR_BOOL ("multiple-frames", &multiple_frames,
3450d04c
KH
13438 "Non-nil if more than one frame is visible on this display.\n\
13439Minibuffer-only frames don't count, but iconified frames do.\n\
4c2eb242
RS
13440This variable is not guaranteed to be accurate except while processing\n\
13441`frame-title-format' and `icon-title-format'.");
d39b6696
KH
13442
13443 DEFVAR_LISP ("frame-title-format", &Vframe_title_format,
5f5c8ee5 13444 "Template for displaying the title bar of visible frames.\n\
d39b6696
KH
13445\(Assuming the window manager supports this feature.)\n\
13446This variable has the same structure as `mode-line-format' (which see),\n\
13447and is used only on frames for which no explicit name has been set\n\
13448\(see `modify-frame-parameters').");
13449 DEFVAR_LISP ("icon-title-format", &Vicon_title_format,
5f5c8ee5 13450 "Template for displaying the title bar of an iconified frame.\n\
d39b6696
KH
13451\(Assuming the window manager supports this feature.)\n\
13452This variable has the same structure as `mode-line-format' (which see),\n\
13453and is used only on frames for which no explicit name has been set\n\
13454\(see `modify-frame-parameters').");
13455 Vicon_title_format
13456 = Vframe_title_format
13457 = Fcons (intern ("multiple-frames"),
13458 Fcons (build_string ("%b"),
13459 Fcons (Fcons (build_string (""),
13460 Fcons (intern ("invocation-name"),
13461 Fcons (build_string ("@"),
13462 Fcons (intern ("system-name"),
13463 Qnil)))),
13464 Qnil)));
5992c4f7
KH
13465
13466 DEFVAR_LISP ("message-log-max", &Vmessage_log_max,
13467 "Maximum number of lines to keep in the message log buffer.\n\
13468If nil, disable message logging. If t, log messages but don't truncate\n\
13469the buffer when it becomes large.");
13470 XSETFASTINT (Vmessage_log_max, 50);
08b610e4
RS
13471
13472 DEFVAR_LISP ("window-size-change-functions", &Vwindow_size_change_functions,
13473 "Functions called before redisplay, if window sizes have changed.\n\
13474The value should be a list of functions that take one argument.\n\
13475Just before redisplay, for each frame, if any of its windows have changed\n\
13476size since the last redisplay, or have been split or deleted,\n\
13477all the functions in the list are called, with the frame as argument.");
13478 Vwindow_size_change_functions = Qnil;
75c43375
RS
13479
13480 DEFVAR_LISP ("window-scroll-functions", &Vwindow_scroll_functions,
5f5c8ee5 13481 "List of Functions to call before redisplaying a window with scrolling.\n\
75c43375 13482Each function is called with two arguments, the window\n\
8d9583b0
RS
13483and its new display-start position. Note that the value of `window-end'\n\
13484is not valid when these functions are called.");
75c43375 13485 Vwindow_scroll_functions = Qnil;
5f5c8ee5 13486
e037b9ec
GM
13487 DEFVAR_BOOL ("auto-resize-tool-bars", &auto_resize_tool_bars_p,
13488 "*Non-nil means automatically resize tool-bars.\n\
13489This increases a tool-bar's height if not all tool-bar items are visible.\n\
13490It decreases a tool-bar's height when it would display blank lines\n\
5f5c8ee5 13491otherwise.");
e037b9ec 13492 auto_resize_tool_bars_p = 1;
5f5c8ee5 13493
e037b9ec
GM
13494 DEFVAR_BOOL ("auto-raise-tool-bar-buttons", &auto_raise_tool_bar_buttons_p,
13495 "*Non-nil means raise tool-bar buttons when the mouse moves over them.");
13496 auto_raise_tool_bar_buttons_p = 1;
5f5c8ee5 13497
e037b9ec
GM
13498 DEFVAR_INT ("tool-bar-button-margin", &tool_bar_button_margin,
13499 "*Margin around tool-bar buttons in pixels.");
13500 tool_bar_button_margin = 1;
5f5c8ee5 13501
e037b9ec
GM
13502 DEFVAR_INT ("tool-bar-button-relief", &tool_bar_button_relief,
13503 "Relief thickness of tool-bar buttons.");
13504 tool_bar_button_relief = 3;
5f5c8ee5
GM
13505
13506 DEFVAR_LISP ("fontification-functions", &Vfontification_functions,
13507 "List of functions to call to fontify regions of text.\n\
13508Each function is called with one argument POS. Functions must\n\
13509fontify a region starting at POS in the current buffer, and give\n\
13510fontified regions the property `fontified'.\n\
13511This variable automatically becomes buffer-local when set.");
13512 Vfontification_functions = Qnil;
13513 Fmake_local_variable (Qfontification_functions);
7bbe686f
AI
13514
13515 DEFVAR_BOOL ("unibyte-display-via-language-environment",
5f5c8ee5
GM
13516 &unibyte_display_via_language_environment,
13517 "*Non-nil means display unibyte text according to language environment.\n\
7bbe686f
AI
13518Specifically this means that unibyte non-ASCII characters\n\
13519are displayed by converting them to the equivalent multibyte characters\n\
13520according to the current language environment. As a result, they are\n\
13521displayed according to the current fontset.");
13522 unibyte_display_via_language_environment = 0;
c6e89d6c
GM
13523
13524 DEFVAR_LISP ("max-mini-window-height", &Vmax_mini_window_height,
13525 "*Maximum height for resizing mini-windows.\n\
13526If a float, it specifies a fraction of the mini-window frame's height.\n\
97cafc0f
GM
13527If an integer, it specifies a number of lines.\n\
13528If nil, don't resize.");
c6e89d6c 13529 Vmax_mini_window_height = make_float (0.25);
d6d26ed3
GM
13530
13531 DEFVAR_BOOL ("cursor-in-non-selected-windows",
13532 &cursor_in_non_selected_windows,
13533 "*Non-nil means display a hollow cursor in non-selected windows.\n\
13534Nil means don't display a cursor there.");
13535 cursor_in_non_selected_windows = 1;
d475bcb8
GM
13536
13537 DEFVAR_BOOL ("automatic-hscrolling", &automatic_hscrolling_p,
13538 "*Non-nil means scroll the display automatically to make point visible.");
13539 automatic_hscrolling_p = 1;
e00daaa0
GM
13540
13541 DEFVAR_LISP ("image-types", &Vimage_types,
ad4f174e 13542 "List of supported image types.\n\
e00daaa0
GM
13543Each element of the list is a symbol for a supported image type.");
13544 Vimage_types = Qnil;
ad4f174e
GM
13545
13546 DEFVAR_BOOL ("message-truncate-lines", &message_truncate_lines,
13547 "If non-nil, messages are truncated instead of resizing the echo area.\n\
13548Bind this around calls to `message' to let it take effect.");
13549 message_truncate_lines = 0;
a2889657
JB
13550}
13551
5f5c8ee5
GM
13552
13553/* Initialize this module when Emacs starts. */
13554
dfcf069d 13555void
a2889657
JB
13556init_xdisp ()
13557{
13558 Lisp_Object root_window;
5f5c8ee5 13559 struct window *mini_w;
a2889657 13560
5f5c8ee5 13561 CHARPOS (this_line_start_pos) = 0;
a2889657
JB
13562
13563 mini_w = XWINDOW (minibuf_window);
11e82b76 13564 root_window = FRAME_ROOT_WINDOW (XFRAME (WINDOW_FRAME (mini_w)));
a2889657 13565
a2889657
JB
13566 if (!noninteractive)
13567 {
5f5c8ee5
GM
13568 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (root_window)));
13569 int i;
13570
13571 XSETFASTINT (XWINDOW (root_window)->top, FRAME_TOP_MARGIN (f));
12c226c5 13572 set_window_height (root_window,
5f5c8ee5 13573 FRAME_HEIGHT (f) - 1 - FRAME_TOP_MARGIN (f),
12c226c5 13574 0);
c2213350 13575 XSETFASTINT (mini_w->top, FRAME_HEIGHT (f) - 1);
a2889657
JB
13576 set_window_height (minibuf_window, 1, 0);
13577
c2213350
KH
13578 XSETFASTINT (XWINDOW (root_window)->width, FRAME_WIDTH (f));
13579 XSETFASTINT (mini_w->width, FRAME_WIDTH (f));
5f5c8ee5
GM
13580
13581 scratch_glyph_row.glyphs[TEXT_AREA] = scratch_glyphs;
13582 scratch_glyph_row.glyphs[TEXT_AREA + 1]
13583 = scratch_glyphs + MAX_SCRATCH_GLYPHS;
13584
13585 /* The default ellipsis glyphs `...'. */
13586 for (i = 0; i < 3; ++i)
13587 XSETFASTINT (default_invis_vector[i], '.');
a2889657 13588 }
5f5c8ee5
GM
13589
13590#ifdef HAVE_WINDOW_SYSTEM
13591 {
13592 /* Allocate the buffer for frame titles. */
13593 int size = 100;
13594 frame_title_buf = (char *) xmalloc (size);
13595 frame_title_buf_end = frame_title_buf + size;
13596 frame_title_ptr = NULL;
13597 }
13598#endif /* HAVE_WINDOW_SYSTEM */
a2889657 13599}
5f5c8ee5
GM
13600
13601