(Fminibuffer_window): Change for Lisp_Object
[bpt/emacs.git] / src / xdisp.c
CommitLineData
a2889657 1/* Display generation from window structure and buffer text.
5f5c8ee5
GM
2 Copyright (C) 1985, 86, 87, 88, 93, 94, 95, 97, 98, 99
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>
5f5c8ee5
GM
172#ifdef STDC_HEADERS
173#include <stdlib.h>
174#endif
a2889657 175#include "lisp.h"
44fa5b1e 176#include "frame.h"
a2889657
JB
177#include "window.h"
178#include "termchar.h"
179#include "dispextern.h"
180#include "buffer.h"
1c9241f5 181#include "charset.h"
a2889657
JB
182#include "indent.h"
183#include "commands.h"
184#include "macros.h"
185#include "disptab.h"
30c566e4 186#include "termhooks.h"
b0a0fbda 187#include "intervals.h"
fe8b0cf8 188#include "keyboard.h"
1c9241f5
KH
189#include "coding.h"
190#include "process.h"
dfcf069d
AS
191#include "region-cache.h"
192
6d55d620 193#ifdef HAVE_X_WINDOWS
dfcf069d
AS
194#include "xterm.h"
195#endif
a2889657 196
5f5c8ee5
GM
197#define min(a, b) ((a) < (b) ? (a) : (b))
198#define max(a, b) ((a) > (b) ? (a) : (b))
199
200#define INFINITY 10000000
201
8f3343d0 202#if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI)
76412d64 203extern void set_frame_menubar ();
cd6dfed6 204extern int pending_menu_activation;
76412d64
RS
205#endif
206
a2889657
JB
207extern int interrupt_input;
208extern int command_loop_level;
209
b6436d4e
RS
210extern int minibuffer_auto_raise;
211
c4628384
RS
212extern Lisp_Object Qface;
213
399164b4
KH
214extern Lisp_Object Voverriding_local_map;
215extern Lisp_Object Voverriding_local_map_menu_flag;
5f5c8ee5 216extern Lisp_Object Qmenu_item;
399164b4 217
d46fb96a 218Lisp_Object Qoverriding_local_map, Qoverriding_terminal_local_map;
75c43375 219Lisp_Object Qwindow_scroll_functions, Vwindow_scroll_functions;
e0bfbde6 220Lisp_Object Qredisplay_end_trigger_functions;
2e54982e 221Lisp_Object Qinhibit_point_motion_hooks;
d3acf96b 222Lisp_Object QCeval, Qwhen;
5f5c8ee5
GM
223Lisp_Object Qfontified;
224
225/* Functions called to fontify regions of text. */
226
227Lisp_Object Vfontification_functions;
228Lisp_Object Qfontification_functions;
229
e037b9ec 230/* Non-zero means draw tool bar buttons raised when the mouse moves
5f5c8ee5
GM
231 over them. */
232
e037b9ec 233int auto_raise_tool_bar_buttons_p;
5f5c8ee5 234
e037b9ec 235/* Margin around tool bar buttons in pixels. */
5f5c8ee5 236
e037b9ec 237int tool_bar_button_margin;
5f5c8ee5 238
e037b9ec 239/* Thickness of shadow to draw around tool bar buttons. */
5f5c8ee5 240
e037b9ec 241int tool_bar_button_relief;
5f5c8ee5 242
e037b9ec 243/* Non-zero means automatically resize tool-bars so that all tool-bar
5f5c8ee5
GM
244 items are visible, and no blank lines remain. */
245
e037b9ec 246int auto_resize_tool_bars_p;
399164b4 247
735c094c
KH
248/* Non-nil means don't actually do any redisplay. */
249
250Lisp_Object Vinhibit_redisplay, Qinhibit_redisplay;
251
5f5c8ee5
GM
252/* Names of text properties relevant for redisplay. */
253
254Lisp_Object Qdisplay, Qrelative_width, Qwidth, Qalign_to;
255extern Lisp_Object Qface, Qinvisible, Qimage;
256
257/* Symbols used in text property values. */
258
259Lisp_Object Qspace, QCalign_to, QCrelative_width, QCrelative_height;
260Lisp_Object Qleft_margin, Qright_margin, Qspace_width, Qheight, Qraise;
261
8f897821 262/* Non-nil means highlight trailing whitespace. */
5f5c8ee5 263
8f897821 264Lisp_Object Vshow_trailing_whitespace;
5f5c8ee5
GM
265
266/* Name of the face used to highlight trailing whitespace. */
267
268Lisp_Object Qtrailing_whitespace;
269
270/* The symbol `image' which is the car of the lists used to represent
271 images in Lisp. */
272
273Lisp_Object Qimage;
274
275/* Non-zero means print newline to stdout before next mini-buffer
276 message. */
a2889657
JB
277
278int noninteractive_need_newline;
279
5f5c8ee5 280/* Non-zero means print newline to message log before next message. */
f88eb0b6 281
3c6595e0 282static int message_log_need_newline;
f88eb0b6 283
5f5c8ee5
GM
284\f
285/* The buffer position of the first character appearing entirely or
286 partially on the line of the selected window which contains the
287 cursor; <= 0 if not known. Set by set_cursor_from_row, used for
288 redisplay optimization in redisplay_internal. */
a2889657 289
5f5c8ee5 290static struct text_pos this_line_start_pos;
a2889657 291
5f5c8ee5
GM
292/* Number of characters past the end of the line above, including the
293 terminating newline. */
294
295static struct text_pos this_line_end_pos;
296
297/* The vertical positions and the height of this line. */
a2889657 298
a2889657 299static int this_line_vpos;
5f5c8ee5
GM
300static int this_line_y;
301static int this_line_pixel_height;
302
303/* X position at which this display line starts. Usually zero;
304 negative if first character is partially visible. */
305
306static int this_line_start_x;
a2889657 307
5f5c8ee5 308/* Buffer that this_line_.* variables are referring to. */
a2889657 309
a2889657
JB
310static struct buffer *this_line_buffer;
311
5f5c8ee5
GM
312/* Nonzero means truncate lines in all windows less wide than the
313 frame. */
a2889657 314
a2889657
JB
315int truncate_partial_width_windows;
316
7bbe686f 317/* A flag to control how to display unibyte 8-bit character. */
5f5c8ee5 318
7bbe686f 319int unibyte_display_via_language_environment;
5f5c8ee5
GM
320
321/* Nonzero means we have more than one non-mini-buffer-only frame.
322 Not guaranteed to be accurate except while parsing
323 frame-title-format. */
7bbe686f 324
d39b6696
KH
325int multiple_frames;
326
a2889657
JB
327Lisp_Object Vglobal_mode_string;
328
329/* Marker for where to display an arrow on top of the buffer text. */
5f5c8ee5 330
a2889657
JB
331Lisp_Object Voverlay_arrow_position;
332
5f5c8ee5
GM
333/* String to display for the arrow. Only used on terminal frames. */
334
a2889657
JB
335Lisp_Object Voverlay_arrow_string;
336
5f5c8ee5
GM
337/* Values of those variables at last redisplay. However, if
338 Voverlay_arrow_position is a marker, last_arrow_position is its
339 numerical position. */
340
d45de95b
RS
341static Lisp_Object last_arrow_position, last_arrow_string;
342
5f5c8ee5
GM
343/* Like mode-line-format, but for the title bar on a visible frame. */
344
d39b6696
KH
345Lisp_Object Vframe_title_format;
346
5f5c8ee5
GM
347/* Like mode-line-format, but for the title bar on an iconified frame. */
348
d39b6696
KH
349Lisp_Object Vicon_title_format;
350
08b610e4
RS
351/* List of functions to call when a window's size changes. These
352 functions get one arg, a frame on which one or more windows' sizes
353 have changed. */
5f5c8ee5 354
08b610e4
RS
355static Lisp_Object Vwindow_size_change_functions;
356
cf074754
RS
357Lisp_Object Qmenu_bar_update_hook;
358
a2889657 359/* Nonzero if overlay arrow has been displayed once in this window. */
a2889657 360
5f5c8ee5 361static int overlay_arrow_seen;
ca26e1c8 362
fba9ce76 363/* Nonzero means highlight the region even in nonselected windows. */
fba9ce76 364
5f5c8ee5
GM
365int highlight_nonselected_windows;
366
367/* If cursor motion alone moves point off frame, try scrolling this
368 many lines up or down if that will bring it back. */
369
14510fee 370static int scroll_step;
a2889657 371
5f5c8ee5
GM
372/* Non-0 means scroll just far enough to bring point back on the
373 screen, when appropriate. */
374
0789adb2
RS
375static int scroll_conservatively;
376
5f5c8ee5
GM
377/* Recenter the window whenever point gets within this many lines of
378 the top or bottom of the window. This value is translated into a
379 pixel value by multiplying it with CANON_Y_UNIT, which means that
380 there is really a fixed pixel height scroll margin. */
381
9afd2168
RS
382int scroll_margin;
383
5f5c8ee5
GM
384/* Number of windows showing the buffer of the selected window (or
385 another buffer with the same base buffer). keyboard.c refers to
386 this. */
a2889657 387
a2889657
JB
388int buffer_shared;
389
5f5c8ee5 390/* Vector containing glyphs for an ellipsis `...'. */
a2889657 391
5f5c8ee5 392static Lisp_Object default_invis_vector[3];
a2889657 393
5f5c8ee5 394/* Nonzero means display mode line highlighted. */
a2889657 395
a2889657
JB
396int mode_line_inverse_video;
397
5f5c8ee5
GM
398/* Prompt to display in front of the mini-buffer contents. */
399
8c5b6a0a 400Lisp_Object minibuf_prompt;
a2889657 401
5f5c8ee5
GM
402/* Width of current mini-buffer prompt. Only set after display_line
403 of the line that contains the prompt. */
404
a2889657 405int minibuf_prompt_width;
5f5c8ee5
GM
406int minibuf_prompt_pixel_width;
407
5f5c8ee5
GM
408/* This is the window where the echo area message was displayed. It
409 is always a mini-buffer window, but it may not be the same window
410 currently active as a mini-buffer. */
411
73af359d
RS
412Lisp_Object echo_area_window;
413
c6e89d6c
GM
414/* List of pairs (MESSAGE . MULTIBYTE). The function save_message
415 pushes the current message and the value of
416 message_enable_multibyte on the stack, the function restore_message
417 pops the stack and displays MESSAGE again. */
418
419Lisp_Object Vmessage_stack;
420
a3788d53
RS
421/* Nonzero means multibyte characters were enabled when the echo area
422 message was specified. */
5f5c8ee5 423
a3788d53
RS
424int message_enable_multibyte;
425
5f5c8ee5
GM
426/* True if we should redraw the mode lines on the next redisplay. */
427
a2889657
JB
428int update_mode_lines;
429
5f5c8ee5
GM
430/* Nonzero if window sizes or contents have changed since last
431 redisplay that finished */
432
a2889657
JB
433int windows_or_buffers_changed;
434
5f5c8ee5
GM
435/* Nonzero after display_mode_line if %l was used and it displayed a
436 line number. */
437
aa6d10fa
RS
438int line_number_displayed;
439
440/* Maximum buffer size for which to display line numbers. */
5f5c8ee5 441
14510fee 442static int line_number_display_limit;
5992c4f7 443
5d121aec
KH
444/* line width to consider when repostioning for line number display */
445
446static int line_number_display_limit_width;
447
5f5c8ee5
GM
448/* Number of lines to keep in the message log buffer. t means
449 infinite. nil means don't log at all. */
450
5992c4f7 451Lisp_Object Vmessage_log_max;
d45de95b 452
c6e89d6c
GM
453/* Current, index 0, and last displayed echo area message. Either
454 buffers from echo_buffers, or nil to indicate no message. */
455
456Lisp_Object echo_area_buffer[2];
457
458/* The buffers referenced from echo_area_buffer. */
459
460static Lisp_Object echo_buffer[2];
461
462/* A vector saved used in with_area_buffer to reduce consing. */
463
464static Lisp_Object Vwith_echo_area_save_vector;
465
466/* Non-zero means display_echo_area should display the last echo area
467 message again. Set by redisplay_preserve_echo_area. */
468
469static int display_last_displayed_message_p;
470
471/* Nonzero if echo area is being used by print; zero if being used by
472 message. */
473
474int message_buf_print;
475
9142dd5b
GM
476/* Maximum height for resizing mini-windows. Either a float
477 specifying a fraction of the available height, or an integer
478 specifying a number of lines. */
c6e89d6c
GM
479
480static Lisp_Object Vmax_mini_window_height;
481
5f5c8ee5
GM
482/* A scratch glyph row with contents used for generating truncation
483 glyphs. Also used in direct_output_for_insert. */
12adba34 484
5f5c8ee5
GM
485#define MAX_SCRATCH_GLYPHS 100
486struct glyph_row scratch_glyph_row;
487static struct glyph scratch_glyphs[MAX_SCRATCH_GLYPHS];
1adc55de 488
5f5c8ee5
GM
489/* Ascent and height of the last line processed by move_it_to. */
490
491static int last_max_ascent, last_height;
492
493/* The maximum distance to look ahead for text properties. Values
494 that are too small let us call compute_char_face and similar
495 functions too often which is expensive. Values that are too large
496 let us call compute_char_face and alike too often because we
497 might not be interested in text properties that far away. */
498
499#define TEXT_PROP_DISTANCE_LIMIT 100
500
501/* Non-zero means print traces of redisplay if compiled with
502 GLYPH_DEBUG != 0. */
503
504#if GLYPH_DEBUG
505int trace_redisplay_p;
506#endif
507
508/* Value returned from text property handlers (see below). */
509
510enum prop_handled
3c6595e0 511{
5f5c8ee5
GM
512 HANDLED_NORMALLY,
513 HANDLED_RECOMPUTE_PROPS,
514 HANDLED_OVERLAY_STRING_CONSUMED,
515 HANDLED_RETURN
516};
3c6595e0 517
5f5c8ee5
GM
518/* A description of text properties that redisplay is interested
519 in. */
3c6595e0 520
5f5c8ee5
GM
521struct props
522{
523 /* The name of the property. */
524 Lisp_Object *name;
90adcf20 525
5f5c8ee5
GM
526 /* A unique index for the property. */
527 enum prop_idx idx;
528
529 /* A handler function called to set up iterator IT from the property
530 at IT's current position. Value is used to steer handle_stop. */
531 enum prop_handled (*handler) P_ ((struct it *it));
532};
533
534static enum prop_handled handle_face_prop P_ ((struct it *));
535static enum prop_handled handle_invisible_prop P_ ((struct it *));
536static enum prop_handled handle_display_prop P_ ((struct it *));
537static enum prop_handled handle_overlay_change P_ ((struct it *));
538static enum prop_handled handle_fontified_prop P_ ((struct it *));
539
540/* Properties handled by iterators. */
541
542static struct props it_props[] =
5992c4f7 543{
5f5c8ee5
GM
544 {&Qfontified, FONTIFIED_PROP_IDX, handle_fontified_prop},
545 /* Handle `face' before `display' because some sub-properties of
546 `display' need to know the face. */
547 {&Qface, FACE_PROP_IDX, handle_face_prop},
548 {&Qdisplay, DISPLAY_PROP_IDX, handle_display_prop},
549 {&Qinvisible, INVISIBLE_PROP_IDX, handle_invisible_prop},
550 {NULL, 0, NULL}
551};
5992c4f7 552
5f5c8ee5
GM
553/* Value is the position described by X. If X is a marker, value is
554 the marker_position of X. Otherwise, value is X. */
12adba34 555
5f5c8ee5 556#define COERCE_MARKER(X) (MARKERP ((X)) ? Fmarker_position (X) : (X))
12adba34 557
5f5c8ee5 558/* Enumeration returned by some move_it_.* functions internally. */
12adba34 559
5f5c8ee5
GM
560enum move_it_result
561{
562 /* Not used. Undefined value. */
563 MOVE_UNDEFINED,
bab29e15 564
5f5c8ee5
GM
565 /* Move ended at the requested buffer position or ZV. */
566 MOVE_POS_MATCH_OR_ZV,
bab29e15 567
5f5c8ee5
GM
568 /* Move ended at the requested X pixel position. */
569 MOVE_X_REACHED,
12adba34 570
5f5c8ee5
GM
571 /* Move within a line ended at the end of a line that must be
572 continued. */
573 MOVE_LINE_CONTINUED,
574
575 /* Move within a line ended at the end of a line that would
576 be displayed truncated. */
577 MOVE_LINE_TRUNCATED,
ff6c30e5 578
5f5c8ee5
GM
579 /* Move within a line ended at a line end. */
580 MOVE_NEWLINE_OR_CR
581};
12adba34 582
ff6c30e5 583
5f5c8ee5
GM
584\f
585/* Function prototypes. */
586
e037b9ec
GM
587static struct glyph_row *row_containing_pos P_ ((struct window *, int,
588 struct glyph_row *,
589 struct glyph_row *));
c6e89d6c
GM
590static Lisp_Object unwind_with_echo_area_buffer P_ ((Lisp_Object));
591static Lisp_Object with_echo_area_buffer_unwind_data P_ ((struct window *));
c6e89d6c
GM
592static void clear_garbaged_frames P_ ((void));
593static int current_message_1 P_ ((Lisp_Object *));
594static int truncate_message_1 P_ ((int));
595static int set_message_1 P_ ((char *s, Lisp_Object, int, int));
596static int display_echo_area P_ ((struct window *));
597static int display_echo_area_1 P_ ((struct window *));
28514cd9 598static Lisp_Object unwind_redisplay P_ ((Lisp_Object));
4fdb80f2 599static int string_char_and_length P_ ((unsigned char *, int, int *));
5f5c8ee5
GM
600static struct text_pos display_prop_end P_ ((struct it *, Lisp_Object,
601 struct text_pos));
602static int compute_window_start_on_continuation_line P_ ((struct window *));
603static Lisp_Object eval_handler P_ ((Lisp_Object));
604static Lisp_Object eval_form P_ ((Lisp_Object));
605static void insert_left_trunc_glyphs P_ ((struct it *));
606static struct glyph_row *get_overlay_arrow_glyph_row P_ ((struct window *));
607static void extend_face_to_end_of_line P_ ((struct it *));
608static void append_space P_ ((struct it *, int));
609static void make_cursor_line_fully_visible P_ ((struct window *));
610static int try_scrolling P_ ((Lisp_Object, int, int, int, int));
611static int trailing_whitespace_p P_ ((int));
612static int message_log_check_duplicate P_ ((int, int, int, int));
613int invisible_p P_ ((Lisp_Object, Lisp_Object));
614int invisible_ellipsis_p P_ ((Lisp_Object, Lisp_Object));
615static void push_it P_ ((struct it *));
616static void pop_it P_ ((struct it *));
617static void sync_frame_with_window_matrix_rows P_ ((struct window *));
618static void redisplay_internal P_ ((int));
c6e89d6c 619static int echo_area_display P_ ((int));
5f5c8ee5
GM
620static void redisplay_windows P_ ((Lisp_Object));
621static void redisplay_window P_ ((Lisp_Object, int));
622static void update_menu_bar P_ ((struct frame *, int));
623static int try_window_reusing_current_matrix P_ ((struct window *));
624static int try_window_id P_ ((struct window *));
625static int display_line P_ ((struct it *));
626static void display_mode_lines P_ ((struct window *));
627static void display_mode_line P_ ((struct window *, enum face_id,
628 Lisp_Object));
629static int display_mode_element P_ ((struct it *, int, int, int, Lisp_Object));
630static char *decode_mode_spec P_ ((struct window *, char, int, int));
631static void display_menu_bar P_ ((struct window *));
632static int display_count_lines P_ ((int, int, int, int, int *));
633static int display_string P_ ((unsigned char *, Lisp_Object, Lisp_Object,
634 int, int, struct it *, int, int, int, int));
635static void compute_line_metrics P_ ((struct it *));
636static void run_redisplay_end_trigger_hook P_ ((struct it *));
637static int get_overlay_strings P_ ((struct it *));
638static void next_overlay_string P_ ((struct it *));
639void set_iterator_to_next P_ ((struct it *));
640static void reseat P_ ((struct it *, struct text_pos, int));
641static void reseat_1 P_ ((struct it *, struct text_pos, int));
642static void back_to_previous_visible_line_start P_ ((struct it *));
643static void reseat_at_previous_visible_line_start P_ ((struct it *));
312246d1 644static void reseat_at_next_visible_line_start P_ ((struct it *, int));
5f5c8ee5
GM
645static int next_element_from_display_vector P_ ((struct it *));
646static int next_element_from_string P_ ((struct it *));
647static int next_element_from_c_string P_ ((struct it *));
648static int next_element_from_buffer P_ ((struct it *));
649static int next_element_from_image P_ ((struct it *));
650static int next_element_from_stretch P_ ((struct it *));
651static void load_overlay_strings P_ ((struct it *));
652static void init_from_display_pos P_ ((struct it *, struct window *,
653 struct display_pos *));
654static void reseat_to_string P_ ((struct it *, unsigned char *,
655 Lisp_Object, int, int, int, int));
656static int charset_at_position P_ ((struct text_pos));
657static enum move_it_result move_it_in_display_line_to P_ ((struct it *,
658 int, int, int));
659void move_it_vertically_backward P_ ((struct it *, int));
660static void init_to_row_start P_ ((struct it *, struct window *,
661 struct glyph_row *));
662static void init_to_row_end P_ ((struct it *, struct window *,
663 struct glyph_row *));
664static void back_to_previous_line_start P_ ((struct it *));
665static void forward_to_next_line_start P_ ((struct it *));
666static struct text_pos string_pos_nchars_ahead P_ ((struct text_pos,
667 Lisp_Object, int));
668static struct text_pos string_pos P_ ((int, Lisp_Object));
669static struct text_pos c_string_pos P_ ((int, unsigned char *, int));
670static int number_of_chars P_ ((unsigned char *, int));
671static void compute_stop_pos P_ ((struct it *));
672static void compute_string_pos P_ ((struct text_pos *, struct text_pos,
673 Lisp_Object));
674static int face_before_or_after_it_pos P_ ((struct it *, int));
675static int next_overlay_change P_ ((int));
676static int handle_single_display_prop P_ ((struct it *, Lisp_Object,
677 Lisp_Object, struct text_pos *));
678
679#define face_before_it_pos(IT) face_before_or_after_it_pos ((IT), 1)
680#define face_after_it_pos(IT) face_before_or_after_it_pos ((IT), 0)
ff6c30e5 681
5f5c8ee5 682#ifdef HAVE_WINDOW_SYSTEM
12adba34 683
e037b9ec
GM
684static void update_tool_bar P_ ((struct frame *, int));
685static void build_desired_tool_bar_string P_ ((struct frame *f));
686static int redisplay_tool_bar P_ ((struct frame *));
687static void display_tool_bar_line P_ ((struct it *));
12adba34 688
5f5c8ee5 689#endif /* HAVE_WINDOW_SYSTEM */
12adba34 690
5f5c8ee5
GM
691\f
692/***********************************************************************
693 Window display dimensions
694 ***********************************************************************/
12adba34 695
5f5c8ee5
GM
696/* Return the window-relative maximum y + 1 for glyph rows displaying
697 text in window W. This is the height of W minus the height of a
698 mode line, if any. */
699
700INLINE int
701window_text_bottom_y (w)
702 struct window *w;
703{
704 struct frame *f = XFRAME (w->frame);
705 int height = XFASTINT (w->height) * CANON_Y_UNIT (f);
706
707 if (WINDOW_WANTS_MODELINE_P (w))
708 height -= CURRENT_MODE_LINE_HEIGHT (w);
709 return height;
f88eb0b6
KH
710}
711
f82aff7c 712
5f5c8ee5
GM
713/* Return the pixel width of display area AREA of window W. AREA < 0
714 means return the total width of W, not including bitmap areas to
715 the left and right of the window. */
ff6c30e5 716
5f5c8ee5
GM
717INLINE int
718window_box_width (w, area)
719 struct window *w;
720 int area;
721{
722 struct frame *f = XFRAME (w->frame);
723 int width = XFASTINT (w->width);
724
725 if (!w->pseudo_window_p)
ff6c30e5 726 {
050d82d7 727 width -= FRAME_SCROLL_BAR_WIDTH (f) + FRAME_FLAGS_AREA_COLS (f);
5f5c8ee5
GM
728
729 if (area == TEXT_AREA)
730 {
731 if (INTEGERP (w->left_margin_width))
732 width -= XFASTINT (w->left_margin_width);
733 if (INTEGERP (w->right_margin_width))
734 width -= XFASTINT (w->right_margin_width);
735 }
736 else if (area == LEFT_MARGIN_AREA)
737 width = (INTEGERP (w->left_margin_width)
738 ? XFASTINT (w->left_margin_width) : 0);
739 else if (area == RIGHT_MARGIN_AREA)
740 width = (INTEGERP (w->right_margin_width)
741 ? XFASTINT (w->right_margin_width) : 0);
ff6c30e5 742 }
5f5c8ee5
GM
743
744 return width * CANON_X_UNIT (f);
ff6c30e5 745}
1adc55de 746
1adc55de 747
5f5c8ee5
GM
748/* Return the pixel height of the display area of window W, not
749 including mode lines of W, if any.. */
f88eb0b6 750
5f5c8ee5
GM
751INLINE int
752window_box_height (w)
753 struct window *w;
f88eb0b6 754{
5f5c8ee5
GM
755 struct frame *f = XFRAME (w->frame);
756 int height = XFASTINT (w->height) * CANON_Y_UNIT (f);
757
758 if (WINDOW_WANTS_MODELINE_P (w))
759 height -= CURRENT_MODE_LINE_HEIGHT (w);
760
045dee35
GM
761 if (WINDOW_WANTS_HEADER_LINE_P (w))
762 height -= CURRENT_HEADER_LINE_HEIGHT (w);
5f5c8ee5
GM
763
764 return height;
5992c4f7
KH
765}
766
767
5f5c8ee5
GM
768/* Return the frame-relative coordinate of the left edge of display
769 area AREA of window W. AREA < 0 means return the left edge of the
770 whole window, to the right of any bitmap area at the left side of
771 W. */
5992c4f7 772
5f5c8ee5
GM
773INLINE int
774window_box_left (w, area)
775 struct window *w;
776 int area;
90adcf20 777{
5f5c8ee5
GM
778 struct frame *f = XFRAME (w->frame);
779 int x = FRAME_INTERNAL_BORDER_WIDTH_SAFE (f);
a3788d53 780
5f5c8ee5 781 if (!w->pseudo_window_p)
90adcf20 782 {
5f5c8ee5 783 x += (WINDOW_LEFT_MARGIN (w) * CANON_X_UNIT (f)
050d82d7 784 + FRAME_LEFT_FLAGS_AREA_WIDTH (f));
5f5c8ee5
GM
785
786 if (area == TEXT_AREA)
787 x += window_box_width (w, LEFT_MARGIN_AREA);
788 else if (area == RIGHT_MARGIN_AREA)
789 x += (window_box_width (w, LEFT_MARGIN_AREA)
790 + window_box_width (w, TEXT_AREA));
90adcf20 791 }
73af359d 792
5f5c8ee5
GM
793 return x;
794}
90adcf20 795
b6436d4e 796
5f5c8ee5
GM
797/* Return the frame-relative coordinate of the right edge of display
798 area AREA of window W. AREA < 0 means return the left edge of the
799 whole window, to the left of any bitmap area at the right side of
800 W. */
ded34426 801
5f5c8ee5
GM
802INLINE int
803window_box_right (w, area)
804 struct window *w;
805 int area;
806{
807 return window_box_left (w, area) + window_box_width (w, area);
808}
809
810
811/* Get the bounding box of the display area AREA of window W, without
812 mode lines, in frame-relative coordinates. AREA < 0 means the
813 whole window, not including bitmap areas to the left and right of
814 the window. Return in *BOX_X and *BOX_Y the frame-relative pixel
815 coordinates of the upper-left corner of the box. Return in
816 *BOX_WIDTH, and *BOX_HEIGHT the pixel width and height of the box. */
817
818INLINE void
819window_box (w, area, box_x, box_y, box_width, box_height)
820 struct window *w;
821 int area;
822 int *box_x, *box_y, *box_width, *box_height;
823{
824 struct frame *f = XFRAME (w->frame);
825
826 *box_width = window_box_width (w, area);
827 *box_height = window_box_height (w);
828 *box_x = window_box_left (w, area);
829 *box_y = (FRAME_INTERNAL_BORDER_WIDTH_SAFE (f)
830 + XFASTINT (w->top) * CANON_Y_UNIT (f));
045dee35
GM
831 if (WINDOW_WANTS_HEADER_LINE_P (w))
832 *box_y += CURRENT_HEADER_LINE_HEIGHT (w);
ded34426 833}
1adc55de 834
1adc55de 835
5f5c8ee5
GM
836/* Get the bounding box of the display area AREA of window W, without
837 mode lines. AREA < 0 means the whole window, not including bitmap
838 areas to the left and right of the window. Return in *TOP_LEFT_X
839 and TOP_LEFT_Y the frame-relative pixel coordinates of the
840 upper-left corner of the box. Return in *BOTTOM_RIGHT_X, and
841 *BOTTOM_RIGHT_Y the coordinates of the bottom-right corner of the
842 box. */
ded34426 843
5f5c8ee5
GM
844INLINE void
845window_box_edges (w, area, top_left_x, top_left_y,
846 bottom_right_x, bottom_right_y)
847 struct window *w;
848 int area;
849 int *top_left_x, *top_left_y, *bottom_right_x, *bottom_right_y;
48ae5f0a 850{
5f5c8ee5
GM
851 window_box (w, area, top_left_x, top_left_y, bottom_right_x,
852 bottom_right_y);
853 *bottom_right_x += *top_left_x;
854 *bottom_right_y += *top_left_y;
48ae5f0a
KH
855}
856
5f5c8ee5
GM
857
858\f
859/***********************************************************************
860 Utilities
861 ***********************************************************************/
862
4fdb80f2
GM
863/* Return the next character from STR which is MAXLEN bytes long.
864 Return in *LEN the length of the character. This is like
865 STRING_CHAR_AND_LENGTH but never returns an invalid character. If
866 we find one, we return a `?', but with the length of the illegal
867 character. */
868
869static INLINE int
7a5b8a93 870string_char_and_length (str, maxlen, len)
4fdb80f2 871 unsigned char *str;
7a5b8a93 872 int maxlen, *len;
4fdb80f2
GM
873{
874 int c;
875
876 c = STRING_CHAR_AND_LENGTH (str, maxlen, *len);
877 if (!CHAR_VALID_P (c, 1))
878 /* We may not change the length here because other places in Emacs
879 don't use this function, i.e. they silently accept illegal
880 characters. */
881 c = '?';
882
883 return c;
884}
885
886
887
5f5c8ee5
GM
888/* Given a position POS containing a valid character and byte position
889 in STRING, return the position NCHARS ahead (NCHARS >= 0). */
890
891static struct text_pos
892string_pos_nchars_ahead (pos, string, nchars)
893 struct text_pos pos;
894 Lisp_Object string;
895 int nchars;
0b1005ef 896{
5f5c8ee5
GM
897 xassert (STRINGP (string) && nchars >= 0);
898
899 if (STRING_MULTIBYTE (string))
900 {
901 int rest = STRING_BYTES (XSTRING (string)) - BYTEPOS (pos);
902 unsigned char *p = XSTRING (string)->data + BYTEPOS (pos);
903 int len;
904
905 while (nchars--)
906 {
4fdb80f2 907 string_char_and_length (p, rest, &len);
5f5c8ee5
GM
908 p += len, rest -= len;
909 xassert (rest >= 0);
910 CHARPOS (pos) += 1;
911 BYTEPOS (pos) += len;
912 }
913 }
914 else
915 SET_TEXT_POS (pos, CHARPOS (pos) + nchars, BYTEPOS (pos) + nchars);
916
917 return pos;
0a9dc68b
RS
918}
919
0a9dc68b 920
5f5c8ee5
GM
921/* Value is the text position, i.e. character and byte position,
922 for character position CHARPOS in STRING. */
923
924static INLINE struct text_pos
925string_pos (charpos, string)
926 int charpos;
0a9dc68b 927 Lisp_Object string;
0a9dc68b 928{
5f5c8ee5
GM
929 struct text_pos pos;
930 xassert (STRINGP (string));
931 xassert (charpos >= 0);
932 SET_TEXT_POS (pos, charpos, string_char_to_byte (string, charpos));
933 return pos;
934}
935
936
937/* Value is a text position, i.e. character and byte position, for
938 character position CHARPOS in C string S. MULTIBYTE_P non-zero
939 means recognize multibyte characters. */
940
941static struct text_pos
942c_string_pos (charpos, s, multibyte_p)
943 int charpos;
944 unsigned char *s;
945 int multibyte_p;
946{
947 struct text_pos pos;
948
949 xassert (s != NULL);
950 xassert (charpos >= 0);
951
952 if (multibyte_p)
0a9dc68b 953 {
5f5c8ee5
GM
954 int rest = strlen (s), len;
955
956 SET_TEXT_POS (pos, 0, 0);
957 while (charpos--)
0a9dc68b 958 {
4fdb80f2 959 string_char_and_length (s, rest, &len);
5f5c8ee5
GM
960 s += len, rest -= len;
961 xassert (rest >= 0);
962 CHARPOS (pos) += 1;
963 BYTEPOS (pos) += len;
0a9dc68b
RS
964 }
965 }
5f5c8ee5
GM
966 else
967 SET_TEXT_POS (pos, charpos, charpos);
0a9dc68b 968
5f5c8ee5
GM
969 return pos;
970}
0a9dc68b 971
0a9dc68b 972
5f5c8ee5
GM
973/* Value is the number of characters in C string S. MULTIBYTE_P
974 non-zero means recognize multibyte characters. */
0a9dc68b 975
5f5c8ee5
GM
976static int
977number_of_chars (s, multibyte_p)
978 unsigned char *s;
979 int multibyte_p;
980{
981 int nchars;
982
983 if (multibyte_p)
984 {
985 int rest = strlen (s), len;
986 unsigned char *p = (unsigned char *) s;
0a9dc68b 987
5f5c8ee5
GM
988 for (nchars = 0; rest > 0; ++nchars)
989 {
4fdb80f2 990 string_char_and_length (p, rest, &len);
5f5c8ee5 991 rest -= len, p += len;
0a9dc68b
RS
992 }
993 }
5f5c8ee5
GM
994 else
995 nchars = strlen (s);
996
997 return nchars;
0b1005ef
KH
998}
999
5f5c8ee5
GM
1000
1001/* Compute byte position NEWPOS->bytepos corresponding to
1002 NEWPOS->charpos. POS is a known position in string STRING.
1003 NEWPOS->charpos must be >= POS.charpos. */
76412d64 1004
5f5c8ee5
GM
1005static void
1006compute_string_pos (newpos, pos, string)
1007 struct text_pos *newpos, pos;
1008 Lisp_Object string;
76412d64 1009{
5f5c8ee5
GM
1010 xassert (STRINGP (string));
1011 xassert (CHARPOS (*newpos) >= CHARPOS (pos));
1012
1013 if (STRING_MULTIBYTE (string))
1014 *newpos = string_pos_nchars_ahead (pos, CHARPOS (*newpos) - CHARPOS (pos),
1015 string);
1016 else
1017 BYTEPOS (*newpos) = CHARPOS (*newpos);
76412d64
RS
1018}
1019
9c74a0dd 1020
5f5c8ee5
GM
1021/* Return the charset of the character at position POS in
1022 current_buffer. */
1adc55de 1023
5f5c8ee5
GM
1024static int
1025charset_at_position (pos)
1026 struct text_pos pos;
a2889657 1027{
5f5c8ee5
GM
1028 int c, multibyte_p;
1029 unsigned char *p = BYTE_POS_ADDR (BYTEPOS (pos));
1030
1031 multibyte_p = !NILP (current_buffer->enable_multibyte_characters);
1032 if (multibyte_p)
a2889657 1033 {
5f5c8ee5
GM
1034 int maxlen = ((BYTEPOS (pos) >= GPT_BYTE ? ZV_BYTE : GPT_BYTE)
1035 - BYTEPOS (pos));
1036 int len;
4fdb80f2 1037 c = string_char_and_length (p, maxlen, &len);
a2889657 1038 }
5f5c8ee5
GM
1039 else
1040 c = *p;
1041
1042 return CHAR_CHARSET (c);
1043}
1044
1045
1046\f
1047/***********************************************************************
1048 Lisp form evaluation
1049 ***********************************************************************/
1050
1051/* Error handler for eval_form. */
1052
1053static Lisp_Object
1054eval_handler (arg)
1055 Lisp_Object arg;
1056{
1057 return Qnil;
1058}
1059
1060
1061/* Evaluate SEXPR and return the result, or nil if something went
1062 wrong. */
1063
1064static Lisp_Object
1065eval_form (sexpr)
1066 Lisp_Object sexpr;
1067{
1068 int count = specpdl_ptr - specpdl;
1069 Lisp_Object val;
1070 specbind (Qinhibit_redisplay, Qt);
1071 val = internal_condition_case_1 (Feval, sexpr, Qerror, eval_handler);
1072 return unbind_to (count, val);
1073}
1074
1075
1076\f
1077/***********************************************************************
1078 Debugging
1079 ***********************************************************************/
1080
1081#if 0
1082
1083/* Define CHECK_IT to perform sanity checks on iterators.
1084 This is for debugging. It is too slow to do unconditionally. */
1085
1086static void
1087check_it (it)
1088 struct it *it;
1089{
1090 if (it->method == next_element_from_string)
a2889657 1091 {
5f5c8ee5
GM
1092 xassert (STRINGP (it->string));
1093 xassert (IT_STRING_CHARPOS (*it) >= 0);
1094 }
1095 else if (it->method == next_element_from_buffer)
1096 {
1097 /* Check that character and byte positions agree. */
1098 xassert (IT_CHARPOS (*it) == BYTE_TO_CHAR (IT_BYTEPOS (*it)));
1099 }
73af359d 1100
5f5c8ee5
GM
1101 if (it->dpvec)
1102 xassert (it->current.dpvec_index >= 0);
1103 else
1104 xassert (it->current.dpvec_index < 0);
1105}
1f40cad2 1106
5f5c8ee5
GM
1107#define CHECK_IT(IT) check_it ((IT))
1108
1109#else /* not 0 */
1110
1111#define CHECK_IT(IT) (void) 0
1112
1113#endif /* not 0 */
1114
1115
1116#if GLYPH_DEBUG
1117
1118/* Check that the window end of window W is what we expect it
1119 to be---the last row in the current matrix displaying text. */
1120
1121static void
1122check_window_end (w)
1123 struct window *w;
1124{
1125 if (!MINI_WINDOW_P (w)
1126 && !NILP (w->window_end_valid))
1127 {
1128 struct glyph_row *row;
1129 xassert ((row = MATRIX_ROW (w->current_matrix,
1130 XFASTINT (w->window_end_vpos)),
1131 !row->enabled_p
1132 || MATRIX_ROW_DISPLAYS_TEXT_P (row)
1133 || MATRIX_ROW_VPOS (row, w->current_matrix) == 0));
1134 }
1135}
1136
1137#define CHECK_WINDOW_END(W) check_window_end ((W))
1138
1139#else /* not GLYPH_DEBUG */
1140
1141#define CHECK_WINDOW_END(W) (void) 0
1142
1143#endif /* not GLYPH_DEBUG */
1144
1145
1146\f
1147/***********************************************************************
1148 Iterator initialization
1149 ***********************************************************************/
1150
1151/* Initialize IT for displaying current_buffer in window W, starting
1152 at character position CHARPOS. CHARPOS < 0 means that no buffer
1153 position is specified which is useful when the iterator is assigned
1154 a position later. BYTEPOS is the byte position corresponding to
1155 CHARPOS. BYTEPOS <= 0 means compute it from CHARPOS.
1156
1157 If ROW is not null, calls to produce_glyphs with IT as parameter
1158 will produce glyphs in that row.
1159
1160 BASE_FACE_ID is the id of a base face to use. It must be one of
1161 DEFAULT_FACE_ID for normal text, MODE_LINE_FACE_ID or
045dee35 1162 HEADER_LINE_FACE_ID for displaying mode lines, or TOOL_BAR_FACE_ID for
e037b9ec 1163 displaying the tool-bar.
5f5c8ee5
GM
1164
1165 If ROW is null and BASE_FACE_ID is equal to MODE_LINE_FACE_ID or
045dee35 1166 HEADER_LINE_FACE_ID, the iterator will be initialized to use the
5f5c8ee5
GM
1167 corresponding mode line glyph row of the desired matrix of W. */
1168
1169void
1170init_iterator (it, w, charpos, bytepos, row, base_face_id)
1171 struct it *it;
1172 struct window *w;
1173 int charpos, bytepos;
1174 struct glyph_row *row;
1175 enum face_id base_face_id;
1176{
1177 int highlight_region_p;
5f5c8ee5
GM
1178
1179 /* Some precondition checks. */
1180 xassert (w != NULL && it != NULL);
5f5c8ee5
GM
1181 xassert (charpos < 0 || (charpos > 0 && charpos <= ZV));
1182
1183 /* If face attributes have been changed since the last redisplay,
1184 free realized faces now because they depend on face definitions
1185 that might have changed. */
1186 if (face_change_count)
1187 {
1188 face_change_count = 0;
1189 free_all_realized_faces (Qnil);
1190 }
1191
1192 /* Use one of the mode line rows of W's desired matrix if
1193 appropriate. */
1194 if (row == NULL)
1195 {
1196 if (base_face_id == MODE_LINE_FACE_ID)
1197 row = MATRIX_MODE_LINE_ROW (w->desired_matrix);
045dee35
GM
1198 else if (base_face_id == HEADER_LINE_FACE_ID)
1199 row = MATRIX_HEADER_LINE_ROW (w->desired_matrix);
5f5c8ee5
GM
1200 }
1201
1202 /* Clear IT. */
1203 bzero (it, sizeof *it);
1204 it->current.overlay_string_index = -1;
1205 it->current.dpvec_index = -1;
1206 it->charset = CHARSET_ASCII;
1207 it->base_face_id = base_face_id;
1208
1209 /* The window in which we iterate over current_buffer: */
1210 XSETWINDOW (it->window, w);
1211 it->w = w;
1212 it->f = XFRAME (w->frame);
1213
1214 /* If realized faces have been removed, e.g. because of face
1215 attribute changes of named faces, recompute them. */
1216 if (FRAME_FACE_CACHE (it->f)->used == 0)
1217 recompute_basic_faces (it->f);
1218
5f5c8ee5
GM
1219 /* Current value of the `space-width', and 'height' properties. */
1220 it->space_width = Qnil;
1221 it->font_height = Qnil;
1222
1223 /* Are control characters displayed as `^C'? */
1224 it->ctl_arrow_p = !NILP (current_buffer->ctl_arrow);
1225
1226 /* -1 means everything between a CR and the following line end
1227 is invisible. >0 means lines indented more than this value are
1228 invisible. */
1229 it->selective = (INTEGERP (current_buffer->selective_display)
1230 ? XFASTINT (current_buffer->selective_display)
1231 : (!NILP (current_buffer->selective_display)
1232 ? -1 : 0));
1233 it->selective_display_ellipsis_p
1234 = !NILP (current_buffer->selective_display_ellipses);
1235
1236 /* Display table to use. */
1237 it->dp = window_display_table (w);
1238
1239 /* Are multibyte characters enabled in current_buffer? */
1240 it->multibyte_p = !NILP (current_buffer->enable_multibyte_characters);
1241
1242 /* Non-zero if we should highlight the region. */
1243 highlight_region_p
1244 = (!NILP (Vtransient_mark_mode)
1245 && !NILP (current_buffer->mark_active)
1246 && XMARKER (current_buffer->mark)->buffer != 0);
1247
1248 /* Set IT->region_beg_charpos and IT->region_end_charpos to the
1249 start and end of a visible region in window IT->w. Set both to
1250 -1 to indicate no region. */
1251 if (highlight_region_p
1252 /* Maybe highlight only in selected window. */
1253 && (/* Either show region everywhere. */
1254 highlight_nonselected_windows
1255 /* Or show region in the selected window. */
1256 || w == XWINDOW (selected_window)
1257 /* Or show the region if we are in the mini-buffer and W is
1258 the window the mini-buffer refers to. */
1259 || (MINI_WINDOW_P (XWINDOW (selected_window))
1260 && w == XWINDOW (Vminibuf_scroll_window))))
1261 {
1262 int charpos = marker_position (current_buffer->mark);
1263 it->region_beg_charpos = min (PT, charpos);
1264 it->region_end_charpos = max (PT, charpos);
1265 }
1266 else
1267 it->region_beg_charpos = it->region_end_charpos = -1;
1268
1269 /* Get the position at which the redisplay_end_trigger hook should
1270 be run, if it is to be run at all. */
1271 if (MARKERP (w->redisplay_end_trigger)
1272 && XMARKER (w->redisplay_end_trigger)->buffer != 0)
1273 it->redisplay_end_trigger_charpos
1274 = marker_position (w->redisplay_end_trigger);
1275 else if (INTEGERP (w->redisplay_end_trigger))
1276 it->redisplay_end_trigger_charpos = XINT (w->redisplay_end_trigger);
1277
1278 /* Correct bogus values of tab_width. */
1279 it->tab_width = XINT (current_buffer->tab_width);
1280 if (it->tab_width <= 0 || it->tab_width > 1000)
1281 it->tab_width = 8;
1282
1283 /* Are lines in the display truncated? */
1284 it->truncate_lines_p
1285 = (base_face_id != DEFAULT_FACE_ID
1286 || XINT (it->w->hscroll)
1287 || (truncate_partial_width_windows
1288 && !WINDOW_FULL_WIDTH_P (it->w))
1289 || !NILP (current_buffer->truncate_lines));
1290
1291 /* Get dimensions of truncation and continuation glyphs. These are
1292 displayed as bitmaps under X, so we don't need them for such
1293 frames. */
1294 if (!FRAME_WINDOW_P (it->f))
1295 {
1296 if (it->truncate_lines_p)
1297 {
1298 /* We will need the truncation glyph. */
1299 xassert (it->glyph_row == NULL);
1300 produce_special_glyphs (it, IT_TRUNCATION);
1301 it->truncation_pixel_width = it->pixel_width;
1302 }
1303 else
1304 {
1305 /* We will need the continuation glyph. */
1306 xassert (it->glyph_row == NULL);
1307 produce_special_glyphs (it, IT_CONTINUATION);
1308 it->continuation_pixel_width = it->pixel_width;
1309 }
1310
1311 /* Reset these values to zero becaue the produce_special_glyphs
1312 above has changed them. */
1313 it->pixel_width = it->ascent = it->descent = 0;
312246d1 1314 it->phys_ascent = it->phys_descent = 0;
5f5c8ee5
GM
1315 }
1316
1317 /* Set this after getting the dimensions of truncation and
1318 continuation glyphs, so that we don't produce glyphs when calling
1319 produce_special_glyphs, above. */
1320 it->glyph_row = row;
1321 it->area = TEXT_AREA;
1322
1323 /* Get the dimensions of the display area. The display area
1324 consists of the visible window area plus a horizontally scrolled
1325 part to the left of the window. All x-values are relative to the
1326 start of this total display area. */
1327 if (base_face_id != DEFAULT_FACE_ID)
1328 {
1329 /* Mode lines, menu bar in terminal frames. */
1330 it->first_visible_x = 0;
1331 it->last_visible_x = XFASTINT (w->width) * CANON_X_UNIT (it->f);
1332 }
1333 else
1334 {
1335 it->first_visible_x
1336 = XFASTINT (it->w->hscroll) * CANON_X_UNIT (it->f);
1337 it->last_visible_x = (it->first_visible_x
1338 + window_box_width (w, TEXT_AREA));
1339
1340 /* If we truncate lines, leave room for the truncator glyph(s) at
1341 the right margin. Otherwise, leave room for the continuation
1342 glyph(s). Truncation and continuation glyphs are not inserted
1343 for window-based redisplay. */
1344 if (!FRAME_WINDOW_P (it->f))
1345 {
1346 if (it->truncate_lines_p)
1347 it->last_visible_x -= it->truncation_pixel_width;
1348 else
1349 it->last_visible_x -= it->continuation_pixel_width;
1350 }
1351
045dee35
GM
1352 it->header_line_p = WINDOW_WANTS_HEADER_LINE_P (w);
1353 it->current_y = WINDOW_DISPLAY_HEADER_LINE_HEIGHT (w) + w->vscroll;
5f5c8ee5
GM
1354 }
1355
1356 /* Leave room for a border glyph. */
1357 if (!FRAME_WINDOW_P (it->f)
1358 && !WINDOW_RIGHTMOST_P (it->w))
1359 it->last_visible_x -= 1;
1360
1361 it->last_visible_y = window_text_bottom_y (w);
1362
1363 /* For mode lines and alike, arrange for the first glyph having a
1364 left box line if the face specifies a box. */
1365 if (base_face_id != DEFAULT_FACE_ID)
1366 {
1367 struct face *face;
1368
1369 it->face_id = base_face_id;
1370
1371 /* If we have a boxed mode line, make the first character appear
1372 with a left box line. */
1373 face = FACE_FROM_ID (it->f, base_face_id);
1374 if (face->box != FACE_NO_BOX)
1375 it->start_of_box_run_p = 1;
1376 }
1377
1378 /* If a buffer position was specified, set the iterator there,
1379 getting overlays and face properties from that position. */
1380 if (charpos > 0)
1381 {
1382 it->end_charpos = ZV;
1383 it->face_id = -1;
1384 IT_CHARPOS (*it) = charpos;
1385
1386 /* Compute byte position if not specified. */
1387 if (bytepos <= 0)
1388 IT_BYTEPOS (*it) = CHAR_TO_BYTE (charpos);
1389 else
1390 IT_BYTEPOS (*it) = bytepos;
1391
1392 /* Compute faces etc. */
1393 reseat (it, it->current.pos, 1);
1394 }
1395
1396 CHECK_IT (it);
1397}
1398
1399
1400/* Initialize IT for the display of window W with window start POS. */
1401
1402void
1403start_display (it, w, pos)
1404 struct it *it;
1405 struct window *w;
1406 struct text_pos pos;
1407{
1408 int start_at_line_beg_p;
1409 struct glyph_row *row;
045dee35 1410 int first_vpos = WINDOW_WANTS_HEADER_LINE_P (w) ? 1 : 0;
5f5c8ee5
GM
1411 int first_y;
1412
1413 row = w->desired_matrix->rows + first_vpos;
1414 init_iterator (it, w, CHARPOS (pos), BYTEPOS (pos), row, DEFAULT_FACE_ID);
1415 first_y = it->current_y;
1416
1417 /* If window start is not at a line start, move back to the line
1418 start. This makes sure that we take continuation lines into
1419 account. */
1420 start_at_line_beg_p = (CHARPOS (pos) == BEGV
1421 || FETCH_BYTE (BYTEPOS (pos) - 1) == '\n');
1422 if (!start_at_line_beg_p)
1423 reseat_at_previous_visible_line_start (it);
1424
5f5c8ee5
GM
1425 /* If window start is not at a line start, skip forward to POS to
1426 get the correct continuation_lines_width and current_x. */
1427 if (!start_at_line_beg_p)
1428 {
1429 move_it_to (it, CHARPOS (pos), -1, -1, -1, MOVE_TO_POS);
1430
1431 /* If lines are continued, this line may end in the middle of a
1432 multi-glyph character (e.g. a control character displayed as
1433 \003, or in the middle of an overlay string). In this case
1434 move_it_to above will not have taken us to the start of
1435 the continuation line but to the end of the continued line. */
1436 if (!it->truncate_lines_p && it->current_x > 0)
1437 {
1438 if (it->current.dpvec_index >= 0
1439 || it->current.overlay_string_index >= 0)
1440 {
1441 set_iterator_to_next (it);
1442 move_it_in_display_line_to (it, -1, -1, 0);
1443 }
1444 it->continuation_lines_width += it->current_x;
1445 }
1446
1447 it->current_y = first_y;
1448 it->vpos = 0;
1449 it->current_x = it->hpos = 0;
1450 }
1451
1452#if 0 /* Don't assert the following because start_display is sometimes
1453 called intentionally with a window start that is not at a
1454 line start. Please leave this code in as a comment. */
1455
1456 /* Window start should be on a line start, now. */
1457 xassert (it->continuation_lines_width
1458 || IT_CHARPOS (it) == BEGV
1459 || FETCH_BYTE (IT_BYTEPOS (it) - 1) == '\n');
1460#endif /* 0 */
1461}
1462
1463
1464/* Initialize IT for stepping through current_buffer in window W,
1465 starting at position POS that includes overlay string and display
1466 vector/ control character translation position information. */
1467
1468static void
1469init_from_display_pos (it, w, pos)
1470 struct it *it;
1471 struct window *w;
1472 struct display_pos *pos;
1473{
1474 /* Keep in mind: the call to reseat in init_iterator skips invisible
1475 text, so we might end up at a position different from POS. This
1476 is only a problem when POS is a row start after a newline and an
1477 overlay starts there with an after-string, and the overlay has an
1478 invisible property. Since we don't skip invisible text in
1479 display_line and elsewhere immediately after consuming the
1480 newline before the row start, such a POS will not be in a string,
1481 but the call to init_iterator below will move us to the
1482 after-string. */
1483 init_iterator (it, w, CHARPOS (pos->pos), BYTEPOS (pos->pos),
1484 NULL, DEFAULT_FACE_ID);
1485
1486 /* If position is within an overlay string, set up IT to
1487 the right overlay string. */
1488 if (pos->overlay_string_index >= 0)
1489 {
1490 int relative_index;
1491
1492 /* We already have the first chunk of overlay strings in
1493 IT->overlay_strings. Load more until the one for
1494 pos->overlay_string_index is in IT->overlay_strings. */
1495 if (pos->overlay_string_index >= OVERLAY_STRING_CHUNK_SIZE)
1496 {
1497 int n = pos->overlay_string_index / OVERLAY_STRING_CHUNK_SIZE;
1498 it->current.overlay_string_index = 0;
1499 while (n--)
1500 {
1501 load_overlay_strings (it);
1502 it->current.overlay_string_index += OVERLAY_STRING_CHUNK_SIZE;
1503 }
1504 }
1505
1506 it->current.overlay_string_index = pos->overlay_string_index;
1507 relative_index = (it->current.overlay_string_index
1508 % OVERLAY_STRING_CHUNK_SIZE);
1509 it->string = it->overlay_strings[relative_index];
1510 it->current.string_pos = pos->string_pos;
1511 it->method = next_element_from_string;
1512 }
1513 else if (CHARPOS (pos->string_pos) >= 0)
1514 {
1515 /* Recorded position is not in an overlay string, but in another
1516 string. This can only be a string from a `display' property.
1517 IT should already be filled with that string. */
1518 it->current.string_pos = pos->string_pos;
1519 xassert (STRINGP (it->string));
1520 }
1521
1522 /* Restore position in display vector translations or control
1523 character translations. */
1524 if (pos->dpvec_index >= 0)
1525 {
1526 /* This fills IT->dpvec. */
1527 get_next_display_element (it);
1528 xassert (it->dpvec && it->current.dpvec_index == 0);
1529 it->current.dpvec_index = pos->dpvec_index;
1530 }
1531
1532 CHECK_IT (it);
1533}
1534
1535
1536/* Initialize IT for stepping through current_buffer in window W
1537 starting at ROW->start. */
1538
1539static void
1540init_to_row_start (it, w, row)
1541 struct it *it;
1542 struct window *w;
1543 struct glyph_row *row;
1544{
1545 init_from_display_pos (it, w, &row->start);
1546 it->continuation_lines_width = row->continuation_lines_width;
1547 CHECK_IT (it);
1548}
1549
1550
1551/* Initialize IT for stepping through current_buffer in window W
1552 starting in the line following ROW, i.e. starting at ROW->end. */
1553
1554static void
1555init_to_row_end (it, w, row)
1556 struct it *it;
1557 struct window *w;
1558 struct glyph_row *row;
1559{
1560 init_from_display_pos (it, w, &row->end);
1561
1562 if (row->continued_p)
1563 it->continuation_lines_width = (row->continuation_lines_width
1564 + row->pixel_width);
1565 CHECK_IT (it);
1566}
1567
1568
1569
1570\f
1571/***********************************************************************
1572 Text properties
1573 ***********************************************************************/
1574
1575/* Called when IT reaches IT->stop_charpos. Handle text property and
1576 overlay changes. Set IT->stop_charpos to the next position where
1577 to stop. */
1578
1579static void
1580handle_stop (it)
1581 struct it *it;
1582{
1583 enum prop_handled handled;
1584 int handle_overlay_change_p = 1;
1585 struct props *p;
1586
1587 it->dpvec = NULL;
1588 it->current.dpvec_index = -1;
1589
1590 do
1591 {
1592 handled = HANDLED_NORMALLY;
1593
1594 /* Call text property handlers. */
1595 for (p = it_props; p->handler; ++p)
1596 {
1597 handled = p->handler (it);
1598
1599 if (handled == HANDLED_RECOMPUTE_PROPS)
1600 break;
1601 else if (handled == HANDLED_RETURN)
1602 return;
1603 else if (handled == HANDLED_OVERLAY_STRING_CONSUMED)
1604 handle_overlay_change_p = 0;
1605 }
1606
1607 if (handled != HANDLED_RECOMPUTE_PROPS)
1608 {
1609 /* Don't check for overlay strings below when set to deliver
1610 characters from a display vector. */
1611 if (it->method == next_element_from_display_vector)
1612 handle_overlay_change_p = 0;
1613
1614 /* Handle overlay changes. */
1615 if (handle_overlay_change_p)
1616 handled = handle_overlay_change (it);
1617
1618 /* Determine where to stop next. */
1619 if (handled == HANDLED_NORMALLY)
1620 compute_stop_pos (it);
1621 }
1622 }
1623 while (handled == HANDLED_RECOMPUTE_PROPS);
1624}
1625
1626
1627/* Compute IT->stop_charpos from text property and overlay change
1628 information for IT's current position. */
1629
1630static void
1631compute_stop_pos (it)
1632 struct it *it;
1633{
1634 register INTERVAL iv, next_iv;
1635 Lisp_Object object, limit, position;
1636
1637 /* If nowhere else, stop at the end. */
1638 it->stop_charpos = it->end_charpos;
1639
1640 if (STRINGP (it->string))
1641 {
1642 /* Strings are usually short, so don't limit the search for
1643 properties. */
1644 object = it->string;
1645 limit = Qnil;
1646 XSETFASTINT (position, IT_STRING_CHARPOS (*it));
1647 }
1648 else
1649 {
1650 int charpos;
1651
1652 /* If next overlay change is in front of the current stop pos
1653 (which is IT->end_charpos), stop there. Note: value of
1654 next_overlay_change is point-max if no overlay change
1655 follows. */
1656 charpos = next_overlay_change (IT_CHARPOS (*it));
1657 if (charpos < it->stop_charpos)
1658 it->stop_charpos = charpos;
1659
1660 /* If showing the region, we have to stop at the region
1661 start or end because the face might change there. */
1662 if (it->region_beg_charpos > 0)
1663 {
1664 if (IT_CHARPOS (*it) < it->region_beg_charpos)
1665 it->stop_charpos = min (it->stop_charpos, it->region_beg_charpos);
1666 else if (IT_CHARPOS (*it) < it->region_end_charpos)
1667 it->stop_charpos = min (it->stop_charpos, it->region_end_charpos);
1668 }
1669
1670 /* Set up variables for computing the stop position from text
1671 property changes. */
1672 XSETBUFFER (object, current_buffer);
1673 XSETFASTINT (limit, IT_CHARPOS (*it) + TEXT_PROP_DISTANCE_LIMIT);
1674 XSETFASTINT (position, IT_CHARPOS (*it));
1675
1676 }
1677
1678 /* Get the interval containing IT's position. Value is a null
1679 interval if there isn't such an interval. */
1680 iv = validate_interval_range (object, &position, &position, 0);
1681 if (!NULL_INTERVAL_P (iv))
1682 {
1683 Lisp_Object values_here[LAST_PROP_IDX];
1684 struct props *p;
1685
1686 /* Get properties here. */
1687 for (p = it_props; p->handler; ++p)
1688 values_here[p->idx] = textget (iv->plist, *p->name);
1689
1690 /* Look for an interval following iv that has different
1691 properties. */
1692 for (next_iv = next_interval (iv);
1693 (!NULL_INTERVAL_P (next_iv)
1694 && (NILP (limit)
1695 || XFASTINT (limit) > next_iv->position));
1696 next_iv = next_interval (next_iv))
1697 {
1698 for (p = it_props; p->handler; ++p)
1699 {
1700 Lisp_Object new_value;
1701
1702 new_value = textget (next_iv->plist, *p->name);
1703 if (!EQ (values_here[p->idx], new_value))
1704 break;
1705 }
1706
1707 if (p->handler)
1708 break;
1709 }
1710
1711 if (!NULL_INTERVAL_P (next_iv))
1712 {
1713 if (INTEGERP (limit)
1714 && next_iv->position >= XFASTINT (limit))
1715 /* No text property change up to limit. */
1716 it->stop_charpos = min (XFASTINT (limit), it->stop_charpos);
1717 else
1718 /* Text properties change in next_iv. */
1719 it->stop_charpos = min (it->stop_charpos, next_iv->position);
1720 }
1721 }
1722
1723 xassert (STRINGP (it->string)
1724 || (it->stop_charpos >= BEGV
1725 && it->stop_charpos >= IT_CHARPOS (*it)));
1726}
1727
1728
1729/* Return the position of the next overlay change after POS in
1730 current_buffer. Value is point-max if no overlay change
1731 follows. This is like `next-overlay-change' but doesn't use
1732 xmalloc. */
1733
1734static int
1735next_overlay_change (pos)
1736 int pos;
1737{
1738 int noverlays;
1739 int endpos;
1740 Lisp_Object *overlays;
1741 int len;
1742 int i;
1743
1744 /* Get all overlays at the given position. */
1745 len = 10;
1746 overlays = (Lisp_Object *) alloca (len * sizeof *overlays);
1747 noverlays = overlays_at (pos, 0, &overlays, &len, &endpos, NULL);
1748 if (noverlays > len)
1749 {
1750 len = noverlays;
1751 overlays = (Lisp_Object *) alloca (len * sizeof *overlays);
1752 noverlays = overlays_at (pos, 0, &overlays, &len, &endpos, NULL);
1753 }
1754
1755 /* If any of these overlays ends before endpos,
1756 use its ending point instead. */
1757 for (i = 0; i < noverlays; ++i)
1758 {
1759 Lisp_Object oend;
1760 int oendpos;
1761
1762 oend = OVERLAY_END (overlays[i]);
1763 oendpos = OVERLAY_POSITION (oend);
1764 endpos = min (endpos, oendpos);
1765 }
1766
1767 return endpos;
1768}
1769
1770
1771\f
1772/***********************************************************************
1773 Fontification
1774 ***********************************************************************/
1775
1776/* Handle changes in the `fontified' property of the current buffer by
1777 calling hook functions from Qfontification_functions to fontify
1778 regions of text. */
1779
1780static enum prop_handled
1781handle_fontified_prop (it)
1782 struct it *it;
1783{
1784 Lisp_Object prop, pos;
1785 enum prop_handled handled = HANDLED_NORMALLY;
1786
1787 /* Get the value of the `fontified' property at IT's current buffer
1788 position. (The `fontified' property doesn't have a special
1789 meaning in strings.) If the value is nil, call functions from
1790 Qfontification_functions. */
1791 if (!STRINGP (it->string)
1792 && it->s == NULL
1793 && !NILP (Vfontification_functions)
1794 && (pos = make_number (IT_CHARPOS (*it)),
1795 prop = Fget_char_property (pos, Qfontified, Qnil),
1796 NILP (prop)))
1797 {
1798 Lisp_Object args[2];
1799
1800 /* Run the hook functions. */
1801 args[0] = Qfontification_functions;
1802 args[1] = pos;
1803 Frun_hook_with_args (make_number (2), args);
1804
1805 /* Return HANDLED_RECOMPUTE_PROPS only if function fontified
1806 something. This avoids an endless loop if they failed to
1807 fontify the text for which reason ever. */
1808 if (!NILP (Fget_char_property (pos, Qfontified, Qnil)))
1809 handled = HANDLED_RECOMPUTE_PROPS;
1810 }
1811
1812 return handled;
1813}
1814
1815
1816\f
1817/***********************************************************************
1818 Faces
1819 ***********************************************************************/
1820
1821/* Set up iterator IT from face properties at its current position.
1822 Called from handle_stop. */
1823
1824static enum prop_handled
1825handle_face_prop (it)
1826 struct it *it;
1827{
1828 int new_face_id, next_stop;
1829
1830 if (!STRINGP (it->string))
1831 {
1832 new_face_id
1833 = face_at_buffer_position (it->w,
1834 IT_CHARPOS (*it),
1835 it->region_beg_charpos,
1836 it->region_end_charpos,
1837 &next_stop,
1838 (IT_CHARPOS (*it)
1839 + TEXT_PROP_DISTANCE_LIMIT),
1840 0);
1841
1842 /* Is this a start of a run of characters with box face?
1843 Caveat: this can be called for a freshly initialized
1844 iterator; face_id is -1 is this case. We know that the new
1845 face will not change until limit, i.e. if the new face has a
1846 box, all characters up to limit will have one. But, as
1847 usual, we don't know whether limit is really the end. */
1848 if (new_face_id != it->face_id)
1849 {
1850 struct face *new_face = FACE_FROM_ID (it->f, new_face_id);
1851
1852 /* If new face has a box but old face has not, this is
1853 the start of a run of characters with box, i.e. it has
1854 a shadow on the left side. The value of face_id of the
1855 iterator will be -1 if this is the initial call that gets
1856 the face. In this case, we have to look in front of IT's
1857 position and see whether there is a face != new_face_id. */
1858 it->start_of_box_run_p
1859 = (new_face->box != FACE_NO_BOX
1860 && (it->face_id >= 0
1861 || IT_CHARPOS (*it) == BEG
1862 || new_face_id != face_before_it_pos (it)));
1863 it->face_box_p = new_face->box != FACE_NO_BOX;
1864 }
1865 }
1866 else
1867 {
1868 new_face_id
1869 = face_at_string_position (it->w,
1870 it->string,
1871 IT_STRING_CHARPOS (*it),
1872 (it->current.overlay_string_index >= 0
1873 ? IT_CHARPOS (*it)
1874 : 0),
1875 it->region_beg_charpos,
1876 it->region_end_charpos,
1877 &next_stop,
1878 it->base_face_id);
1879
1880#if 0 /* This shouldn't be neccessary. Let's check it. */
1881 /* If IT is used to display a mode line we would really like to
1882 use the mode line face instead of the frame's default face. */
1883 if (it->glyph_row == MATRIX_MODE_LINE_ROW (it->w->desired_matrix)
1884 && new_face_id == DEFAULT_FACE_ID)
1885 new_face_id = MODE_LINE_FACE_ID;
1886#endif
1887
1888 /* Is this a start of a run of characters with box? Caveat:
1889 this can be called for a freshly allocated iterator; face_id
1890 is -1 is this case. We know that the new face will not
1891 change until the next check pos, i.e. if the new face has a
1892 box, all characters up to that position will have a
1893 box. But, as usual, we don't know whether that position
1894 is really the end. */
1895 if (new_face_id != it->face_id)
1896 {
1897 struct face *new_face = FACE_FROM_ID (it->f, new_face_id);
1898 struct face *old_face = FACE_FROM_ID (it->f, it->face_id);
1899
1900 /* If new face has a box but old face hasn't, this is the
1901 start of a run of characters with box, i.e. it has a
1902 shadow on the left side. */
1903 it->start_of_box_run_p
1904 = new_face->box && (old_face == NULL || !old_face->box);
1905 it->face_box_p = new_face->box != FACE_NO_BOX;
1906 }
1907 }
1908
1909 it->face_id = new_face_id;
1910 it->charset = CHARSET_ASCII;
1911 return HANDLED_NORMALLY;
1912}
1913
1914
1915/* Compute the face one character before or after the current position
1916 of IT. BEFORE_P non-zero means get the face in front of IT's
1917 position. Value is the id of the face. */
1918
1919static int
1920face_before_or_after_it_pos (it, before_p)
1921 struct it *it;
1922 int before_p;
1923{
1924 int face_id, limit;
1925 int next_check_charpos;
1926 struct text_pos pos;
1927
1928 xassert (it->s == NULL);
1929
1930 if (STRINGP (it->string))
1931 {
1932 /* No face change past the end of the string (for the case
1933 we are padding with spaces). No face change before the
1934 string start. */
1935 if (IT_STRING_CHARPOS (*it) >= XSTRING (it->string)->size
1936 || (IT_STRING_CHARPOS (*it) == 0 && before_p))
1937 return it->face_id;
1938
1939 /* Set pos to the position before or after IT's current position. */
1940 if (before_p)
1941 pos = string_pos (IT_STRING_CHARPOS (*it) - 1, it->string);
1942 else
1943 pos = string_pos (IT_STRING_CHARPOS (*it) + 1, it->string);
1944
1945 /* Get the face for ASCII, or unibyte. */
1946 face_id
1947 = face_at_string_position (it->w,
1948 it->string,
1949 CHARPOS (pos),
1950 (it->current.overlay_string_index >= 0
1951 ? IT_CHARPOS (*it)
1952 : 0),
1953 it->region_beg_charpos,
1954 it->region_end_charpos,
1955 &next_check_charpos,
1956 it->base_face_id);
1957
1958 /* Correct the face for charsets different from ASCII. Do it
1959 for the multibyte case only. The face returned above is
1960 suitable for unibyte text if IT->string is unibyte. */
1961 if (STRING_MULTIBYTE (it->string))
1962 {
1963 unsigned char *p = XSTRING (it->string)->data + BYTEPOS (pos);
1964 int rest = STRING_BYTES (XSTRING (it->string)) - BYTEPOS (pos);
1965 int c, len, charset;
1966
4fdb80f2 1967 c = string_char_and_length (p, rest, &len);
5f5c8ee5
GM
1968 charset = CHAR_CHARSET (c);
1969 if (charset != CHARSET_ASCII)
1970 face_id = FACE_FOR_CHARSET (it->f, face_id, charset);
1971 }
1972 }
1973 else
1974 {
70851746
GM
1975 if ((IT_CHARPOS (*it) >= ZV && !before_p)
1976 || (IT_CHARPOS (*it) <= BEGV && before_p))
1977 return it->face_id;
1978
5f5c8ee5
GM
1979 limit = IT_CHARPOS (*it) + TEXT_PROP_DISTANCE_LIMIT;
1980 pos = it->current.pos;
1981
1982 if (before_p)
1983 DEC_TEXT_POS (pos);
1984 else
1985 INC_TEXT_POS (pos);
70851746 1986
5f5c8ee5
GM
1987 /* Determine face for CHARSET_ASCII, or unibyte. */
1988 face_id = face_at_buffer_position (it->w,
1989 CHARPOS (pos),
1990 it->region_beg_charpos,
1991 it->region_end_charpos,
1992 &next_check_charpos,
1993 limit, 0);
1994
1995 /* Correct the face for charsets different from ASCII. Do it
1996 for the multibyte case only. The face returned above is
1997 suitable for unibyte text if current_buffer is unibyte. */
1998 if (it->multibyte_p)
1999 {
2000 int charset = charset_at_position (pos);
2001 if (charset != CHARSET_ASCII)
2002 face_id = FACE_FOR_CHARSET (it->f, face_id, charset);
2003 }
2004 }
2005
2006 return face_id;
2007}
2008
2009
2010\f
2011/***********************************************************************
2012 Invisible text
2013 ***********************************************************************/
2014
2015/* Set up iterator IT from invisible properties at its current
2016 position. Called from handle_stop. */
2017
2018static enum prop_handled
2019handle_invisible_prop (it)
2020 struct it *it;
2021{
2022 enum prop_handled handled = HANDLED_NORMALLY;
2023
2024 if (STRINGP (it->string))
2025 {
2026 extern Lisp_Object Qinvisible;
2027 Lisp_Object prop, end_charpos, limit, charpos;
2028
2029 /* Get the value of the invisible text property at the
2030 current position. Value will be nil if there is no such
2031 property. */
2032 XSETFASTINT (charpos, IT_STRING_CHARPOS (*it));
2033 prop = Fget_text_property (charpos, Qinvisible, it->string);
2034
2035 if (!NILP (prop))
2036 {
2037 handled = HANDLED_RECOMPUTE_PROPS;
2038
2039 /* Get the position at which the next change of the
2040 invisible text property can be found in IT->string.
2041 Value will be nil if the property value is the same for
2042 all the rest of IT->string. */
2043 XSETINT (limit, XSTRING (it->string)->size);
2044 end_charpos = Fnext_single_property_change (charpos, Qinvisible,
2045 it->string, limit);
2046
2047 /* Text at current position is invisible. The next
2048 change in the property is at position end_charpos.
2049 Move IT's current position to that position. */
2050 if (INTEGERP (end_charpos)
2051 && XFASTINT (end_charpos) < XFASTINT (limit))
2052 {
2053 struct text_pos old;
2054 old = it->current.string_pos;
2055 IT_STRING_CHARPOS (*it) = XFASTINT (end_charpos);
2056 compute_string_pos (&it->current.string_pos, old, it->string);
2057 }
2058 else
2059 {
2060 /* The rest of the string is invisible. If this is an
2061 overlay string, proceed with the next overlay string
2062 or whatever comes and return a character from there. */
2063 if (it->current.overlay_string_index >= 0)
2064 {
2065 next_overlay_string (it);
2066 /* Don't check for overlay strings when we just
2067 finished processing them. */
2068 handled = HANDLED_OVERLAY_STRING_CONSUMED;
2069 }
2070 else
2071 {
2072 struct Lisp_String *s = XSTRING (it->string);
2073 IT_STRING_CHARPOS (*it) = s->size;
2074 IT_STRING_BYTEPOS (*it) = STRING_BYTES (s);
2075 }
2076 }
2077 }
2078 }
2079 else
2080 {
2081 int visible_p, newpos, next_stop;
2082 Lisp_Object pos, prop;
2083
2084 /* First of all, is there invisible text at this position? */
2085 XSETFASTINT (pos, IT_CHARPOS (*it));
2086 prop = Fget_char_property (pos, Qinvisible, it->window);
2087
2088 /* If we are on invisible text, skip over it. */
2089 if (TEXT_PROP_MEANS_INVISIBLE (prop))
2090 {
2091 /* Record whether we have to display an ellipsis for the
2092 invisible text. */
2093 int display_ellipsis_p
2094 = TEXT_PROP_MEANS_INVISIBLE_WITH_ELLIPSIS (prop);
2095
2096 handled = HANDLED_RECOMPUTE_PROPS;
2097
2098 /* Loop skipping over invisible text. The loop is left at
2099 ZV or with IT on the first char being visible again. */
2100 do
2101 {
2102 /* Try to skip some invisible text. Return value is the
2103 position reached which can be equal to IT's position
2104 if there is nothing invisible here. This skips both
2105 over invisible text properties and overlays with
2106 invisible property. */
2107 newpos = skip_invisible (IT_CHARPOS (*it),
2108 &next_stop, ZV, it->window);
2109
2110 /* If we skipped nothing at all we weren't at invisible
2111 text in the first place. If everything to the end of
2112 the buffer was skipped, end the loop. */
2113 if (newpos == IT_CHARPOS (*it) || newpos >= ZV)
2114 visible_p = 1;
2115 else
2116 {
2117 /* We skipped some characters but not necessarily
2118 all there are. Check if we ended up on visible
2119 text. Fget_char_property returns the property of
2120 the char before the given position, i.e. if we
2121 get visible_p = 1, this means that the char at
2122 newpos is visible. */
2123 XSETFASTINT (pos, newpos);
2124 prop = Fget_char_property (pos, Qinvisible, it->window);
2125 visible_p = !TEXT_PROP_MEANS_INVISIBLE (prop);
2126 }
2127
2128 /* If we ended up on invisible text, proceed to
2129 skip starting with next_stop. */
2130 if (!visible_p)
2131 IT_CHARPOS (*it) = next_stop;
2132 }
2133 while (!visible_p);
2134
2135 /* The position newpos is now either ZV or on visible text. */
2136 IT_CHARPOS (*it) = newpos;
2137 IT_BYTEPOS (*it) = CHAR_TO_BYTE (newpos);
2138
2139 /* Maybe return `...' next for the end of the invisible text. */
2140 if (display_ellipsis_p)
2141 {
2142 if (it->dp
2143 && VECTORP (DISP_INVIS_VECTOR (it->dp)))
2144 {
2145 struct Lisp_Vector *v = XVECTOR (DISP_INVIS_VECTOR (it->dp));
2146 it->dpvec = v->contents;
2147 it->dpend = v->contents + v->size;
2148 }
2149 else
2150 {
2151 /* Default `...'. */
2152 it->dpvec = default_invis_vector;
2153 it->dpend = default_invis_vector + 3;
2154 }
2155
2156 /* The ellipsis display does not replace the display of
2157 the character at the new position. Indicate this by
2158 setting IT->dpvec_char_len to zero. */
2159 it->dpvec_char_len = 0;
2160
2161 it->current.dpvec_index = 0;
2162 it->method = next_element_from_display_vector;
2163 }
2164 }
2165 }
2166
2167 return handled;
2168}
2169
2170
2171\f
2172/***********************************************************************
2173 'display' property
2174 ***********************************************************************/
2175
2176/* Set up iterator IT from `display' property at its current position.
2177 Called from handle_stop. */
2178
2179static enum prop_handled
2180handle_display_prop (it)
2181 struct it *it;
2182{
2183 Lisp_Object prop, object;
2184 struct text_pos *position;
2185 int space_or_image_found_p;
2186
2187 if (STRINGP (it->string))
2188 {
2189 object = it->string;
2190 position = &it->current.string_pos;
2191 }
2192 else
2193 {
2194 object = Qnil;
2195 position = &it->current.pos;
2196 }
2197
2198 /* Reset those iterator values set from display property values. */
2199 it->font_height = Qnil;
2200 it->space_width = Qnil;
2201 it->voffset = 0;
2202
2203 /* We don't support recursive `display' properties, i.e. string
2204 values that have a string `display' property, that have a string
2205 `display' property etc. */
2206 if (!it->string_from_display_prop_p)
2207 it->area = TEXT_AREA;
2208
2209 prop = Fget_char_property (make_number (position->charpos),
2210 Qdisplay, object);
2211 if (NILP (prop))
2212 return HANDLED_NORMALLY;
2213
2214 space_or_image_found_p = 0;
2215 if (CONSP (prop) && CONSP (XCAR (prop)))
2216 {
2217 while (CONSP (prop))
2218 {
2219 if (handle_single_display_prop (it, XCAR (prop), object, position))
2220 space_or_image_found_p = 1;
2221 prop = XCDR (prop);
2222 }
2223 }
2224 else if (VECTORP (prop))
2225 {
2226 int i;
2227 for (i = 0; i < XVECTOR (prop)->size; ++i)
2228 if (handle_single_display_prop (it, XVECTOR (prop)->contents[i],
2229 object, position))
2230 space_or_image_found_p = 1;
2231 }
2232 else
2233 {
2234 if (handle_single_display_prop (it, prop, object, position))
2235 space_or_image_found_p = 1;
2236 }
2237
2238 return space_or_image_found_p ? HANDLED_RETURN : HANDLED_NORMALLY;
2239}
2240
2241
2242/* Value is the position of the end of the `display' property stating
2243 at START_POS in OBJECT. */
2244
2245static struct text_pos
2246display_prop_end (it, object, start_pos)
2247 struct it *it;
2248 Lisp_Object object;
2249 struct text_pos start_pos;
2250{
2251 Lisp_Object end;
2252 struct text_pos end_pos;
2253
2254 /* Characters having this form of property are not displayed, so
2255 we have to find the end of the property. */
2256 end = Fnext_single_property_change (make_number (start_pos.charpos),
2257 Qdisplay, object, Qnil);
2258 if (NILP (end))
2259 {
2260 /* A nil value of `end' means there are no changes of the
2261 property to the end of the buffer or string. */
2262 if (it->current.overlay_string_index >= 0)
2263 end_pos.charpos = XSTRING (it->string)->size;
2264 else
2265 end_pos.charpos = it->end_charpos;
2266 }
2267 else
2268 end_pos.charpos = XFASTINT (end);
2269
2270 if (STRINGP (it->string))
2271 compute_string_pos (&end_pos, start_pos, it->string);
2272 else
2273 end_pos.bytepos = CHAR_TO_BYTE (end_pos.charpos);
2274
2275 return end_pos;
2276}
2277
2278
2279/* Set up IT from a single `display' sub-property value PROP. OBJECT
2280 is the object in which the `display' property was found. *POSITION
2281 is the position at which it was found.
2282
2283 If PROP is a `space' or `image' sub-property, set *POSITION to the
2284 end position of the `display' property.
2285
2286 Value is non-zero if a `space' or `image' property value was found. */
2287
2288static int
2289handle_single_display_prop (it, prop, object, position)
2290 struct it *it;
2291 Lisp_Object prop;
2292 Lisp_Object object;
2293 struct text_pos *position;
2294{
2295 Lisp_Object value;
2296 int space_or_image_found_p = 0;
2297
2298 Lisp_Object form;
2299
d3acf96b 2300 /* If PROP is a list of the form `(when FORM . VALUE)', FORM is
5a4c88c4 2301 evaluated. If the result is nil, VALUE is ignored. */
5f5c8ee5 2302 form = Qt;
d3acf96b 2303 if (CONSP (prop) && EQ (XCAR (prop), Qwhen))
5f5c8ee5
GM
2304 {
2305 prop = XCDR (prop);
2306 if (!CONSP (prop))
2307 return 0;
2308 form = XCAR (prop);
2309 prop = XCDR (prop);
5f5c8ee5
GM
2310 }
2311
2312 if (!NILP (form) && !EQ (form, Qt))
2313 {
2314 struct gcpro gcpro1;
2315 struct text_pos end_pos, pt;
2316
2317 end_pos = display_prop_end (it, object, *position);
2318 GCPRO1 (form);
2319
2320 /* Temporarily set point to the end position, and then evaluate
2321 the form. This makes `(eolp)' work as FORM. */
2322 CHARPOS (pt) = PT;
2323 BYTEPOS (pt) = PT_BYTE;
2324 TEMP_SET_PT_BOTH (CHARPOS (end_pos), BYTEPOS (end_pos));
2325 form = eval_form (form);
2326 TEMP_SET_PT_BOTH (CHARPOS (pt), BYTEPOS (pt));
2327 UNGCPRO;
2328 }
2329
2330 if (NILP (form))
2331 return 0;
2332
2333 if (CONSP (prop)
2334 && EQ (XCAR (prop), Qheight)
2335 && CONSP (XCDR (prop)))
2336 {
2337 if (FRAME_TERMCAP_P (it->f) || FRAME_MSDOS_P (it->f))
2338 return 0;
2339
2340 /* `(height HEIGHT)'. */
2341 it->font_height = XCAR (XCDR (prop));
2342 if (!NILP (it->font_height))
2343 {
2344 struct face *face = FACE_FROM_ID (it->f, it->face_id);
2345 int new_height = -1;
2346
2347 if (CONSP (it->font_height)
2348 && (EQ (XCAR (it->font_height), Qplus)
2349 || EQ (XCAR (it->font_height), Qminus))
2350 && CONSP (XCDR (it->font_height))
2351 && INTEGERP (XCAR (XCDR (it->font_height))))
2352 {
2353 /* `(+ N)' or `(- N)' where N is an integer. */
2354 int steps = XINT (XCAR (XCDR (it->font_height)));
2355 if (EQ (XCAR (it->font_height), Qplus))
2356 steps = - steps;
2357 it->face_id = smaller_face (it->f, it->face_id, steps);
2358 }
2359 else if (SYMBOLP (it->font_height))
2360 {
2361 /* Call function with current height as argument.
2362 Value is the new height. */
2363 Lisp_Object form, height;
2364 struct gcpro gcpro1;
2365
2366 height = face->lface[LFACE_HEIGHT_INDEX];
2367 form = Fcons (it->font_height, Fcons (height, Qnil));
2368 GCPRO1 (form);
2369 height = eval_form (form);
2370 if (NUMBERP (height))
2371 new_height = XFLOATINT (height);
2372 UNGCPRO;
2373 }
2374 else if (NUMBERP (it->font_height))
2375 {
2376 /* Value is a multiple of the canonical char height. */
2377 struct face *face;
2378
2379 face = FACE_FROM_ID (it->f, DEFAULT_FACE_ID);
2380 new_height = (XFLOATINT (it->font_height)
2381 * XINT (face->lface[LFACE_HEIGHT_INDEX]));
2382 }
2383 else
2384 {
2385 /* Evaluate IT->font_height with `height' bound to the
2386 current specified height to get the new height. */
2387 Lisp_Object value;
2388 int count = specpdl_ptr - specpdl;
2389
2390 specbind (Qheight, face->lface[LFACE_HEIGHT_INDEX]);
2391 value = eval_form (it->font_height);
2392 unbind_to (count, Qnil);
2393
2394 if (NUMBERP (value))
2395 new_height = XFLOATINT (value);
2396 }
2397
2398 if (new_height > 0)
2399 it->face_id = face_with_height (it->f, it->face_id, new_height);
2400 }
2401 }
2402 else if (CONSP (prop)
2403 && EQ (XCAR (prop), Qspace_width)
2404 && CONSP (XCDR (prop)))
2405 {
2406 /* `(space_width WIDTH)'. */
2407 if (FRAME_TERMCAP_P (it->f) || FRAME_MSDOS_P (it->f))
2408 return 0;
2409
2410 value = XCAR (XCDR (prop));
2411 if (NUMBERP (value) && XFLOATINT (value) > 0)
2412 it->space_width = value;
2413 }
2414 else if (CONSP (prop)
2415 && EQ (XCAR (prop), Qraise)
2416 && CONSP (XCDR (prop)))
2417 {
2418#ifdef HAVE_WINDOW_SYSTEM
2419 /* `(raise FACTOR)'. */
2420 if (FRAME_TERMCAP_P (it->f) || FRAME_MSDOS_P (it->f))
2421 return 0;
2422
2423 value = XCAR (XCDR (prop));
2424 if (NUMBERP (value))
2425 {
2426 struct face *face = FACE_FROM_ID (it->f, it->face_id);
2427 it->voffset = - (XFLOATINT (value)
2428 * (face->font->ascent + face->font->descent));
2429 }
2430#endif /* HAVE_WINDOW_SYSTEM */
2431 }
2432 else if (!it->string_from_display_prop_p)
2433 {
2434 /* `(left-margin VALUE)' or `(right-margin VALUE)
2435 or `(nil VALUE)' or VALUE. */
2436 Lisp_Object location, value;
2437 struct text_pos start_pos;
2438 int valid_p;
2439
2440 /* Characters having this form of property are not displayed, so
2441 we have to find the end of the property. */
2442 space_or_image_found_p = 1;
2443 start_pos = *position;
2444 *position = display_prop_end (it, object, start_pos);
2445
2446 /* Let's stop at the new position and assume that all
2447 text properties change there. */
2448 it->stop_charpos = position->charpos;
2449
2450 if (CONSP (prop)
2451 && !EQ (XCAR (prop), Qspace)
2452 && !EQ (XCAR (prop), Qimage))
2453 {
2454 location = XCAR (prop);
2455 value = XCDR (prop);
2456 }
2457 else
2458 {
2459 location = Qnil;
2460 value = prop;
2461 }
2462
2463#ifdef HAVE_WINDOW_SYSTEM
2464 if (FRAME_TERMCAP_P (it->f) || FRAME_MSDOS_P (it->f))
2465 valid_p = STRINGP (value);
2466 else
2467 valid_p = (STRINGP (value)
2468 || (CONSP (value) && EQ (XCAR (value), Qspace))
2469 || valid_image_p (value));
2470#else /* not HAVE_WINDOW_SYSTEM */
2471 valid_p = STRINGP (value);
2472#endif /* not HAVE_WINDOW_SYSTEM */
2473
2474 if ((EQ (location, Qleft_margin)
2475 || EQ (location, Qright_margin)
2476 || NILP (location))
2477 && valid_p)
2478 {
2479 /* Save current settings of IT so that we can restore them
2480 when we are finished with the glyph property value. */
2481 push_it (it);
2482
2483 if (NILP (location))
2484 it->area = TEXT_AREA;
2485 else if (EQ (location, Qleft_margin))
2486 it->area = LEFT_MARGIN_AREA;
2487 else
2488 it->area = RIGHT_MARGIN_AREA;
2489
2490 if (STRINGP (value))
2491 {
2492 it->string = value;
2493 it->multibyte_p = STRING_MULTIBYTE (it->string);
2494 it->current.overlay_string_index = -1;
2495 IT_STRING_CHARPOS (*it) = IT_STRING_BYTEPOS (*it) = 0;
2496 it->end_charpos = it->string_nchars
2497 = XSTRING (it->string)->size;
2498 it->method = next_element_from_string;
2499 it->stop_charpos = 0;
2500 it->string_from_display_prop_p = 1;
2501 }
2502 else if (CONSP (value) && EQ (XCAR (value), Qspace))
2503 {
2504 it->method = next_element_from_stretch;
2505 it->object = value;
2506 it->current.pos = it->position = start_pos;
2507 }
2508#ifdef HAVE_WINDOW_SYSTEM
2509 else
2510 {
2511 it->what = IT_IMAGE;
2512 it->image_id = lookup_image (it->f, value);
2513 it->position = start_pos;
2514 it->object = NILP (object) ? it->w->buffer : object;
2515 it->method = next_element_from_image;
2516
2517 /* Say that we don't have consumed the characters with
2518 `display' property yet. The call to pop_it in
2519 set_iterator_to_next will clean this up. */
2520 *position = start_pos;
2521 }
2522#endif /* HAVE_WINDOW_SYSTEM */
2523 }
2524 }
2525
2526 return space_or_image_found_p;
2527}
2528
2529
2530\f
2531/***********************************************************************
2532 Overlay strings
2533 ***********************************************************************/
2534
2535/* The following structure is used to record overlay strings for
2536 later sorting in load_overlay_strings. */
2537
2538struct overlay_entry
2539{
2540 Lisp_Object string;
2541 int priority;
2542 int after_string_p;
2543};
2544
2545
2546/* Set up iterator IT from overlay strings at its current position.
2547 Called from handle_stop. */
2548
2549static enum prop_handled
2550handle_overlay_change (it)
2551 struct it *it;
2552{
2553 /* Overlays are handled in current_buffer only. */
2554 if (STRINGP (it->string))
2555 return HANDLED_NORMALLY;
2556 else
2557 return (get_overlay_strings (it)
2558 ? HANDLED_RECOMPUTE_PROPS
2559 : HANDLED_NORMALLY);
2560}
2561
2562
2563/* Set up the next overlay string for delivery by IT, if there is an
2564 overlay string to deliver. Called by set_iterator_to_next when the
2565 end of the current overlay string is reached. If there are more
2566 overlay strings to display, IT->string and
2567 IT->current.overlay_string_index are set appropriately here.
2568 Otherwise IT->string is set to nil. */
2569
2570static void
2571next_overlay_string (it)
2572 struct it *it;
2573{
2574 ++it->current.overlay_string_index;
2575 if (it->current.overlay_string_index == it->n_overlay_strings)
2576 {
2577 /* No more overlay strings. Restore IT's settings to what
2578 they were before overlay strings were processed, and
2579 continue to deliver from current_buffer. */
2580 pop_it (it);
2581 xassert (it->stop_charpos >= BEGV
2582 && it->stop_charpos <= it->end_charpos);
2583 it->string = Qnil;
2584 it->current.overlay_string_index = -1;
2585 SET_TEXT_POS (it->current.string_pos, -1, -1);
2586 it->n_overlay_strings = 0;
2587 it->method = next_element_from_buffer;
2588 }
2589 else
2590 {
2591 /* There are more overlay strings to process. If
2592 IT->current.overlay_string_index has advanced to a position
2593 where we must load IT->overlay_strings with more strings, do
2594 it. */
2595 int i = it->current.overlay_string_index % OVERLAY_STRING_CHUNK_SIZE;
2596
2597 if (it->current.overlay_string_index && i == 0)
2598 load_overlay_strings (it);
2599
2600 /* Initialize IT to deliver display elements from the overlay
2601 string. */
2602 it->string = it->overlay_strings[i];
2603 it->multibyte_p = STRING_MULTIBYTE (it->string);
2604 SET_TEXT_POS (it->current.string_pos, 0, 0);
2605 it->method = next_element_from_string;
2606 it->stop_charpos = 0;
2607 }
2608
2609 CHECK_IT (it);
2610}
2611
2612
2613/* Compare two overlay_entry structures E1 and E2. Used as a
2614 comparison function for qsort in load_overlay_strings. Overlay
2615 strings for the same position are sorted so that
2616
2617 1. All after-strings come in front of before-strings.
2618
2619 2. Within after-strings, strings are sorted so that overlay strings
2620 from overlays with higher priorities come first.
2621
2622 2. Within before-strings, strings are sorted so that overlay
2623 strings from overlays with higher priorities come last.
2624
2625 Value is analogous to strcmp. */
2626
2627
2628static int
2629compare_overlay_entries (e1, e2)
2630 void *e1, *e2;
2631{
2632 struct overlay_entry *entry1 = (struct overlay_entry *) e1;
2633 struct overlay_entry *entry2 = (struct overlay_entry *) e2;
2634 int result;
2635
2636 if (entry1->after_string_p != entry2->after_string_p)
2637 /* Let after-strings appear in front of before-strings. */
2638 result = entry1->after_string_p ? -1 : 1;
2639 else if (entry1->after_string_p)
2640 /* After-strings sorted in order of decreasing priority. */
2641 result = entry2->priority - entry1->priority;
2642 else
2643 /* Before-strings sorted in order of increasing priority. */
2644 result = entry1->priority - entry2->priority;
2645
2646 return result;
2647}
2648
2649
2650/* Load the vector IT->overlay_strings with overlay strings from IT's
2651 current buffer position. Set IT->n_overlays to the total number of
2652 overlay strings found.
2653
2654 Overlay strings are processed OVERLAY_STRING_CHUNK_SIZE strings at
2655 a time. On entry into load_overlay_strings,
2656 IT->current.overlay_string_index gives the number of overlay
2657 strings that have already been loaded by previous calls to this
2658 function.
2659
2660 Overlay strings are sorted so that after-string strings come in
2661 front of before-string strings. Within before and after-strings,
2662 strings are sorted by overlay priority. See also function
2663 compare_overlay_entries. */
2664
2665static void
2666load_overlay_strings (it)
2667 struct it *it;
2668{
2669 extern Lisp_Object Qafter_string, Qbefore_string, Qwindow, Qpriority;
2670 Lisp_Object ov, overlay, window, str;
2671 int start, end;
2672 int size = 20;
2673 int n = 0, i, j;
2674 struct overlay_entry *entries
2675 = (struct overlay_entry *) alloca (size * sizeof *entries);
2676
2677 /* Append the overlay string STRING of overlay OVERLAY to vector
2678 `entries' which has size `size' and currently contains `n'
2679 elements. AFTER_P non-zero means STRING is an after-string of
2680 OVERLAY. */
2681#define RECORD_OVERLAY_STRING(OVERLAY, STRING, AFTER_P) \
2682 do \
2683 { \
2684 Lisp_Object priority; \
2685 \
2686 if (n == size) \
2687 { \
2688 int new_size = 2 * size; \
2689 struct overlay_entry *old = entries; \
2690 entries = \
2691 (struct overlay_entry *) alloca (new_size \
2692 * sizeof *entries); \
2693 bcopy (old, entries, size * sizeof *entries); \
2694 size = new_size; \
2695 } \
2696 \
2697 entries[n].string = (STRING); \
2698 priority = Foverlay_get ((OVERLAY), Qpriority); \
2699 entries[n].priority \
2700 = INTEGERP (priority) ? XFASTINT (priority) : 0; \
2701 entries[n].after_string_p = (AFTER_P); \
2702 ++n; \
2703 } \
2704 while (0)
2705
2706 /* Process overlay before the overlay center. */
2707 for (ov = current_buffer->overlays_before;
2708 CONSP (ov);
9472f927 2709 ov = XCDR (ov))
5f5c8ee5 2710 {
9472f927 2711 overlay = XCAR (ov);
5f5c8ee5
GM
2712 xassert (OVERLAYP (overlay));
2713 start = OVERLAY_POSITION (OVERLAY_START (overlay));
2714 end = OVERLAY_POSITION (OVERLAY_END (overlay));
2715
2716 if (end < IT_CHARPOS (*it))
2717 break;
2718
2719 /* Skip this overlay if it doesn't start or end at IT's current
2720 position. */
2721 if (end != IT_CHARPOS (*it) && start != IT_CHARPOS (*it))
2722 continue;
2723
2724 /* Skip this overlay if it doesn't apply to IT->w. */
2725 window = Foverlay_get (overlay, Qwindow);
2726 if (WINDOWP (window) && XWINDOW (window) != it->w)
2727 continue;
2728
2729 /* If overlay has a non-empty before-string, record it. */
2730 if (start == IT_CHARPOS (*it)
2731 && (str = Foverlay_get (overlay, Qbefore_string), STRINGP (str))
2732 && XSTRING (str)->size)
2733 RECORD_OVERLAY_STRING (overlay, str, 0);
2734
2735 /* If overlay has a non-empty after-string, record it. */
2736 if (end == IT_CHARPOS (*it)
2737 && (str = Foverlay_get (overlay, Qafter_string), STRINGP (str))
2738 && XSTRING (str)->size)
2739 RECORD_OVERLAY_STRING (overlay, str, 1);
2740 }
2741
2742 /* Process overlays after the overlay center. */
2743 for (ov = current_buffer->overlays_after;
2744 CONSP (ov);
9472f927 2745 ov = XCDR (ov))
5f5c8ee5 2746 {
9472f927 2747 overlay = XCAR (ov);
5f5c8ee5
GM
2748 xassert (OVERLAYP (overlay));
2749 start = OVERLAY_POSITION (OVERLAY_START (overlay));
2750 end = OVERLAY_POSITION (OVERLAY_END (overlay));
2751
2752 if (start > IT_CHARPOS (*it))
2753 break;
2754
2755 /* Skip this overlay if it doesn't start or end at IT's current
2756 position. */
2757 if (end != IT_CHARPOS (*it) && start != IT_CHARPOS (*it))
2758 continue;
2759
2760 /* Skip this overlay if it doesn't apply to IT->w. */
2761 window = Foverlay_get (overlay, Qwindow);
2762 if (WINDOWP (window) && XWINDOW (window) != it->w)
2763 continue;
2764
2765 /* If overlay has a non-empty before-string, record it. */
2766 if (start == IT_CHARPOS (*it)
2767 && (str = Foverlay_get (overlay, Qbefore_string), STRINGP (str))
2768 && XSTRING (str)->size)
2769 RECORD_OVERLAY_STRING (overlay, str, 0);
2770
2771 /* If overlay has a non-empty after-string, record it. */
2772 if (end == IT_CHARPOS (*it)
2773 && (str = Foverlay_get (overlay, Qafter_string), STRINGP (str))
2774 && XSTRING (str)->size)
2775 RECORD_OVERLAY_STRING (overlay, str, 1);
2776 }
2777
2778#undef RECORD_OVERLAY_STRING
2779
2780 /* Sort entries. */
2781 qsort (entries, n, sizeof *entries, compare_overlay_entries);
2782
2783 /* Record the total number of strings to process. */
2784 it->n_overlay_strings = n;
2785
2786 /* IT->current.overlay_string_index is the number of overlay strings
2787 that have already been consumed by IT. Copy some of the
2788 remaining overlay strings to IT->overlay_strings. */
2789 i = 0;
2790 j = it->current.overlay_string_index;
2791 while (i < OVERLAY_STRING_CHUNK_SIZE && j < n)
2792 it->overlay_strings[i++] = entries[j++].string;
2793
2794 CHECK_IT (it);
2795}
2796
2797
2798/* Get the first chunk of overlay strings at IT's current buffer
2799 position. Value is non-zero if at least one overlay string was
2800 found. */
2801
2802static int
2803get_overlay_strings (it)
2804 struct it *it;
2805{
2806 /* Get the first OVERLAY_STRING_CHUNK_SIZE overlay strings to
2807 process. This fills IT->overlay_strings with strings, and sets
2808 IT->n_overlay_strings to the total number of strings to process.
2809 IT->pos.overlay_string_index has to be set temporarily to zero
2810 because load_overlay_strings needs this; it must be set to -1
2811 when no overlay strings are found because a zero value would
2812 indicate a position in the first overlay string. */
2813 it->current.overlay_string_index = 0;
2814 load_overlay_strings (it);
2815
2816 /* If we found overlay strings, set up IT to deliver display
2817 elements from the first one. Otherwise set up IT to deliver
2818 from current_buffer. */
2819 if (it->n_overlay_strings)
2820 {
2821 /* Make sure we know settings in current_buffer, so that we can
2822 restore meaningful values when we're done with the overlay
2823 strings. */
2824 compute_stop_pos (it);
2825 xassert (it->face_id >= 0);
2826
2827 /* Save IT's settings. They are restored after all overlay
2828 strings have been processed. */
2829 xassert (it->sp == 0);
2830 push_it (it);
2831
2832 /* Set up IT to deliver display elements from the first overlay
2833 string. */
2834 IT_STRING_CHARPOS (*it) = IT_STRING_BYTEPOS (*it) = 0;
2835 it->stop_charpos = 0;
2836 it->string = it->overlay_strings[0];
2837 it->multibyte_p = STRING_MULTIBYTE (it->string);
2838 xassert (STRINGP (it->string));
2839 it->method = next_element_from_string;
2840 }
2841 else
2842 {
2843 it->string = Qnil;
2844 it->current.overlay_string_index = -1;
2845 it->method = next_element_from_buffer;
2846 }
2847
2848 CHECK_IT (it);
2849
2850 /* Value is non-zero if we found at least one overlay string. */
2851 return STRINGP (it->string);
2852}
2853
2854
2855\f
2856/***********************************************************************
2857 Saving and restoring state
2858 ***********************************************************************/
2859
2860/* Save current settings of IT on IT->stack. Called, for example,
2861 before setting up IT for an overlay string, to be able to restore
2862 IT's settings to what they were after the overlay string has been
2863 processed. */
2864
2865static void
2866push_it (it)
2867 struct it *it;
2868{
2869 struct iterator_stack_entry *p;
2870
2871 xassert (it->sp < 2);
2872 p = it->stack + it->sp;
2873
2874 p->stop_charpos = it->stop_charpos;
2875 xassert (it->face_id >= 0);
2876 p->face_id = it->face_id;
2877 p->string = it->string;
2878 p->pos = it->current;
2879 p->end_charpos = it->end_charpos;
2880 p->string_nchars = it->string_nchars;
2881 p->area = it->area;
2882 p->multibyte_p = it->multibyte_p;
2883 p->space_width = it->space_width;
2884 p->font_height = it->font_height;
2885 p->voffset = it->voffset;
2886 p->string_from_display_prop_p = it->string_from_display_prop_p;
2887 ++it->sp;
2888}
2889
2890
2891/* Restore IT's settings from IT->stack. Called, for example, when no
2892 more overlay strings must be processed, and we return to delivering
2893 display elements from a buffer, or when the end of a string from a
2894 `display' property is reached and we return to delivering display
2895 elements from an overlay string, or from a buffer. */
2896
2897static void
2898pop_it (it)
2899 struct it *it;
2900{
2901 struct iterator_stack_entry *p;
2902
2903 xassert (it->sp > 0);
2904 --it->sp;
2905 p = it->stack + it->sp;
2906 it->stop_charpos = p->stop_charpos;
2907 it->face_id = p->face_id;
2908 it->string = p->string;
2909 it->current = p->pos;
2910 it->end_charpos = p->end_charpos;
2911 it->string_nchars = p->string_nchars;
2912 it->area = p->area;
2913 it->multibyte_p = p->multibyte_p;
2914 it->space_width = p->space_width;
2915 it->font_height = p->font_height;
2916 it->voffset = p->voffset;
2917 it->string_from_display_prop_p = p->string_from_display_prop_p;
2918}
2919
2920
2921\f
2922/***********************************************************************
2923 Moving over lines
2924 ***********************************************************************/
2925
2926/* Set IT's current position to the previous line start. */
2927
2928static void
2929back_to_previous_line_start (it)
2930 struct it *it;
2931{
2932 IT_CHARPOS (*it) = find_next_newline_no_quit (IT_CHARPOS (*it) - 1, -1);
2933 IT_BYTEPOS (*it) = CHAR_TO_BYTE (IT_CHARPOS (*it));
2934}
2935
2936
2937/* Set IT's current position to the next line start. */
2938
2939static void
2940forward_to_next_line_start (it)
2941 struct it *it;
2942{
2943 IT_CHARPOS (*it) = find_next_newline_no_quit (IT_CHARPOS (*it), 1);
2944 IT_BYTEPOS (*it) = CHAR_TO_BYTE (IT_CHARPOS (*it));
2945}
2946
2947
2948/* Set IT's current position to the previous visible line start. Skip
2949 invisible text that is so either due to text properties or due to
2950 selective display. Caution: this does not change IT->current_x and
2951 IT->hpos. */
2952
2953static void
2954back_to_previous_visible_line_start (it)
2955 struct it *it;
2956{
2957 int visible_p = 0;
2958
2959 /* Go back one newline if not on BEGV already. */
2960 if (IT_CHARPOS (*it) > BEGV)
2961 back_to_previous_line_start (it);
2962
2963 /* Move over lines that are invisible because of selective display
2964 or text properties. */
2965 while (IT_CHARPOS (*it) > BEGV
2966 && !visible_p)
2967 {
2968 visible_p = 1;
2969
2970 /* If selective > 0, then lines indented more than that values
2971 are invisible. */
2972 if (it->selective > 0
2973 && indented_beyond_p (IT_CHARPOS (*it), IT_BYTEPOS (*it),
2974 it->selective))
2975 visible_p = 0;
2976#ifdef USE_TEXT_PROPERTIES
2977 else
2978 {
2979 Lisp_Object prop;
2980
2981 prop = Fget_char_property (IT_CHARPOS (*it), Qinvisible, it->window);
2982 if (TEXT_PROP_MEANS_INVISIBLE (prop))
2983 visible_p = 0;
2984 }
2985#endif /* USE_TEXT_PROPERTIES */
2986
2987 /* Back one more newline if the current one is invisible. */
2988 if (!visible_p)
2989 back_to_previous_line_start (it);
2990 }
2991
2992 xassert (IT_CHARPOS (*it) >= BEGV);
2993 xassert (IT_CHARPOS (*it) == BEGV
2994 || FETCH_BYTE (IT_BYTEPOS (*it) - 1) == '\n');
2995 CHECK_IT (it);
2996}
2997
2998
2999/* Reseat iterator IT at the previous visible line start. Skip
3000 invisible text that is so either due to text properties or due to
3001 selective display. At the end, update IT's overlay information,
3002 face information etc. */
3003
3004static void
3005reseat_at_previous_visible_line_start (it)
3006 struct it *it;
3007{
3008 back_to_previous_visible_line_start (it);
3009 reseat (it, it->current.pos, 1);
3010 CHECK_IT (it);
3011}
3012
3013
3014/* Reseat iterator IT on the next visible line start in the current
312246d1
GM
3015 buffer. ON_NEWLINE_P non-zero means position IT on the newline
3016 preceding the line start. Skip over invisible text that is so
3017 because of selective display. Compute faces, overlays etc at the
3018 new position. Note that this function does not skip over text that
3019 is invisible because of text properties. */
5f5c8ee5
GM
3020
3021static void
312246d1 3022reseat_at_next_visible_line_start (it, on_newline_p)
5f5c8ee5 3023 struct it *it;
312246d1 3024 int on_newline_p;
5f5c8ee5
GM
3025{
3026 /* Restore the buffer position when currently not delivering display
3027 elements from the current buffer. This is the case, for example,
3028 when called at the end of a truncated overlay string. */
3029 while (it->sp)
3030 pop_it (it);
3031 it->method = next_element_from_buffer;
3032
3033 /* Otherwise, scan_buffer would not work. */
3034 if (IT_CHARPOS (*it) < ZV)
3035 {
3036 /* If on a newline, advance past it. Otherwise, find the next
3037 newline which automatically gives us the position following
3038 the newline. */
3039 if (FETCH_BYTE (IT_BYTEPOS (*it)) == '\n')
3040 {
3041 ++IT_CHARPOS (*it);
3042 ++IT_BYTEPOS (*it);
3043 }
3044 else
3045 forward_to_next_line_start (it);
3046
3047 /* We must either have reached the end of the buffer or end up
3048 after a newline. */
3049 xassert (IT_CHARPOS (*it) == ZV
3050 || FETCH_BYTE (IT_BYTEPOS (*it) - 1) == '\n');
3051
3052 /* Skip over lines that are invisible because they are indented
3053 more than the value of IT->selective. */
3054 if (it->selective > 0)
3055 while (IT_CHARPOS (*it) < ZV
3056 && indented_beyond_p (IT_CHARPOS (*it), IT_BYTEPOS (*it),
3057 it->selective))
3058 forward_to_next_line_start (it);
312246d1
GM
3059
3060 /* Position on the newline if we should. */
3061 if (on_newline_p && IT_CHARPOS (*it) > BEGV)
3062 {
3063 --IT_CHARPOS (*it);
3064 IT_BYTEPOS (*it) = CHAR_TO_BYTE (IT_CHARPOS (*it));
3065 }
5f5c8ee5
GM
3066
3067 /* Set the iterator there. The 0 as the last parameter of
3068 reseat means don't force a text property lookup. The lookup
3069 is then only done if we've skipped past the iterator's
3070 check_charpos'es. This optimization is important because
3071 text property lookups tend to be expensive. */
3072 reseat (it, it->current.pos, 0);
3073 }
3074
3075 CHECK_IT (it);
3076}
3077
3078
3079\f
3080/***********************************************************************
3081 Changing an iterator's position
3082***********************************************************************/
3083
3084/* Change IT's current position to POS in current_buffer. If FORCE_P
3085 is non-zero, always check for text properties at the new position.
3086 Otherwise, text properties are only looked up if POS >=
3087 IT->check_charpos of a property. */
3088
3089static void
3090reseat (it, pos, force_p)
3091 struct it *it;
3092 struct text_pos pos;
3093 int force_p;
3094{
3095 int original_pos = IT_CHARPOS (*it);
3096
3097 reseat_1 (it, pos, 0);
3098
3099 /* Determine where to check text properties. Avoid doing it
3100 where possible because text property lookup is very expensive. */
3101 if (force_p
3102 || CHARPOS (pos) > it->stop_charpos
3103 || CHARPOS (pos) < original_pos)
3104 handle_stop (it);
3105
3106 CHECK_IT (it);
3107}
3108
3109
3110/* Change IT's buffer position to POS. SET_STOP_P non-zero means set
3111 IT->stop_pos to POS, also. */
3112
3113static void
3114reseat_1 (it, pos, set_stop_p)
3115 struct it *it;
3116 struct text_pos pos;
3117 int set_stop_p;
3118{
3119 /* Don't call this function when scanning a C string. */
3120 xassert (it->s == NULL);
3121
3122 /* POS must be a reasonable value. */
3123 xassert (CHARPOS (pos) >= BEGV && CHARPOS (pos) <= ZV);
3124
3125 it->current.pos = it->position = pos;
3126 XSETBUFFER (it->object, current_buffer);
3127 it->dpvec = NULL;
3128 it->current.dpvec_index = -1;
3129 it->current.overlay_string_index = -1;
3130 IT_STRING_CHARPOS (*it) = -1;
3131 IT_STRING_BYTEPOS (*it) = -1;
3132 it->string = Qnil;
3133 it->method = next_element_from_buffer;
3134 it->sp = 0;
3135
3136 if (set_stop_p)
3137 it->stop_charpos = CHARPOS (pos);
3138}
3139
3140
3141/* Set up IT for displaying a string, starting at CHARPOS in window W.
3142 If S is non-null, it is a C string to iterate over. Otherwise,
3143 STRING gives a Lisp string to iterate over.
3144
3145 If PRECISION > 0, don't return more then PRECISION number of
3146 characters from the string.
3147
3148 If FIELD_WIDTH > 0, return padding spaces until FIELD_WIDTH
3149 characters have been returned. FIELD_WIDTH < 0 means an infinite
3150 field width.
3151
3152 MULTIBYTE = 0 means disable processing of multibyte characters,
3153 MULTIBYTE > 0 means enable it,
3154 MULTIBYTE < 0 means use IT->multibyte_p.
3155
3156 IT must be initialized via a prior call to init_iterator before
3157 calling this function. */
3158
3159static void
3160reseat_to_string (it, s, string, charpos, precision, field_width, multibyte)
3161 struct it *it;
3162 unsigned char *s;
3163 Lisp_Object string;
3164 int charpos;
3165 int precision, field_width, multibyte;
3166{
3167 /* No region in strings. */
3168 it->region_beg_charpos = it->region_end_charpos = -1;
3169
3170 /* No text property checks performed by default, but see below. */
3171 it->stop_charpos = -1;
3172
3173 /* Set iterator position and end position. */
3174 bzero (&it->current, sizeof it->current);
3175 it->current.overlay_string_index = -1;
3176 it->current.dpvec_index = -1;
3177 it->charset = CHARSET_ASCII;
3178 xassert (charpos >= 0);
3179
3180 /* Use the setting of MULTIBYTE if specified. */
3181 if (multibyte >= 0)
3182 it->multibyte_p = multibyte > 0;
3183
3184 if (s == NULL)
3185 {
3186 xassert (STRINGP (string));
3187 it->string = string;
3188 it->s = NULL;
3189 it->end_charpos = it->string_nchars = XSTRING (string)->size;
3190 it->method = next_element_from_string;
3191 it->current.string_pos = string_pos (charpos, string);
3192 }
3193 else
3194 {
3195 it->s = s;
3196 it->string = Qnil;
3197
3198 /* Note that we use IT->current.pos, not it->current.string_pos,
3199 for displaying C strings. */
3200 IT_STRING_CHARPOS (*it) = IT_STRING_BYTEPOS (*it) = -1;
3201 if (it->multibyte_p)
3202 {
3203 it->current.pos = c_string_pos (charpos, s, 1);
3204 it->end_charpos = it->string_nchars = number_of_chars (s, 1);
3205 }
3206 else
3207 {
3208 IT_CHARPOS (*it) = IT_BYTEPOS (*it) = charpos;
3209 it->end_charpos = it->string_nchars = strlen (s);
3210 }
3211
3212 it->method = next_element_from_c_string;
3213 }
3214
3215 /* PRECISION > 0 means don't return more than PRECISION characters
3216 from the string. */
3217 if (precision > 0 && it->end_charpos - charpos > precision)
3218 it->end_charpos = it->string_nchars = charpos + precision;
3219
3220 /* FIELD_WIDTH > 0 means pad with spaces until FIELD_WIDTH
3221 characters have been returned. FIELD_WIDTH == 0 means don't pad,
3222 FIELD_WIDTH < 0 means infinite field width. This is useful for
3223 padding with `-' at the end of a mode line. */
3224 if (field_width < 0)
3225 field_width = INFINITY;
3226 if (field_width > it->end_charpos - charpos)
3227 it->end_charpos = charpos + field_width;
3228
3229 /* Use the standard display table for displaying strings. */
3230 if (DISP_TABLE_P (Vstandard_display_table))
3231 it->dp = XCHAR_TABLE (Vstandard_display_table);
3232
3233 it->stop_charpos = charpos;
3234 CHECK_IT (it);
3235}
3236
3237
3238\f
3239/***********************************************************************
3240 Iteration
3241 ***********************************************************************/
3242
3243/* Load IT's display element fields with information about the next
3244 display element from the current position of IT. Value is zero if
3245 end of buffer (or C string) is reached. */
3246
3247int
3248get_next_display_element (it)
3249 struct it *it;
3250{
3251 /* Non-zero means that we found an display element. Zero means that
3252 we hit the end of what we iterate over. Performance note: the
3253 function pointer `method' used here turns out to be faster than
3254 using a sequence of if-statements. */
3255 int success_p = (*it->method) (it);
3256 int charset;
3257
3258 if (it->what == IT_CHARACTER)
3259 {
3260 /* Map via display table or translate control characters.
3261 IT->c, IT->len etc. have been set to the next character by
3262 the function call above. If we have a display table, and it
3263 contains an entry for IT->c, translate it. Don't do this if
3264 IT->c itself comes from a display table, otherwise we could
3265 end up in an infinite recursion. (An alternative could be to
3266 count the recursion depth of this function and signal an
3267 error when a certain maximum depth is reached.) Is it worth
3268 it? */
3269 if (success_p && it->dpvec == NULL)
3270 {
3271 Lisp_Object dv;
3272
3273 if (it->dp
3274 && (dv = DISP_CHAR_VECTOR (it->dp, it->c),
3275 VECTORP (dv)))
3276 {
3277 struct Lisp_Vector *v = XVECTOR (dv);
3278
3279 /* Return the first character from the display table
3280 entry, if not empty. If empty, don't display the
3281 current character. */
3282 if (v->size)
3283 {
3284 it->dpvec_char_len = it->len;
3285 it->dpvec = v->contents;
3286 it->dpend = v->contents + v->size;
3287 it->current.dpvec_index = 0;
3288 it->method = next_element_from_display_vector;
3289 }
3290
3291 success_p = get_next_display_element (it);
3292 }
3293
3294 /* Translate control characters into `\003' or `^C' form.
3295 Control characters coming from a display table entry are
3296 currently not translated because we use IT->dpvec to hold
3297 the translation. This could easily be changed but I
197516c2
KH
3298 don't believe that it is worth doing.
3299
3300 Non-printable multibyte characters are also translated
3301 octal form. */
5f5c8ee5
GM
3302 else if ((it->c < ' '
3303 && (it->area != TEXT_AREA
c6e89d6c 3304 || (it->c != '\n' && it->c != '\t')))
54c85a23 3305 || (it->c >= 127
197516c2
KH
3306 && it->len == 1)
3307 || !CHAR_PRINTABLE_P (it->c))
5f5c8ee5
GM
3308 {
3309 /* IT->c is a control character which must be displayed
3310 either as '\003' or as `^C' where the '\\' and '^'
3311 can be defined in the display table. Fill
3312 IT->ctl_chars with glyphs for what we have to
3313 display. Then, set IT->dpvec to these glyphs. */
3314 GLYPH g;
3315
54c85a23 3316 if (it->c < 128 && it->ctl_arrow_p)
5f5c8ee5
GM
3317 {
3318 /* Set IT->ctl_chars[0] to the glyph for `^'. */
3319 if (it->dp
3320 && INTEGERP (DISP_CTRL_GLYPH (it->dp))
3321 && GLYPH_CHAR_VALID_P (XINT (DISP_CTRL_GLYPH (it->dp))))
3322 g = XINT (DISP_CTRL_GLYPH (it->dp));
3323 else
3324 g = FAST_MAKE_GLYPH ('^', 0);
3325 XSETINT (it->ctl_chars[0], g);
3326
3327 g = FAST_MAKE_GLYPH (it->c ^ 0100, 0);
3328 XSETINT (it->ctl_chars[1], g);
3329
3330 /* Set up IT->dpvec and return first character from it. */
3331 it->dpvec_char_len = it->len;
3332 it->dpvec = it->ctl_chars;
3333 it->dpend = it->dpvec + 2;
3334 it->current.dpvec_index = 0;
3335 it->method = next_element_from_display_vector;
3336 get_next_display_element (it);
3337 }
3338 else
3339 {
197516c2
KH
3340 unsigned char work[4], *str;
3341 int len = CHAR_STRING (it->c, work, str);
3342 int i;
3343 GLYPH escape_glyph;
3344
5f5c8ee5
GM
3345 /* Set IT->ctl_chars[0] to the glyph for `\\'. */
3346 if (it->dp
3347 && INTEGERP (DISP_ESCAPE_GLYPH (it->dp))
3348 && GLYPH_CHAR_VALID_P (XFASTINT (DISP_ESCAPE_GLYPH (it->dp))))
197516c2 3349 escape_glyph = XFASTINT (DISP_ESCAPE_GLYPH (it->dp));
5f5c8ee5 3350 else
197516c2
KH
3351 escape_glyph = FAST_MAKE_GLYPH ('\\', 0);
3352
3353 for (i = 0; i < len; i++)
3354 {
3355 XSETINT (it->ctl_chars[i * 4], escape_glyph);
3356 /* Insert three more glyphs into IT->ctl_chars for
3357 the octal display of the character. */
3358 g = FAST_MAKE_GLYPH (((str[i] >> 6) & 7) + '0', 0);
3359 XSETINT (it->ctl_chars[i * 4 + 1], g);
3360 g = FAST_MAKE_GLYPH (((str[i] >> 3) & 7) + '0', 0);
3361 XSETINT (it->ctl_chars[i * 4 + 2], g);
3362 g = FAST_MAKE_GLYPH ((str[i] & 7) + '0', 0);
3363 XSETINT (it->ctl_chars[i * 4 + 3], g);
3364 }
5f5c8ee5
GM
3365
3366 /* Set up IT->dpvec and return the first character
3367 from it. */
3368 it->dpvec_char_len = it->len;
3369 it->dpvec = it->ctl_chars;
197516c2 3370 it->dpend = it->dpvec + len * 4;
5f5c8ee5
GM
3371 it->current.dpvec_index = 0;
3372 it->method = next_element_from_display_vector;
3373 get_next_display_element (it);
3374 }
3375 }
3376 }
3377
3378 /* Adjust face id if charset changes. There are no charset
3379 changes in unibyte text because Emacs' charsets are not
3380 applicable there. */
3381 if (it->multibyte_p
3382 && success_p
3383 && (charset = CHAR_CHARSET (it->c),
3384 charset != it->charset))
3385 {
3386 it->charset = charset;
3387 it->face_id = FACE_FOR_CHARSET (it->f, it->face_id, charset);
3388 }
3389 }
3390
3391 /* Is this character the last one of a run of characters with
3392 box? If yes, set IT->end_of_box_run_p to 1. */
3393 if (it->face_box_p
3394 && it->s == NULL)
3395 {
3396 int face_id;
3397 struct face *face;
3398
3399 it->end_of_box_run_p
3400 = ((face_id = face_after_it_pos (it),
3401 face_id != it->face_id)
3402 && (face = FACE_FROM_ID (it->f, face_id),
3403 face->box == FACE_NO_BOX));
3404 }
3405
3406 /* Value is 0 if end of buffer or string reached. */
3407 return success_p;
3408}
3409
3410
3411/* Move IT to the next display element.
3412
3413 Functions get_next_display_element and set_iterator_to_next are
3414 separate because I find this arrangement easier to handle than a
3415 get_next_display_element function that also increments IT's
3416 position. The way it is we can first look at an iterator's current
3417 display element, decide whether it fits on a line, and if it does,
3418 increment the iterator position. The other way around we probably
3419 would either need a flag indicating whether the iterator has to be
3420 incremented the next time, or we would have to implement a
3421 decrement position function which would not be easy to write. */
3422
3423void
3424set_iterator_to_next (it)
3425 struct it *it;
3426{
3427 if (it->method == next_element_from_buffer)
3428 {
3429 /* The current display element of IT is a character from
3430 current_buffer. Advance in the buffer, and maybe skip over
3431 invisible lines that are so because of selective display. */
3432 if (ITERATOR_AT_END_OF_LINE_P (it))
312246d1 3433 reseat_at_next_visible_line_start (it, 0);
5f5c8ee5
GM
3434 else
3435 {
3436 xassert (it->len != 0);
3437 IT_BYTEPOS (*it) += it->len;
3438 IT_CHARPOS (*it) += 1;
3439 xassert (IT_BYTEPOS (*it) == CHAR_TO_BYTE (IT_CHARPOS (*it)));
3440 }
3441 }
3442 else if (it->method == next_element_from_c_string)
3443 {
3444 /* Current display element of IT is from a C string. */
3445 IT_BYTEPOS (*it) += it->len;
3446 IT_CHARPOS (*it) += 1;
3447 }
3448 else if (it->method == next_element_from_display_vector)
3449 {
3450 /* Current display element of IT is from a display table entry.
3451 Advance in the display table definition. Reset it to null if
3452 end reached, and continue with characters from buffers/
3453 strings. */
3454 ++it->current.dpvec_index;
286bcbc9
GM
3455
3456 /* Restore face and charset of the iterator to what they were
3457 before the display vector entry (these entries may contain
3458 faces, and of course characters of different charsets). */
5f5c8ee5 3459 it->face_id = it->saved_face_id;
286bcbc9
GM
3460 it->charset = FACE_FROM_ID (it->f, it->face_id)->charset;
3461
5f5c8ee5
GM
3462 if (it->dpvec + it->current.dpvec_index == it->dpend)
3463 {
3464 if (it->s)
3465 it->method = next_element_from_c_string;
3466 else if (STRINGP (it->string))
3467 it->method = next_element_from_string;
3468 else
3469 it->method = next_element_from_buffer;
3470
3471 it->dpvec = NULL;
3472 it->current.dpvec_index = -1;
3473
312246d1
GM
3474 /* Skip over characters which were displayed via IT->dpvec. */
3475 if (it->dpvec_char_len < 0)
3476 reseat_at_next_visible_line_start (it, 1);
3477 else if (it->dpvec_char_len > 0)
5f5c8ee5
GM
3478 {
3479 it->len = it->dpvec_char_len;
3480 set_iterator_to_next (it);
3481 }
3482 }
3483 }
3484 else if (it->method == next_element_from_string)
3485 {
3486 /* Current display element is a character from a Lisp string. */
3487 xassert (it->s == NULL && STRINGP (it->string));
3488 IT_STRING_BYTEPOS (*it) += it->len;
3489 IT_STRING_CHARPOS (*it) += 1;
3490
3491 consider_string_end:
3492
3493 if (it->current.overlay_string_index >= 0)
3494 {
3495 /* IT->string is an overlay string. Advance to the
3496 next, if there is one. */
3497 if (IT_STRING_CHARPOS (*it) >= XSTRING (it->string)->size)
3498 next_overlay_string (it);
3499 }
3500 else
3501 {
3502 /* IT->string is not an overlay string. If we reached
3503 its end, and there is something on IT->stack, proceed
3504 with what is on the stack. This can be either another
3505 string, this time an overlay string, or a buffer. */
3506 if (IT_STRING_CHARPOS (*it) == XSTRING (it->string)->size
3507 && it->sp > 0)
3508 {
3509 pop_it (it);
3510 if (!STRINGP (it->string))
3511 it->method = next_element_from_buffer;
3512 }
3513 }
3514 }
3515 else if (it->method == next_element_from_image
3516 || it->method == next_element_from_stretch)
3517 {
3518 /* The position etc with which we have to proceed are on
3519 the stack. The position may be at the end of a string,
3520 if the `display' property takes up the whole string. */
3521 pop_it (it);
3522 it->image_id = 0;
3523 if (STRINGP (it->string))
3524 {
3525 it->method = next_element_from_string;
3526 goto consider_string_end;
3527 }
3528 else
3529 it->method = next_element_from_buffer;
3530 }
3531 else
3532 /* There are no other methods defined, so this should be a bug. */
3533 abort ();
3534
3535 /* Reset flags indicating start and end of a sequence of
3536 characters with box. */
3537 it->start_of_box_run_p = it->end_of_box_run_p = 0;
3538
3539 xassert (it->method != next_element_from_string
3540 || (STRINGP (it->string)
3541 && IT_STRING_CHARPOS (*it) >= 0));
3542}
3543
3544
3545/* Load IT's display element fields with information about the next
3546 display element which comes from a display table entry or from the
3547 result of translating a control character to one of the forms `^C'
3548 or `\003'. IT->dpvec holds the glyphs to return as characters. */
3549
3550static int
3551next_element_from_display_vector (it)
3552 struct it *it;
3553{
3554 /* Precondition. */
3555 xassert (it->dpvec && it->current.dpvec_index >= 0);
3556
3557 /* Remember the current face id in case glyphs specify faces.
3558 IT's face is restored in set_iterator_to_next. */
3559 it->saved_face_id = it->face_id;
3560
3561 if (INTEGERP (*it->dpvec)
3562 && GLYPH_CHAR_VALID_P (XFASTINT (*it->dpvec)))
3563 {
3564 int lface_id;
3565 GLYPH g;
3566
3567 g = XFASTINT (it->dpvec[it->current.dpvec_index]);
3568 it->c = FAST_GLYPH_CHAR (g);
3569 it->len = CHAR_LEN (it->c);
3570
3571 /* The entry may contain a face id to use. Such a face id is
3572 the id of a Lisp face, not a realized face. A face id of
3573 zero means no face. */
3574 lface_id = FAST_GLYPH_FACE (g);
3575 if (lface_id)
3576 {
3577 int face_id = ascii_face_of_lisp_face (it->f, lface_id);
3578 if (face_id >= 0)
3579 {
3580 it->face_id = face_id;
3581 it->charset = CHARSET_ASCII;
3582 }
3583 }
3584 }
3585 else
3586 /* Display table entry is invalid. Return a space. */
3587 it->c = ' ', it->len = 1;
3588
3589 /* Don't change position and object of the iterator here. They are
3590 still the values of the character that had this display table
3591 entry or was translated, and that's what we want. */
3592 it->what = IT_CHARACTER;
3593 return 1;
3594}
3595
3596
3597/* Load IT with the next display element from Lisp string IT->string.
3598 IT->current.string_pos is the current position within the string.
3599 If IT->current.overlay_string_index >= 0, the Lisp string is an
3600 overlay string. */
3601
3602static int
3603next_element_from_string (it)
3604 struct it *it;
3605{
3606 struct text_pos position;
3607
3608 xassert (STRINGP (it->string));
3609 xassert (IT_STRING_CHARPOS (*it) >= 0);
3610 position = it->current.string_pos;
3611
3612 /* Time to check for invisible text? */
3613 if (IT_STRING_CHARPOS (*it) < it->end_charpos
3614 && IT_STRING_CHARPOS (*it) == it->stop_charpos)
3615 {
3616 handle_stop (it);
3617
3618 /* Since a handler may have changed IT->method, we must
3619 recurse here. */
3620 return get_next_display_element (it);
3621 }
3622
3623 if (it->current.overlay_string_index >= 0)
3624 {
3625 /* Get the next character from an overlay string. In overlay
3626 strings, There is no field width or padding with spaces to
3627 do. */
3628 if (IT_STRING_CHARPOS (*it) >= XSTRING (it->string)->size)
3629 {
3630 it->what = IT_EOB;
3631 return 0;
3632 }
3633 else if (STRING_MULTIBYTE (it->string))
3634 {
3635 int remaining = (STRING_BYTES (XSTRING (it->string))
3636 - IT_STRING_BYTEPOS (*it));
3637 unsigned char *s = (XSTRING (it->string)->data
3638 + IT_STRING_BYTEPOS (*it));
4fdb80f2 3639 it->c = string_char_and_length (s, remaining, &it->len);
5f5c8ee5
GM
3640 }
3641 else
3642 {
3643 it->c = XSTRING (it->string)->data[IT_STRING_BYTEPOS (*it)];
3644 it->len = 1;
3645 }
3646 }
3647 else
3648 {
3649 /* Get the next character from a Lisp string that is not an
3650 overlay string. Such strings come from the mode line, for
3651 example. We may have to pad with spaces, or truncate the
3652 string. See also next_element_from_c_string. */
3653 if (IT_STRING_CHARPOS (*it) >= it->end_charpos)
3654 {
3655 it->what = IT_EOB;
3656 return 0;
3657 }
3658 else if (IT_STRING_CHARPOS (*it) >= it->string_nchars)
3659 {
3660 /* Pad with spaces. */
3661 it->c = ' ', it->len = 1;
3662 CHARPOS (position) = BYTEPOS (position) = -1;
3663 }
3664 else if (STRING_MULTIBYTE (it->string))
3665 {
3666 int maxlen = (STRING_BYTES (XSTRING (it->string))
3667 - IT_STRING_BYTEPOS (*it));
3668 unsigned char *s = (XSTRING (it->string)->data
3669 + IT_STRING_BYTEPOS (*it));
4fdb80f2 3670 it->c = string_char_and_length (s, maxlen, &it->len);
5f5c8ee5
GM
3671 }
3672 else
3673 {
3674 it->c = XSTRING (it->string)->data[IT_STRING_BYTEPOS (*it)];
3675 it->len = 1;
3676 }
3677 }
3678
3679 /* Record what we have and where it came from. Note that we store a
3680 buffer position in IT->position although it could arguably be a
3681 string position. */
3682 it->what = IT_CHARACTER;
3683 it->object = it->string;
3684 it->position = position;
3685 return 1;
3686}
3687
3688
3689/* Load IT with next display element from C string IT->s.
3690 IT->string_nchars is the maximum number of characters to return
3691 from the string. IT->end_charpos may be greater than
3692 IT->string_nchars when this function is called, in which case we
3693 may have to return padding spaces. Value is zero if end of string
3694 reached, including padding spaces. */
3695
3696static int
3697next_element_from_c_string (it)
3698 struct it *it;
3699{
3700 int success_p = 1;
3701
3702 xassert (it->s);
3703 it->what = IT_CHARACTER;
3704 BYTEPOS (it->position) = CHARPOS (it->position) = 0;
3705 it->object = Qnil;
3706
3707 /* IT's position can be greater IT->string_nchars in case a field
3708 width or precision has been specified when the iterator was
3709 initialized. */
3710 if (IT_CHARPOS (*it) >= it->end_charpos)
3711 {
3712 /* End of the game. */
3713 it->what = IT_EOB;
3714 success_p = 0;
3715 }
3716 else if (IT_CHARPOS (*it) >= it->string_nchars)
3717 {
3718 /* Pad with spaces. */
3719 it->c = ' ', it->len = 1;
3720 BYTEPOS (it->position) = CHARPOS (it->position) = -1;
3721 }
3722 else if (it->multibyte_p)
3723 {
3724 /* Implementation note: The calls to strlen apparently aren't a
3725 performance problem because there is no noticeable performance
3726 difference between Emacs running in unibyte or multibyte mode. */
3727 int maxlen = strlen (it->s) - IT_BYTEPOS (*it);
4fdb80f2
GM
3728 it->c = string_char_and_length (it->s + IT_BYTEPOS (*it),
3729 maxlen, &it->len);
5f5c8ee5
GM
3730 }
3731 else
3732 it->c = it->s[IT_BYTEPOS (*it)], it->len = 1;
3733
3734 return success_p;
3735}
3736
3737
3738/* Set up IT to return characters from an ellipsis, if appropriate.
3739 The definition of the ellipsis glyphs may come from a display table
3740 entry. This function Fills IT with the first glyph from the
3741 ellipsis if an ellipsis is to be displayed. */
3742
3743static void
3744next_element_from_ellipsis (it)
3745 struct it *it;
3746{
3747 if (it->dp && VECTORP (DISP_INVIS_VECTOR (it->dp)))
3748 {
3749 /* Use the display table definition for `...'. Invalid glyphs
3750 will be handled by the method returning elements from dpvec. */
3751 struct Lisp_Vector *v = XVECTOR (DISP_INVIS_VECTOR (it->dp));
3752 it->dpvec_char_len = it->len;
3753 it->dpvec = v->contents;
3754 it->dpend = v->contents + v->size;
3755 it->current.dpvec_index = 0;
3756 it->method = next_element_from_display_vector;
3757 get_next_display_element (it);
3758 }
3759 else if (it->selective_display_ellipsis_p)
3760 {
3761 /* Use default `...' which is stored in default_invis_vector. */
3762 it->dpvec_char_len = it->len;
3763 it->dpvec = default_invis_vector;
3764 it->dpend = default_invis_vector + 3;
3765 it->current.dpvec_index = 0;
3766 it->method = next_element_from_display_vector;
3767 get_next_display_element (it);
3768 }
3769}
3770
3771
3772/* Deliver an image display element. The iterator IT is already
3773 filled with image information (done in handle_display_prop). Value
3774 is always 1. */
3775
3776
3777static int
3778next_element_from_image (it)
3779 struct it *it;
3780{
3781 it->what = IT_IMAGE;
3782 return 1;
3783}
3784
3785
3786/* Fill iterator IT with next display element from a stretch glyph
3787 property. IT->object is the value of the text property. Value is
3788 always 1. */
3789
3790static int
3791next_element_from_stretch (it)
3792 struct it *it;
3793{
3794 it->what = IT_STRETCH;
3795 return 1;
3796}
3797
3798
3799/* Load IT with the next display element from current_buffer. Value
3800 is zero if end of buffer reached. IT->stop_charpos is the next
3801 position at which to stop and check for text properties or buffer
3802 end. */
3803
3804static int
3805next_element_from_buffer (it)
3806 struct it *it;
3807{
3808 int success_p = 1;
3809
3810 /* Check this assumption, otherwise, we would never enter the
3811 if-statement, below. */
3812 xassert (IT_CHARPOS (*it) >= BEGV
3813 && IT_CHARPOS (*it) <= it->stop_charpos);
3814
3815 if (IT_CHARPOS (*it) >= it->stop_charpos)
3816 {
3817 if (IT_CHARPOS (*it) >= it->end_charpos)
3818 {
3819 int overlay_strings_follow_p;
3820
3821 /* End of the game, except when overlay strings follow that
3822 haven't been returned yet. */
3823 if (it->overlay_strings_at_end_processed_p)
3824 overlay_strings_follow_p = 0;
3825 else
3826 {
3827 it->overlay_strings_at_end_processed_p = 1;
3828 overlay_strings_follow_p
3829 = get_overlay_strings (it);
3830 }
3831
3832 if (overlay_strings_follow_p)
3833 success_p = get_next_display_element (it);
3834 else
3835 {
3836 it->what = IT_EOB;
3837 it->position = it->current.pos;
3838 success_p = 0;
3839 }
3840 }
3841 else
3842 {
3843 handle_stop (it);
3844 return get_next_display_element (it);
3845 }
3846 }
3847 else
3848 {
3849 /* No face changes, overlays etc. in sight, so just return a
3850 character from current_buffer. */
3851 unsigned char *p;
3852
3853 /* Maybe run the redisplay end trigger hook. Performance note:
3854 This doesn't seem to cost measurable time. */
3855 if (it->redisplay_end_trigger_charpos
3856 && it->glyph_row
3857 && IT_CHARPOS (*it) >= it->redisplay_end_trigger_charpos)
3858 run_redisplay_end_trigger_hook (it);
3859
3860 /* Get the next character, maybe multibyte. */
3861 p = BYTE_POS_ADDR (IT_BYTEPOS (*it));
3862 if (it->multibyte_p)
3863 {
3864 int maxlen = ((IT_BYTEPOS (*it) >= GPT_BYTE ? ZV_BYTE : GPT_BYTE)
3865 - IT_BYTEPOS (*it));
4fdb80f2 3866 it->c = string_char_and_length (p, maxlen, &it->len);
5f5c8ee5
GM
3867 }
3868 else
3869 it->c = *p, it->len = 1;
3870
3871 /* Record what we have and where it came from. */
3872 it->what = IT_CHARACTER;;
3873 it->object = it->w->buffer;
3874 it->position = it->current.pos;
3875
3876 /* Normally we return the character found above, except when we
3877 really want to return an ellipsis for selective display. */
3878 if (it->selective)
3879 {
3880 if (it->c == '\n')
3881 {
3882 /* A value of selective > 0 means hide lines indented more
3883 than that number of columns. */
3884 if (it->selective > 0
3885 && IT_CHARPOS (*it) + 1 < ZV
3886 && indented_beyond_p (IT_CHARPOS (*it) + 1,
3887 IT_BYTEPOS (*it) + 1,
3888 it->selective))
312246d1
GM
3889 {
3890 next_element_from_ellipsis (it);
3891 it->dpvec_char_len = -1;
3892 }
5f5c8ee5
GM
3893 }
3894 else if (it->c == '\r' && it->selective == -1)
3895 {
3896 /* A value of selective == -1 means that everything from the
3897 CR to the end of the line is invisible, with maybe an
3898 ellipsis displayed for it. */
3899 next_element_from_ellipsis (it);
312246d1 3900 it->dpvec_char_len = -1;
5f5c8ee5
GM
3901 }
3902 }
3903 }
3904
3905 /* Value is zero if end of buffer reached. */
3906 xassert (!success_p || it->len > 0);
3907 return success_p;
3908}
3909
3910
3911/* Run the redisplay end trigger hook for IT. */
3912
3913static void
3914run_redisplay_end_trigger_hook (it)
3915 struct it *it;
3916{
3917 Lisp_Object args[3];
3918
3919 /* IT->glyph_row should be non-null, i.e. we should be actually
3920 displaying something, or otherwise we should not run the hook. */
3921 xassert (it->glyph_row);
3922
3923 /* Set up hook arguments. */
3924 args[0] = Qredisplay_end_trigger_functions;
3925 args[1] = it->window;
3926 XSETINT (args[2], it->redisplay_end_trigger_charpos);
3927 it->redisplay_end_trigger_charpos = 0;
3928
3929 /* Since we are *trying* to run these functions, don't try to run
3930 them again, even if they get an error. */
3931 it->w->redisplay_end_trigger = Qnil;
3932 Frun_hook_with_args (3, args);
3933
3934 /* Notice if it changed the face of the character we are on. */
3935 handle_face_prop (it);
3936}
3937
3938
3939\f
3940/***********************************************************************
3941 Moving an iterator without producing glyphs
3942 ***********************************************************************/
3943
3944/* Move iterator IT to a specified buffer or X position within one
3945 line on the display without producing glyphs.
3946
3947 Begin to skip at IT's current position. Skip to TO_CHARPOS or TO_X
3948 whichever is reached first.
3949
3950 TO_CHARPOS <= 0 means no TO_CHARPOS is specified.
3951
3952 TO_X < 0 means that no TO_X is specified. TO_X is normally a value
3953 0 <= TO_X <= IT->last_visible_x. This means in particular, that
3954 TO_X includes the amount by which a window is horizontally
3955 scrolled.
3956
3957 Value is
3958
3959 MOVE_POS_MATCH_OR_ZV
3960 - when TO_POS or ZV was reached.
3961
3962 MOVE_X_REACHED
3963 -when TO_X was reached before TO_POS or ZV were reached.
3964
3965 MOVE_LINE_CONTINUED
3966 - when we reached the end of the display area and the line must
3967 be continued.
3968
3969 MOVE_LINE_TRUNCATED
3970 - when we reached the end of the display area and the line is
3971 truncated.
3972
3973 MOVE_NEWLINE_OR_CR
3974 - when we stopped at a line end, i.e. a newline or a CR and selective
3975 display is on. */
3976
3977enum move_it_result
3978move_it_in_display_line_to (it, to_charpos, to_x, op)
3979 struct it *it;
3980 int to_charpos, to_x, op;
3981{
3982 enum move_it_result result = MOVE_UNDEFINED;
3983 struct glyph_row *saved_glyph_row;
3984
3985 /* Don't produce glyphs in produce_glyphs. */
3986 saved_glyph_row = it->glyph_row;
3987 it->glyph_row = NULL;
3988
5f5c8ee5
GM
3989 while (1)
3990 {
3991 int x, i;
3992
3993 /* Stop when ZV or TO_CHARPOS reached. */
3994 if (!get_next_display_element (it)
3995 || ((op & MOVE_TO_POS) != 0
3996 && BUFFERP (it->object)
3997 && IT_CHARPOS (*it) >= to_charpos))
3998 {
3999 result = MOVE_POS_MATCH_OR_ZV;
4000 break;
4001 }
4002
4003 /* The call to produce_glyphs will get the metrics of the
4004 display element IT is loaded with. We record in x the
4005 x-position before this display element in case it does not
4006 fit on the line. */
4007 x = it->current_x;
4008 PRODUCE_GLYPHS (it);
4009
4010 if (it->area != TEXT_AREA)
4011 {
4012 set_iterator_to_next (it);
4013 continue;
4014 }
4015
4016 /* The number of glyphs we get back in IT->nglyphs will normally
4017 be 1 except when IT->c is (i) a TAB, or (ii) a multi-glyph
4018 character on a terminal frame, or (iii) a line end. For the
4019 second case, IT->nglyphs - 1 padding glyphs will be present
4020 (on X frames, there is only one glyph produced for a
4021 composite character.
4022
4023 The behavior implemented below means, for continuation lines,
4024 that as many spaces of a TAB as fit on the current line are
4025 displayed there. For terminal frames, as many glyphs of a
4026 multi-glyph character are displayed in the current line, too.
4027 This is what the old redisplay code did, and we keep it that
4028 way. Under X, the whole shape of a complex character must
4029 fit on the line or it will be completely displayed in the
4030 next line.
4031
4032 Note that both for tabs and padding glyphs, all glyphs have
4033 the same width. */
4034 if (it->nglyphs)
4035 {
4036 /* More than one glyph or glyph doesn't fit on line. All
4037 glyphs have the same width. */
4038 int single_glyph_width = it->pixel_width / it->nglyphs;
4039 int new_x;
4040
4041 for (i = 0; i < it->nglyphs; ++i, x = new_x)
4042 {
4043 new_x = x + single_glyph_width;
4044
4045 /* We want to leave anything reaching TO_X to the caller. */
4046 if ((op & MOVE_TO_X) && new_x > to_x)
4047 {
4048 it->current_x = x;
4049 result = MOVE_X_REACHED;
4050 break;
4051 }
4052 else if (/* Lines are continued. */
4053 !it->truncate_lines_p
4054 && (/* And glyph doesn't fit on the line. */
4055 new_x > it->last_visible_x
4056 /* Or it fits exactly and we're on a window
4057 system frame. */
4058 || (new_x == it->last_visible_x
4059 && FRAME_WINDOW_P (it->f))))
4060 {
4061 if (/* IT->hpos == 0 means the very first glyph
4062 doesn't fit on the line, e.g. a wide image. */
4063 it->hpos == 0
4064 || (new_x == it->last_visible_x
4065 && FRAME_WINDOW_P (it->f)))
4066 {
4067 ++it->hpos;
4068 it->current_x = new_x;
4069 if (i == it->nglyphs - 1)
4070 set_iterator_to_next (it);
4071 }
4072 else
4073 it->current_x = x;
4074
4075 result = MOVE_LINE_CONTINUED;
4076 break;
4077 }
4078 else if (new_x > it->first_visible_x)
4079 {
4080 /* Glyph is visible. Increment number of glyphs that
4081 would be displayed. */
4082 ++it->hpos;
4083 }
4084 else
4085 {
4086 /* Glyph is completely off the left margin of the display
4087 area. Nothing to do. */
4088 }
4089 }
4090
4091 if (result != MOVE_UNDEFINED)
4092 break;
4093 }
4094 else if ((op & MOVE_TO_X) && it->current_x >= to_x)
4095 {
4096 /* Stop when TO_X specified and reached. This check is
4097 necessary here because of lines consisting of a line end,
4098 only. The line end will not produce any glyphs and we
4099 would never get MOVE_X_REACHED. */
4100 xassert (it->nglyphs == 0);
4101 result = MOVE_X_REACHED;
4102 break;
4103 }
4104
4105 /* Is this a line end? If yes, we're done. */
4106 if (ITERATOR_AT_END_OF_LINE_P (it))
4107 {
4108 result = MOVE_NEWLINE_OR_CR;
4109 break;
4110 }
4111
4112 /* The current display element has been consumed. Advance
4113 to the next. */
4114 set_iterator_to_next (it);
4115
4116 /* Stop if lines are truncated and IT's current x-position is
4117 past the right edge of the window now. */
4118 if (it->truncate_lines_p
4119 && it->current_x >= it->last_visible_x)
4120 {
4121 result = MOVE_LINE_TRUNCATED;
4122 break;
4123 }
4124 }
4125
4126 /* Restore the iterator settings altered at the beginning of this
4127 function. */
4128 it->glyph_row = saved_glyph_row;
4129 return result;
4130}
4131
4132
4133/* Move IT forward to a specified buffer position TO_CHARPOS, TO_X,
4134 TO_Y, TO_VPOS. OP is a bit-mask that specifies where to stop. See
4135 the description of enum move_operation_enum.
4136
4137 If TO_CHARPOS is in invisible text, e.g. a truncated part of a
4138 screen line, this function will set IT to the next position >
4139 TO_CHARPOS. */
4140
4141void
4142move_it_to (it, to_charpos, to_x, to_y, to_vpos, op)
4143 struct it *it;
4144 int to_charpos, to_x, to_y, to_vpos;
4145 int op;
4146{
4147 enum move_it_result skip, skip2 = MOVE_X_REACHED;
4148 int line_height;
4149
5f5c8ee5
GM
4150 while (1)
4151 {
4152 if (op & MOVE_TO_VPOS)
4153 {
4154 /* If no TO_CHARPOS and no TO_X specified, stop at the
4155 start of the line TO_VPOS. */
4156 if ((op & (MOVE_TO_X | MOVE_TO_POS)) == 0)
4157 {
4158 if (it->vpos == to_vpos)
4159 break;
4160 skip = move_it_in_display_line_to (it, -1, -1, 0);
4161 }
4162 else
4163 {
4164 /* TO_VPOS >= 0 means stop at TO_X in the line at
4165 TO_VPOS, or at TO_POS, whichever comes first. */
4166 skip = move_it_in_display_line_to (it, to_charpos, to_x, op);
4167
4168 if (skip == MOVE_POS_MATCH_OR_ZV || it->vpos == to_vpos)
4169 break;
4170 else if (skip == MOVE_X_REACHED && it->vpos != to_vpos)
4171 {
4172 /* We have reached TO_X but not in the line we want. */
4173 skip = move_it_in_display_line_to (it, to_charpos,
4174 -1, MOVE_TO_POS);
4175 if (skip == MOVE_POS_MATCH_OR_ZV)
4176 break;
4177 }
4178 }
4179 }
4180 else if (op & MOVE_TO_Y)
4181 {
4182 struct it it_backup;
4183 int done_p;
4184
4185 /* TO_Y specified means stop at TO_X in the line containing
4186 TO_Y---or at TO_CHARPOS if this is reached first. The
4187 problem is that we can't really tell whether the line
4188 contains TO_Y before we have completely scanned it, and
4189 this may skip past TO_X. What we do is to first scan to
4190 TO_X.
4191
4192 If TO_X is not specified, use a TO_X of zero. The reason
4193 is to make the outcome of this function more predictable.
4194 If we didn't use TO_X == 0, we would stop at the end of
4195 the line which is probably not what a caller would expect
4196 to happen. */
4197 skip = move_it_in_display_line_to (it, to_charpos,
4198 ((op & MOVE_TO_X)
4199 ? to_x : 0),
4200 (MOVE_TO_X
4201 | (op & MOVE_TO_POS)));
4202
4203 /* If TO_CHARPOS is reached or ZV, we don't have to do more. */
4204 if (skip == MOVE_POS_MATCH_OR_ZV)
4205 break;
4206
4207 /* If TO_X was reached, we would like to know whether TO_Y
4208 is in the line. This can only be said if we know the
4209 total line height which requires us to scan the rest of
4210 the line. */
4211 done_p = 0;
4212 if (skip == MOVE_X_REACHED)
4213 {
4214 it_backup = *it;
4215 skip2 = move_it_in_display_line_to (it, to_charpos, -1,
4216 op & MOVE_TO_POS);
4217 }
4218
4219 /* Now, decide whether TO_Y is in this line. */
4220 line_height = it->max_ascent + it->max_descent;
4221
4222 if (to_y >= it->current_y
4223 && to_y < it->current_y + line_height)
4224 {
4225 if (skip == MOVE_X_REACHED)
4226 /* If TO_Y is in this line and TO_X was reached above,
4227 we scanned too far. We have to restore IT's settings
4228 to the ones before skipping. */
4229 *it = it_backup;
4230 done_p = 1;
4231 }
4232 else if (skip == MOVE_X_REACHED)
4233 {
4234 skip = skip2;
4235 if (skip == MOVE_POS_MATCH_OR_ZV)
4236 done_p = 1;
4237 }
4238
4239 if (done_p)
4240 break;
4241 }
4242 else
4243 skip = move_it_in_display_line_to (it, to_charpos, -1, MOVE_TO_POS);
4244
4245 switch (skip)
4246 {
4247 case MOVE_POS_MATCH_OR_ZV:
4248 return;
4249
4250 case MOVE_NEWLINE_OR_CR:
4251 set_iterator_to_next (it);
4252 it->continuation_lines_width = 0;
4253 break;
4254
4255 case MOVE_LINE_TRUNCATED:
4256 it->continuation_lines_width = 0;
312246d1 4257 reseat_at_next_visible_line_start (it, 0);
5f5c8ee5
GM
4258 if ((op & MOVE_TO_POS) != 0
4259 && IT_CHARPOS (*it) > to_charpos)
4260 goto out;
4261 break;
4262
4263 case MOVE_LINE_CONTINUED:
4264 it->continuation_lines_width += it->current_x;
4265 break;
4266
4267 default:
4268 abort ();
4269 }
4270
4271 /* Reset/increment for the next run. */
4272 recenter_overlay_lists (current_buffer, IT_CHARPOS (*it));
4273 it->current_x = it->hpos = 0;
4274 it->current_y += it->max_ascent + it->max_descent;
4275 ++it->vpos;
4276 last_height = it->max_ascent + it->max_descent;
4277 last_max_ascent = it->max_ascent;
4278 it->max_ascent = it->max_descent = 0;
4279 }
4280 out:;
4281}
4282
4283
4284/* Move iterator IT backward by a specified y-distance DY, DY >= 0.
4285
4286 If DY > 0, move IT backward at least that many pixels. DY = 0
4287 means move IT backward to the preceding line start or BEGV. This
4288 function may move over more than DY pixels if IT->current_y - DY
4289 ends up in the middle of a line; in this case IT->current_y will be
4290 set to the top of the line moved to. */
4291
4292void
4293move_it_vertically_backward (it, dy)
4294 struct it *it;
4295 int dy;
4296{
4297 int nlines, h, line_height;
4298 struct it it2;
4299 int start_pos = IT_CHARPOS (*it);
4300
4301 xassert (dy >= 0);
4302
4303 /* Estimate how many newlines we must move back. */
4304 nlines = max (1, dy / CANON_Y_UNIT (it->f));
4305
4306 /* Set the iterator's position that many lines back. */
4307 while (nlines-- && IT_CHARPOS (*it) > BEGV)
4308 back_to_previous_visible_line_start (it);
4309
4310 /* Reseat the iterator here. When moving backward, we don't want
4311 reseat to skip forward over invisible text, set up the iterator
4312 to deliver from overlay strings at the new position etc. So,
4313 use reseat_1 here. */
4314 reseat_1 (it, it->current.pos, 1);
4315
4316 /* We are now surely at a line start. */
4317 it->current_x = it->hpos = 0;
4318
4319 /* Move forward and see what y-distance we moved. First move to the
4320 start of the next line so that we get its height. We need this
4321 height to be able to tell whether we reached the specified
4322 y-distance. */
4323 it2 = *it;
4324 it2.max_ascent = it2.max_descent = 0;
4325 move_it_to (&it2, start_pos, -1, -1, it2.vpos + 1,
4326 MOVE_TO_POS | MOVE_TO_VPOS);
4327 xassert (IT_CHARPOS (*it) >= BEGV);
4328 line_height = it2.max_ascent + it2.max_descent;
4329 move_it_to (&it2, start_pos, -1, -1, -1, MOVE_TO_POS);
4330 xassert (IT_CHARPOS (*it) >= BEGV);
4331 h = it2.current_y - it->current_y;
4332 nlines = it2.vpos - it->vpos;
4333
4334 /* Correct IT's y and vpos position. */
4335 it->vpos -= nlines;
4336 it->current_y -= h;
4337
4338 if (dy == 0)
4339 {
4340 /* DY == 0 means move to the start of the screen line. The
4341 value of nlines is > 0 if continuation lines were involved. */
4342 if (nlines > 0)
4343 move_it_by_lines (it, nlines, 1);
4344 xassert (IT_CHARPOS (*it) <= start_pos);
4345 }
4346 else if (nlines)
4347 {
4348 /* The y-position we try to reach. Note that h has been
4349 subtracted in front of the if-statement. */
4350 int target_y = it->current_y + h - dy;
4351
4352 /* If we did not reach target_y, try to move further backward if
4353 we can. If we moved too far backward, try to move forward. */
4354 if (target_y < it->current_y
4355 && IT_CHARPOS (*it) > BEGV)
4356 {
4357 move_it_vertically (it, target_y - it->current_y);
4358 xassert (IT_CHARPOS (*it) >= BEGV);
4359 }
4360 else if (target_y >= it->current_y + line_height
4361 && IT_CHARPOS (*it) < ZV)
4362 {
4363 move_it_vertically (it, target_y - (it->current_y + line_height));
4364 xassert (IT_CHARPOS (*it) >= BEGV);
4365 }
4366 }
4367}
4368
4369
4370/* Move IT by a specified amount of pixel lines DY. DY negative means
4371 move backwards. DY = 0 means move to start of screen line. At the
4372 end, IT will be on the start of a screen line. */
4373
4374void
4375move_it_vertically (it, dy)
4376 struct it *it;
4377 int dy;
4378{
4379 if (dy <= 0)
4380 move_it_vertically_backward (it, -dy);
4381 else if (dy > 0)
4382 {
4383 move_it_to (it, ZV, -1, it->current_y + dy, -1,
4384 MOVE_TO_POS | MOVE_TO_Y);
4385
4386 /* If buffer ends in ZV without a newline, move to the start of
4387 the line to satisfy the post-condition. */
4388 if (IT_CHARPOS (*it) == ZV
4389 && FETCH_BYTE (IT_BYTEPOS (*it) - 1) != '\n')
4390 move_it_by_lines (it, 0, 0);
4391 }
4392}
4393
4394
4395/* Return non-zero if some text between buffer positions START_CHARPOS
4396 and END_CHARPOS is invisible. IT->window is the window for text
4397 property lookup. */
4398
4399static int
4400invisible_text_between_p (it, start_charpos, end_charpos)
4401 struct it *it;
4402 int start_charpos, end_charpos;
4403{
4404#ifdef USE_TEXT_PROPERTIES
4405 Lisp_Object prop, limit;
4406 int invisible_found_p;
4407
4408 xassert (it != NULL && start_charpos <= end_charpos);
4409
4410 /* Is text at START invisible? */
4411 prop = Fget_char_property (make_number (start_charpos), Qinvisible,
4412 it->window);
4413 if (TEXT_PROP_MEANS_INVISIBLE (prop))
4414 invisible_found_p = 1;
4415 else
4416 {
4417 limit = Fnext_single_property_change (make_number (start_charpos),
4418 Qinvisible,
4419 Fcurrent_buffer (),
4420 make_number (end_charpos));
4421 invisible_found_p = XFASTINT (limit) < end_charpos;
4422 }
4423
4424 return invisible_found_p;
4425
4426#else /* not USE_TEXT_PROPERTIES */
4427 return 0;
4428#endif /* not USE_TEXT_PROPERTIES */
4429}
4430
4431
4432/* Move IT by a specified number DVPOS of screen lines down. DVPOS
4433 negative means move up. DVPOS == 0 means move to the start of the
4434 screen line. NEED_Y_P non-zero means calculate IT->current_y. If
4435 NEED_Y_P is zero, IT->current_y will be left unchanged.
4436
4437 Further optimization ideas: If we would know that IT->f doesn't use
4438 a face with proportional font, we could be faster for
4439 truncate-lines nil. */
4440
4441void
4442move_it_by_lines (it, dvpos, need_y_p)
4443 struct it *it;
4444 int dvpos, need_y_p;
4445{
4446 struct position pos;
4447
4448 if (!FRAME_WINDOW_P (it->f))
4449 {
4450 struct text_pos textpos;
4451
4452 /* We can use vmotion on frames without proportional fonts. */
4453 pos = *vmotion (IT_CHARPOS (*it), dvpos, it->w);
4454 SET_TEXT_POS (textpos, pos.bufpos, pos.bytepos);
4455 reseat (it, textpos, 1);
4456 it->vpos += pos.vpos;
4457 it->current_y += pos.vpos;
4458 }
4459 else if (dvpos == 0)
4460 {
4461 /* DVPOS == 0 means move to the start of the screen line. */
4462 move_it_vertically_backward (it, 0);
4463 xassert (it->current_x == 0 && it->hpos == 0);
4464 }
4465 else if (dvpos > 0)
4466 {
4467 /* If there are no continuation lines, and if there is no
4468 selective display, try the simple method of moving forward
4469 DVPOS newlines, then see where we are. */
4470 if (!need_y_p && it->truncate_lines_p && it->selective == 0)
4471 {
4472 int shortage = 0, charpos;
4473
4474 if (FETCH_BYTE (IT_BYTEPOS (*it) == '\n'))
4475 charpos = IT_CHARPOS (*it) + 1;
4476 else
4477 charpos = scan_buffer ('\n', IT_CHARPOS (*it), 0, dvpos,
4478 &shortage, 0);
4479
4480 if (!invisible_text_between_p (it, IT_CHARPOS (*it), charpos))
4481 {
4482 struct text_pos pos;
4483 CHARPOS (pos) = charpos;
4484 BYTEPOS (pos) = CHAR_TO_BYTE (charpos);
4485 reseat (it, pos, 1);
4486 it->vpos += dvpos - shortage;
4487 it->hpos = it->current_x = 0;
4488 return;
4489 }
4490 }
4491
4492 move_it_to (it, -1, -1, -1, it->vpos + dvpos, MOVE_TO_VPOS);
4493 }
4494 else
4495 {
4496 struct it it2;
4497 int start_charpos, i;
4498
4499 /* If there are no continuation lines, and if there is no
4500 selective display, try the simple method of moving backward
4501 -DVPOS newlines. */
4502 if (!need_y_p && it->truncate_lines_p && it->selective == 0)
4503 {
4504 int shortage;
4505 int charpos = IT_CHARPOS (*it);
4506 int bytepos = IT_BYTEPOS (*it);
4507
4508 /* If in the middle of a line, go to its start. */
4509 if (charpos > BEGV && FETCH_BYTE (bytepos - 1) != '\n')
4510 {
4511 charpos = find_next_newline_no_quit (charpos, -1);
4512 bytepos = CHAR_TO_BYTE (charpos);
4513 }
4514
4515 if (charpos == BEGV)
4516 {
4517 struct text_pos pos;
4518 CHARPOS (pos) = charpos;
4519 BYTEPOS (pos) = bytepos;
4520 reseat (it, pos, 1);
4521 it->hpos = it->current_x = 0;
4522 return;
4523 }
4524 else
4525 {
4526 charpos = scan_buffer ('\n', charpos - 1, 0, dvpos, &shortage, 0);
4527 if (!invisible_text_between_p (it, charpos, IT_CHARPOS (*it)))
4528 {
4529 struct text_pos pos;
4530 CHARPOS (pos) = charpos;
4531 BYTEPOS (pos) = CHAR_TO_BYTE (charpos);
4532 reseat (it, pos, 1);
4533 it->vpos += dvpos + (shortage ? shortage - 1 : 0);
4534 it->hpos = it->current_x = 0;
4535 return;
4536 }
4537 }
4538 }
4539
4540 /* Go back -DVPOS visible lines and reseat the iterator there. */
4541 start_charpos = IT_CHARPOS (*it);
4542 for (i = -dvpos; i && IT_CHARPOS (*it) > BEGV; --i)
4543 back_to_previous_visible_line_start (it);
4544 reseat (it, it->current.pos, 1);
4545 it->current_x = it->hpos = 0;
4546
4547 /* Above call may have moved too far if continuation lines
4548 are involved. Scan forward and see if it did. */
4549 it2 = *it;
4550 it2.vpos = it2.current_y = 0;
4551 move_it_to (&it2, start_charpos, -1, -1, -1, MOVE_TO_POS);
4552 it->vpos -= it2.vpos;
4553 it->current_y -= it2.current_y;
4554 it->current_x = it->hpos = 0;
4555
4556 /* If we moved too far, move IT some lines forward. */
4557 if (it2.vpos > -dvpos)
4558 {
4559 int delta = it2.vpos + dvpos;
4560 move_it_to (it, -1, -1, -1, it->vpos + delta, MOVE_TO_VPOS);
4561 }
4562 }
4563}
4564
4565
4566\f
4567/***********************************************************************
4568 Messages
4569 ***********************************************************************/
4570
4571
4572/* Output a newline in the *Messages* buffer if "needs" one. */
4573
4574void
4575message_log_maybe_newline ()
4576{
4577 if (message_log_need_newline)
4578 message_dolog ("", 0, 1, 0);
4579}
4580
4581
4582/* Add a string M of length LEN to the message log, optionally
4583 terminated with a newline when NLFLAG is non-zero. MULTIBYTE, if
4584 nonzero, means interpret the contents of M as multibyte. This
4585 function calls low-level routines in order to bypass text property
4586 hooks, etc. which might not be safe to run. */
4587
4588void
4589message_dolog (m, len, nlflag, multibyte)
4590 char *m;
4591 int len, nlflag, multibyte;
4592{
4593 if (!NILP (Vmessage_log_max))
4594 {
4595 struct buffer *oldbuf;
4596 Lisp_Object oldpoint, oldbegv, oldzv;
4597 int old_windows_or_buffers_changed = windows_or_buffers_changed;
4598 int point_at_end = 0;
4599 int zv_at_end = 0;
4600 Lisp_Object old_deactivate_mark, tem;
4601 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
4602
4603 old_deactivate_mark = Vdeactivate_mark;
4604 oldbuf = current_buffer;
4605 Fset_buffer (Fget_buffer_create (build_string ("*Messages*")));
4606 current_buffer->undo_list = Qt;
4607
4608 oldpoint = Fpoint_marker ();
4609 oldbegv = Fpoint_min_marker ();
4610 oldzv = Fpoint_max_marker ();
4611 GCPRO4 (oldpoint, oldbegv, oldzv, old_deactivate_mark);
4612
4613 if (PT == Z)
4614 point_at_end = 1;
4615 if (ZV == Z)
4616 zv_at_end = 1;
4617
4618 BEGV = BEG;
4619 BEGV_BYTE = BEG_BYTE;
4620 ZV = Z;
4621 ZV_BYTE = Z_BYTE;
4622 TEMP_SET_PT_BOTH (Z, Z_BYTE);
4623
4624 /* Insert the string--maybe converting multibyte to single byte
4625 or vice versa, so that all the text fits the buffer. */
4626 if (multibyte
4627 && NILP (current_buffer->enable_multibyte_characters))
4628 {
4629 int i, c, nbytes;
4630 unsigned char work[1];
4631
4632 /* Convert a multibyte string to single-byte
4633 for the *Message* buffer. */
4634 for (i = 0; i < len; i += nbytes)
4635 {
4fdb80f2 4636 c = string_char_and_length (m + i, len - i, &nbytes);
5f5c8ee5
GM
4637 work[0] = (SINGLE_BYTE_CHAR_P (c)
4638 ? c
4639 : multibyte_char_to_unibyte (c, Qnil));
4640 insert_1_both (work, 1, 1, 1, 0, 0);
4641 }
4642 }
4643 else if (! multibyte
4644 && ! NILP (current_buffer->enable_multibyte_characters))
4645 {
4646 int i, c, nbytes;
4647 unsigned char *msg = (unsigned char *) m;
4648 unsigned char *str, work[4];
4649 /* Convert a single-byte string to multibyte
4650 for the *Message* buffer. */
4651 for (i = 0; i < len; i++)
4652 {
4653 c = unibyte_char_to_multibyte (msg[i]);
4654 nbytes = CHAR_STRING (c, work, str);
4655 insert_1_both (work, 1, nbytes, 1, 0, 0);
4656 }
4657 }
4658 else if (len)
4659 insert_1 (m, len, 1, 0, 0);
4660
4661 if (nlflag)
4662 {
4663 int this_bol, this_bol_byte, prev_bol, prev_bol_byte, dup;
4664 insert_1 ("\n", 1, 1, 0, 0);
4665
4666 scan_newline (Z, Z_BYTE, BEG, BEG_BYTE, -2, 0);
4667 this_bol = PT;
4668 this_bol_byte = PT_BYTE;
4669
4670 if (this_bol > BEG)
4671 {
4672 scan_newline (PT, PT_BYTE, BEG, BEG_BYTE, -2, 0);
4673 prev_bol = PT;
4674 prev_bol_byte = PT_BYTE;
4675
4676 dup = message_log_check_duplicate (prev_bol, prev_bol_byte,
4677 this_bol, this_bol_byte);
4678 if (dup)
4679 {
4680 del_range_both (prev_bol, prev_bol_byte,
4681 this_bol, this_bol_byte, 0);
4682 if (dup > 1)
4683 {
4684 char dupstr[40];
4685 int duplen;
4686
4687 /* If you change this format, don't forget to also
4688 change message_log_check_duplicate. */
4689 sprintf (dupstr, " [%d times]", dup);
4690 duplen = strlen (dupstr);
4691 TEMP_SET_PT_BOTH (Z - 1, Z_BYTE - 1);
4692 insert_1 (dupstr, duplen, 1, 0, 1);
4693 }
4694 }
4695 }
4696
4697 if (NATNUMP (Vmessage_log_max))
4698 {
4699 scan_newline (Z, Z_BYTE, BEG, BEG_BYTE,
4700 -XFASTINT (Vmessage_log_max) - 1, 0);
4701 del_range_both (BEG, BEG_BYTE, PT, PT_BYTE, 0);
4702 }
4703 }
4704 BEGV = XMARKER (oldbegv)->charpos;
4705 BEGV_BYTE = marker_byte_position (oldbegv);
4706
4707 if (zv_at_end)
4708 {
4709 ZV = Z;
4710 ZV_BYTE = Z_BYTE;
4711 }
4712 else
4713 {
4714 ZV = XMARKER (oldzv)->charpos;
4715 ZV_BYTE = marker_byte_position (oldzv);
4716 }
4717
4718 if (point_at_end)
4719 TEMP_SET_PT_BOTH (Z, Z_BYTE);
4720 else
4721 /* We can't do Fgoto_char (oldpoint) because it will run some
4722 Lisp code. */
4723 TEMP_SET_PT_BOTH (XMARKER (oldpoint)->charpos,
4724 XMARKER (oldpoint)->bytepos);
4725
4726 UNGCPRO;
4727 free_marker (oldpoint);
4728 free_marker (oldbegv);
4729 free_marker (oldzv);
4730
4731 tem = Fget_buffer_window (Fcurrent_buffer (), Qt);
4732 set_buffer_internal (oldbuf);
4733 if (NILP (tem))
4734 windows_or_buffers_changed = old_windows_or_buffers_changed;
4735 message_log_need_newline = !nlflag;
4736 Vdeactivate_mark = old_deactivate_mark;
4737 }
4738}
4739
4740
4741/* We are at the end of the buffer after just having inserted a newline.
4742 (Note: We depend on the fact we won't be crossing the gap.)
4743 Check to see if the most recent message looks a lot like the previous one.
4744 Return 0 if different, 1 if the new one should just replace it, or a
4745 value N > 1 if we should also append " [N times]". */
4746
4747static int
4748message_log_check_duplicate (prev_bol, prev_bol_byte, this_bol, this_bol_byte)
4749 int prev_bol, this_bol;
4750 int prev_bol_byte, this_bol_byte;
4751{
4752 int i;
4753 int len = Z_BYTE - 1 - this_bol_byte;
4754 int seen_dots = 0;
4755 unsigned char *p1 = BUF_BYTE_ADDRESS (current_buffer, prev_bol_byte);
4756 unsigned char *p2 = BUF_BYTE_ADDRESS (current_buffer, this_bol_byte);
4757
4758 for (i = 0; i < len; i++)
4759 {
4760 if (i >= 3 && p1[i-3] == '.' && p1[i-2] == '.' && p1[i-1] == '.'
4761 && p1[i] != '\n')
4762 seen_dots = 1;
4763 if (p1[i] != p2[i])
4764 return seen_dots;
4765 }
4766 p1 += len;
4767 if (*p1 == '\n')
4768 return 2;
4769 if (*p1++ == ' ' && *p1++ == '[')
4770 {
4771 int n = 0;
4772 while (*p1 >= '0' && *p1 <= '9')
4773 n = n * 10 + *p1++ - '0';
4774 if (strncmp (p1, " times]\n", 8) == 0)
4775 return n+1;
4776 }
4777 return 0;
4778}
4779
4780
4781/* Display an echo area message M with a specified length of LEN
4782 chars. The string may include null characters. If M is 0, clear
4783 out any existing message, and let the mini-buffer text show through.
4784
4785 The buffer M must continue to exist until after the echo area gets
4786 cleared or some other message gets displayed there. This means do
4787 not pass text that is stored in a Lisp string; do not pass text in
4788 a buffer that was alloca'd. */
4789
4790void
4791message2 (m, len, multibyte)
4792 char *m;
4793 int len;
4794 int multibyte;
4795{
4796 /* First flush out any partial line written with print. */
4797 message_log_maybe_newline ();
4798 if (m)
4799 message_dolog (m, len, 1, multibyte);
4800 message2_nolog (m, len, multibyte);
4801}
4802
4803
4804/* The non-logging counterpart of message2. */
4805
4806void
4807message2_nolog (m, len, multibyte)
4808 char *m;
4809 int len;
4810{
4811 message_enable_multibyte = multibyte;
4812
4813 if (noninteractive)
4814 {
4815 if (noninteractive_need_newline)
4816 putc ('\n', stderr);
4817 noninteractive_need_newline = 0;
4818 if (m)
4819 fwrite (m, len, 1, stderr);
4820 if (cursor_in_echo_area == 0)
4821 fprintf (stderr, "\n");
4822 fflush (stderr);
4823 }
4824 /* A null message buffer means that the frame hasn't really been
4825 initialized yet. Error messages get reported properly by
4826 cmd_error, so this must be just an informative message; toss it. */
4827 else if (INTERACTIVE
4828 && selected_frame->glyphs_initialized_p
4829 && FRAME_MESSAGE_BUF (selected_frame))
4830 {
4831 Lisp_Object mini_window;
4832 struct frame *f;
4833
4834 /* Get the frame containing the mini-buffer
4835 that the selected frame is using. */
4836 mini_window = FRAME_MINIBUF_WINDOW (selected_frame);
4837 f = XFRAME (WINDOW_FRAME (XWINDOW (mini_window)));
4838
4839 FRAME_SAMPLE_VISIBILITY (f);
4840 if (FRAME_VISIBLE_P (selected_frame)
4841 && ! FRAME_VISIBLE_P (f))
4842 Fmake_frame_visible (WINDOW_FRAME (XWINDOW (mini_window)));
4843
4844 if (m)
4845 {
c6e89d6c 4846 set_message (m, Qnil, len, multibyte);
5f5c8ee5
GM
4847 if (minibuffer_auto_raise)
4848 Fraise_frame (WINDOW_FRAME (XWINDOW (mini_window)));
4849 }
4850 else
c6e89d6c 4851 clear_message (1, 1);
5f5c8ee5 4852
c6e89d6c 4853 do_pending_window_change (0);
5f5c8ee5 4854 echo_area_display (1);
c6e89d6c 4855 do_pending_window_change (0);
5f5c8ee5
GM
4856 if (frame_up_to_date_hook != 0 && ! gc_in_progress)
4857 (*frame_up_to_date_hook) (f);
4858 }
4859}
4860
4861
c6e89d6c
GM
4862/* Display an echo area message M with a specified length of NBYTES
4863 bytes. The string may include null characters. If M is not a
5f5c8ee5
GM
4864 string, clear out any existing message, and let the mini-buffer
4865 text show through. */
4866
4867void
c6e89d6c 4868message3 (m, nbytes, multibyte)
5f5c8ee5 4869 Lisp_Object m;
c6e89d6c 4870 int nbytes;
5f5c8ee5
GM
4871 int multibyte;
4872{
4873 struct gcpro gcpro1;
4874
4875 GCPRO1 (m);
4876
4877 /* First flush out any partial line written with print. */
4878 message_log_maybe_newline ();
4879 if (STRINGP (m))
c6e89d6c
GM
4880 message_dolog (XSTRING (m)->data, nbytes, 1, multibyte);
4881 message3_nolog (m, nbytes, multibyte);
5f5c8ee5
GM
4882
4883 UNGCPRO;
4884}
4885
4886
4887/* The non-logging version of message3. */
4888
4889void
c6e89d6c 4890message3_nolog (m, nbytes, multibyte)
5f5c8ee5 4891 Lisp_Object m;
c6e89d6c 4892 int nbytes, multibyte;
5f5c8ee5
GM
4893{
4894 message_enable_multibyte = multibyte;
4895
4896 if (noninteractive)
4897 {
4898 if (noninteractive_need_newline)
4899 putc ('\n', stderr);
4900 noninteractive_need_newline = 0;
4901 if (STRINGP (m))
c6e89d6c 4902 fwrite (XSTRING (m)->data, nbytes, 1, stderr);
5f5c8ee5
GM
4903 if (cursor_in_echo_area == 0)
4904 fprintf (stderr, "\n");
4905 fflush (stderr);
4906 }
4907 /* A null message buffer means that the frame hasn't really been
4908 initialized yet. Error messages get reported properly by
4909 cmd_error, so this must be just an informative message; toss it. */
4910 else if (INTERACTIVE
4911 && selected_frame->glyphs_initialized_p
4912 && FRAME_MESSAGE_BUF (selected_frame))
4913 {
4914 Lisp_Object mini_window;
c6e89d6c 4915 Lisp_Object frame;
5f5c8ee5
GM
4916 struct frame *f;
4917
4918 /* Get the frame containing the mini-buffer
4919 that the selected frame is using. */
4920 mini_window = FRAME_MINIBUF_WINDOW (selected_frame);
c6e89d6c
GM
4921 frame = XWINDOW (mini_window)->frame;
4922 f = XFRAME (frame);
5f5c8ee5
GM
4923
4924 FRAME_SAMPLE_VISIBILITY (f);
4925 if (FRAME_VISIBLE_P (selected_frame)
c6e89d6c
GM
4926 && !FRAME_VISIBLE_P (f))
4927 Fmake_frame_visible (frame);
5f5c8ee5 4928
c6e89d6c 4929 if (STRINGP (m) && XSTRING (m)->size)
5f5c8ee5 4930 {
c6e89d6c 4931 set_message (NULL, m, nbytes, multibyte);
468155d7
GM
4932 if (minibuffer_auto_raise)
4933 Fraise_frame (frame);
5f5c8ee5
GM
4934 }
4935 else
c6e89d6c 4936 clear_message (1, 1);
5f5c8ee5 4937
c6e89d6c 4938 do_pending_window_change (0);
5f5c8ee5 4939 echo_area_display (1);
c6e89d6c 4940 do_pending_window_change (0);
5f5c8ee5
GM
4941 if (frame_up_to_date_hook != 0 && ! gc_in_progress)
4942 (*frame_up_to_date_hook) (f);
4943 }
4944}
4945
4946
4947/* Display a null-terminated echo area message M. If M is 0, clear
4948 out any existing message, and let the mini-buffer text show through.
4949
4950 The buffer M must continue to exist until after the echo area gets
4951 cleared or some other message gets displayed there. Do not pass
4952 text that is stored in a Lisp string. Do not pass text in a buffer
4953 that was alloca'd. */
4954
4955void
4956message1 (m)
4957 char *m;
4958{
4959 message2 (m, (m ? strlen (m) : 0), 0);
4960}
4961
4962
4963/* The non-logging counterpart of message1. */
4964
4965void
4966message1_nolog (m)
4967 char *m;
4968{
4969 message2_nolog (m, (m ? strlen (m) : 0), 0);
4970}
4971
4972/* Display a message M which contains a single %s
4973 which gets replaced with STRING. */
4974
4975void
4976message_with_string (m, string, log)
4977 char *m;
4978 Lisp_Object string;
4979 int log;
4980{
4981 if (noninteractive)
4982 {
4983 if (m)
4984 {
4985 if (noninteractive_need_newline)
4986 putc ('\n', stderr);
4987 noninteractive_need_newline = 0;
4988 fprintf (stderr, m, XSTRING (string)->data);
4989 if (cursor_in_echo_area == 0)
4990 fprintf (stderr, "\n");
4991 fflush (stderr);
4992 }
4993 }
4994 else if (INTERACTIVE)
4995 {
4996 /* The frame whose minibuffer we're going to display the message on.
4997 It may be larger than the selected frame, so we need
4998 to use its buffer, not the selected frame's buffer. */
4999 Lisp_Object mini_window;
5000 FRAME_PTR f;
5001
5002 /* Get the frame containing the minibuffer
5003 that the selected frame is using. */
5004 mini_window = FRAME_MINIBUF_WINDOW (selected_frame);
5005 f = XFRAME (WINDOW_FRAME (XWINDOW (mini_window)));
5006
5007 /* A null message buffer means that the frame hasn't really been
5008 initialized yet. Error messages get reported properly by
5009 cmd_error, so this must be just an informative message; toss it. */
5010 if (FRAME_MESSAGE_BUF (f))
5011 {
5012 int len;
5013 char *a[1];
5014 a[0] = (char *) XSTRING (string)->data;
5015
5016 len = doprnt (FRAME_MESSAGE_BUF (f),
5017 FRAME_MESSAGE_BUF_SIZE (f), m, (char *)0, 3, a);
5018
5019 if (log)
5020 message2 (FRAME_MESSAGE_BUF (f), len,
5021 STRING_MULTIBYTE (string));
5022 else
5023 message2_nolog (FRAME_MESSAGE_BUF (f), len,
5024 STRING_MULTIBYTE (string));
5025
5026 /* Print should start at the beginning of the message
5027 buffer next time. */
5028 message_buf_print = 0;
5029 }
5030 }
5031}
5032
5033
5f5c8ee5
GM
5034/* Dump an informative message to the minibuf. If M is 0, clear out
5035 any existing message, and let the mini-buffer text show through. */
5036
5037/* VARARGS 1 */
5038void
5039message (m, a1, a2, a3)
5040 char *m;
5041 EMACS_INT a1, a2, a3;
5042{
5043 if (noninteractive)
5044 {
5045 if (m)
5046 {
5047 if (noninteractive_need_newline)
5048 putc ('\n', stderr);
5049 noninteractive_need_newline = 0;
5050 fprintf (stderr, m, a1, a2, a3);
5051 if (cursor_in_echo_area == 0)
5052 fprintf (stderr, "\n");
5053 fflush (stderr);
5054 }
5055 }
5056 else if (INTERACTIVE)
5057 {
5058 /* The frame whose mini-buffer we're going to display the message
5059 on. It may be larger than the selected frame, so we need to
5060 use its buffer, not the selected frame's buffer. */
5061 Lisp_Object mini_window;
5062 struct frame *f;
5063
5064 /* Get the frame containing the mini-buffer
5065 that the selected frame is using. */
5066 mini_window = FRAME_MINIBUF_WINDOW (selected_frame);
5067 f = XFRAME (WINDOW_FRAME (XWINDOW (mini_window)));
5068
5069 /* A null message buffer means that the frame hasn't really been
5070 initialized yet. Error messages get reported properly by
5071 cmd_error, so this must be just an informative message; toss
5072 it. */
5073 if (FRAME_MESSAGE_BUF (f))
5074 {
5075 if (m)
5076 {
5077 int len;
5078#ifdef NO_ARG_ARRAY
5079 char *a[3];
5080 a[0] = (char *) a1;
5081 a[1] = (char *) a2;
5082 a[2] = (char *) a3;
5083
5084 len = doprnt (FRAME_MESSAGE_BUF (f),
5085 FRAME_MESSAGE_BUF_SIZE (f), m, (char *)0, 3, a);
5086#else
5087 len = doprnt (FRAME_MESSAGE_BUF (f),
5088 FRAME_MESSAGE_BUF_SIZE (f), m, (char *)0, 3,
5089 (char **) &a1);
5090#endif /* NO_ARG_ARRAY */
5091
5092 message2 (FRAME_MESSAGE_BUF (f), len, 0);
5093 }
5094 else
5095 message1 (0);
5096
5097 /* Print should start at the beginning of the message
5098 buffer next time. */
5099 message_buf_print = 0;
5100 }
5101 }
5102}
5103
5104
5105/* The non-logging version of message. */
5106
5107void
5108message_nolog (m, a1, a2, a3)
5109 char *m;
5110 EMACS_INT a1, a2, a3;
5111{
5112 Lisp_Object old_log_max;
5113 old_log_max = Vmessage_log_max;
5114 Vmessage_log_max = Qnil;
5115 message (m, a1, a2, a3);
5116 Vmessage_log_max = old_log_max;
5117}
5118
5119
c6e89d6c
GM
5120/* Display the current message in the current mini-buffer. This is
5121 only called from error handlers in process.c, and is not time
5122 critical. */
5f5c8ee5
GM
5123
5124void
5125update_echo_area ()
5126{
c6e89d6c
GM
5127 if (!NILP (echo_area_buffer[0]))
5128 {
5129 Lisp_Object string;
5130 string = Fcurrent_message ();
5131 message3 (string, XSTRING (string)->size,
5132 !NILP (current_buffer->enable_multibyte_characters));
5133 }
5134}
5135
5136
5137/* Call FN with args A1..A5 with either the current or last displayed
5138 echo_area_buffer as current buffer.
5139
5140 WHICH zero means use the current message buffer
5141 echo_area_buffer[0]. If that is nil, choose a suitable buffer
5142 from echo_buffer[] and clear it.
5143
5144 WHICH > 0 means use echo_area_buffer[1]. If that is nil, choose a
5145 suitable buffer from echo_buffer[] and clear it.
5146
5147 If WHICH < 0, set echo_area_buffer[1] to echo_area_buffer[0], so
5148 that the current message becomes the last displayed one, make
5149 choose a suitable buffer for echo_area_buffer[0], and clear it.
5150
5151 Value is what FN returns. */
5152
5153static int
5154with_echo_area_buffer (w, which, fn, a1, a2, a3, a4, a5)
5155 struct window *w;
5156 int which;
5157 int (*fn) ();
5158 int a1, a2, a3, a4, a5;
5159{
5160 Lisp_Object buffer;
5161 int i, this_one, the_other, clear_buffer_p, rc;
5162 int count = specpdl_ptr - specpdl;
5163
5164 /* If buffers aren't life, make new ones. */
5165 for (i = 0; i < 2; ++i)
5166 if (!BUFFERP (echo_buffer[i])
5167 || NILP (XBUFFER (echo_buffer[i])->name))
5168 {
5169 char name[30];
5170 sprintf (name, " *Echo Area %d*", i);
5171 echo_buffer[i] = Fget_buffer_create (build_string (name));
5172 }
5173
5174 clear_buffer_p = 0;
5175
5176 if (which == 0)
5177 this_one = 0, the_other = 1;
5178 else if (which > 0)
5179 this_one = 1, the_other = 0;
5f5c8ee5 5180 else
c6e89d6c
GM
5181 {
5182 this_one = 0, the_other = 1;
5183 clear_buffer_p = 1;
5184
5185 /* We need a fresh one in case the current echo buffer equals
5186 the one containing the last displayed echo area message. */
5187 if (!NILP (echo_area_buffer[this_one])
5188 && EQ (echo_area_buffer[this_one], echo_area_buffer[the_other]))
5189 echo_area_buffer[this_one] = Qnil;
c6e89d6c
GM
5190 }
5191
5192 /* Choose a suitable buffer from echo_buffer[] is we don't
5193 have one. */
5194 if (NILP (echo_area_buffer[this_one]))
5195 {
5196 echo_area_buffer[this_one]
5197 = (EQ (echo_area_buffer[the_other], echo_buffer[this_one])
5198 ? echo_buffer[the_other]
5199 : echo_buffer[this_one]);
5200 clear_buffer_p = 1;
5201 }
5202
5203 buffer = echo_area_buffer[this_one];
5204
5205 record_unwind_protect (unwind_with_echo_area_buffer,
5206 with_echo_area_buffer_unwind_data (w));
5207
5208 /* Make the echo area buffer current. Note that for display
5209 purposes, it is not necessary that the displayed window's buffer
5210 == current_buffer, except for text property lookup. So, let's
5211 only set that buffer temporarily here without doing a full
5212 Fset_window_buffer. We must also change w->pointm, though,
5213 because otherwise an assertions in unshow_buffer fails, and Emacs
5214 aborts. */
9142dd5b 5215 set_buffer_internal_1 (XBUFFER (buffer));
c6e89d6c
GM
5216 if (w)
5217 {
5218 w->buffer = buffer;
5219 set_marker_both (w->pointm, buffer, BEG, BEG_BYTE);
5220 }
5221 current_buffer->truncate_lines = Qnil;
5222 current_buffer->undo_list = Qt;
5223 current_buffer->read_only = Qnil;
5224
5225 if (clear_buffer_p && Z > BEG)
5226 del_range (BEG, Z);
5227
5228 xassert (BEGV >= BEG);
5229 xassert (ZV <= Z && ZV >= BEGV);
5230
5231 rc = fn (a1, a2, a3, a4, a5);
5232
5233 xassert (BEGV >= BEG);
5234 xassert (ZV <= Z && ZV >= BEGV);
5235
5236 unbind_to (count, Qnil);
5237 return rc;
5f5c8ee5
GM
5238}
5239
5240
c6e89d6c
GM
5241/* Save state that should be preserved around the call to the function
5242 FN called in with_echo_area_buffer. */
5f5c8ee5 5243
c6e89d6c
GM
5244static Lisp_Object
5245with_echo_area_buffer_unwind_data (w)
5246 struct window *w;
5f5c8ee5 5247{
c6e89d6c
GM
5248 int i = 0;
5249 Lisp_Object vector;
5f5c8ee5 5250
c6e89d6c
GM
5251 /* Reduce consing by keeping one vector in
5252 Vwith_echo_area_save_vector. */
5253 vector = Vwith_echo_area_save_vector;
5254 Vwith_echo_area_save_vector = Qnil;
5255
5256 if (NILP (vector))
9142dd5b 5257 vector = Fmake_vector (make_number (7), Qnil);
c6e89d6c
GM
5258
5259 XSETBUFFER (XVECTOR (vector)->contents[i], current_buffer); ++i;
5260 XVECTOR (vector)->contents[i++] = Vdeactivate_mark;
5261 XVECTOR (vector)->contents[i++] = make_number (windows_or_buffers_changed);
c6e89d6c
GM
5262
5263 if (w)
5264 {
5265 XSETWINDOW (XVECTOR (vector)->contents[i], w); ++i;
5266 XVECTOR (vector)->contents[i++] = w->buffer;
5267 XVECTOR (vector)->contents[i++]
5268 = make_number (XMARKER (w->pointm)->charpos);
5269 XVECTOR (vector)->contents[i++]
5270 = make_number (XMARKER (w->pointm)->bytepos);
5271 }
5272 else
5273 {
5274 int end = i + 4;
5275 while (i < end)
5276 XVECTOR (vector)->contents[i++] = Qnil;
5277 }
5f5c8ee5 5278
c6e89d6c
GM
5279 xassert (i == XVECTOR (vector)->size);
5280 return vector;
5281}
5f5c8ee5 5282
5f5c8ee5 5283
c6e89d6c
GM
5284/* Restore global state from VECTOR which was created by
5285 with_echo_area_buffer_unwind_data. */
5286
5287static Lisp_Object
5288unwind_with_echo_area_buffer (vector)
5289 Lisp_Object vector;
5290{
5291 int i = 0;
5292
9142dd5b 5293 set_buffer_internal_1 (XBUFFER (XVECTOR (vector)->contents[i])); ++i;
c6e89d6c
GM
5294 Vdeactivate_mark = XVECTOR (vector)->contents[i]; ++i;
5295 windows_or_buffers_changed = XFASTINT (XVECTOR (vector)->contents[i]); ++i;
c6e89d6c
GM
5296
5297 if (WINDOWP (XVECTOR (vector)->contents[i]))
5298 {
5299 struct window *w;
5300 Lisp_Object buffer, charpos, bytepos;
5301
5302 w = XWINDOW (XVECTOR (vector)->contents[i]); ++i;
5303 buffer = XVECTOR (vector)->contents[i]; ++i;
5304 charpos = XVECTOR (vector)->contents[i]; ++i;
5305 bytepos = XVECTOR (vector)->contents[i]; ++i;
5306
5307 w->buffer = buffer;
5308 set_marker_both (w->pointm, buffer,
5309 XFASTINT (charpos), XFASTINT (bytepos));
5310 }
5311
5312 Vwith_echo_area_save_vector = vector;
5313 return Qnil;
5314}
5315
5316
5317/* Set up the echo area for use by print functions. MULTIBYTE_P
5318 non-zero means we will print multibyte. */
5319
5320void
5321setup_echo_area_for_printing (multibyte_p)
5322 int multibyte_p;
5323{
5324 if (!message_buf_print)
5325 {
5326 /* A message has been output since the last time we printed.
5327 Choose a fresh echo area buffer. */
5328 if (EQ (echo_area_buffer[1], echo_buffer[0]))
5329 echo_area_buffer[0] = echo_buffer[1];
5330 else
5331 echo_area_buffer[0] = echo_buffer[0];
5332
5333 /* Switch to that buffer and clear it. */
5334 set_buffer_internal (XBUFFER (echo_area_buffer[0]));
5335 if (Z > BEG)
5336 del_range (BEG, Z);
5337 TEMP_SET_PT_BOTH (BEG, BEG_BYTE);
5338
5339 /* Set up the buffer for the multibyteness we need. */
5340 if (multibyte_p
5341 != !NILP (current_buffer->enable_multibyte_characters))
5342 Fset_buffer_multibyte (multibyte_p ? Qt : Qnil);
5343
5344 /* Raise the frame containing the echo area. */
5345 if (minibuffer_auto_raise)
5346 {
5347 Lisp_Object mini_window;
5348 mini_window = FRAME_MINIBUF_WINDOW (selected_frame);
5349 Fraise_frame (WINDOW_FRAME (XWINDOW (mini_window)));
5350 }
5351
5352 message_buf_print = 1;
5353 }
5354 else if (current_buffer != XBUFFER (echo_area_buffer[0]))
5355 /* Someone switched buffers between print requests. */
5356 set_buffer_internal (XBUFFER (echo_area_buffer[0]));
5357}
5358
5359
dd2eb166
GM
5360/* Display an echo area message in window W. Value is non-zero if W's
5361 height is changed. If display_last_displayed_message_p is
5362 non-zero, display the message that was last displayed, otherwise
5363 display the current message. */
c6e89d6c
GM
5364
5365static int
5366display_echo_area (w)
5367 struct window *w;
5368{
dd2eb166
GM
5369 int i, no_message_p, window_height_changed_p;
5370
5371 /* If there is no message, we must call display_echo_area_1
5372 nevertheless because it resizes the window. But we will have to
5373 reset the echo_area_buffer in question to nil at the end because
5374 with_echo_area_buffer will sets it to an empty buffer. */
5375 i = display_last_displayed_message_p ? 1 : 0;
5376 no_message_p = NILP (echo_area_buffer[i]);
5377
5378 window_height_changed_p
5379 = with_echo_area_buffer (w, display_last_displayed_message_p,
5380 (int (*) ()) display_echo_area_1, w);
5381
5382 if (no_message_p)
5383 echo_area_buffer[i] = Qnil;
5384
5385 return window_height_changed_p;
c6e89d6c
GM
5386}
5387
5388
5389/* Helper for display_echo_area. Display the current buffer which
5390 contains the current echo area message in window W, a mini-window.
5391 Change the height of W so that all of the message is displayed.
5392 Value is non-zero if height of W was changed. */
5393
5394static int
5395display_echo_area_1 (w)
5396 struct window *w;
5397{
5398 Lisp_Object window;
5399 struct frame *f = XFRAME (w->frame);
5400 struct text_pos start;
5401 int window_height_changed_p = 0;
5402
5403 /* Do this before displaying, so that we have a large enough glyph
5404 matrix for the display. */
92a90e89 5405 window_height_changed_p = resize_mini_window (w, 0);
c6e89d6c
GM
5406
5407 /* Display. */
5408 clear_glyph_matrix (w->desired_matrix);
5409 XSETWINDOW (window, w);
5410 SET_TEXT_POS (start, BEG, BEG_BYTE);
5411 try_window (window, start);
5412
c6e89d6c
GM
5413 return window_height_changed_p;
5414}
5415
5416
92a90e89
GM
5417/* Resize the echo area window to exactly the size needed for the
5418 currently displayed message, if there is one. */
5419
5420void
5421resize_echo_area_axactly ()
5422{
5423 if (BUFFERP (echo_area_buffer[0])
5424 && WINDOWP (echo_area_window))
5425 {
5426 struct window *w = XWINDOW (echo_area_window);
5427 int resized_p;
5428
5429 resized_p = with_echo_area_buffer (w, 0,
5430 (int (*) ()) resize_mini_window,
5431 w, 1);
5432 if (resized_p)
5433 {
5434 ++windows_or_buffers_changed;
5435 ++update_mode_lines;
5436 redisplay_internal (0);
5437 }
5438 }
5439}
5440
5441
5442/* Resize mini-window W to fit the size of its contents. EXACT:P
5443 means size the window exactly to the size needed. Otherwise, it's
5444 only enlarged until W's buffer is empty. Value is non-zero if
5445 the window height has been changed. */
c6e89d6c 5446
9472f927 5447int
92a90e89 5448resize_mini_window (w, exact_p)
c6e89d6c 5449 struct window *w;
92a90e89 5450 int exact_p;
c6e89d6c
GM
5451{
5452 struct frame *f = XFRAME (w->frame);
5453 int window_height_changed_p = 0;
5454
5455 xassert (MINI_WINDOW_P (w));
97cafc0f
GM
5456
5457 /* Nil means don't try to resize. */
5458 if (NILP (Vmax_mini_window_height))
5459 return 0;
c6e89d6c
GM
5460
5461 if (!FRAME_MINIBUF_ONLY_P (f))
5462 {
5463 struct it it;
dd2eb166
GM
5464 struct window *root = XWINDOW (FRAME_ROOT_WINDOW (f));
5465 int total_height = XFASTINT (root->height) + XFASTINT (w->height);
5466 int height, max_height;
5467 int unit = CANON_Y_UNIT (f);
5468 struct text_pos start;
9142dd5b 5469
c6e89d6c 5470 init_iterator (&it, w, BEGV, BEGV_BYTE, NULL, DEFAULT_FACE_ID);
c6e89d6c 5471
dd2eb166
GM
5472 /* Compute the max. number of lines specified by the user. */
5473 if (FLOATP (Vmax_mini_window_height))
5474 max_height = XFLOATINT (Vmax_mini_window_height) * total_height;
5475 else if (INTEGERP (Vmax_mini_window_height))
5476 max_height = XINT (Vmax_mini_window_height);
97cafc0f
GM
5477 else
5478 max_height = total_height / 4;
dd2eb166
GM
5479
5480 /* Correct that max. height if it's bogus. */
5481 max_height = max (1, max_height);
5482 max_height = min (total_height, max_height);
5483
5484 /* Find out the height of the text in the window. */
5485 move_it_to (&it, ZV, -1, -1, -1, MOVE_TO_POS);
5486 height = (unit - 1 + it.current_y + last_height) / unit;
5487 height = max (1, height);
5488
5489 /* Compute a suitable window start. */
5490 if (height > max_height)
5491 {
5492 height = max_height;
5493 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID);
5494 move_it_vertically_backward (&it, (height - 1) * unit);
5495 start = it.current.pos;
5496 }
5497 else
5498 SET_TEXT_POS (start, BEGV, BEGV_BYTE);
5499 SET_MARKER_FROM_TEXT_POS (w->start, start);
c59c668a 5500
9472f927
GM
5501 /* Let it grow only, until we display an empty message, in which
5502 case the window shrinks again. */
5503 if (height > XFASTINT (w->height)
92a90e89 5504 || exact_p
9472f927 5505 || BEGV == ZV)
dd2eb166 5506 {
9472f927 5507 Lisp_Object old_selected_window;
c59c668a 5508
9472f927
GM
5509 freeze_window_starts (f, height > XFASTINT (w->height));
5510 old_selected_window = selected_window;
5511 XSETWINDOW (selected_window, w);
5512 change_window_height (height - XFASTINT (w->height), 0);
5513 selected_window = old_selected_window;
9142dd5b
GM
5514 window_height_changed_p = 1;
5515 }
c6e89d6c
GM
5516 }
5517
5518 return window_height_changed_p;
5519}
5520
5521
5522/* Value is the current message, a string, or nil if there is no
5523 current message. */
5524
5525Lisp_Object
5526current_message ()
5527{
5528 Lisp_Object msg;
5529
5530 if (NILP (echo_area_buffer[0]))
5531 msg = Qnil;
5532 else
5533 {
5534 with_echo_area_buffer (0, 0, (int (*) ()) current_message_1, &msg);
5535 if (NILP (msg))
5536 echo_area_buffer[0] = Qnil;
5537 }
5538
5539 return msg;
5540}
5541
5542
5543static int
5544current_message_1 (msg)
5545 Lisp_Object *msg;
5546{
5547 if (Z > BEG)
5548 *msg = make_buffer_string (BEG, Z, 1);
5549 else
5550 *msg = Qnil;
5551 return 0;
5552}
5553
5554
5555/* Push the current message on Vmessage_stack for later restauration
5556 by restore_message. Value is non-zero if the current message isn't
5557 empty. This is a relatively infrequent operation, so it's not
5558 worth optimizing. */
5559
5560int
5561push_message ()
5562{
5563 Lisp_Object msg;
5564 msg = current_message ();
5565 Vmessage_stack = Fcons (msg, Vmessage_stack);
5566 return STRINGP (msg);
5567}
5568
5569
5570/* Restore message display from the top of Vmessage_stack. */
5571
5572void
5573restore_message ()
5574{
5575 Lisp_Object msg;
5576
5577 xassert (CONSP (Vmessage_stack));
5578 msg = XCAR (Vmessage_stack);
5579 if (STRINGP (msg))
5580 message3_nolog (msg, STRING_BYTES (XSTRING (msg)), STRING_MULTIBYTE (msg));
5581 else
5582 message3_nolog (msg, 0, 0);
5583}
5584
5585
5586/* Pop the top-most entry off Vmessage_stack. */
5587
5588void
5589pop_message ()
5590{
5591 xassert (CONSP (Vmessage_stack));
5592 Vmessage_stack = XCDR (Vmessage_stack);
5593}
5594
5595
5596/* Check that Vmessage_stack is nil. Called from emacs.c when Emacs
5597 exits. If the stack is not empty, we have a missing pop_message
5598 somewhere. */
5599
5600void
5601check_message_stack ()
5602{
5603 if (!NILP (Vmessage_stack))
5604 abort ();
5605}
5606
5607
5608/* Truncate to NCHARS what will be displayed in the echo area the next
5609 time we display it---but don't redisplay it now. */
5610
5611void
5612truncate_echo_area (nchars)
5613 int nchars;
5614{
5615 if (nchars == 0)
5616 echo_area_buffer[0] = Qnil;
5617 /* A null message buffer means that the frame hasn't really been
5618 initialized yet. Error messages get reported properly by
5619 cmd_error, so this must be just an informative message; toss it. */
5620 else if (!noninteractive
5621 && INTERACTIVE
5622 && FRAME_MESSAGE_BUF (selected_frame)
5623 && !NILP (echo_area_buffer[0]))
5624 with_echo_area_buffer (0, 0, (int (*) ()) truncate_message_1, nchars);
5625}
5626
5627
5628/* Helper function for truncate_echo_area. Truncate the current
5629 message to at most NCHARS characters. */
5630
5631static int
5632truncate_message_1 (nchars)
5633 int nchars;
5634{
5635 if (BEG + nchars < Z)
5636 del_range (BEG + nchars, Z);
5637 if (Z == BEG)
5638 echo_area_buffer[0] = Qnil;
5639 return 0;
5640}
5641
5642
5643/* Set the current message to a substring of S or STRING.
5644
5645 If STRING is a Lisp string, set the message to the first NBYTES
5646 bytes from STRING. NBYTES zero means use the whole string. If
5647 STRING is multibyte, the message will be displayed multibyte.
5648
5649 If S is not null, set the message to the first LEN bytes of S. LEN
5650 zero means use the whole string. MULTIBYTE_P non-zero means S is
5651 multibyte. Display the message multibyte in that case. */
5652
5653void
5654set_message (s, string, nbytes, multibyte_p)
5655 char *s;
5656 Lisp_Object string;
5657 int nbytes;
5658{
5659 message_enable_multibyte
5660 = ((s && multibyte_p)
5661 || (STRINGP (string) && STRING_MULTIBYTE (string)));
5662
5663 with_echo_area_buffer (0, -1, (int (*) ()) set_message_1,
5664 s, string, nbytes, multibyte_p);
5665 message_buf_print = 0;
5666}
5667
5668
5669/* Helper function for set_message. Arguments have the same meaning
5670 as there. This function is called with the echo area buffer being
5671 current. */
5672
5673static int
5674set_message_1 (s, string, nbytes, multibyte_p)
5675 char *s;
5676 Lisp_Object string;
5677 int nbytes, multibyte_p;
5678{
5679 xassert (BEG == Z);
5680
5681 /* Change multibyteness of the echo buffer appropriately. */
5682 if (message_enable_multibyte
5683 != !NILP (current_buffer->enable_multibyte_characters))
5684 Fset_buffer_multibyte (message_enable_multibyte ? Qt : Qnil);
5685
5686 /* Insert new message at BEG. */
5687 TEMP_SET_PT_BOTH (BEG, BEG_BYTE);
5688
5689 if (STRINGP (string))
5690 {
5691 int nchars;
5692
5693 if (nbytes == 0)
5694 nbytes = XSTRING (string)->size_byte;
5695 nchars = string_byte_to_char (string, nbytes);
5696
5697 /* This function takes care of single/multibyte conversion. We
5698 just have to ensure that the echo area buffer has the right
5699 setting of enable_multibyte_characters. */
5700 insert_from_string (string, 0, 0, nchars, nbytes, 1);
5701 }
5702 else if (s)
5703 {
5704 if (nbytes == 0)
5705 nbytes = strlen (s);
5706
5707 if (multibyte_p && NILP (current_buffer->enable_multibyte_characters))
5708 {
5709 /* Convert from multi-byte to single-byte. */
5710 int i, c, n;
5711 unsigned char work[1];
5712
5713 /* Convert a multibyte string to single-byte. */
5714 for (i = 0; i < nbytes; i += n)
5715 {
5716 c = string_char_and_length (s + i, nbytes - i, &n);
5717 work[0] = (SINGLE_BYTE_CHAR_P (c)
5718 ? c
5719 : multibyte_char_to_unibyte (c, Qnil));
5720 insert_1_both (work, 1, 1, 1, 0, 0);
5721 }
5722 }
5723 else if (!multibyte_p
5724 && !NILP (current_buffer->enable_multibyte_characters))
5725 {
5726 /* Convert from single-byte to multi-byte. */
5727 int i, c, n;
5728 unsigned char *msg = (unsigned char *) s;
5729 unsigned char *str, work[4];
5730
5731 /* Convert a single-byte string to multibyte. */
5732 for (i = 0; i < nbytes; i++)
5733 {
5734 c = unibyte_char_to_multibyte (msg[i]);
5735 n = CHAR_STRING (c, work, str);
5736 insert_1_both (work, 1, n, 1, 0, 0);
5737 }
5738 }
5739 else
5740 insert_1 (s, nbytes, 1, 0, 0);
5741 }
5742
5743 return 0;
5744}
5745
5746
5747/* Clear messages. CURRENT_P non-zero means clear the current
5748 message. LAST_DISPLAYED_P non-zero means clear the message
5749 last displayed. */
5750
5751void
5752clear_message (current_p, last_displayed_p)
5753 int current_p, last_displayed_p;
5754{
5755 if (current_p)
5756 echo_area_buffer[0] = Qnil;
5757
5758 if (last_displayed_p)
5759 echo_area_buffer[1] = Qnil;
5760
5761 message_buf_print = 0;
5762}
5763
5764/* Clear garbaged frames.
5765
5766 This function is used where the old redisplay called
5767 redraw_garbaged_frames which in turn called redraw_frame which in
5768 turn called clear_frame. The call to clear_frame was a source of
5769 flickering. I believe a clear_frame is not necessary. It should
5770 suffice in the new redisplay to invalidate all current matrices,
5771 and ensure a complete redisplay of all windows. */
5772
5773static void
5774clear_garbaged_frames ()
5775{
5f5c8ee5
GM
5776 if (frame_garbaged)
5777 {
5f5c8ee5
GM
5778 Lisp_Object tail, frame;
5779
5780 FOR_EACH_FRAME (tail, frame)
5781 {
5782 struct frame *f = XFRAME (frame);
5783
5784 if (FRAME_VISIBLE_P (f) && FRAME_GARBAGED_P (f))
5785 {
5786 clear_current_matrices (f);
5787 f->garbaged = 0;
5788 }
5789 }
5790
5791 frame_garbaged = 0;
5792 ++windows_or_buffers_changed;
5793 }
c6e89d6c 5794}
5f5c8ee5 5795
5f5c8ee5 5796
c6e89d6c
GM
5797/* Redisplay the echo area of selected_frame. If UPDATE_FRAME_P is
5798 non-zero update selected_frame. Value is non-zero if the
5799 mini-windows height has been changed. */
5f5c8ee5 5800
c6e89d6c
GM
5801static int
5802echo_area_display (update_frame_p)
5803 int update_frame_p;
5804{
5805 Lisp_Object mini_window;
5806 struct window *w;
5807 struct frame *f;
5808 int window_height_changed_p = 0;
5809
5810 mini_window = FRAME_MINIBUF_WINDOW (selected_frame);
5811 w = XWINDOW (mini_window);
5812 f = XFRAME (WINDOW_FRAME (w));
5813
5814 /* Don't display if frame is invisible or not yet initialized. */
5815 if (!FRAME_VISIBLE_P (f) || !f->glyphs_initialized_p)
5816 return 0;
5f5c8ee5 5817
c6e89d6c
GM
5818 /* When Emacs starts, selected_frame may be a visible terminal
5819 frame, even if we run under a window system. If we let this
5820 through, a message would be displayed on the terminal. */
5821#ifdef HAVE_WINDOW_SYSTEM
5822 if (!inhibit_window_system && !FRAME_WINDOW_P (selected_frame))
5823 return 0;
5824#endif /* HAVE_WINDOW_SYSTEM */
5825
5826 /* Redraw garbaged frames. */
5827 if (frame_garbaged)
5828 clear_garbaged_frames ();
5829
5830 if (!NILP (echo_area_buffer[0]) || minibuf_level == 0)
5831 {
5832 echo_area_window = mini_window;
5833 window_height_changed_p = display_echo_area (w);
5f5c8ee5 5834 w->must_be_updated_p = 1;
c59c668a 5835
5f5c8ee5
GM
5836 if (update_frame_p)
5837 {
c59c668a
GM
5838 /* Not called from redisplay_internal. If we changed
5839 window configuration, we must redisplay thoroughly.
5840 Otherwise, we can do with updating what we displayed
5841 above. */
5842 if (window_height_changed_p)
5843 {
5844 ++windows_or_buffers_changed;
5845 ++update_mode_lines;
5846 redisplay_internal (0);
5847 }
5848 else if (FRAME_WINDOW_P (f))
5f5c8ee5
GM
5849 {
5850 update_single_window (w, 1);
5851 rif->flush_display (f);
5852 }
5853 else
5854 update_frame (f, 1, 1);
5855 }
5856 }
5857 else if (!EQ (mini_window, selected_window))
5858 windows_or_buffers_changed++;
c59c668a
GM
5859
5860 /* Last displayed message is now the current message. */
dd2eb166
GM
5861 echo_area_buffer[1] = echo_area_buffer[0];
5862
5f5c8ee5
GM
5863 /* Prevent redisplay optimization in redisplay_internal by resetting
5864 this_line_start_pos. This is done because the mini-buffer now
5865 displays the message instead of its buffer text. */
5866 if (EQ (mini_window, selected_window))
5867 CHARPOS (this_line_start_pos) = 0;
c6e89d6c
GM
5868
5869 return window_height_changed_p;
5f5c8ee5
GM
5870}
5871
5872
5873\f
5874/***********************************************************************
5875 Frame Titles
5876 ***********************************************************************/
5877
5878
5879#ifdef HAVE_WINDOW_SYSTEM
5880
5881/* A buffer for constructing frame titles in it; allocated from the
5882 heap in init_xdisp and resized as needed in store_frame_title_char. */
5883
5884static char *frame_title_buf;
5885
5886/* The buffer's end, and a current output position in it. */
5887
5888static char *frame_title_buf_end;
5889static char *frame_title_ptr;
5890
5891
5892/* Store a single character C for the frame title in frame_title_buf.
5893 Re-allocate frame_title_buf if necessary. */
5894
5895static void
5896store_frame_title_char (c)
5897 char c;
5898{
5899 /* If output position has reached the end of the allocated buffer,
5900 double the buffer's size. */
5901 if (frame_title_ptr == frame_title_buf_end)
5902 {
5903 int len = frame_title_ptr - frame_title_buf;
5904 int new_size = 2 * len * sizeof *frame_title_buf;
5905 frame_title_buf = (char *) xrealloc (frame_title_buf, new_size);
5906 frame_title_buf_end = frame_title_buf + new_size;
5907 frame_title_ptr = frame_title_buf + len;
5908 }
5909
5910 *frame_title_ptr++ = c;
5911}
5912
5913
5914/* Store part of a frame title in frame_title_buf, beginning at
5915 frame_title_ptr. STR is the string to store. Do not copy more
5916 than PRECISION number of bytes from STR; PRECISION <= 0 means copy
5917 the whole string. Pad with spaces until FIELD_WIDTH number of
5918 characters have been copied; FIELD_WIDTH <= 0 means don't pad.
5919 Called from display_mode_element when it is used to build a frame
5920 title. */
5921
5922static int
5923store_frame_title (str, field_width, precision)
5924 unsigned char *str;
5925 int field_width, precision;
5926{
5927 int n = 0;
5928
5929 /* Copy at most PRECISION chars from STR. */
5930 while ((precision <= 0 || n < precision)
5931 && *str)
5932 {
5933 store_frame_title_char (*str++);
5934 ++n;
5935 }
5936
5937 /* Fill up with spaces until FIELD_WIDTH reached. */
5938 while (field_width > 0
5939 && n < field_width)
5940 {
5941 store_frame_title_char (' ');
5942 ++n;
5943 }
5944
5945 return n;
5946}
5947
5948
5949/* Set the title of FRAME, if it has changed. The title format is
5950 Vicon_title_format if FRAME is iconified, otherwise it is
5951 frame_title_format. */
5952
5953static void
5954x_consider_frame_title (frame)
5955 Lisp_Object frame;
5956{
5957 struct frame *f = XFRAME (frame);
5958
5959 if (FRAME_WINDOW_P (f)
5960 || FRAME_MINIBUF_ONLY_P (f)
5961 || f->explicit_name)
5962 {
5963 /* Do we have more than one visible frame on this X display? */
5964 Lisp_Object tail;
5965 Lisp_Object fmt;
5966 struct buffer *obuf;
5967 int len;
5968 struct it it;
5969
9472f927 5970 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
5f5c8ee5 5971 {
9472f927 5972 struct frame *tf = XFRAME (XCAR (tail));
5f5c8ee5
GM
5973
5974 if (tf != f
5975 && FRAME_KBOARD (tf) == FRAME_KBOARD (f)
5976 && !FRAME_MINIBUF_ONLY_P (tf)
5977 && (FRAME_VISIBLE_P (tf) || FRAME_ICONIFIED_P (tf)))
5978 break;
5979 }
5980
5981 /* Set global variable indicating that multiple frames exist. */
5982 multiple_frames = CONSP (tail);
5983
5984 /* Switch to the buffer of selected window of the frame. Set up
5985 frame_title_ptr so that display_mode_element will output into it;
5986 then display the title. */
5987 obuf = current_buffer;
5988 Fset_buffer (XWINDOW (f->selected_window)->buffer);
5989 fmt = FRAME_ICONIFIED_P (f) ? Vicon_title_format : Vframe_title_format;
5990 frame_title_ptr = frame_title_buf;
5991 init_iterator (&it, XWINDOW (f->selected_window), -1, -1,
5992 NULL, DEFAULT_FACE_ID);
5993 len = display_mode_element (&it, 0, -1, -1, fmt);
5994 frame_title_ptr = NULL;
5995 set_buffer_internal (obuf);
5996
5997 /* Set the title only if it's changed. This avoids consing in
5998 the common case where it hasn't. (If it turns out that we've
5999 already wasted too much time by walking through the list with
6000 display_mode_element, then we might need to optimize at a
6001 higher level than this.) */
6002 if (! STRINGP (f->name)
6003 || STRING_BYTES (XSTRING (f->name)) != len
6004 || bcmp (frame_title_buf, XSTRING (f->name)->data, len) != 0)
6005 x_implicitly_set_name (f, make_string (frame_title_buf, len), Qnil);
6006 }
6007}
6008
6009#else /* not HAVE_WINDOW_SYSTEM */
6010
6011#define frame_title_ptr ((char *)0)
6012#define store_frame_title(str, mincol, maxcol) 0
6013
6014#endif /* not HAVE_WINDOW_SYSTEM */
6015
6016
6017
6018\f
6019/***********************************************************************
6020 Menu Bars
6021 ***********************************************************************/
6022
6023
6024/* Prepare for redisplay by updating menu-bar item lists when
6025 appropriate. This can call eval. */
6026
6027void
6028prepare_menu_bars ()
6029{
6030 int all_windows;
6031 struct gcpro gcpro1, gcpro2;
6032 struct frame *f;
6033 struct frame *tooltip_frame;
6034
6035#ifdef HAVE_X_WINDOWS
6036 tooltip_frame = tip_frame;
6037#else
6038 tooltip_frame = NULL;
6039#endif
6040
6041 /* Update all frame titles based on their buffer names, etc. We do
6042 this before the menu bars so that the buffer-menu will show the
6043 up-to-date frame titles. */
6044#ifdef HAVE_WINDOW_SYSTEM
6045 if (windows_or_buffers_changed || update_mode_lines)
6046 {
6047 Lisp_Object tail, frame;
6048
6049 FOR_EACH_FRAME (tail, frame)
6050 {
6051 f = XFRAME (frame);
6052 if (f != tooltip_frame
6053 && (FRAME_VISIBLE_P (f) || FRAME_ICONIFIED_P (f)))
6054 x_consider_frame_title (frame);
6055 }
6056 }
6057#endif /* HAVE_WINDOW_SYSTEM */
6058
6059 /* Update the menu bar item lists, if appropriate. This has to be
6060 done before any actual redisplay or generation of display lines. */
6061 all_windows = (update_mode_lines
6062 || buffer_shared > 1
6063 || windows_or_buffers_changed);
6064 if (all_windows)
6065 {
6066 Lisp_Object tail, frame;
6067 int count = specpdl_ptr - specpdl;
6068
6069 record_unwind_protect (Fset_match_data, Fmatch_data (Qnil, Qnil));
6070
6071 FOR_EACH_FRAME (tail, frame)
6072 {
6073 f = XFRAME (frame);
6074
6075 /* Ignore tooltip frame. */
6076 if (f == tooltip_frame)
6077 continue;
6078
6079 /* If a window on this frame changed size, report that to
6080 the user and clear the size-change flag. */
6081 if (FRAME_WINDOW_SIZES_CHANGED (f))
6082 {
6083 Lisp_Object functions;
6084
6085 /* Clear flag first in case we get an error below. */
6086 FRAME_WINDOW_SIZES_CHANGED (f) = 0;
6087 functions = Vwindow_size_change_functions;
6088 GCPRO2 (tail, functions);
6089
6090 while (CONSP (functions))
6091 {
6092 call1 (XCAR (functions), frame);
6093 functions = XCDR (functions);
6094 }
6095 UNGCPRO;
6096 }
6097
6098 GCPRO1 (tail);
6099 update_menu_bar (f, 0);
6100#ifdef HAVE_WINDOW_SYSTEM
e037b9ec 6101 update_tool_bar (f, 0);
5f5c8ee5
GM
6102#endif
6103 UNGCPRO;
6104 }
6105
6106 unbind_to (count, Qnil);
6107 }
6108 else
6109 {
6110 update_menu_bar (selected_frame, 1);
6111#ifdef HAVE_WINDOW_SYSTEM
e037b9ec 6112 update_tool_bar (selected_frame, 1);
5f5c8ee5
GM
6113#endif
6114 }
6115
6116 /* Motif needs this. See comment in xmenu.c. Turn it off when
6117 pending_menu_activation is not defined. */
6118#ifdef USE_X_TOOLKIT
6119 pending_menu_activation = 0;
6120#endif
6121}
6122
6123
6124/* Update the menu bar item list for frame F. This has to be done
6125 before we start to fill in any display lines, because it can call
6126 eval.
6127
6128 If SAVE_MATCH_DATA is non-zero, we must save and restore it here. */
6129
6130static void
6131update_menu_bar (f, save_match_data)
6132 struct frame *f;
6133 int save_match_data;
6134{
6135 Lisp_Object window;
6136 register struct window *w;
6137
6138 window = FRAME_SELECTED_WINDOW (f);
6139 w = XWINDOW (window);
6140
6141 if (update_mode_lines)
6142 w->update_mode_line = Qt;
6143
6144 if (FRAME_WINDOW_P (f)
6145 ?
6146#if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI)
6147 FRAME_EXTERNAL_MENU_BAR (f)
6148#else
6149 FRAME_MENU_BAR_LINES (f) > 0
6150#endif
6151 : FRAME_MENU_BAR_LINES (f) > 0)
6152 {
6153 /* If the user has switched buffers or windows, we need to
6154 recompute to reflect the new bindings. But we'll
6155 recompute when update_mode_lines is set too; that means
6156 that people can use force-mode-line-update to request
6157 that the menu bar be recomputed. The adverse effect on
6158 the rest of the redisplay algorithm is about the same as
6159 windows_or_buffers_changed anyway. */
6160 if (windows_or_buffers_changed
6161 || !NILP (w->update_mode_line)
6162 || ((BUF_SAVE_MODIFF (XBUFFER (w->buffer))
6163 < BUF_MODIFF (XBUFFER (w->buffer)))
6164 != !NILP (w->last_had_star))
6165 || ((!NILP (Vtransient_mark_mode)
6166 && !NILP (XBUFFER (w->buffer)->mark_active))
6167 != !NILP (w->region_showing)))
6168 {
6169 struct buffer *prev = current_buffer;
6170 int count = specpdl_ptr - specpdl;
6171
6172 set_buffer_internal_1 (XBUFFER (w->buffer));
6173 if (save_match_data)
6174 record_unwind_protect (Fset_match_data, Fmatch_data (Qnil, Qnil));
6175 if (NILP (Voverriding_local_map_menu_flag))
6176 {
6177 specbind (Qoverriding_terminal_local_map, Qnil);
6178 specbind (Qoverriding_local_map, Qnil);
6179 }
6180
6181 /* Run the Lucid hook. */
6182 call1 (Vrun_hooks, Qactivate_menubar_hook);
6183
6184 /* If it has changed current-menubar from previous value,
6185 really recompute the menu-bar from the value. */
6186 if (! NILP (Vlucid_menu_bar_dirty_flag))
6187 call0 (Qrecompute_lucid_menubar);
6188
6189 safe_run_hooks (Qmenu_bar_update_hook);
6190 FRAME_MENU_BAR_ITEMS (f) = menu_bar_items (FRAME_MENU_BAR_ITEMS (f));
6191
6192 /* Redisplay the menu bar in case we changed it. */
6193#if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI)
6194 if (FRAME_WINDOW_P (f))
6195 set_frame_menubar (f, 0, 0);
6196 else
6197 /* On a terminal screen, the menu bar is an ordinary screen
6198 line, and this makes it get updated. */
6199 w->update_mode_line = Qt;
6200#else /* ! (USE_X_TOOLKIT || HAVE_NTGUI) */
6201 /* In the non-toolkit version, the menu bar is an ordinary screen
6202 line, and this makes it get updated. */
6203 w->update_mode_line = Qt;
6204#endif /* ! (USE_X_TOOLKIT || HAVE_NTGUI) */
6205
6206 unbind_to (count, Qnil);
6207 set_buffer_internal_1 (prev);
6208 }
6209 }
6210}
6211
6212
6213\f
6214/***********************************************************************
e037b9ec 6215 Tool-bars
5f5c8ee5
GM
6216 ***********************************************************************/
6217
6218#ifdef HAVE_WINDOW_SYSTEM
6219
e037b9ec 6220/* Update the tool-bar item list for frame F. This has to be done
5f5c8ee5
GM
6221 before we start to fill in any display lines. Called from
6222 prepare_menu_bars. If SAVE_MATCH_DATA is non-zero, we must save
6223 and restore it here. */
6224
6225static void
e037b9ec 6226update_tool_bar (f, save_match_data)
5f5c8ee5
GM
6227 struct frame *f;
6228 int save_match_data;
6229{
e037b9ec
GM
6230 if (WINDOWP (f->tool_bar_window)
6231 && XFASTINT (XWINDOW (f->tool_bar_window)->height) > 0)
5f5c8ee5
GM
6232 {
6233 Lisp_Object window;
6234 struct window *w;
6235
6236 window = FRAME_SELECTED_WINDOW (f);
6237 w = XWINDOW (window);
6238
6239 /* If the user has switched buffers or windows, we need to
6240 recompute to reflect the new bindings. But we'll
6241 recompute when update_mode_lines is set too; that means
6242 that people can use force-mode-line-update to request
6243 that the menu bar be recomputed. The adverse effect on
6244 the rest of the redisplay algorithm is about the same as
6245 windows_or_buffers_changed anyway. */
6246 if (windows_or_buffers_changed
6247 || !NILP (w->update_mode_line)
6248 || ((BUF_SAVE_MODIFF (XBUFFER (w->buffer))
6249 < BUF_MODIFF (XBUFFER (w->buffer)))
6250 != !NILP (w->last_had_star))
6251 || ((!NILP (Vtransient_mark_mode)
6252 && !NILP (XBUFFER (w->buffer)->mark_active))
6253 != !NILP (w->region_showing)))
6254 {
6255 struct buffer *prev = current_buffer;
6256 int count = specpdl_ptr - specpdl;
a2889657 6257
5f5c8ee5
GM
6258 /* Set current_buffer to the buffer of the selected
6259 window of the frame, so that we get the right local
6260 keymaps. */
6261 set_buffer_internal_1 (XBUFFER (w->buffer));
1f40cad2 6262
5f5c8ee5
GM
6263 /* Save match data, if we must. */
6264 if (save_match_data)
6265 record_unwind_protect (Fset_match_data, Fmatch_data (Qnil, Qnil));
6266
6267 /* Make sure that we don't accidentally use bogus keymaps. */
6268 if (NILP (Voverriding_local_map_menu_flag))
6269 {
6270 specbind (Qoverriding_terminal_local_map, Qnil);
6271 specbind (Qoverriding_local_map, Qnil);
1f40cad2 6272 }
1f40cad2 6273
e037b9ec
GM
6274 /* Build desired tool-bar items from keymaps. */
6275 f->desired_tool_bar_items
6276 = tool_bar_items (f->desired_tool_bar_items,
6277 &f->n_desired_tool_bar_items);
5f5c8ee5 6278
e037b9ec 6279 /* Redisplay the tool-bar in case we changed it. */
5f5c8ee5
GM
6280 w->update_mode_line = Qt;
6281
6282 unbind_to (count, Qnil);
6283 set_buffer_internal_1 (prev);
81d478f3 6284 }
a2889657
JB
6285 }
6286}
6287
6c4429a5 6288
e037b9ec
GM
6289/* Set F->desired_tool_bar_string to a Lisp string representing frame
6290 F's desired tool-bar contents. F->desired_tool_bar_items must have
5f5c8ee5
GM
6291 been set up previously by calling prepare_menu_bars. */
6292
a2889657 6293static void
e037b9ec 6294build_desired_tool_bar_string (f)
5f5c8ee5 6295 struct frame *f;
a2889657 6296{
5f5c8ee5
GM
6297 int i, size, size_needed, string_idx;
6298 struct gcpro gcpro1, gcpro2, gcpro3;
6299 Lisp_Object image, plist, props;
a2889657 6300
5f5c8ee5
GM
6301 image = plist = props = Qnil;
6302 GCPRO3 (image, plist, props);
a2889657 6303
e037b9ec 6304 /* Prepare F->desired_tool_bar_string. If we can reuse it, do so.
5f5c8ee5
GM
6305 Otherwise, make a new string. */
6306
6307 /* The size of the string we might be able to reuse. */
e037b9ec
GM
6308 size = (STRINGP (f->desired_tool_bar_string)
6309 ? XSTRING (f->desired_tool_bar_string)->size
5f5c8ee5
GM
6310 : 0);
6311
6312 /* Each image in the string we build is preceded by a space,
6313 and there is a space at the end. */
e037b9ec 6314 size_needed = f->n_desired_tool_bar_items + 1;
5f5c8ee5 6315
e037b9ec 6316 /* Reuse f->desired_tool_bar_string, if possible. */
5f5c8ee5 6317 if (size < size_needed)
e037b9ec 6318 f->desired_tool_bar_string = Fmake_string (make_number (size_needed), ' ');
5f5c8ee5
GM
6319 else
6320 {
6321 props = list4 (Qdisplay, Qnil, Qmenu_item, Qnil);
6322 Fremove_text_properties (make_number (0), make_number (size),
e037b9ec 6323 props, f->desired_tool_bar_string);
5f5c8ee5 6324 }
a2889657 6325
5f5c8ee5 6326 /* Put a `display' property on the string for the images to display,
e037b9ec
GM
6327 put a `menu_item' property on tool-bar items with a value that
6328 is the index of the item in F's tool-bar item vector. */
5f5c8ee5 6329 for (i = 0, string_idx = 0;
e037b9ec 6330 i < f->n_desired_tool_bar_items;
5f5c8ee5 6331 ++i, string_idx += 1)
a2889657 6332 {
5f5c8ee5 6333#define PROP(IDX) \
e037b9ec
GM
6334 (XVECTOR (f->desired_tool_bar_items) \
6335 ->contents[i * TOOL_BAR_ITEM_NSLOTS + (IDX)])
5f5c8ee5 6336
e037b9ec
GM
6337 int enabled_p = !NILP (PROP (TOOL_BAR_ITEM_ENABLED_P));
6338 int selected_p = !NILP (PROP (TOOL_BAR_ITEM_SELECTED_P));
5f5c8ee5
GM
6339 int margin, relief;
6340 extern Lisp_Object QCrelief, QCmargin, QCalgorithm, Qimage;
6341 extern Lisp_Object Qlaplace;
6342
6343 /* If image is a vector, choose the image according to the
6344 button state. */
e037b9ec 6345 image = PROP (TOOL_BAR_ITEM_IMAGES);
5f5c8ee5
GM
6346 if (VECTORP (image))
6347 {
e037b9ec 6348 enum tool_bar_item_image idx;
5f5c8ee5
GM
6349
6350 if (enabled_p)
6351 idx = (selected_p
e037b9ec
GM
6352 ? TOOL_BAR_IMAGE_ENABLED_SELECTED
6353 : TOOL_BAR_IMAGE_ENABLED_DESELECTED);
5f5c8ee5
GM
6354 else
6355 idx = (selected_p
e037b9ec
GM
6356 ? TOOL_BAR_IMAGE_DISABLED_SELECTED
6357 : TOOL_BAR_IMAGE_DISABLED_DESELECTED);
5f5c8ee5
GM
6358
6359 xassert (XVECTOR (image)->size >= idx);
6360 image = XVECTOR (image)->contents[idx];
6361 }
6362
6363 /* Ignore invalid image specifications. */
6364 if (!valid_image_p (image))
6365 continue;
6366
e037b9ec 6367 /* Display the tool-bar button pressed, or depressed. */
5f5c8ee5
GM
6368 plist = Fcopy_sequence (XCDR (image));
6369
6370 /* Compute margin and relief to draw. */
e037b9ec
GM
6371 relief = tool_bar_button_relief > 0 ? tool_bar_button_relief : 3;
6372 margin = relief + max (0, tool_bar_button_margin);
5f5c8ee5 6373
e037b9ec 6374 if (auto_raise_tool_bar_buttons_p)
5f5c8ee5
GM
6375 {
6376 /* Add a `:relief' property to the image spec if the item is
6377 selected. */
6378 if (selected_p)
6379 {
6380 plist = Fplist_put (plist, QCrelief, make_number (-relief));
6381 margin -= relief;
6382 }
6383 }
6384 else
6385 {
6386 /* If image is selected, display it pressed, i.e. with a
6387 negative relief. If it's not selected, display it with a
6388 raised relief. */
6389 plist = Fplist_put (plist, QCrelief,
6390 (selected_p
6391 ? make_number (-relief)
6392 : make_number (relief)));
6393 margin -= relief;
6394 }
6395
6396 /* Put a margin around the image. */
6397 if (margin)
6398 plist = Fplist_put (plist, QCmargin, make_number (margin));
6399
6400 /* If button is not enabled, make the image appear disabled by
6401 applying an appropriate algorithm to it. */
6402 if (!enabled_p)
6403 plist = Fplist_put (plist, QCalgorithm, Qlaplace);
6404
6405 /* Put a `display' text property on the string for the image to
6406 display. Put a `menu-item' property on the string that gives
e037b9ec 6407 the start of this item's properties in the tool-bar items
5f5c8ee5
GM
6408 vector. */
6409 image = Fcons (Qimage, plist);
6410 props = list4 (Qdisplay, image,
e037b9ec 6411 Qmenu_item, make_number (i * TOOL_BAR_ITEM_NSLOTS)),
5f5c8ee5
GM
6412 Fadd_text_properties (make_number (string_idx),
6413 make_number (string_idx + 1),
e037b9ec 6414 props, f->desired_tool_bar_string);
5f5c8ee5 6415#undef PROP
a2889657
JB
6416 }
6417
5f5c8ee5
GM
6418 UNGCPRO;
6419}
6420
6421
e037b9ec 6422/* Display one line of the tool-bar of frame IT->f. */
5f5c8ee5
GM
6423
6424static void
e037b9ec 6425display_tool_bar_line (it)
5f5c8ee5
GM
6426 struct it *it;
6427{
6428 struct glyph_row *row = it->glyph_row;
6429 int max_x = it->last_visible_x;
6430 struct glyph *last;
6431
6432 prepare_desired_row (row);
6433 row->y = it->current_y;
6434
6435 while (it->current_x < max_x)
a2889657 6436 {
5f5c8ee5 6437 int x_before, x, n_glyphs_before, i, nglyphs;
a2f016e3 6438
5f5c8ee5
GM
6439 /* Get the next display element. */
6440 if (!get_next_display_element (it))
6441 break;
73af359d 6442
5f5c8ee5
GM
6443 /* Produce glyphs. */
6444 x_before = it->current_x;
6445 n_glyphs_before = it->glyph_row->used[TEXT_AREA];
6446 PRODUCE_GLYPHS (it);
daa37602 6447
5f5c8ee5
GM
6448 nglyphs = it->glyph_row->used[TEXT_AREA] - n_glyphs_before;
6449 i = 0;
6450 x = x_before;
6451 while (i < nglyphs)
6452 {
6453 struct glyph *glyph = row->glyphs[TEXT_AREA] + n_glyphs_before + i;
6454
6455 if (x + glyph->pixel_width > max_x)
6456 {
6457 /* Glyph doesn't fit on line. */
6458 it->glyph_row->used[TEXT_AREA] = n_glyphs_before + i;
6459 it->current_x = x;
6460 goto out;
6461 }
daa37602 6462
5f5c8ee5
GM
6463 ++it->hpos;
6464 x += glyph->pixel_width;
6465 ++i;
6466 }
6467
6468 /* Stop at line ends. */
6469 if (ITERATOR_AT_END_OF_LINE_P (it))
6470 break;
6471
6472 set_iterator_to_next (it);
a2889657 6473 }
a2889657 6474
5f5c8ee5 6475 out:;
a2889657 6476
5f5c8ee5
GM
6477 row->displays_text_p = row->used[TEXT_AREA] != 0;
6478 extend_face_to_end_of_line (it);
6479 last = row->glyphs[TEXT_AREA] + row->used[TEXT_AREA] - 1;
6480 last->right_box_line_p = 1;
6481 compute_line_metrics (it);
6482
e037b9ec 6483 /* If line is empty, make it occupy the rest of the tool-bar. */
5f5c8ee5
GM
6484 if (!row->displays_text_p)
6485 {
312246d1
GM
6486 row->height = row->phys_height = it->last_visible_y - row->y;
6487 row->ascent = row->phys_ascent = 0;
5f5c8ee5
GM
6488 }
6489
6490 row->full_width_p = 1;
6491 row->continued_p = 0;
6492 row->truncated_on_left_p = 0;
6493 row->truncated_on_right_p = 0;
6494
6495 it->current_x = it->hpos = 0;
6496 it->current_y += row->height;
6497 ++it->vpos;
6498 ++it->glyph_row;
a2889657 6499}
96a410bc 6500
5f5c8ee5 6501
e037b9ec 6502/* Value is the number of screen lines needed to make all tool-bar
5f5c8ee5 6503 items of frame F visible. */
96a410bc 6504
d39b6696 6505static int
e037b9ec 6506tool_bar_lines_needed (f)
5f5c8ee5 6507 struct frame *f;
d39b6696 6508{
e037b9ec 6509 struct window *w = XWINDOW (f->tool_bar_window);
5f5c8ee5
GM
6510 struct it it;
6511
e037b9ec
GM
6512 /* Initialize an iterator for iteration over
6513 F->desired_tool_bar_string in the tool-bar window of frame F. */
6514 init_iterator (&it, w, -1, -1, w->desired_matrix->rows, TOOL_BAR_FACE_ID);
5f5c8ee5
GM
6515 it.first_visible_x = 0;
6516 it.last_visible_x = FRAME_WINDOW_WIDTH (f) * CANON_X_UNIT (f);
e037b9ec 6517 reseat_to_string (&it, NULL, f->desired_tool_bar_string, 0, 0, 0, -1);
5f5c8ee5
GM
6518
6519 while (!ITERATOR_AT_END_P (&it))
6520 {
6521 it.glyph_row = w->desired_matrix->rows;
6522 clear_glyph_row (it.glyph_row);
e037b9ec 6523 display_tool_bar_line (&it);
5f5c8ee5
GM
6524 }
6525
6526 return (it.current_y + CANON_Y_UNIT (f) - 1) / CANON_Y_UNIT (f);
d39b6696 6527}
96a410bc 6528
5f5c8ee5 6529
e037b9ec 6530/* Display the tool-bar of frame F. Value is non-zero if tool-bar's
5f5c8ee5
GM
6531 height should be changed. */
6532
6533static int
e037b9ec 6534redisplay_tool_bar (f)
5f5c8ee5 6535 struct frame *f;
96a410bc 6536{
5f5c8ee5
GM
6537 struct window *w;
6538 struct it it;
6539 struct glyph_row *row;
6540 int change_height_p = 0;
6541
e037b9ec
GM
6542 /* If frame hasn't a tool-bar window or if it is zero-height, don't
6543 do anything. This means you must start with tool-bar-lines
5f5c8ee5 6544 non-zero to get the auto-sizing effect. Or in other words, you
e037b9ec
GM
6545 can turn off tool-bars by specifying tool-bar-lines zero. */
6546 if (!WINDOWP (f->tool_bar_window)
6547 || (w = XWINDOW (f->tool_bar_window),
5f5c8ee5
GM
6548 XFASTINT (w->height) == 0))
6549 return 0;
96a410bc 6550
e037b9ec
GM
6551 /* Set up an iterator for the tool-bar window. */
6552 init_iterator (&it, w, -1, -1, w->desired_matrix->rows, TOOL_BAR_FACE_ID);
5f5c8ee5
GM
6553 it.first_visible_x = 0;
6554 it.last_visible_x = FRAME_WINDOW_WIDTH (f) * CANON_X_UNIT (f);
6555 row = it.glyph_row;
3450d04c 6556
e037b9ec
GM
6557 /* Build a string that represents the contents of the tool-bar. */
6558 build_desired_tool_bar_string (f);
6559 reseat_to_string (&it, NULL, f->desired_tool_bar_string, 0, 0, 0, -1);
3450d04c 6560
e037b9ec 6561 /* Display as many lines as needed to display all tool-bar items. */
5f5c8ee5 6562 while (it.current_y < it.last_visible_y)
e037b9ec 6563 display_tool_bar_line (&it);
3450d04c 6564
e037b9ec 6565 /* It doesn't make much sense to try scrolling in the tool-bar
5f5c8ee5
GM
6566 window, so don't do it. */
6567 w->desired_matrix->no_scrolling_p = 1;
6568 w->must_be_updated_p = 1;
3450d04c 6569
e037b9ec 6570 if (auto_resize_tool_bars_p)
5f5c8ee5
GM
6571 {
6572 int nlines;
6573
6574 /* If there are blank lines at the end, except for a partially
6575 visible blank line at the end that is smaller than
e037b9ec 6576 CANON_Y_UNIT, change the tool-bar's height. */
5f5c8ee5
GM
6577 row = it.glyph_row - 1;
6578 if (!row->displays_text_p
6579 && row->height >= CANON_Y_UNIT (f))
6580 change_height_p = 1;
6581
e037b9ec
GM
6582 /* If row displays tool-bar items, but is partially visible,
6583 change the tool-bar's height. */
5f5c8ee5
GM
6584 if (row->displays_text_p
6585 && MATRIX_ROW_BOTTOM_Y (row) > it.last_visible_y)
6586 change_height_p = 1;
6587
e037b9ec 6588 /* Resize windows as needed by changing the `tool-bar-lines'
5f5c8ee5
GM
6589 frame parameter. */
6590 if (change_height_p
e037b9ec 6591 && (nlines = tool_bar_lines_needed (f),
5f5c8ee5
GM
6592 nlines != XFASTINT (w->height)))
6593 {
e037b9ec 6594 extern Lisp_Object Qtool_bar_lines;
5f5c8ee5
GM
6595 Lisp_Object frame;
6596
6597 XSETFRAME (frame, f);
6598 clear_glyph_matrix (w->desired_matrix);
6599 Fmodify_frame_parameters (frame,
e037b9ec 6600 Fcons (Fcons (Qtool_bar_lines,
5f5c8ee5
GM
6601 make_number (nlines)),
6602 Qnil));
6603 fonts_changed_p = 1;
6604 }
6605 }
3450d04c 6606
5f5c8ee5 6607 return change_height_p;
96a410bc 6608}
90adcf20 6609
5f5c8ee5 6610
e037b9ec
GM
6611/* Get information about the tool-bar item which is displayed in GLYPH
6612 on frame F. Return in *PROP_IDX the index where tool-bar item
6613 properties start in F->current_tool_bar_items. Value is zero if
6614 GLYPH doesn't display a tool-bar item. */
5f5c8ee5
GM
6615
6616int
e037b9ec 6617tool_bar_item_info (f, glyph, prop_idx)
5f5c8ee5
GM
6618 struct frame *f;
6619 struct glyph *glyph;
6620 int *prop_idx;
90adcf20 6621{
5f5c8ee5
GM
6622 Lisp_Object prop;
6623 int success_p;
6624
6625 /* Get the text property `menu-item' at pos. The value of that
6626 property is the start index of this item's properties in
e037b9ec 6627 F->current_tool_bar_items. */
5f5c8ee5 6628 prop = Fget_text_property (make_number (glyph->charpos),
e037b9ec 6629 Qmenu_item, f->current_tool_bar_string);
5f5c8ee5
GM
6630 if (INTEGERP (prop))
6631 {
6632 *prop_idx = XINT (prop);
6633 success_p = 1;
6634 }
6635 else
6636 success_p = 0;
90adcf20 6637
5f5c8ee5
GM
6638 return success_p;
6639}
6640
6641#endif /* HAVE_WINDOW_SYSTEM */
90adcf20 6642
feb0c42f 6643
5f5c8ee5
GM
6644\f
6645/************************************************************************
6646 Horizontal scrolling
6647 ************************************************************************/
feb0c42f 6648
5f5c8ee5
GM
6649static int hscroll_window_tree P_ ((Lisp_Object));
6650static int hscroll_windows P_ ((Lisp_Object));
feb0c42f 6651
5f5c8ee5
GM
6652/* For all leaf windows in the window tree rooted at WINDOW, set their
6653 hscroll value so that PT is (i) visible in the window, and (ii) so
6654 that it is not within a certain margin at the window's left and
6655 right border. Value is non-zero if any window's hscroll has been
6656 changed. */
6657
6658static int
6659hscroll_window_tree (window)
6660 Lisp_Object window;
6661{
6662 int hscrolled_p = 0;
6663
6664 while (WINDOWP (window))
90adcf20 6665 {
5f5c8ee5
GM
6666 struct window *w = XWINDOW (window);
6667
6668 if (WINDOWP (w->hchild))
6669 hscrolled_p |= hscroll_window_tree (w->hchild);
6670 else if (WINDOWP (w->vchild))
6671 hscrolled_p |= hscroll_window_tree (w->vchild);
6672 else if (w->cursor.vpos >= 0)
6673 {
6674 int hscroll_margin, text_area_x, text_area_y;
6675 int text_area_width, text_area_height;
92a90e89
GM
6676 struct glyph_row *current_cursor_row
6677 = MATRIX_ROW (w->current_matrix, w->cursor.vpos);
6678 struct glyph_row *desired_cursor_row
6679 = MATRIX_ROW (w->desired_matrix, w->cursor.vpos);
6680 struct glyph_row *cursor_row
6681 = (desired_cursor_row->enabled_p
6682 ? desired_cursor_row
6683 : current_cursor_row);
a2725ab2 6684
5f5c8ee5
GM
6685 window_box (w, TEXT_AREA, &text_area_x, &text_area_y,
6686 &text_area_width, &text_area_height);
90adcf20 6687
5f5c8ee5
GM
6688 /* Scroll when cursor is inside this scroll margin. */
6689 hscroll_margin = 5 * CANON_X_UNIT (XFRAME (w->frame));
6690
6691 if ((XFASTINT (w->hscroll)
6692 && w->cursor.x < hscroll_margin)
92a90e89
GM
6693 || (cursor_row->enabled_p
6694 && cursor_row->truncated_on_right_p
5f5c8ee5 6695 && (w->cursor.x > text_area_width - hscroll_margin)))
08b610e4 6696 {
5f5c8ee5
GM
6697 struct it it;
6698 int hscroll;
6699 struct buffer *saved_current_buffer;
6700 int pt;
6701
6702 /* Find point in a display of infinite width. */
6703 saved_current_buffer = current_buffer;
6704 current_buffer = XBUFFER (w->buffer);
6705
6706 if (w == XWINDOW (selected_window))
6707 pt = BUF_PT (current_buffer);
6708 else
08b610e4 6709 {
5f5c8ee5
GM
6710 pt = marker_position (w->pointm);
6711 pt = max (BEGV, pt);
6712 pt = min (ZV, pt);
6713 }
6714
6715 /* Move iterator to pt starting at cursor_row->start in
6716 a line with infinite width. */
6717 init_to_row_start (&it, w, cursor_row);
6718 it.last_visible_x = INFINITY;
6719 move_it_in_display_line_to (&it, pt, -1, MOVE_TO_POS);
6720 current_buffer = saved_current_buffer;
6721
6722 /* Center cursor in window. */
6723 hscroll = (max (0, it.current_x - text_area_width / 2)
6724 / CANON_X_UNIT (it.f));
6725
6726 /* Don't call Fset_window_hscroll if value hasn't
6727 changed because it will prevent redisplay
6728 optimizations. */
6729 if (XFASTINT (w->hscroll) != hscroll)
6730 {
6731 Fset_window_hscroll (window, make_number (hscroll));
6732 hscrolled_p = 1;
08b610e4 6733 }
08b610e4 6734 }
08b610e4 6735 }
a2725ab2 6736
5f5c8ee5 6737 window = w->next;
90adcf20 6738 }
cd6dfed6 6739
5f5c8ee5
GM
6740 /* Value is non-zero if hscroll of any leaf window has been changed. */
6741 return hscrolled_p;
6742}
6743
6744
6745/* Set hscroll so that cursor is visible and not inside horizontal
6746 scroll margins for all windows in the tree rooted at WINDOW. See
6747 also hscroll_window_tree above. Value is non-zero if any window's
6748 hscroll has been changed. If it has, desired matrices on the frame
6749 of WINDOW are cleared. */
6750
6751static int
6752hscroll_windows (window)
6753 Lisp_Object window;
6754{
6755 int hscrolled_p = hscroll_window_tree (window);
6756 if (hscrolled_p)
6757 clear_desired_matrices (XFRAME (WINDOW_FRAME (XWINDOW (window))));
6758 return hscrolled_p;
90adcf20 6759}
5f5c8ee5
GM
6760
6761
90adcf20 6762\f
5f5c8ee5
GM
6763/************************************************************************
6764 Redisplay
6765 ************************************************************************/
6766
6767/* Variables holding some state of redisplay if GLYPH_DEBUG is defined
6768 to a non-zero value. This is sometimes handy to have in a debugger
6769 session. */
6770
6771#if GLYPH_DEBUG
a2889657 6772
5f5c8ee5
GM
6773/* First and last unchanged row for try_window_id. */
6774
6775int debug_first_unchanged_at_end_vpos;
6776int debug_last_unchanged_at_beg_vpos;
6777
6778/* Delta vpos and y. */
6779
6780int debug_dvpos, debug_dy;
6781
6782/* Delta in characters and bytes for try_window_id. */
6783
6784int debug_delta, debug_delta_bytes;
6785
6786/* Values of window_end_pos and window_end_vpos at the end of
6787 try_window_id. */
6788
6789int debug_end_pos, debug_end_vpos;
6790
6791/* Append a string to W->desired_matrix->method. FMT is a printf
6792 format string. A1...A9 are a supplement for a variable-length
6793 argument list. If trace_redisplay_p is non-zero also printf the
6794 resulting string to stderr. */
6795
6796static void
6797debug_method_add (w, fmt, a1, a2, a3, a4, a5, a6, a7, a8, a9)
6798 struct window *w;
6799 char *fmt;
6800 int a1, a2, a3, a4, a5, a6, a7, a8, a9;
6801{
6802 char buffer[512];
6803 char *method = w->desired_matrix->method;
6804 int len = strlen (method);
6805 int size = sizeof w->desired_matrix->method;
6806 int remaining = size - len - 1;
6807
6808 sprintf (buffer, fmt, a1, a2, a3, a4, a5, a6, a7, a8, a9);
6809 if (len && remaining)
6810 {
6811 method[len] = '|';
6812 --remaining, ++len;
6813 }
6814
6815 strncpy (method + len, buffer, remaining);
6816
6817 if (trace_redisplay_p)
6818 fprintf (stderr, "%p (%s): %s\n",
6819 w,
6820 ((BUFFERP (w->buffer)
6821 && STRINGP (XBUFFER (w->buffer)->name))
6822 ? (char *) XSTRING (XBUFFER (w->buffer)->name)->data
6823 : "no buffer"),
6824 buffer);
6825}
a2889657 6826
5f5c8ee5 6827#endif /* GLYPH_DEBUG */
90adcf20 6828
a2889657 6829
5f5c8ee5
GM
6830/* This counter is used to clear the face cache every once in a while
6831 in redisplay_internal. It is incremented for each redisplay.
6832 Every CLEAR_FACE_CACHE_COUNT full redisplays, the face cache is
6833 cleared. */
0d231165 6834
5f5c8ee5 6835#define CLEAR_FACE_CACHE_COUNT 10000
463f6b91
RS
6836static int clear_face_cache_count;
6837
20de20dc 6838/* Record the previous terminal frame we displayed. */
5f5c8ee5
GM
6839
6840static struct frame *previous_terminal_frame;
6841
6842/* Non-zero while redisplay_internal is in progress. */
6843
6844int redisplaying_p;
6845
6846
6847/* Value is non-zero if all changes in window W, which displays
6848 current_buffer, are in the text between START and END. START is a
6849 buffer position, END is given as a distance from Z. Used in
6850 redisplay_internal for display optimization. */
6851
6852static INLINE int
6853text_outside_line_unchanged_p (w, start, end)
6854 struct window *w;
6855 int start, end;
6856{
6857 int unchanged_p = 1;
6858
6859 /* If text or overlays have changed, see where. */
6860 if (XFASTINT (w->last_modified) < MODIFF
6861 || XFASTINT (w->last_overlay_modified) < OVERLAY_MODIFF)
6862 {
6863 /* Gap in the line? */
6864 if (GPT < start || Z - GPT < end)
6865 unchanged_p = 0;
6866
6867 /* Changes start in front of the line, or end after it? */
6868 if (unchanged_p
9142dd5b
GM
6869 && (BEG_UNCHANGED < start - 1
6870 || END_UNCHANGED < end))
5f5c8ee5
GM
6871 unchanged_p = 0;
6872
6873 /* If selective display, can't optimize if changes start at the
6874 beginning of the line. */
6875 if (unchanged_p
6876 && INTEGERP (current_buffer->selective_display)
6877 && XINT (current_buffer->selective_display) > 0
9142dd5b 6878 && (BEG_UNCHANGED < start || GPT <= start))
5f5c8ee5
GM
6879 unchanged_p = 0;
6880 }
6881
6882 return unchanged_p;
6883}
6884
6885
6886/* Do a frame update, taking possible shortcuts into account. This is
6887 the main external entry point for redisplay.
6888
6889 If the last redisplay displayed an echo area message and that message
6890 is no longer requested, we clear the echo area or bring back the
6891 mini-buffer if that is in use. */
20de20dc 6892
a2889657
JB
6893void
6894redisplay ()
e9874cee
RS
6895{
6896 redisplay_internal (0);
6897}
6898
5f5c8ee5 6899
9142dd5b
GM
6900/* Reconsider the setting of B->clip_changed which is displayed
6901 in window W. */
6902
6903static INLINE void
6904reconsider_clip_changes (w, b)
6905 struct window *w;
6906 struct buffer *b;
6907{
6908 if (b->prevent_redisplay_optimizations_p)
6909 b->clip_changed = 1;
6910 else if (b->clip_changed
6911 && !NILP (w->window_end_valid)
6912 && w->current_matrix->buffer == b
6913 && w->current_matrix->zv == BUF_ZV (b)
6914 && w->current_matrix->begv == BUF_BEGV (b))
6915 b->clip_changed = 0;
6916}
6917
6918
5f5c8ee5
GM
6919/* If PRESERVE_ECHO_AREA is nonzero, it means this redisplay is not in
6920 response to any user action; therefore, we should preserve the echo
6921 area. (Actually, our caller does that job.) Perhaps in the future
6922 avoid recentering windows if it is not necessary; currently that
6923 causes some problems. */
e9874cee
RS
6924
6925static void
6926redisplay_internal (preserve_echo_area)
6927 int preserve_echo_area;
a2889657 6928{
5f5c8ee5
GM
6929 struct window *w = XWINDOW (selected_window);
6930 struct frame *f = XFRAME (w->frame);
6931 int pause;
a2889657 6932 int must_finish = 0;
5f5c8ee5 6933 struct text_pos tlbufpos, tlendpos;
89819bdd 6934 int number_of_visible_frames;
28514cd9 6935 int count;
a2889657 6936
5f5c8ee5
GM
6937 /* Non-zero means redisplay has to consider all windows on all
6938 frames. Zero means, only selected_window is considered. */
6939 int consider_all_windows_p;
6940
6941 TRACE ((stderr, "redisplay_internal %d\n", redisplaying_p));
6942
6943 /* No redisplay if running in batch mode or frame is not yet fully
6944 initialized, or redisplay is explicitly turned off by setting
6945 Vinhibit_redisplay. */
6946 if (noninteractive
6947 || !NILP (Vinhibit_redisplay)
6948 || !f->glyphs_initialized_p)
a2889657
JB
6949 return;
6950
5f5c8ee5
GM
6951 /* The flag redisplay_performed_directly_p is set by
6952 direct_output_for_insert when it already did the whole screen
6953 update necessary. */
6954 if (redisplay_performed_directly_p)
6955 {
6956 redisplay_performed_directly_p = 0;
6957 if (!hscroll_windows (selected_window))
6958 return;
6959 }
6960
15f0cf78
RS
6961#ifdef USE_X_TOOLKIT
6962 if (popup_activated ())
6963 return;
6964#endif
6965
28514cd9 6966 /* I don't think this happens but let's be paranoid. */
5f5c8ee5 6967 if (redisplaying_p)
735c094c
KH
6968 return;
6969
28514cd9
GM
6970 /* Record a function that resets redisplaying_p to its old value
6971 when we leave this function. */
6972 count = specpdl_ptr - specpdl;
6973 record_unwind_protect (unwind_redisplay, make_number (redisplaying_p));
6974 ++redisplaying_p;
6975
8b32d885
RS
6976 retry:
6977
9142dd5b
GM
6978 reconsider_clip_changes (w, current_buffer);
6979
5f5c8ee5
GM
6980 /* If new fonts have been loaded that make a glyph matrix adjustment
6981 necessary, do it. */
6982 if (fonts_changed_p)
6983 {
6984 adjust_glyphs (NULL);
6985 ++windows_or_buffers_changed;
6986 fonts_changed_p = 0;
6987 }
6988
fd8ff63d 6989 if (! FRAME_WINDOW_P (selected_frame)
20de20dc
RS
6990 && previous_terminal_frame != selected_frame)
6991 {
5f5c8ee5
GM
6992 /* Since frames on an ASCII terminal share the same display
6993 area, displaying a different frame means redisplay the whole
6994 thing. */
20de20dc
RS
6995 windows_or_buffers_changed++;
6996 SET_FRAME_GARBAGED (selected_frame);
6997 XSETFRAME (Vterminal_frame, selected_frame);
6998 }
6999 previous_terminal_frame = selected_frame;
20de20dc 7000
5f5c8ee5
GM
7001 /* Set the visible flags for all frames. Do this before checking
7002 for resized or garbaged frames; they want to know if their frames
7003 are visible. See the comment in frame.h for
7004 FRAME_SAMPLE_VISIBILITY. */
d724d989 7005 {
35f56f96 7006 Lisp_Object tail, frame;
d724d989 7007
89819bdd
RS
7008 number_of_visible_frames = 0;
7009
35f56f96 7010 FOR_EACH_FRAME (tail, frame)
f82aff7c 7011 {
5f5c8ee5
GM
7012 struct frame *f = XFRAME (frame);
7013
7014 FRAME_SAMPLE_VISIBILITY (f);
7015 if (FRAME_VISIBLE_P (f))
7016 ++number_of_visible_frames;
7017 clear_desired_matrices (f);
f82aff7c 7018 }
d724d989
JB
7019 }
7020
44fa5b1e 7021 /* Notice any pending interrupt request to change frame size. */
c6e89d6c 7022 do_pending_window_change (1);
a2889657 7023
5f5c8ee5 7024 /* Clear frames marked as garbaged. */
44fa5b1e 7025 if (frame_garbaged)
c6e89d6c 7026 clear_garbaged_frames ();
a2889657 7027
e037b9ec 7028 /* Build menubar and tool-bar items. */
f82aff7c
RS
7029 prepare_menu_bars ();
7030
28995e67 7031 if (windows_or_buffers_changed)
a2889657
JB
7032 update_mode_lines++;
7033
538f13d4
RS
7034 /* Detect case that we need to write or remove a star in the mode line. */
7035 if ((SAVE_MODIFF < MODIFF) != !NILP (w->last_had_star))
a2889657
JB
7036 {
7037 w->update_mode_line = Qt;
7038 if (buffer_shared > 1)
7039 update_mode_lines++;
7040 }
7041
5f5c8ee5 7042 /* If %c is in the mode line, update it if needed. */
28995e67
RS
7043 if (!NILP (w->column_number_displayed)
7044 /* This alternative quickly identifies a common case
7045 where no change is needed. */
7046 && !(PT == XFASTINT (w->last_point)
8850a573
RS
7047 && XFASTINT (w->last_modified) >= MODIFF
7048 && XFASTINT (w->last_overlay_modified) >= OVERLAY_MODIFF)
28995e67
RS
7049 && XFASTINT (w->column_number_displayed) != current_column ())
7050 w->update_mode_line = Qt;
7051
44fa5b1e 7052 FRAME_SCROLL_BOTTOM_VPOS (XFRAME (w->frame)) = -1;
a2889657 7053
5f5c8ee5
GM
7054 /* The variable buffer_shared is set in redisplay_window and
7055 indicates that we redisplay a buffer in different windows. See
7056 there. */
7057 consider_all_windows_p = update_mode_lines || buffer_shared > 1;
a2889657
JB
7058
7059 /* If specs for an arrow have changed, do thorough redisplay
7060 to ensure we remove any arrow that should no longer exist. */
d45de95b 7061 if (! EQ (COERCE_MARKER (Voverlay_arrow_position), last_arrow_position)
ded34426 7062 || ! EQ (Voverlay_arrow_string, last_arrow_string))
5f5c8ee5 7063 consider_all_windows_p = windows_or_buffers_changed = 1;
a2889657 7064
90adcf20
RS
7065 /* Normally the message* functions will have already displayed and
7066 updated the echo area, but the frame may have been trashed, or
7067 the update may have been preempted, so display the echo area
c6e89d6c
GM
7068 again here. Checking both message buffers captures the case that
7069 the echo area should be cleared. */
7070 if (!NILP (echo_area_buffer[0]) || !NILP (echo_area_buffer[1]))
90adcf20 7071 {
c6e89d6c 7072 int window_height_changed_p = echo_area_display (0);
90adcf20 7073 must_finish = 1;
dd2eb166 7074
c6e89d6c
GM
7075 if (fonts_changed_p)
7076 goto retry;
7077 else if (window_height_changed_p)
7078 {
7079 consider_all_windows_p = 1;
7080 ++update_mode_lines;
7081 ++windows_or_buffers_changed;
9142dd5b
GM
7082
7083 /* If window configuration was changed, frames may have been
7084 marked garbaged. Clear them or we will experience
7085 surprises wrt scrolling. */
7086 if (frame_garbaged)
7087 clear_garbaged_frames ();
c6e89d6c 7088 }
90adcf20 7089 }
dd2eb166
GM
7090 else if (w == XWINDOW (minibuf_window)
7091 && (current_buffer->clip_changed
7092 || XFASTINT (w->last_modified) < MODIFF
7093 || XFASTINT (w->last_overlay_modified) < OVERLAY_MODIFF)
92a90e89 7094 && resize_mini_window (w, 0))
c6e89d6c
GM
7095 {
7096 /* Resized active mini-window to fit the size of what it is
dd2eb166
GM
7097 showing if its contents might have changed. */
7098 must_finish = 1;
7099 consider_all_windows_p = 1;
c6e89d6c 7100 ++windows_or_buffers_changed;
dd2eb166 7101 ++update_mode_lines;
9142dd5b
GM
7102
7103 /* If window configuration was changed, frames may have been
7104 marked garbaged. Clear them or we will experience
7105 surprises wrt scrolling. */
7106 if (frame_garbaged)
7107 clear_garbaged_frames ();
c6e89d6c
GM
7108 }
7109
90adcf20 7110
5f5c8ee5
GM
7111 /* If showing the region, and mark has changed, we must redisplay
7112 the whole window. The assignment to this_line_start_pos prevents
7113 the optimization directly below this if-statement. */
bd66d1ba
RS
7114 if (((!NILP (Vtransient_mark_mode)
7115 && !NILP (XBUFFER (w->buffer)->mark_active))
7116 != !NILP (w->region_showing))
82d04750
JB
7117 || (!NILP (w->region_showing)
7118 && !EQ (w->region_showing,
7119 Fmarker_position (XBUFFER (w->buffer)->mark))))
5f5c8ee5
GM
7120 CHARPOS (this_line_start_pos) = 0;
7121
7122 /* Optimize the case that only the line containing the cursor in the
7123 selected window has changed. Variables starting with this_ are
7124 set in display_line and record information about the line
7125 containing the cursor. */
7126 tlbufpos = this_line_start_pos;
7127 tlendpos = this_line_end_pos;
7128 if (!consider_all_windows_p
7129 && CHARPOS (tlbufpos) > 0
7130 && NILP (w->update_mode_line)
73af359d 7131 && !current_buffer->clip_changed
44fa5b1e 7132 && FRAME_VISIBLE_P (XFRAME (w->frame))
f21ef775 7133 && !FRAME_OBSCURED_P (XFRAME (w->frame))
5f5c8ee5 7134 /* Make sure recorded data applies to current buffer, etc. */
a2889657
JB
7135 && this_line_buffer == current_buffer
7136 && current_buffer == XBUFFER (w->buffer)
265a9e55 7137 && NILP (w->force_start)
5f5c8ee5
GM
7138 /* Point must be on the line that we have info recorded about. */
7139 && PT >= CHARPOS (tlbufpos)
7140 && PT <= Z - CHARPOS (tlendpos)
a2889657
JB
7141 /* All text outside that line, including its final newline,
7142 must be unchanged */
5f5c8ee5
GM
7143 && text_outside_line_unchanged_p (w, CHARPOS (tlbufpos),
7144 CHARPOS (tlendpos)))
7145 {
7146 if (CHARPOS (tlbufpos) > BEGV
7147 && FETCH_BYTE (BYTEPOS (tlbufpos) - 1) != '\n'
7148 && (CHARPOS (tlbufpos) == ZV
7149 || FETCH_BYTE (BYTEPOS (tlbufpos)) == '\n'))
a2889657
JB
7150 /* Former continuation line has disappeared by becoming empty */
7151 goto cancel;
7152 else if (XFASTINT (w->last_modified) < MODIFF
8850a573 7153 || XFASTINT (w->last_overlay_modified) < OVERLAY_MODIFF
a2889657
JB
7154 || MINI_WINDOW_P (w))
7155 {
1c9241f5
KH
7156 /* We have to handle the case of continuation around a
7157 wide-column character (See the comment in indent.c around
7158 line 885).
7159
7160 For instance, in the following case:
7161
7162 -------- Insert --------
7163 K_A_N_\\ `a' K_A_N_a\ `X_' are wide-column chars.
7164 J_I_ ==> J_I_ `^^' are cursors.
7165 ^^ ^^
7166 -------- --------
7167
7168 As we have to redraw the line above, we should goto cancel. */
7169
5f5c8ee5
GM
7170 struct it it;
7171 int line_height_before = this_line_pixel_height;
7172
7173 /* Note that start_display will handle the case that the
7174 line starting at tlbufpos is a continuation lines. */
7175 start_display (&it, w, tlbufpos);
7176
7177 /* Implementation note: It this still necessary? */
7178 if (it.current_x != this_line_start_x)
1c9241f5
KH
7179 goto cancel;
7180
5f5c8ee5
GM
7181 TRACE ((stderr, "trying display optimization 1\n"));
7182 w->cursor.vpos = -1;
a2889657 7183 overlay_arrow_seen = 0;
5f5c8ee5
GM
7184 it.vpos = this_line_vpos;
7185 it.current_y = this_line_y;
7186 it.glyph_row = MATRIX_ROW (w->desired_matrix, this_line_vpos);
7187 display_line (&it);
7188
a2889657 7189 /* If line contains point, is not continued,
5f5c8ee5
GM
7190 and ends at same distance from eob as before, we win */
7191 if (w->cursor.vpos >= 0
7192 /* Line is not continued, otherwise this_line_start_pos
7193 would have been set to 0 in display_line. */
7194 && CHARPOS (this_line_start_pos)
7195 /* Line ends as before. */
7196 && CHARPOS (this_line_end_pos) == CHARPOS (tlendpos)
7197 /* Line has same height as before. Otherwise other lines
7198 would have to be shifted up or down. */
7199 && this_line_pixel_height == line_height_before)
a2889657 7200 {
5f5c8ee5
GM
7201 /* If this is not the window's last line, we must adjust
7202 the charstarts of the lines below. */
7203 if (it.current_y < it.last_visible_y)
7204 {
7205 struct glyph_row *row
7206 = MATRIX_ROW (w->current_matrix, this_line_vpos + 1);
7207 int delta, delta_bytes;
7208
7209 if (Z - CHARPOS (tlendpos) == ZV)
7210 {
7211 /* This line ends at end of (accessible part of)
7212 buffer. There is no newline to count. */
7213 delta = (Z
7214 - CHARPOS (tlendpos)
7215 - MATRIX_ROW_START_CHARPOS (row));
7216 delta_bytes = (Z_BYTE
7217 - BYTEPOS (tlendpos)
7218 - MATRIX_ROW_START_BYTEPOS (row));
7219 }
7220 else
7221 {
7222 /* This line ends in a newline. Must take
7223 account of the newline and the rest of the
7224 text that follows. */
7225 delta = (Z
7226 - CHARPOS (tlendpos)
7227 - MATRIX_ROW_START_CHARPOS (row));
7228 delta_bytes = (Z_BYTE
7229 - BYTEPOS (tlendpos)
7230 - MATRIX_ROW_START_BYTEPOS (row));
7231 }
7232
7233 increment_glyph_matrix_buffer_positions (w->current_matrix,
7234 this_line_vpos + 1,
7235 w->current_matrix->nrows,
7236 delta, delta_bytes);
85bcef6c 7237 }
46db8486 7238
5f5c8ee5
GM
7239 /* If this row displays text now but previously didn't,
7240 or vice versa, w->window_end_vpos may have to be
7241 adjusted. */
7242 if ((it.glyph_row - 1)->displays_text_p)
7243 {
7244 if (XFASTINT (w->window_end_vpos) < this_line_vpos)
7245 XSETINT (w->window_end_vpos, this_line_vpos);
7246 }
7247 else if (XFASTINT (w->window_end_vpos) == this_line_vpos
7248 && this_line_vpos > 0)
7249 XSETINT (w->window_end_vpos, this_line_vpos - 1);
7250 w->window_end_valid = Qnil;
7251
7252 /* Update hint: No need to try to scroll in update_window. */
7253 w->desired_matrix->no_scrolling_p = 1;
7254
7255#if GLYPH_DEBUG
7256 *w->desired_matrix->method = 0;
7257 debug_method_add (w, "optimization 1");
7258#endif
a2889657
JB
7259 goto update;
7260 }
7261 else
7262 goto cancel;
7263 }
5f5c8ee5
GM
7264 else if (/* Cursor position hasn't changed. */
7265 PT == XFASTINT (w->last_point)
b6f0fe04
RS
7266 /* Make sure the cursor was last displayed
7267 in this window. Otherwise we have to reposition it. */
5f5c8ee5
GM
7268 && 0 <= w->cursor.vpos
7269 && XINT (w->height) > w->cursor.vpos)
a2889657
JB
7270 {
7271 if (!must_finish)
7272 {
c6e89d6c 7273 do_pending_window_change (1);
5f5c8ee5
GM
7274
7275 /* We used to always goto end_of_redisplay here, but this
7276 isn't enough if we have a blinking cursor. */
7277 if (w->cursor_off_p == w->last_cursor_off_p)
7278 goto end_of_redisplay;
a2889657
JB
7279 }
7280 goto update;
7281 }
8b51f1e3
KH
7282 /* If highlighting the region, or if the cursor is in the echo area,
7283 then we can't just move the cursor. */
bd66d1ba
RS
7284 else if (! (!NILP (Vtransient_mark_mode)
7285 && !NILP (current_buffer->mark_active))
293a54ce
RS
7286 && (w == XWINDOW (current_buffer->last_selected_window)
7287 || highlight_nonselected_windows)
8b51f1e3 7288 && NILP (w->region_showing)
8f897821 7289 && NILP (Vshow_trailing_whitespace)
8b51f1e3 7290 && !cursor_in_echo_area)
a2889657 7291 {
5f5c8ee5
GM
7292 struct it it;
7293 struct glyph_row *row;
7294
7295 /* Skip from tlbufpos to PT and see where it is. Note that
7296 PT may be in invisible text. If so, we will end at the
7297 next visible position. */
7298 init_iterator (&it, w, CHARPOS (tlbufpos), BYTEPOS (tlbufpos),
7299 NULL, DEFAULT_FACE_ID);
7300 it.current_x = this_line_start_x;
7301 it.current_y = this_line_y;
7302 it.vpos = this_line_vpos;
7303
7304 /* The call to move_it_to stops in front of PT, but
7305 moves over before-strings. */
7306 move_it_to (&it, PT, -1, -1, -1, MOVE_TO_POS);
7307
7308 if (it.vpos == this_line_vpos
7309 && (row = MATRIX_ROW (w->current_matrix, this_line_vpos),
7310 row->enabled_p))
a2889657 7311 {
5f5c8ee5
GM
7312 xassert (this_line_vpos == it.vpos);
7313 xassert (this_line_y == it.current_y);
7314 set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0);
a2889657
JB
7315 goto update;
7316 }
7317 else
7318 goto cancel;
7319 }
5f5c8ee5 7320
a2889657 7321 cancel:
5f5c8ee5
GM
7322 /* Text changed drastically or point moved off of line. */
7323 SET_MATRIX_ROW_ENABLED_P (w->desired_matrix, this_line_vpos, 0);
a2889657
JB
7324 }
7325
5f5c8ee5
GM
7326 CHARPOS (this_line_start_pos) = 0;
7327 consider_all_windows_p |= buffer_shared > 1;
7328 ++clear_face_cache_count;
a2889657 7329
5f5c8ee5
GM
7330
7331 /* Build desired matrices. If consider_all_windows_p is non-zero,
7332 do it for all windows on all frames. Otherwise do it for
7333 selected_window, only. */
463f6b91 7334
5f5c8ee5 7335 if (consider_all_windows_p)
a2889657 7336 {
35f56f96 7337 Lisp_Object tail, frame;
a2889657 7338
5f5c8ee5
GM
7339 /* Clear the face cache eventually. */
7340 if (clear_face_cache_count > CLEAR_FACE_CACHE_COUNT)
463f6b91 7341 {
5f5c8ee5 7342 clear_face_cache (0);
463f6b91
RS
7343 clear_face_cache_count = 0;
7344 }
31b24551 7345
5f5c8ee5
GM
7346 /* Recompute # windows showing selected buffer. This will be
7347 incremented each time such a window is displayed. */
a2889657
JB
7348 buffer_shared = 0;
7349
35f56f96 7350 FOR_EACH_FRAME (tail, frame)
30c566e4 7351 {
5f5c8ee5 7352 struct frame *f = XFRAME (frame);
fd8ff63d 7353 if (FRAME_WINDOW_P (f) || f == selected_frame)
9769686d 7354 {
5f5c8ee5
GM
7355 /* Mark all the scroll bars to be removed; we'll redeem
7356 the ones we want when we redisplay their windows. */
9769686d
RS
7357 if (condemn_scroll_bars_hook)
7358 (*condemn_scroll_bars_hook) (f);
30c566e4 7359
f21ef775 7360 if (FRAME_VISIBLE_P (f) && !FRAME_OBSCURED_P (f))
5f5c8ee5 7361 redisplay_windows (FRAME_ROOT_WINDOW (f));
30c566e4 7362
5f5c8ee5
GM
7363 /* Any scroll bars which redisplay_windows should have
7364 nuked should now go away. */
9769686d
RS
7365 if (judge_scroll_bars_hook)
7366 (*judge_scroll_bars_hook) (f);
7367 }
30c566e4 7368 }
a2889657 7369 }
5f5c8ee5
GM
7370 else if (FRAME_VISIBLE_P (selected_frame)
7371 && !FRAME_OBSCURED_P (selected_frame))
7372 redisplay_window (selected_window, 1);
7373
7374
7375 /* Compare desired and current matrices, perform output. */
7376
7377update:
7378
7379 /* If fonts changed, display again. */
7380 if (fonts_changed_p)
7381 goto retry;
a2889657 7382
a2889657
JB
7383 /* Prevent various kinds of signals during display update.
7384 stdio is not robust about handling signals,
7385 which can cause an apparent I/O error. */
7386 if (interrupt_input)
7387 unrequest_sigio ();
7388 stop_polling ();
7389
5f5c8ee5 7390 if (consider_all_windows_p)
a2889657
JB
7391 {
7392 Lisp_Object tail;
92a90e89
GM
7393 struct frame *f;
7394 int hscrolled_p;
a2889657
JB
7395
7396 pause = 0;
92a90e89 7397 hscrolled_p = 0;
a2889657 7398
92a90e89 7399 /* See if we have to hscroll. */
9472f927 7400 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
92a90e89
GM
7401 if (FRAMEP (XCAR (tail)))
7402 {
7403 f = XFRAME (XCAR (tail));
7404
7405 if ((FRAME_WINDOW_P (f)
7406 || f == selected_frame)
7407 && FRAME_VISIBLE_P (f)
7408 && !FRAME_OBSCURED_P (f)
7409 && hscroll_windows (f->root_window))
7410 hscrolled_p = 1;
7411 }
7412
7413 if (hscrolled_p)
7414 goto retry;
a2889657 7415
92a90e89
GM
7416 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
7417 {
9472f927 7418 if (!FRAMEP (XCAR (tail)))
a2889657
JB
7419 continue;
7420
9472f927 7421 f = XFRAME (XCAR (tail));
1af9f229 7422
fd8ff63d 7423 if ((FRAME_WINDOW_P (f) || f == selected_frame)
f21ef775 7424 && FRAME_VISIBLE_P (f) && !FRAME_OBSCURED_P (f))
a2889657 7425 {
5f5c8ee5
GM
7426 /* Mark all windows as to be updated. */
7427 set_window_update_flags (XWINDOW (f->root_window), 1);
44fa5b1e 7428 pause |= update_frame (f, 0, 0);
a2889657 7429 if (!pause)
efc63ef0
RS
7430 {
7431 mark_window_display_accurate (f->root_window, 1);
7432 if (frame_up_to_date_hook != 0)
7433 (*frame_up_to_date_hook) (f);
7434 }
a2889657
JB
7435 }
7436 }
7437 }
7438 else
6e8290aa 7439 {
5f5c8ee5
GM
7440 if (FRAME_VISIBLE_P (selected_frame)
7441 && !FRAME_OBSCURED_P (selected_frame))
7442 {
92a90e89
GM
7443 if (hscroll_windows (selected_window))
7444 goto retry;
7445
5f5c8ee5
GM
7446 XWINDOW (selected_window)->must_be_updated_p = 1;
7447 pause = update_frame (selected_frame, 0, 0);
5f5c8ee5 7448 }
4d641a15
KH
7449 else
7450 pause = 0;
d724d989 7451
8de2d90b 7452 /* We may have called echo_area_display at the top of this
44fa5b1e
JB
7453 function. If the echo area is on another frame, that may
7454 have put text on a frame other than the selected one, so the
7455 above call to update_frame would not have caught it. Catch
8de2d90b
JB
7456 it here. */
7457 {
84faf44c 7458 Lisp_Object mini_window;
5f5c8ee5 7459 struct frame *mini_frame;
84faf44c
RS
7460
7461 mini_window = FRAME_MINIBUF_WINDOW (selected_frame);
7462 mini_frame = XFRAME (WINDOW_FRAME (XWINDOW (mini_window)));
8de2d90b 7463
fd8ff63d 7464 if (mini_frame != selected_frame && FRAME_WINDOW_P (mini_frame))
5f5c8ee5
GM
7465 {
7466 XWINDOW (mini_window)->must_be_updated_p = 1;
7467 pause |= update_frame (mini_frame, 0, 0);
7468 if (!pause && hscroll_windows (mini_window))
7469 goto retry;
7470 }
8de2d90b 7471 }
6e8290aa 7472 }
a2889657 7473
5f5c8ee5
GM
7474 /* If display was paused because of pending input, make sure we do a
7475 thorough update the next time. */
a2889657
JB
7476 if (pause)
7477 {
5f5c8ee5
GM
7478 /* Prevent the optimization at the beginning of
7479 redisplay_internal that tries a single-line update of the
7480 line containing the cursor in the selected window. */
7481 CHARPOS (this_line_start_pos) = 0;
7482
7483 /* Let the overlay arrow be updated the next time. */
265a9e55 7484 if (!NILP (last_arrow_position))
a2889657
JB
7485 {
7486 last_arrow_position = Qt;
7487 last_arrow_string = Qt;
7488 }
5f5c8ee5
GM
7489
7490 /* If we pause after scrolling, some rows in the current
7491 matrices of some windows are not valid. */
7492 if (!WINDOW_FULL_WIDTH_P (w)
7493 && !FRAME_WINDOW_P (XFRAME (w->frame)))
a2889657
JB
7494 update_mode_lines = 1;
7495 }
7496
5f5c8ee5
GM
7497 /* Now text on frame agrees with windows, so put info into the
7498 windows for partial redisplay to follow. */
a2889657
JB
7499 if (!pause)
7500 {
7501 register struct buffer *b = XBUFFER (w->buffer);
7502
9142dd5b
GM
7503 BUF_UNCHANGED_MODIFIED (b) = BUF_MODIFF (b);
7504 BUF_OVERLAY_UNCHANGED_MODIFIED (b) = BUF_OVERLAY_MODIFF (b);
7505 BUF_BEG_UNCHANGED (b) = BUF_GPT (b) - BUF_BEG (b);
7506 BUF_END_UNCHANGED (b) = BUF_Z (b) - BUF_GPT (b);
a2889657 7507
5f5c8ee5 7508 if (consider_all_windows_p)
11e82b76 7509 mark_window_display_accurate (FRAME_ROOT_WINDOW (selected_frame), 1);
a2889657
JB
7510 else
7511 {
5f5c8ee5
GM
7512 XSETFASTINT (w->last_point, BUF_PT (b));
7513 w->last_cursor = w->cursor;
7514 w->last_cursor_off_p = w->cursor_off_p;
7515
28995e67 7516 b->clip_changed = 0;
9142dd5b 7517 b->prevent_redisplay_optimizations_p = 0;
a2889657 7518 w->update_mode_line = Qnil;
c2213350 7519 XSETFASTINT (w->last_modified, BUF_MODIFF (b));
8850a573 7520 XSETFASTINT (w->last_overlay_modified, BUF_OVERLAY_MODIFF (b));
538f13d4
RS
7521 w->last_had_star
7522 = (BUF_MODIFF (XBUFFER (w->buffer)) > BUF_SAVE_MODIFF (XBUFFER (w->buffer))
7523 ? Qt : Qnil);
3ee4159a
RS
7524
7525 /* Record if we are showing a region, so can make sure to
7526 update it fully at next redisplay. */
7527 w->region_showing = (!NILP (Vtransient_mark_mode)
293a54ce
RS
7528 && (w == XWINDOW (current_buffer->last_selected_window)
7529 || highlight_nonselected_windows)
3ee4159a
RS
7530 && !NILP (XBUFFER (w->buffer)->mark_active)
7531 ? Fmarker_position (XBUFFER (w->buffer)->mark)
7532 : Qnil);
7533
d2f84654 7534 w->window_end_valid = w->buffer;
d45de95b 7535 last_arrow_position = COERCE_MARKER (Voverlay_arrow_position);
a2889657 7536 last_arrow_string = Voverlay_arrow_string;
efc63ef0
RS
7537 if (frame_up_to_date_hook != 0)
7538 (*frame_up_to_date_hook) (selected_frame);
9142dd5b
GM
7539
7540 w->current_matrix->buffer = b;
7541 w->current_matrix->begv = BUF_BEGV (b);
7542 w->current_matrix->zv = BUF_ZV (b);
a2889657 7543 }
5f5c8ee5 7544
a2889657
JB
7545 update_mode_lines = 0;
7546 windows_or_buffers_changed = 0;
7547 }
7548
5f5c8ee5
GM
7549 /* Start SIGIO interrupts coming again. Having them off during the
7550 code above makes it less likely one will discard output, but not
7551 impossible, since there might be stuff in the system buffer here.
a2889657 7552 But it is much hairier to try to do anything about that. */
a2889657
JB
7553 if (interrupt_input)
7554 request_sigio ();
7555 start_polling ();
7556
5f5c8ee5
GM
7557 /* If a frame has become visible which was not before, redisplay
7558 again, so that we display it. Expose events for such a frame
7559 (which it gets when becoming visible) don't call the parts of
7560 redisplay constructing glyphs, so simply exposing a frame won't
7561 display anything in this case. So, we have to display these
7562 frames here explicitly. */
11c52c4f
RS
7563 if (!pause)
7564 {
7565 Lisp_Object tail, frame;
7566 int new_count = 0;
7567
7568 FOR_EACH_FRAME (tail, frame)
7569 {
7570 int this_is_visible = 0;
8e83f802
RS
7571
7572 if (XFRAME (frame)->visible)
7573 this_is_visible = 1;
7574 FRAME_SAMPLE_VISIBILITY (XFRAME (frame));
7575 if (XFRAME (frame)->visible)
7576 this_is_visible = 1;
11c52c4f
RS
7577
7578 if (this_is_visible)
7579 new_count++;
7580 }
7581
89819bdd 7582 if (new_count != number_of_visible_frames)
11c52c4f
RS
7583 windows_or_buffers_changed++;
7584 }
7585
44fa5b1e 7586 /* Change frame size now if a change is pending. */
c6e89d6c 7587 do_pending_window_change (1);
d8e242fd 7588
8b32d885
RS
7589 /* If we just did a pending size change, or have additional
7590 visible frames, redisplay again. */
3c8c72e0 7591 if (windows_or_buffers_changed && !pause)
8b32d885 7592 goto retry;
5f5c8ee5
GM
7593
7594 end_of_redisplay:;
c6e89d6c 7595
28514cd9 7596 unbind_to (count, Qnil);
a2889657
JB
7597}
7598
5f5c8ee5
GM
7599
7600/* Redisplay, but leave alone any recent echo area message unless
7601 another message has been requested in its place.
a2889657
JB
7602
7603 This is useful in situations where you need to redisplay but no
7604 user action has occurred, making it inappropriate for the message
7605 area to be cleared. See tracking_off and
7606 wait_reading_process_input for examples of these situations. */
7607
8991bb31 7608void
a2889657
JB
7609redisplay_preserve_echo_area ()
7610{
c6e89d6c 7611 if (!NILP (echo_area_buffer[1]))
a2889657 7612 {
c6e89d6c
GM
7613 /* We have a previously displayed message, but no current
7614 message. Redisplay the previous message. */
7615 display_last_displayed_message_p = 1;
e9874cee 7616 redisplay_internal (1);
c6e89d6c 7617 display_last_displayed_message_p = 0;
a2889657
JB
7618 }
7619 else
e9874cee 7620 redisplay_internal (1);
a2889657
JB
7621}
7622
5f5c8ee5 7623
28514cd9
GM
7624/* Function registered with record_unwind_protect in
7625 redisplay_internal. Clears the flag indicating that a redisplay is
7626 in progress. */
7627
7628static Lisp_Object
7629unwind_redisplay (old_redisplaying_p)
7630 Lisp_Object old_redisplaying_p;
7631{
7632 redisplaying_p = XFASTINT (old_redisplaying_p);
c6e89d6c 7633 return Qnil;
28514cd9
GM
7634}
7635
7636
5f5c8ee5
GM
7637/* Mark the display of windows in the window tree rooted at WINDOW as
7638 accurate or inaccurate. If FLAG is non-zero mark display of WINDOW
7639 as accurate. If FLAG is zero arrange for WINDOW to be redisplayed
7640 the next time redisplay_internal is called. */
7641
a2889657 7642void
5f5c8ee5 7643mark_window_display_accurate (window, accurate_p)
a2889657 7644 Lisp_Object window;
5f5c8ee5 7645 int accurate_p;
a2889657 7646{
5f5c8ee5
GM
7647 struct window *w;
7648
7649 for (; !NILP (window); window = w->next)
a2889657
JB
7650 {
7651 w = XWINDOW (window);
7652
5f5c8ee5 7653 if (BUFFERP (w->buffer))
bd66d1ba 7654 {
5f5c8ee5
GM
7655 struct buffer *b = XBUFFER (w->buffer);
7656
c2213350 7657 XSETFASTINT (w->last_modified,
5f5c8ee5 7658 accurate_p ? BUF_MODIFF (b) : 0);
8850a573 7659 XSETFASTINT (w->last_overlay_modified,
5f5c8ee5
GM
7660 accurate_p ? BUF_OVERLAY_MODIFF (b) : 0);
7661 w->last_had_star = (BUF_MODIFF (b) > BUF_SAVE_MODIFF (b)
7662 ? Qt : Qnil);
bd66d1ba 7663
5f5c8ee5
GM
7664#if 0 /* I don't think this is necessary because display_line does it.
7665 Let's check it. */
bd66d1ba
RS
7666 /* Record if we are showing a region, so can make sure to
7667 update it fully at next redisplay. */
5f5c8ee5
GM
7668 w->region_showing
7669 = (!NILP (Vtransient_mark_mode)
7670 && (w == XWINDOW (current_buffer->last_selected_window)
7671 || highlight_nonselected_windows)
7672 && (!NILP (b->mark_active)
7673 ? Fmarker_position (b->mark)
7674 : Qnil));
7675#endif
7676
7677 if (accurate_p)
7678 {
7679 b->clip_changed = 0;
9142dd5b
GM
7680 b->prevent_redisplay_optimizations_p = 0;
7681 w->current_matrix->buffer = b;
7682 w->current_matrix->begv = BUF_BEGV (b);
7683 w->current_matrix->zv = BUF_ZV (b);
5f5c8ee5
GM
7684 w->last_cursor = w->cursor;
7685 w->last_cursor_off_p = w->cursor_off_p;
7686 if (w == XWINDOW (selected_window))
7687 w->last_point = BUF_PT (b);
7688 else
7689 w->last_point = XMARKER (w->pointm)->charpos;
7690 }
bd66d1ba
RS
7691 }
7692
d2f84654 7693 w->window_end_valid = w->buffer;
a2889657
JB
7694 w->update_mode_line = Qnil;
7695
265a9e55 7696 if (!NILP (w->vchild))
5f5c8ee5 7697 mark_window_display_accurate (w->vchild, accurate_p);
265a9e55 7698 if (!NILP (w->hchild))
5f5c8ee5 7699 mark_window_display_accurate (w->hchild, accurate_p);
a2889657
JB
7700 }
7701
5f5c8ee5 7702 if (accurate_p)
a2889657 7703 {
d45de95b 7704 last_arrow_position = COERCE_MARKER (Voverlay_arrow_position);
a2889657
JB
7705 last_arrow_string = Voverlay_arrow_string;
7706 }
7707 else
7708 {
5f5c8ee5
GM
7709 /* Force a thorough redisplay the next time by setting
7710 last_arrow_position and last_arrow_string to t, which is
7711 unequal to any useful value of Voverlay_arrow_... */
a2889657
JB
7712 last_arrow_position = Qt;
7713 last_arrow_string = Qt;
7714 }
7715}
5f5c8ee5
GM
7716
7717
7718/* Return value in display table DP (Lisp_Char_Table *) for character
7719 C. Since a display table doesn't have any parent, we don't have to
7720 follow parent. Do not call this function directly but use the
7721 macro DISP_CHAR_VECTOR. */
7722
7723Lisp_Object
7724disp_char_vector (dp, c)
7725 struct Lisp_Char_Table *dp;
7726 int c;
7727{
7728 int code[4], i;
7729 Lisp_Object val;
7730
7731 if (SINGLE_BYTE_CHAR_P (c))
7732 return (dp->contents[c]);
7733
7734 SPLIT_NON_ASCII_CHAR (c, code[0], code[1], code[2]);
7735 if (code[0] != CHARSET_COMPOSITION)
7736 {
7737 if (code[1] < 32)
7738 code[1] = -1;
7739 else if (code[2] < 32)
7740 code[2] = -1;
7741 }
7742
7743 /* Here, the possible range of code[0] (== charset ID) is
7744 128..max_charset. Since the top level char table contains data
7745 for multibyte characters after 256th element, we must increment
7746 code[0] by 128 to get a correct index. */
7747 code[0] += 128;
7748 code[3] = -1; /* anchor */
7749
7750 for (i = 0; code[i] >= 0; i++, dp = XCHAR_TABLE (val))
7751 {
7752 val = dp->contents[code[i]];
7753 if (!SUB_CHAR_TABLE_P (val))
7754 return (NILP (val) ? dp->defalt : val);
7755 }
7756
7757 /* Here, val is a sub char table. We return the default value of
7758 it. */
7759 return (dp->defalt);
7760}
7761
7762
a2889657 7763\f
5f5c8ee5
GM
7764/***********************************************************************
7765 Window Redisplay
7766 ***********************************************************************/
a2725ab2 7767
5f5c8ee5 7768/* Redisplay all leaf windows in the window tree rooted at WINDOW. */
90adcf20
RS
7769
7770static void
5f5c8ee5
GM
7771redisplay_windows (window)
7772 Lisp_Object window;
90adcf20 7773{
5f5c8ee5
GM
7774 while (!NILP (window))
7775 {
7776 struct window *w = XWINDOW (window);
7777
7778 if (!NILP (w->hchild))
7779 redisplay_windows (w->hchild);
7780 else if (!NILP (w->vchild))
7781 redisplay_windows (w->vchild);
7782 else
7783 redisplay_window (window, 0);
a2725ab2 7784
5f5c8ee5
GM
7785 window = w->next;
7786 }
7787}
7788
7789
7790/* Set cursor position of W. PT is assumed to be displayed in ROW.
7791 DELTA is the number of bytes by which positions recorded in ROW
7792 differ from current buffer positions. */
7793
7794void
7795set_cursor_from_row (w, row, matrix, delta, delta_bytes, dy, dvpos)
7796 struct window *w;
7797 struct glyph_row *row;
7798 struct glyph_matrix *matrix;
7799 int delta, delta_bytes, dy, dvpos;
7800{
7801 struct glyph *glyph = row->glyphs[TEXT_AREA];
7802 struct glyph *end = glyph + row->used[TEXT_AREA];
7803 int x = row->x;
7804 int pt_old = PT - delta;
7805
7806 /* Skip over glyphs not having an object at the start of the row.
7807 These are special glyphs like truncation marks on terminal
7808 frames. */
7809 if (row->displays_text_p)
7810 while (glyph < end
7811 && !glyph->object
7812 && glyph->charpos < 0)
7813 {
7814 x += glyph->pixel_width;
7815 ++glyph;
7816 }
7817
7818 while (glyph < end
7819 && glyph->object
7820 && (!BUFFERP (glyph->object)
7821 || glyph->charpos < pt_old))
7822 {
7823 x += glyph->pixel_width;
7824 ++glyph;
7825 }
7826
7827 w->cursor.hpos = glyph - row->glyphs[TEXT_AREA];
7828 w->cursor.x = x;
7829 w->cursor.vpos = MATRIX_ROW_VPOS (row, matrix) + dvpos;
7830 w->cursor.y = row->y + dy;
7831
7832 if (w == XWINDOW (selected_window))
7833 {
7834 if (!row->continued_p
7835 && !MATRIX_ROW_CONTINUATION_LINE_P (row)
7836 && row->x == 0)
7837 {
7838 this_line_buffer = XBUFFER (w->buffer);
7839
7840 CHARPOS (this_line_start_pos)
7841 = MATRIX_ROW_START_CHARPOS (row) + delta;
7842 BYTEPOS (this_line_start_pos)
7843 = MATRIX_ROW_START_BYTEPOS (row) + delta_bytes;
7844
7845 CHARPOS (this_line_end_pos)
7846 = Z - (MATRIX_ROW_END_CHARPOS (row) + delta);
7847 BYTEPOS (this_line_end_pos)
7848 = Z_BYTE - (MATRIX_ROW_END_BYTEPOS (row) + delta_bytes);
7849
7850 this_line_y = w->cursor.y;
7851 this_line_pixel_height = row->height;
7852 this_line_vpos = w->cursor.vpos;
7853 this_line_start_x = row->x;
7854 }
7855 else
7856 CHARPOS (this_line_start_pos) = 0;
7857 }
7858}
7859
7860
7861/* Run window scroll functions, if any, for WINDOW with new window
756a3cb6
RS
7862 start STARTP. Sets the window start of WINDOW to that position.
7863
7864 We assume that the window's buffer is really current. */
5f5c8ee5
GM
7865
7866static INLINE struct text_pos
7867run_window_scroll_functions (window, startp)
7868 Lisp_Object window;
7869 struct text_pos startp;
7870{
7871 struct window *w = XWINDOW (window);
7872 SET_MARKER_FROM_TEXT_POS (w->start, startp);
756a3cb6
RS
7873
7874 if (current_buffer != XBUFFER (w->buffer))
7875 abort ();
7876
5f5c8ee5
GM
7877 if (!NILP (Vwindow_scroll_functions))
7878 {
7879 run_hook_with_args_2 (Qwindow_scroll_functions, window,
7880 make_number (CHARPOS (startp)));
7881 SET_TEXT_POS_FROM_MARKER (startp, w->start);
756a3cb6
RS
7882 /* In case the hook functions switch buffers. */
7883 if (current_buffer != XBUFFER (w->buffer))
7884 set_buffer_internal_1 (XBUFFER (w->buffer));
5f5c8ee5 7885 }
90adcf20 7886
5f5c8ee5
GM
7887 return startp;
7888}
7889
7890
7891/* Modify the desired matrix of window W and W->vscroll so that the
7892 line containing the cursor is fully visible. */
7893
7894static void
7895make_cursor_line_fully_visible (w)
7896 struct window *w;
7897{
7898 struct glyph_matrix *matrix;
7899 struct glyph_row *row;
045dee35 7900 int header_line_height;
5f5c8ee5
GM
7901
7902 /* It's not always possible to find the cursor, e.g, when a window
7903 is full of overlay strings. Don't do anything in that case. */
7904 if (w->cursor.vpos < 0)
7905 return;
7906
7907 matrix = w->desired_matrix;
7908 row = MATRIX_ROW (matrix, w->cursor.vpos);
7909
7910 /* If row->y == top y of window display area, the window isn't tall
7911 enough to display a single line. There is nothing we can do
7912 about it. */
045dee35
GM
7913 header_line_height = WINDOW_DISPLAY_HEADER_LINE_HEIGHT (w);
7914 if (row->y == header_line_height)
5f5c8ee5
GM
7915 return;
7916
7917 if (MATRIX_ROW_PARTIALLY_VISIBLE_AT_TOP_P (w, row))
7918 {
7919 int dy = row->height - row->visible_height;
7920 w->vscroll = 0;
7921 w->cursor.y += dy;
7922 shift_glyph_matrix (w, matrix, 0, matrix->nrows, dy);
7923 }
7924 else if (MATRIX_ROW_PARTIALLY_VISIBLE_AT_BOTTOM_P (w, row))
7925 {
7926 int dy = - (row->height - row->visible_height);
7927 w->vscroll = dy;
7928 w->cursor.y += dy;
7929 shift_glyph_matrix (w, matrix, 0, matrix->nrows, dy);
7930 }
7931
7932 /* When we change the cursor y-position of the selected window,
7933 change this_line_y as well so that the display optimization for
7934 the cursor line of the selected window in redisplay_internal uses
7935 the correct y-position. */
7936 if (w == XWINDOW (selected_window))
7937 this_line_y = w->cursor.y;
7938}
7939
7940
7941/* Try scrolling PT into view in window WINDOW. JUST_THIS_ONE_P
7942 non-zero means only WINDOW is redisplayed in redisplay_internal.
7943 TEMP_SCROLL_STEP has the same meaning as scroll_step, and is used
7944 in redisplay_window to bring a partially visible line into view in
7945 the case that only the cursor has moved.
7946
7947 Value is
7948
7949 1 if scrolling succeeded
7950
7951 0 if scrolling didn't find point.
7952
7953 -1 if new fonts have been loaded so that we must interrupt
7954 redisplay, adjust glyph matrices, and try again. */
7955
7956static int
7957try_scrolling (window, just_this_one_p, scroll_conservatively,
7958 scroll_step, temp_scroll_step)
7959 Lisp_Object window;
7960 int just_this_one_p;
7961 int scroll_conservatively, scroll_step;
7962 int temp_scroll_step;
7963{
7964 struct window *w = XWINDOW (window);
7965 struct frame *f = XFRAME (w->frame);
7966 struct text_pos scroll_margin_pos;
7967 struct text_pos pos;
7968 struct text_pos startp;
7969 struct it it;
7970 Lisp_Object window_end;
7971 int this_scroll_margin;
7972 int dy = 0;
7973 int scroll_max;
7974 int line_height, rc;
7975 int amount_to_scroll = 0;
7976 Lisp_Object aggressive;
7977 int height;
7978
7979#if GLYPH_DEBUG
7980 debug_method_add (w, "try_scrolling");
78614721 7981#endif
5f5c8ee5
GM
7982
7983 SET_TEXT_POS_FROM_MARKER (startp, w->start);
7984
7985 /* Compute scroll margin height in pixels. We scroll when point is
7986 within this distance from the top or bottom of the window. */
7987 if (scroll_margin > 0)
90adcf20 7988 {
5f5c8ee5
GM
7989 this_scroll_margin = min (scroll_margin, XINT (w->height) / 4);
7990 this_scroll_margin *= CANON_Y_UNIT (f);
7991 }
7992 else
7993 this_scroll_margin = 0;
7994
7995 /* Compute how much we should try to scroll maximally to bring point
7996 into view. */
7997 if (scroll_step)
7998 scroll_max = scroll_step;
7999 else if (scroll_conservatively)
8000 scroll_max = scroll_conservatively;
8001 else if (temp_scroll_step)
8002 scroll_max = temp_scroll_step;
8003 else if (NUMBERP (current_buffer->scroll_down_aggressively)
8004 || NUMBERP (current_buffer->scroll_up_aggressively))
8005 /* We're trying to scroll because of aggressive scrolling
8006 but no scroll_step is set. Choose an arbitrary one. Maybe
8007 there should be a variable for this. */
8008 scroll_max = 10;
8009 else
8010 scroll_max = 0;
8011 scroll_max *= CANON_Y_UNIT (f);
8012
8013 /* Decide whether we have to scroll down. Start at the window end
8014 and move this_scroll_margin up to find the position of the scroll
8015 margin. */
8016 window_end = Fwindow_end (window, Qt);
8017 CHARPOS (scroll_margin_pos) = XINT (window_end);
8018 BYTEPOS (scroll_margin_pos) = CHAR_TO_BYTE (CHARPOS (scroll_margin_pos));
8019 if (this_scroll_margin)
8020 {
8021 start_display (&it, w, scroll_margin_pos);
8022 move_it_vertically (&it, - this_scroll_margin);
8023 scroll_margin_pos = it.current.pos;
8024 }
8025
8026 if (PT >= CHARPOS (scroll_margin_pos))
8027 {
8028 int y0;
8029
8030 /* Point is in the scroll margin at the bottom of the window, or
8031 below. Compute a new window start that makes point visible. */
8032
8033 /* Compute the distance from the scroll margin to PT.
8034 Give up if the distance is greater than scroll_max. */
8035 start_display (&it, w, scroll_margin_pos);
8036 y0 = it.current_y;
8037 move_it_to (&it, PT, 0, it.last_visible_y, -1,
8038 MOVE_TO_POS | MOVE_TO_X | MOVE_TO_Y);
8039 line_height = (it.max_ascent + it.max_descent
8040 ? it.max_ascent + it.max_descent
8041 : last_height);
8042 dy = it.current_y + line_height - y0;
8043 if (dy > scroll_max)
8044 return 0;
8045
8046 /* Move the window start down. If scrolling conservatively,
8047 move it just enough down to make point visible. If
8048 scroll_step is set, move it down by scroll_step. */
8049 start_display (&it, w, startp);
8050
8051 if (scroll_conservatively)
8052 amount_to_scroll = dy;
8053 else if (scroll_step || temp_scroll_step)
8054 amount_to_scroll = scroll_max;
8055 else
90adcf20 8056 {
5f5c8ee5
GM
8057 aggressive = current_buffer->scroll_down_aggressively;
8058 height = (WINDOW_DISPLAY_HEIGHT_NO_MODE_LINE (w)
045dee35 8059 - WINDOW_DISPLAY_HEADER_LINE_HEIGHT (w));
5f5c8ee5
GM
8060 if (NUMBERP (aggressive))
8061 amount_to_scroll = XFLOATINT (aggressive) * height;
8062 }
a2725ab2 8063
5f5c8ee5
GM
8064 if (amount_to_scroll <= 0)
8065 return 0;
a2725ab2 8066
5f5c8ee5
GM
8067 move_it_vertically (&it, amount_to_scroll);
8068 startp = it.current.pos;
8069 }
8070 else
8071 {
8072 /* See if point is inside the scroll margin at the top of the
8073 window. */
8074 scroll_margin_pos = startp;
8075 if (this_scroll_margin)
8076 {
8077 start_display (&it, w, startp);
8078 move_it_vertically (&it, this_scroll_margin);
8079 scroll_margin_pos = it.current.pos;
8080 }
8081
8082 if (PT < CHARPOS (scroll_margin_pos))
8083 {
8084 /* Point is in the scroll margin at the top of the window or
8085 above what is displayed in the window. */
8086 int y0;
8087
8088 /* Compute the vertical distance from PT to the scroll
8089 margin position. Give up if distance is greater than
8090 scroll_max. */
8091 SET_TEXT_POS (pos, PT, PT_BYTE);
8092 start_display (&it, w, pos);
8093 y0 = it.current_y;
8094 move_it_to (&it, CHARPOS (scroll_margin_pos), 0,
8095 it.last_visible_y, -1,
8096 MOVE_TO_POS | MOVE_TO_X | MOVE_TO_Y);
8097 dy = it.current_y - y0;
8098 if (dy > scroll_max)
8099 return 0;
8100
8101 /* Compute new window start. */
8102 start_display (&it, w, startp);
8103
8104 if (scroll_conservatively)
8105 amount_to_scroll = dy;
8106 else if (scroll_step || temp_scroll_step)
8107 amount_to_scroll = scroll_max;
538f13d4 8108 else
5f5c8ee5
GM
8109 {
8110 aggressive = current_buffer->scroll_up_aggressively;
8111 height = (WINDOW_DISPLAY_HEIGHT_NO_MODE_LINE (w)
045dee35 8112 - WINDOW_DISPLAY_HEADER_LINE_HEIGHT (w));
5f5c8ee5
GM
8113 if (NUMBERP (aggressive))
8114 amount_to_scroll = XFLOATINT (aggressive) * height;
8115 }
a2725ab2 8116
5f5c8ee5
GM
8117 if (amount_to_scroll <= 0)
8118 return 0;
8119
8120 move_it_vertically (&it, - amount_to_scroll);
8121 startp = it.current.pos;
90adcf20
RS
8122 }
8123 }
a2889657 8124
5f5c8ee5
GM
8125 /* Run window scroll functions. */
8126 startp = run_window_scroll_functions (window, startp);
90adcf20 8127
5f5c8ee5
GM
8128 /* Display the window. Give up if new fonts are loaded, or if point
8129 doesn't appear. */
8130 if (!try_window (window, startp))
8131 rc = -1;
8132 else if (w->cursor.vpos < 0)
8133 {
8134 clear_glyph_matrix (w->desired_matrix);
8135 rc = 0;
8136 }
8137 else
8138 {
8139 /* Maybe forget recorded base line for line number display. */
8140 if (!just_this_one_p
8141 || current_buffer->clip_changed
9142dd5b 8142 || BEG_UNCHANGED < CHARPOS (startp))
5f5c8ee5
GM
8143 w->base_line_number = Qnil;
8144
8145 /* If cursor ends up on a partially visible line, shift display
8146 lines up or down. */
8147 make_cursor_line_fully_visible (w);
8148 rc = 1;
8149 }
8150
8151 return rc;
a2889657
JB
8152}
8153
5f5c8ee5
GM
8154
8155/* Compute a suitable window start for window W if display of W starts
8156 on a continuation line. Value is non-zero if a new window start
8157 was computed.
8158
8159 The new window start will be computed, based on W's width, starting
8160 from the start of the continued line. It is the start of the
8161 screen line with the minimum distance from the old start W->start. */
8162
8163static int
8164compute_window_start_on_continuation_line (w)
8165 struct window *w;
1f1ff51d 8166{
5f5c8ee5
GM
8167 struct text_pos pos, start_pos;
8168 int window_start_changed_p = 0;
1f1ff51d 8169
5f5c8ee5 8170 SET_TEXT_POS_FROM_MARKER (start_pos, w->start);
1f1ff51d 8171
5f5c8ee5
GM
8172 /* If window start is on a continuation line... Window start may be
8173 < BEGV in case there's invisible text at the start of the
8174 buffer (M-x rmail, for example). */
8175 if (CHARPOS (start_pos) > BEGV
8176 && FETCH_BYTE (BYTEPOS (start_pos) - 1) != '\n')
1f1ff51d 8177 {
5f5c8ee5
GM
8178 struct it it;
8179 struct glyph_row *row;
8180
8181 /* Find the start of the continued line. This should be fast
8182 because scan_buffer is fast (newline cache). */
045dee35 8183 row = w->desired_matrix->rows + (WINDOW_WANTS_HEADER_LINE_P (w) ? 1 : 0);
5f5c8ee5
GM
8184 init_iterator (&it, w, CHARPOS (start_pos), BYTEPOS (start_pos),
8185 row, DEFAULT_FACE_ID);
8186 reseat_at_previous_visible_line_start (&it);
8187
8188 /* If the line start is "too far" away from the window start,
8189 say it takes too much time to compute a new window start. */
8190 if (CHARPOS (start_pos) - IT_CHARPOS (it)
8191 < XFASTINT (w->height) * XFASTINT (w->width))
8192 {
8193 int min_distance, distance;
8194
8195 /* Move forward by display lines to find the new window
8196 start. If window width was enlarged, the new start can
8197 be expected to be > the old start. If window width was
8198 decreased, the new window start will be < the old start.
8199 So, we're looking for the display line start with the
8200 minimum distance from the old window start. */
8201 pos = it.current.pos;
8202 min_distance = INFINITY;
8203 while ((distance = abs (CHARPOS (start_pos) - IT_CHARPOS (it))),
8204 distance < min_distance)
8205 {
8206 min_distance = distance;
8207 pos = it.current.pos;
8208 move_it_by_lines (&it, 1, 0);
8209 }
8210
8211 /* Set the window start there. */
8212 SET_MARKER_FROM_TEXT_POS (w->start, pos);
8213 window_start_changed_p = 1;
8214 }
1f1ff51d 8215 }
5f5c8ee5
GM
8216
8217 return window_start_changed_p;
1f1ff51d
KH
8218}
8219
5f5c8ee5
GM
8220
8221/* Redisplay leaf window WINDOW. JUST_THIS_ONE_P non-zero means only
8222 selected_window is redisplayed. */
90adcf20 8223
a2889657 8224static void
5f5c8ee5 8225redisplay_window (window, just_this_one_p)
a2889657 8226 Lisp_Object window;
5f5c8ee5 8227 int just_this_one_p;
a2889657 8228{
5f5c8ee5
GM
8229 struct window *w = XWINDOW (window);
8230 struct frame *f = XFRAME (w->frame);
8231 struct buffer *buffer = XBUFFER (w->buffer);
a2889657 8232 struct buffer *old = current_buffer;
5f5c8ee5 8233 struct text_pos lpoint, opoint, startp;
e481f960 8234 int update_mode_line;
5f5c8ee5
GM
8235 int tem;
8236 struct it it;
8237 /* Record it now because it's overwritten. */
8238 int current_matrix_up_to_date_p = 0;
5ba50c51 8239 int really_switched_buffer = 0;
5f5c8ee5 8240 int temp_scroll_step = 0;
2e54982e 8241 int count = specpdl_ptr - specpdl;
a2889657 8242
5f5c8ee5
GM
8243 SET_TEXT_POS (lpoint, PT, PT_BYTE);
8244 opoint = lpoint;
a2889657 8245
5f5c8ee5
GM
8246 /* W must be a leaf window here. */
8247 xassert (!NILP (w->buffer));
8248#if GLYPH_DEBUG
8249 *w->desired_matrix->method = 0;
8250#endif
2e54982e
RS
8251
8252 specbind (Qinhibit_point_motion_hooks, Qt);
9142dd5b
GM
8253
8254 reconsider_clip_changes (w, buffer);
8255
5f5c8ee5
GM
8256 /* Has the mode line to be updated? */
8257 update_mode_line = (!NILP (w->update_mode_line)
8258 || update_mode_lines
8259 || buffer->clip_changed);
8de2d90b
JB
8260
8261 if (MINI_WINDOW_P (w))
8262 {
5f5c8ee5 8263 if (w == XWINDOW (echo_area_window)
c6e89d6c 8264 && !NILP (echo_area_buffer[0]))
5f5c8ee5
GM
8265 {
8266 if (update_mode_line)
8267 /* We may have to update a tty frame's menu bar or a
e037b9ec 8268 tool-bar. Example `M-x C-h C-h C-g'. */
5f5c8ee5
GM
8269 goto finish_menu_bars;
8270 else
8271 /* We've already displayed the echo area glyphs in this window. */
8272 goto finish_scroll_bars;
8273 }
73af359d 8274 else if (w != XWINDOW (minibuf_window))
8de2d90b 8275 {
5f5c8ee5
GM
8276 /* W is a mini-buffer window, but it's not the currently
8277 active one, so clear it. */
8278 int yb = window_text_bottom_y (w);
8279 struct glyph_row *row;
8280 int y;
8281
8282 for (y = 0, row = w->desired_matrix->rows;
8283 y < yb;
8284 y += row->height, ++row)
8285 blank_row (w, row, y);
88f22aff 8286 goto finish_scroll_bars;
8de2d90b
JB
8287 }
8288 }
a2889657 8289
5f5c8ee5
GM
8290 /* Otherwise set up data on this window; select its buffer and point
8291 value. */
e481f960 8292 if (update_mode_line)
5ba50c51 8293 {
5f5c8ee5
GM
8294 /* Really select the buffer, for the sake of buffer-local
8295 variables. */
5ba50c51
RS
8296 set_buffer_internal_1 (XBUFFER (w->buffer));
8297 really_switched_buffer = 1;
8298 }
e481f960
RS
8299 else
8300 set_buffer_temp (XBUFFER (w->buffer));
5f5c8ee5
GM
8301 SET_TEXT_POS (opoint, PT, PT_BYTE);
8302
8303 current_matrix_up_to_date_p
8304 = (!NILP (w->window_end_valid)
8305 && !current_buffer->clip_changed
8306 && XFASTINT (w->last_modified) >= MODIFF
8307 && XFASTINT (w->last_overlay_modified) >= OVERLAY_MODIFF);
e481f960 8308
5f5c8ee5
GM
8309 /* When windows_or_buffers_changed is non-zero, we can't rely on
8310 the window end being valid, so set it to nil there. */
8311 if (windows_or_buffers_changed)
8312 {
8313 /* If window starts on a continuation line, maybe adjust the
8314 window start in case the window's width changed. */
8315 if (XMARKER (w->start)->buffer == current_buffer)
8316 compute_window_start_on_continuation_line (w);
8317
8318 w->window_end_valid = Qnil;
8319 }
12adba34 8320
5f5c8ee5
GM
8321 /* Some sanity checks. */
8322 CHECK_WINDOW_END (w);
8323 if (Z == Z_BYTE && CHARPOS (opoint) != BYTEPOS (opoint))
12adba34 8324 abort ();
5f5c8ee5 8325 if (BYTEPOS (opoint) < CHARPOS (opoint))
12adba34 8326 abort ();
a2889657 8327
28995e67
RS
8328 /* If %c is in mode line, update it if needed. */
8329 if (!NILP (w->column_number_displayed)
8330 /* This alternative quickly identifies a common case
8331 where no change is needed. */
8332 && !(PT == XFASTINT (w->last_point)
8850a573
RS
8333 && XFASTINT (w->last_modified) >= MODIFF
8334 && XFASTINT (w->last_overlay_modified) >= OVERLAY_MODIFF)
28995e67
RS
8335 && XFASTINT (w->column_number_displayed) != current_column ())
8336 update_mode_line = 1;
8337
5f5c8ee5
GM
8338 /* Count number of windows showing the selected buffer. An indirect
8339 buffer counts as its base buffer. */
8340 if (!just_this_one_p)
42640f83
RS
8341 {
8342 struct buffer *current_base, *window_base;
8343 current_base = current_buffer;
8344 window_base = XBUFFER (XWINDOW (selected_window)->buffer);
8345 if (current_base->base_buffer)
8346 current_base = current_base->base_buffer;
8347 if (window_base->base_buffer)
8348 window_base = window_base->base_buffer;
8349 if (current_base == window_base)
8350 buffer_shared++;
8351 }
a2889657 8352
5f5c8ee5
GM
8353 /* Point refers normally to the selected window. For any other
8354 window, set up appropriate value. */
a2889657
JB
8355 if (!EQ (window, selected_window))
8356 {
12adba34
RS
8357 int new_pt = XMARKER (w->pointm)->charpos;
8358 int new_pt_byte = marker_byte_position (w->pointm);
f67a0f51 8359 if (new_pt < BEGV)
a2889657 8360 {
f67a0f51 8361 new_pt = BEGV;
12adba34
RS
8362 new_pt_byte = BEGV_BYTE;
8363 set_marker_both (w->pointm, Qnil, BEGV, BEGV_BYTE);
a2889657 8364 }
f67a0f51 8365 else if (new_pt > (ZV - 1))
a2889657 8366 {
f67a0f51 8367 new_pt = ZV;
12adba34
RS
8368 new_pt_byte = ZV_BYTE;
8369 set_marker_both (w->pointm, Qnil, ZV, ZV_BYTE);
a2889657 8370 }
5f5c8ee5 8371
f67a0f51 8372 /* We don't use SET_PT so that the point-motion hooks don't run. */
12adba34 8373 TEMP_SET_PT_BOTH (new_pt, new_pt_byte);
a2889657
JB
8374 }
8375
f4faa47c 8376 /* If any of the character widths specified in the display table
5f5c8ee5
GM
8377 have changed, invalidate the width run cache. It's true that
8378 this may be a bit late to catch such changes, but the rest of
f4faa47c
JB
8379 redisplay goes (non-fatally) haywire when the display table is
8380 changed, so why should we worry about doing any better? */
8381 if (current_buffer->width_run_cache)
8382 {
f908610f 8383 struct Lisp_Char_Table *disptab = buffer_display_table ();
f4faa47c
JB
8384
8385 if (! disptab_matches_widthtab (disptab,
8386 XVECTOR (current_buffer->width_table)))
8387 {
8388 invalidate_region_cache (current_buffer,
8389 current_buffer->width_run_cache,
8390 BEG, Z);
8391 recompute_width_table (current_buffer, disptab);
8392 }
8393 }
8394
a2889657 8395 /* If window-start is screwed up, choose a new one. */
a2889657
JB
8396 if (XMARKER (w->start)->buffer != current_buffer)
8397 goto recenter;
8398
5f5c8ee5 8399 SET_TEXT_POS_FROM_MARKER (startp, w->start);
a2889657 8400
cf0df6ab
RS
8401 /* If someone specified a new starting point but did not insist,
8402 check whether it can be used. */
5f5c8ee5 8403 if (!NILP (w->optional_new_start))
cf0df6ab
RS
8404 {
8405 w->optional_new_start = Qnil;
5f5c8ee5
GM
8406 /* This takes a mini-buffer prompt into account. */
8407 start_display (&it, w, startp);
8408 move_it_to (&it, PT, 0, it.last_visible_y, -1,
8409 MOVE_TO_POS | MOVE_TO_X | MOVE_TO_Y);
8410 if (IT_CHARPOS (it) == PT)
cf0df6ab
RS
8411 w->force_start = Qt;
8412 }
8413
8de2d90b 8414 /* Handle case where place to start displaying has been specified,
aa6d10fa 8415 unless the specified location is outside the accessible range. */
9472f927
GM
8416 if (!NILP (w->force_start)
8417 || w->frozen_window_start_p)
a2889657 8418 {
e63574d7 8419 w->force_start = Qnil;
5f5c8ee5 8420 w->vscroll = 0;
b5174a51 8421 w->window_end_valid = Qnil;
5f5c8ee5
GM
8422
8423 /* Forget any recorded base line for line number display. */
8424 if (!current_matrix_up_to_date_p
8425 || current_buffer->clip_changed)
8426 w->base_line_number = Qnil;
8427
75c43375
RS
8428 /* Redisplay the mode line. Select the buffer properly for that.
8429 Also, run the hook window-scroll-functions
8430 because we have scrolled. */
e63574d7
RS
8431 /* Note, we do this after clearing force_start because
8432 if there's an error, it is better to forget about force_start
8433 than to get into an infinite loop calling the hook functions
8434 and having them get more errors. */
75c43375
RS
8435 if (!update_mode_line
8436 || ! NILP (Vwindow_scroll_functions))
e481f960 8437 {
5ba50c51
RS
8438 if (!really_switched_buffer)
8439 {
8440 set_buffer_temp (old);
8441 set_buffer_internal_1 (XBUFFER (w->buffer));
5f5c8ee5 8442 really_switched_buffer = 1;
5ba50c51 8443 }
5f5c8ee5 8444
e481f960
RS
8445 update_mode_line = 1;
8446 w->update_mode_line = Qt;
5f5c8ee5 8447 startp = run_window_scroll_functions (window, startp);
e481f960 8448 }
5f5c8ee5 8449
c2213350 8450 XSETFASTINT (w->last_modified, 0);
8850a573 8451 XSETFASTINT (w->last_overlay_modified, 0);
5f5c8ee5
GM
8452 if (CHARPOS (startp) < BEGV)
8453 SET_TEXT_POS (startp, BEGV, BEGV_BYTE);
8454 else if (CHARPOS (startp) > ZV)
8455 SET_TEXT_POS (startp, ZV, ZV_BYTE);
8456
8457 /* Redisplay, then check if cursor has been set during the
8458 redisplay. Give up if new fonts were loaded. */
8459 if (!try_window (window, startp))
8460 {
8461 w->force_start = Qt;
8462 clear_glyph_matrix (w->desired_matrix);
8463 goto restore_buffers;
8464 }
8465
9472f927 8466 if (w->cursor.vpos < 0 && !w->frozen_window_start_p)
5f5c8ee5
GM
8467 {
8468 /* If point does not appear, or on a line that is not fully
8469 visible, move point so it does appear. The desired
8470 matrix has been built above, so we can use it. */
8471 int height = window_box_height (w) / 2;
8472 struct glyph_row *row = MATRIX_ROW (w->desired_matrix, 0);
8473
8474 while (row->y < height)
8475 ++row;
8476
8477 TEMP_SET_PT_BOTH (MATRIX_ROW_START_CHARPOS (row),
8478 MATRIX_ROW_START_BYTEPOS (row));
8479
90adcf20 8480 if (w != XWINDOW (selected_window))
12adba34 8481 set_marker_both (w->pointm, Qnil, PT, PT_BYTE);
5f5c8ee5
GM
8482 else if (current_buffer == old)
8483 SET_TEXT_POS (lpoint, PT, PT_BYTE);
8484
8485 set_cursor_from_row (w, row, w->desired_matrix, 0, 0, 0, 0);
8486
8487 /* If we are highlighting the region, then we just changed
8488 the region, so redisplay to show it. */
df0b5ea1
RS
8489 if (!NILP (Vtransient_mark_mode)
8490 && !NILP (current_buffer->mark_active))
6f27fa9b 8491 {
5f5c8ee5
GM
8492 clear_glyph_matrix (w->desired_matrix);
8493 if (!try_window (window, startp))
8494 goto restore_buffers;
6f27fa9b 8495 }
a2889657 8496 }
5f5c8ee5
GM
8497
8498 make_cursor_line_fully_visible (w);
8499#if GLYPH_DEBUG
8500 debug_method_add (w, "forced window start");
8501#endif
a2889657
JB
8502 goto done;
8503 }
8504
5f5c8ee5
GM
8505 /* Handle case where text has not changed, only point, and it has
8506 not moved off the frame. */
8507 if (current_matrix_up_to_date_p
8508 /* Point may be in this window. */
8509 && PT >= CHARPOS (startp)
8510 /* If we don't check this, we are called to move the cursor in a
8511 horizontally split window with a current matrix that doesn't
8512 fit the display. */
8513 && !windows_or_buffers_changed
8514 /* Selective display hasn't changed. */
8515 && !current_buffer->clip_changed
b1aa6cb3
RS
8516 /* If force-mode-line-update was called, really redisplay;
8517 that's how redisplay is forced after e.g. changing
8518 buffer-invisibility-spec. */
632ab665 8519 && NILP (w->update_mode_line)
5f5c8ee5
GM
8520 /* Can't use this case if highlighting a region. When a
8521 region exists, cursor movement has to do more than just
8522 set the cursor. */
8523 && !(!NILP (Vtransient_mark_mode)
8524 && !NILP (current_buffer->mark_active))
bd66d1ba 8525 && NILP (w->region_showing)
8f897821 8526 && NILP (Vshow_trailing_whitespace)
5f5c8ee5
GM
8527 /* Right after splitting windows, last_point may be nil. */
8528 && INTEGERP (w->last_point)
8529 /* This code is not used for mini-buffer for the sake of the case
8530 of redisplaying to replace an echo area message; since in
8531 that case the mini-buffer contents per se are usually
8532 unchanged. This code is of no real use in the mini-buffer
8533 since the handling of this_line_start_pos, etc., in redisplay
8534 handles the same cases. */
d45de95b 8535 && !EQ (window, minibuf_window)
5f5c8ee5
GM
8536 /* When splitting windows or for new windows, it happens that
8537 redisplay is called with a nil window_end_vpos or one being
8538 larger than the window. This should really be fixed in
8539 window.c. I don't have this on my list, now, so we do
8540 approximately the same as the old redisplay code. --gerd. */
8541 && INTEGERP (w->window_end_vpos)
8542 && XFASTINT (w->window_end_vpos) < w->current_matrix->nrows
8543 && (FRAME_WINDOW_P (f)
8544 || !MARKERP (Voverlay_arrow_position)
377dbd97 8545 || current_buffer != XMARKER (Voverlay_arrow_position)->buffer))
a2889657 8546 {
5f5c8ee5
GM
8547 int this_scroll_margin;
8548 struct glyph_row *row;
8549 int scroll_p;
a2889657 8550
5f5c8ee5
GM
8551#if GLYPH_DEBUG
8552 debug_method_add (w, "cursor movement");
8553#endif
9afd2168 8554
5f5c8ee5
GM
8555 /* Scroll if point within this distance from the top or bottom
8556 of the window. This is a pixel value. */
8557 this_scroll_margin = max (0, scroll_margin);
8558 this_scroll_margin = min (this_scroll_margin, XFASTINT (w->height) / 4);
8559 this_scroll_margin *= CANON_Y_UNIT (f);
8560
8561 /* Start with the row the cursor was displayed during the last
8562 not paused redisplay. Give up if that row is not valid. */
8563 if (w->last_cursor.vpos >= w->current_matrix->nrows)
8564 goto try_to_scroll;
8565 row = MATRIX_ROW (w->current_matrix, w->last_cursor.vpos);
8566 if (row->mode_line_p)
8567 ++row;
8568 if (!row->enabled_p)
8569 goto try_to_scroll;
8570
8571 scroll_p = 0;
8572 if (PT > XFASTINT (w->last_point))
8573 {
8574 /* Point has moved forward. */
8575 int last_y = window_text_bottom_y (w) - this_scroll_margin;
8576
8577 while ((MATRIX_ROW_END_CHARPOS (row) < PT
8578 /* The end position of a row equals the start
8579 position of the next row. If PT is there, we
8580 would rather display it in the next line, except
8581 when this line ends in ZV. */
8582 || (MATRIX_ROW_END_CHARPOS (row) == PT
8583 && (MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row)
8584 || !row->ends_at_zv_p)))
8585 && MATRIX_ROW_BOTTOM_Y (row) < last_y)
8586 {
8587 xassert (row->enabled_p);
8588 ++row;
8589 }
9afd2168 8590
5f5c8ee5
GM
8591 /* If within the scroll margin, scroll. Note that
8592 MATRIX_ROW_BOTTOM_Y gives the pixel position at which the
8593 next line would be drawn, and that this_scroll_margin can
8594 be zero. */
8595 if (MATRIX_ROW_BOTTOM_Y (row) > last_y
8596 || PT > MATRIX_ROW_END_CHARPOS (row)
8597 /* Line is completely visible last line in window and PT
8598 is to be set in the next line. */
8599 || (MATRIX_ROW_BOTTOM_Y (row) == last_y
8600 && PT == MATRIX_ROW_END_CHARPOS (row)
8601 && !row->ends_at_zv_p
8602 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row)))
8603 scroll_p = 1;
8604 }
8605 else if (PT < XFASTINT (w->last_point))
a2889657 8606 {
5f5c8ee5
GM
8607 /* Cursor has to be moved backward. Note that PT >=
8608 CHARPOS (startp) because of the outer if-statement. */
8609 while (!row->mode_line_p
8610 && (MATRIX_ROW_START_CHARPOS (row) > PT
8611 || (MATRIX_ROW_START_CHARPOS (row) == PT
8612 && MATRIX_ROW_STARTS_IN_MIDDLE_OF_CHAR_P (row)))
8613 && (row->y > this_scroll_margin
8614 || CHARPOS (startp) == BEGV))
a2889657 8615 {
5f5c8ee5
GM
8616 xassert (row->enabled_p);
8617 --row;
a2889657 8618 }
abb4c08f 8619
5f5c8ee5
GM
8620 /* Consider the following case: Window starts at BEGV, there
8621 is invisible, intangible text at BEGV, so that display
8622 starts at some point START > BEGV. It can happen that
8623 we are called with PT somewhere between BEGV and START.
8624 Try to handle that case. */
8625 if (row < w->current_matrix->rows
8626 || row->mode_line_p)
8627 {
8628 row = w->current_matrix->rows;
8629 if (row->mode_line_p)
8630 ++row;
8631 }
8632
8633 /* Due to newlines in overlay strings, we may have to skip
8634 forward over overlay strings. */
8635 while (MATRIX_ROW_END_CHARPOS (row) == PT
8636 && MATRIX_ROW_ENDS_IN_OVERLAY_STRING_P (row)
8637 && !row->ends_at_zv_p)
8638 ++row;
8639
8640 /* If within the scroll margin, scroll. */
8641 if (row->y < this_scroll_margin
8642 && CHARPOS (startp) != BEGV)
8643 scroll_p = 1;
8644 }
8645
8646 /* if PT is not in the glyph row, give up. */
8647 if (PT < MATRIX_ROW_START_CHARPOS (row)
8648 || PT > MATRIX_ROW_END_CHARPOS (row))
8649 goto try_to_scroll;
8650
8651 /* If we end up in a partially visible line, let's make it fully
8652 visible. This can be done most easily by using the existing
8653 scrolling code. */
8654 if (MATRIX_ROW_PARTIALLY_VISIBLE_P (row))
8655 {
8656 temp_scroll_step = 1;
8657 goto try_to_scroll;
a2889657 8658 }
5f5c8ee5
GM
8659 else if (scroll_p)
8660 goto try_to_scroll;
8661
8662 set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0);
8663 goto done;
a2889657 8664 }
5f5c8ee5 8665
a2889657
JB
8666 /* If current starting point was originally the beginning of a line
8667 but no longer is, find a new starting point. */
265a9e55 8668 else if (!NILP (w->start_at_line_beg)
5f5c8ee5
GM
8669 && !(CHARPOS (startp) <= BEGV
8670 || FETCH_BYTE (BYTEPOS (startp) - 1) == '\n'))
a2889657 8671 {
5f5c8ee5
GM
8672#if GLYPH_DEBUG
8673 debug_method_add (w, "recenter 1");
8674#endif
a2889657
JB
8675 goto recenter;
8676 }
5f5c8ee5
GM
8677
8678 /* Try scrolling with try_window_id. */
9142dd5b
GM
8679 else if (/* Windows and buffers haven't changed. */
8680 !windows_or_buffers_changed
5f5c8ee5
GM
8681 /* Window must be either use window-based redisplay or
8682 be full width. */
8683 && (FRAME_WINDOW_P (f)
c59c668a 8684 || (line_ins_del_ok && WINDOW_FULL_WIDTH_P (w)))
5f5c8ee5
GM
8685 && !MINI_WINDOW_P (w)
8686 /* Point is not known NOT to appear in window. */
8687 && PT >= CHARPOS (startp)
a2889657 8688 && XFASTINT (w->last_modified)
5f5c8ee5
GM
8689 /* Window is not hscrolled. */
8690 && XFASTINT (w->hscroll) == 0
8691 /* Selective display has not changed. */
8692 && !current_buffer->clip_changed
8693 /* Current matrix is up to date. */
8694 && !NILP (w->window_end_valid)
8695 /* Can't use this case if highlighting a region because
8696 a cursor movement will do more than just set the cursor. */
bd66d1ba
RS
8697 && !(!NILP (Vtransient_mark_mode)
8698 && !NILP (current_buffer->mark_active))
8699 && NILP (w->region_showing)
8f897821 8700 && NILP (Vshow_trailing_whitespace)
5f5c8ee5 8701 /* Overlay arrow position and string not changed. */
d45de95b 8702 && EQ (last_arrow_position, COERCE_MARKER (Voverlay_arrow_position))
a2889657 8703 && EQ (last_arrow_string, Voverlay_arrow_string)
5f5c8ee5
GM
8704 /* Value is > 0 if update has been done, it is -1 if we
8705 know that the same window start will not work. It is 0
8706 if unsuccessful for some other reason. */
8707 && (tem = try_window_id (w)) != 0)
a2889657 8708 {
5f5c8ee5
GM
8709#if GLYPH_DEBUG
8710 debug_method_add (w, "try_window_id");
8711#endif
8712
8713 if (fonts_changed_p)
8714 goto restore_buffers;
a2889657
JB
8715 if (tem > 0)
8716 goto done;
5f5c8ee5
GM
8717 /* Otherwise try_window_id has returned -1 which means that we
8718 don't want the alternative below this comment to execute. */
a2889657 8719 }
5f5c8ee5
GM
8720 else if (CHARPOS (startp) >= BEGV
8721 && CHARPOS (startp) <= ZV
8722 && PT >= CHARPOS (startp)
8723 && (CHARPOS (startp) < ZV
e9874cee 8724 /* Avoid starting at end of buffer. */
5f5c8ee5 8725 || CHARPOS (startp) == BEGV
8850a573
RS
8726 || (XFASTINT (w->last_modified) >= MODIFF
8727 && XFASTINT (w->last_overlay_modified) >= OVERLAY_MODIFF)))
a2889657 8728 {
5f5c8ee5
GM
8729#if GLYPH_DEBUG
8730 debug_method_add (w, "same window start");
8731#endif
8732
8733 /* Try to redisplay starting at same place as before.
8734 If point has not moved off frame, accept the results. */
8735 if (!current_matrix_up_to_date_p
8736 /* Don't use try_window_reusing_current_matrix in this case
8737 because it can have changed the buffer. */
8738 || !NILP (Vwindow_scroll_functions)
8739 || MINI_WINDOW_P (w)
8740 || !try_window_reusing_current_matrix (w))
8741 {
8742 IF_DEBUG (debug_method_add (w, "1"));
8743 try_window (window, startp);
8744 }
8745
8746 if (fonts_changed_p)
8747 goto restore_buffers;
8748
8749 if (w->cursor.vpos >= 0)
aa6d10fa 8750 {
5f5c8ee5
GM
8751 if (!just_this_one_p
8752 || current_buffer->clip_changed
9142dd5b 8753 || BEG_UNCHANGED < CHARPOS (startp))
aa6d10fa
RS
8754 /* Forget any recorded base line for line number display. */
8755 w->base_line_number = Qnil;
5f5c8ee5
GM
8756
8757 make_cursor_line_fully_visible (w);
aa6d10fa
RS
8758 goto done;
8759 }
a2889657 8760 else
5f5c8ee5 8761 clear_glyph_matrix (w->desired_matrix);
a2889657
JB
8762 }
8763
5f5c8ee5
GM
8764 try_to_scroll:
8765
c2213350 8766 XSETFASTINT (w->last_modified, 0);
8850a573 8767 XSETFASTINT (w->last_overlay_modified, 0);
5f5c8ee5 8768
e481f960
RS
8769 /* Redisplay the mode line. Select the buffer properly for that. */
8770 if (!update_mode_line)
8771 {
5ba50c51
RS
8772 if (!really_switched_buffer)
8773 {
8774 set_buffer_temp (old);
8775 set_buffer_internal_1 (XBUFFER (w->buffer));
5f5c8ee5 8776 really_switched_buffer = 1;
5ba50c51 8777 }
e481f960
RS
8778 update_mode_line = 1;
8779 w->update_mode_line = Qt;
8780 }
a2889657 8781
5f5c8ee5
GM
8782 /* Try to scroll by specified few lines. */
8783 if ((scroll_conservatively
8784 || scroll_step
8785 || temp_scroll_step
8786 || NUMBERP (current_buffer->scroll_up_aggressively)
8787 || NUMBERP (current_buffer->scroll_down_aggressively))
09cacf9c 8788 && !current_buffer->clip_changed
5f5c8ee5
GM
8789 && CHARPOS (startp) >= BEGV
8790 && CHARPOS (startp) <= ZV)
0789adb2 8791 {
5f5c8ee5
GM
8792 /* The function returns -1 if new fonts were loaded, 1 if
8793 successful, 0 if not successful. */
8794 int rc = try_scrolling (window, just_this_one_p,
8795 scroll_conservatively,
8796 scroll_step,
8797 temp_scroll_step);
8798 if (rc > 0)
8799 goto done;
8800 else if (rc < 0)
8801 goto restore_buffers;
8802 }
f9c8af06 8803
5f5c8ee5 8804 /* Finally, just choose place to start which centers point */
5936754e 8805
5f5c8ee5 8806 recenter:
44173109 8807
5f5c8ee5
GM
8808#if GLYPH_DEBUG
8809 debug_method_add (w, "recenter");
8810#endif
0789adb2 8811
5f5c8ee5 8812 /* w->vscroll = 0; */
0789adb2 8813
5f5c8ee5
GM
8814 /* Forget any previously recorded base line for line number display. */
8815 if (!current_matrix_up_to_date_p
8816 || current_buffer->clip_changed)
8817 w->base_line_number = Qnil;
8818
8819 /* Move backward half the height of the window. */
8820 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID);
8821 it.current_y = it.last_visible_y;
8822 move_it_vertically_backward (&it, it.last_visible_y / 2);
8823 xassert (IT_CHARPOS (it) >= BEGV);
8824
8825 /* The function move_it_vertically_backward may move over more
8826 than the specified y-distance. If it->w is small, e.g. a
8827 mini-buffer window, we may end up in front of the window's
8828 display area. Start displaying at the start of the line
8829 containing PT in this case. */
8830 if (it.current_y <= 0)
8831 {
8832 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID);
8833 move_it_vertically (&it, 0);
8834 xassert (IT_CHARPOS (it) <= PT);
8835 it.current_y = 0;
0789adb2
RS
8836 }
8837
5f5c8ee5
GM
8838 it.current_x = it.hpos = 0;
8839
8840 /* Set startp here explicitly in case that helps avoid an infinite loop
8841 in case the window-scroll-functions functions get errors. */
8842 set_marker_both (w->start, Qnil, IT_CHARPOS (it), IT_BYTEPOS (it));
8843
8844 /* Run scroll hooks. */
8845 startp = run_window_scroll_functions (window, it.current.pos);
8846
8847 /* Redisplay the window. */
8848 if (!current_matrix_up_to_date_p
8849 || windows_or_buffers_changed
8850 /* Don't use try_window_reusing_current_matrix in this case
8851 because it can have changed the buffer. */
8852 || !NILP (Vwindow_scroll_functions)
8853 || !just_this_one_p
8854 || MINI_WINDOW_P (w)
8855 || !try_window_reusing_current_matrix (w))
8856 try_window (window, startp);
8857
8858 /* If new fonts have been loaded (due to fontsets), give up. We
8859 have to start a new redisplay since we need to re-adjust glyph
8860 matrices. */
8861 if (fonts_changed_p)
8862 goto restore_buffers;
8863
8864 /* If cursor did not appear assume that the middle of the window is
8865 in the first line of the window. Do it again with the next line.
8866 (Imagine a window of height 100, displaying two lines of height
8867 60. Moving back 50 from it->last_visible_y will end in the first
8868 line.) */
8869 if (w->cursor.vpos < 0)
a2889657 8870 {
5f5c8ee5
GM
8871 if (!NILP (w->window_end_valid)
8872 && PT >= Z - XFASTINT (w->window_end_pos))
a2889657 8873 {
5f5c8ee5
GM
8874 clear_glyph_matrix (w->desired_matrix);
8875 move_it_by_lines (&it, 1, 0);
8876 try_window (window, it.current.pos);
a2889657 8877 }
5f5c8ee5 8878 else if (PT < IT_CHARPOS (it))
a2889657 8879 {
5f5c8ee5
GM
8880 clear_glyph_matrix (w->desired_matrix);
8881 move_it_by_lines (&it, -1, 0);
8882 try_window (window, it.current.pos);
8883 }
8884 else
8885 {
8886 /* Not much we can do about it. */
a2889657 8887 }
a2889657 8888 }
010494d0 8889
5f5c8ee5
GM
8890 /* Consider the following case: Window starts at BEGV, there is
8891 invisible, intangible text at BEGV, so that display starts at
8892 some point START > BEGV. It can happen that we are called with
8893 PT somewhere between BEGV and START. Try to handle that case. */
8894 if (w->cursor.vpos < 0)
835766b6 8895 {
5f5c8ee5
GM
8896 struct glyph_row *row = w->current_matrix->rows;
8897 if (row->mode_line_p)
8898 ++row;
8899 set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0);
835766b6 8900 }
5f5c8ee5
GM
8901
8902 make_cursor_line_fully_visible (w);
b5174a51 8903
5f5c8ee5
GM
8904 SET_TEXT_POS_FROM_MARKER (startp, w->start);
8905 w->start_at_line_beg = ((CHARPOS (startp) == BEGV
8906 || FETCH_BYTE (BYTEPOS (startp) - 1) == '\n')
8907 ? Qt : Qnil);
a2889657 8908
5f5c8ee5 8909 done:
a2889657 8910
5f5c8ee5 8911 /* Display the mode line, if we must. */
e481f960 8912 if ((update_mode_line
aa6d10fa 8913 /* If window not full width, must redo its mode line
5f5c8ee5
GM
8914 if (a) the window to its side is being redone and
8915 (b) we do a frame-based redisplay. This is a consequence
8916 of how inverted lines are drawn in frame-based redisplay. */
8917 || (!just_this_one_p
8918 && !FRAME_WINDOW_P (f)
8919 && !WINDOW_FULL_WIDTH_P (w))
8920 /* Line number to display. */
155ef550 8921 || INTEGERP (w->base_line_pos)
5f5c8ee5 8922 /* Column number is displayed and different from the one displayed. */
155ef550
KH
8923 || (!NILP (w->column_number_displayed)
8924 && XFASTINT (w->column_number_displayed) != current_column ()))
5f5c8ee5
GM
8925 /* This means that the window has a mode line. */
8926 && (WINDOW_WANTS_MODELINE_P (w)
045dee35 8927 || WINDOW_WANTS_HEADER_LINE_P (w)))
5ba50c51 8928 {
5f5c8ee5
GM
8929 display_mode_lines (w);
8930
8931 /* If mode line height has changed, arrange for a thorough
8932 immediate redisplay using the correct mode line height. */
8933 if (WINDOW_WANTS_MODELINE_P (w)
8934 && CURRENT_MODE_LINE_HEIGHT (w) != DESIRED_MODE_LINE_HEIGHT (w))
5ba50c51 8935 {
5f5c8ee5
GM
8936 fonts_changed_p = 1;
8937 MATRIX_MODE_LINE_ROW (w->current_matrix)->height
8938 = DESIRED_MODE_LINE_HEIGHT (w);
5ba50c51 8939 }
5f5c8ee5
GM
8940
8941 /* If top line height has changed, arrange for a thorough
8942 immediate redisplay using the correct mode line height. */
045dee35
GM
8943 if (WINDOW_WANTS_HEADER_LINE_P (w)
8944 && CURRENT_HEADER_LINE_HEIGHT (w) != DESIRED_HEADER_LINE_HEIGHT (w))
5f5c8ee5
GM
8945 {
8946 fonts_changed_p = 1;
045dee35
GM
8947 MATRIX_HEADER_LINE_ROW (w->current_matrix)->height
8948 = DESIRED_HEADER_LINE_HEIGHT (w);
5f5c8ee5
GM
8949 }
8950
8951 if (fonts_changed_p)
8952 goto restore_buffers;
5ba50c51 8953 }
5f5c8ee5
GM
8954
8955 if (!line_number_displayed
8956 && !BUFFERP (w->base_line_pos))
aa6d10fa
RS
8957 {
8958 w->base_line_pos = Qnil;
8959 w->base_line_number = Qnil;
8960 }
a2889657 8961
5f5c8ee5
GM
8962 finish_menu_bars:
8963
7ce2c095 8964 /* When we reach a frame's selected window, redo the frame's menu bar. */
e481f960 8965 if (update_mode_line
5f5c8ee5
GM
8966 && EQ (FRAME_SELECTED_WINDOW (f), window))
8967 {
8968 int redisplay_menu_p = 0;
8969
8970 if (FRAME_WINDOW_P (f))
8971 {
dc937613 8972#if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI)
5f5c8ee5 8973 redisplay_menu_p = FRAME_EXTERNAL_MENU_BAR (f);
76412d64 8974#else
5f5c8ee5 8975 redisplay_menu_p = FRAME_MENU_BAR_LINES (f) > 0;
76412d64 8976#endif
5f5c8ee5
GM
8977 }
8978 else
8979 redisplay_menu_p = FRAME_MENU_BAR_LINES (f) > 0;
8980
8981 if (redisplay_menu_p)
8982 display_menu_bar (w);
8983
8984#ifdef HAVE_WINDOW_SYSTEM
e037b9ec
GM
8985 if (WINDOWP (f->tool_bar_window)
8986 && (FRAME_TOOL_BAR_LINES (f) > 0
8987 || auto_resize_tool_bars_p))
8988 redisplay_tool_bar (f);
5f5c8ee5
GM
8989#endif
8990 }
7ce2c095 8991
88f22aff 8992 finish_scroll_bars:
5f5c8ee5 8993
88f22aff 8994 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
30c566e4 8995 {
b1d1124b 8996 int start, end, whole;
30c566e4 8997
b1d1124b 8998 /* Calculate the start and end positions for the current window.
3505ea70
JB
8999 At some point, it would be nice to choose between scrollbars
9000 which reflect the whole buffer size, with special markers
9001 indicating narrowing, and scrollbars which reflect only the
9002 visible region.
9003
5f5c8ee5 9004 Note that mini-buffers sometimes aren't displaying any text. */
c6e89d6c 9005 if (!MINI_WINDOW_P (w)
5f5c8ee5 9006 || (w == XWINDOW (minibuf_window)
c6e89d6c 9007 && NILP (echo_area_buffer[0])))
b1d1124b 9008 {
8a9311d7 9009 whole = ZV - BEGV;
4d641a15 9010 start = marker_position (w->start) - BEGV;
b1d1124b
JB
9011 /* I don't think this is guaranteed to be right. For the
9012 moment, we'll pretend it is. */
5f5c8ee5 9013 end = (Z - XFASTINT (w->window_end_pos)) - BEGV;
3505ea70 9014
5f5c8ee5
GM
9015 if (end < start)
9016 end = start;
9017 if (whole < (end - start))
9018 whole = end - start;
b1d1124b
JB
9019 }
9020 else
9021 start = end = whole = 0;
30c566e4 9022
88f22aff 9023 /* Indicate what this scroll bar ought to be displaying now. */
7eb9ba41 9024 (*set_vertical_scroll_bar_hook) (w, end - start, whole, start);
30c566e4 9025
5f5c8ee5
GM
9026 /* Note that we actually used the scroll bar attached to this
9027 window, so it shouldn't be deleted at the end of redisplay. */
88f22aff 9028 (*redeem_scroll_bar_hook) (w);
30c566e4 9029 }
b1d1124b 9030
5f5c8ee5
GM
9031 restore_buffers:
9032
9033 /* Restore current_buffer and value of point in it. */
9034 TEMP_SET_PT_BOTH (CHARPOS (opoint), BYTEPOS (opoint));
5ba50c51 9035 if (really_switched_buffer)
f72df6ac 9036 set_buffer_internal_1 (old);
e481f960
RS
9037 else
9038 set_buffer_temp (old);
5f5c8ee5 9039 TEMP_SET_PT_BOTH (CHARPOS (lpoint), BYTEPOS (lpoint));
2e54982e
RS
9040
9041 unbind_to (count, Qnil);
a2889657 9042}
a2889657 9043
5f5c8ee5
GM
9044
9045/* Build the complete desired matrix of WINDOW with a window start
9046 buffer position POS. Value is non-zero if successful. It is zero
9047 if fonts were loaded during redisplay which makes re-adjusting
9048 glyph matrices necessary. */
9049
9050int
a2889657
JB
9051try_window (window, pos)
9052 Lisp_Object window;
5f5c8ee5
GM
9053 struct text_pos pos;
9054{
9055 struct window *w = XWINDOW (window);
9056 struct it it;
9057 struct glyph_row *last_text_row = NULL;
9cbab4ff 9058
5f5c8ee5
GM
9059 /* Make POS the new window start. */
9060 set_marker_both (w->start, Qnil, CHARPOS (pos), BYTEPOS (pos));
12adba34 9061
5f5c8ee5
GM
9062 /* Mark cursor position as unknown. No overlay arrow seen. */
9063 w->cursor.vpos = -1;
a2889657 9064 overlay_arrow_seen = 0;
642eefc6 9065
5f5c8ee5
GM
9066 /* Initialize iterator and info to start at POS. */
9067 start_display (&it, w, pos);
a2889657 9068
5f5c8ee5
GM
9069 /* Display all lines of W. */
9070 while (it.current_y < it.last_visible_y)
9071 {
9072 if (display_line (&it))
9073 last_text_row = it.glyph_row - 1;
9074 if (fonts_changed_p)
9075 return 0;
9076 }
a2889657 9077
5f5c8ee5
GM
9078 /* If bottom moved off end of frame, change mode line percentage. */
9079 if (XFASTINT (w->window_end_pos) <= 0
9080 && Z != IT_CHARPOS (it))
a2889657
JB
9081 w->update_mode_line = Qt;
9082
5f5c8ee5
GM
9083 /* Set window_end_pos to the offset of the last character displayed
9084 on the window from the end of current_buffer. Set
9085 window_end_vpos to its row number. */
9086 if (last_text_row)
9087 {
9088 xassert (MATRIX_ROW_DISPLAYS_TEXT_P (last_text_row));
9089 w->window_end_bytepos
9090 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_text_row);
9091 XSETFASTINT (w->window_end_pos,
9092 Z - MATRIX_ROW_END_CHARPOS (last_text_row));
9093 XSETFASTINT (w->window_end_vpos,
9094 MATRIX_ROW_VPOS (last_text_row, w->desired_matrix));
9095 xassert (MATRIX_ROW (w->desired_matrix, XFASTINT (w->window_end_vpos))
9096 ->displays_text_p);
9097 }
9098 else
9099 {
9100 w->window_end_bytepos = 0;
9101 XSETFASTINT (w->window_end_pos, 0);
9102 XSETFASTINT (w->window_end_vpos, 0);
9103 }
9104
a2889657
JB
9105 /* But that is not valid info until redisplay finishes. */
9106 w->window_end_valid = Qnil;
5f5c8ee5 9107 return 1;
a2889657 9108}
5f5c8ee5
GM
9109
9110
a2889657 9111\f
5f5c8ee5
GM
9112/************************************************************************
9113 Window redisplay reusing current matrix when buffer has not changed
9114 ************************************************************************/
9115
9116/* Try redisplay of window W showing an unchanged buffer with a
9117 different window start than the last time it was displayed by
9118 reusing its current matrix. Value is non-zero if successful.
9119 W->start is the new window start. */
a2889657
JB
9120
9121static int
5f5c8ee5
GM
9122try_window_reusing_current_matrix (w)
9123 struct window *w;
a2889657 9124{
5f5c8ee5
GM
9125 struct frame *f = XFRAME (w->frame);
9126 struct glyph_row *row, *bottom_row;
9127 struct it it;
9128 struct run run;
9129 struct text_pos start, new_start;
9130 int nrows_scrolled, i;
9131 struct glyph_row *last_text_row;
9132 struct glyph_row *last_reused_text_row;
9133 struct glyph_row *start_row;
9134 int start_vpos, min_y, max_y;
9135
9136 /* Right now this function doesn't handle terminal frames. */
9137 if (!FRAME_WINDOW_P (f))
9138 return 0;
a2889657 9139
5f5c8ee5
GM
9140 /* Can't do this if region may have changed. */
9141 if ((!NILP (Vtransient_mark_mode)
9142 && !NILP (current_buffer->mark_active))
8f897821
GM
9143 || !NILP (w->region_showing)
9144 || !NILP (Vshow_trailing_whitespace))
5f5c8ee5 9145 return 0;
a2889657 9146
5f5c8ee5 9147 /* If top-line visibility has changed, give up. */
045dee35
GM
9148 if (WINDOW_WANTS_HEADER_LINE_P (w)
9149 != MATRIX_HEADER_LINE_ROW (w->current_matrix)->mode_line_p)
5f5c8ee5
GM
9150 return 0;
9151
9152 /* Give up if old or new display is scrolled vertically. We could
9153 make this function handle this, but right now it doesn't. */
9154 start_row = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
9155 if (w->vscroll || MATRIX_ROW_PARTIALLY_VISIBLE_P (start_row))
9156 return 0;
9157
9158 /* The variable new_start now holds the new window start. The old
9159 start `start' can be determined from the current matrix. */
9160 SET_TEXT_POS_FROM_MARKER (new_start, w->start);
9161 start = start_row->start.pos;
9162 start_vpos = MATRIX_ROW_VPOS (start_row, w->current_matrix);
a2889657 9163
5f5c8ee5
GM
9164 /* Clear the desired matrix for the display below. */
9165 clear_glyph_matrix (w->desired_matrix);
9166
9167 if (CHARPOS (new_start) <= CHARPOS (start))
9168 {
9169 int first_row_y;
9170
9171 IF_DEBUG (debug_method_add (w, "twu1"));
9172
9173 /* Display up to a row that can be reused. The variable
9174 last_text_row is set to the last row displayed that displays
9175 text. */
9176 start_display (&it, w, new_start);
9177 first_row_y = it.current_y;
9178 w->cursor.vpos = -1;
9179 last_text_row = last_reused_text_row = NULL;
9180 while (it.current_y < it.last_visible_y
9181 && IT_CHARPOS (it) < CHARPOS (start)
9182 && !fonts_changed_p)
9183 if (display_line (&it))
9184 last_text_row = it.glyph_row - 1;
9185
9186 /* A value of current_y < last_visible_y means that we stopped
9187 at the previous window start, which in turn means that we
9188 have at least one reusable row. */
9189 if (it.current_y < it.last_visible_y)
a2889657 9190 {
5f5c8ee5
GM
9191 nrows_scrolled = it.vpos;
9192
9193 /* Find PT if not already found in the lines displayed. */
9194 if (w->cursor.vpos < 0)
a2889657 9195 {
5f5c8ee5
GM
9196 int dy = it.current_y - first_row_y;
9197
9198 row = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
9199 while (MATRIX_ROW_DISPLAYS_TEXT_P (row))
9200 {
9201 if (PT >= MATRIX_ROW_START_CHARPOS (row)
9202 && PT < MATRIX_ROW_END_CHARPOS (row))
9203 {
9204 set_cursor_from_row (w, row, w->current_matrix, 0, 0,
9205 dy, nrows_scrolled);
9206 break;
9207 }
9208
9209 if (MATRIX_ROW_BOTTOM_Y (row) + dy >= it.last_visible_y)
9210 break;
9211
9212 ++row;
9213 }
9214
9215 /* Give up if point was not found. This shouldn't
9216 happen often; not more often than with try_window
9217 itself. */
9218 if (w->cursor.vpos < 0)
9219 {
9220 clear_glyph_matrix (w->desired_matrix);
9221 return 0;
9222 }
a2889657 9223 }
5f5c8ee5
GM
9224
9225 /* Scroll the display. Do it before the current matrix is
9226 changed. The problem here is that update has not yet
9227 run, i.e. part of the current matrix is not up to date.
9228 scroll_run_hook will clear the cursor, and use the
9229 current matrix to get the height of the row the cursor is
9230 in. */
9231 run.current_y = first_row_y;
9232 run.desired_y = it.current_y;
9233 run.height = it.last_visible_y - it.current_y;
9234 if (run.height > 0)
a2889657 9235 {
5f5c8ee5
GM
9236 update_begin (f);
9237 rif->update_window_begin_hook (w);
9238 rif->scroll_run_hook (w, &run);
9239 rif->update_window_end_hook (w, 0);
9240 update_end (f);
a2889657 9241 }
5f5c8ee5
GM
9242
9243 /* Shift current matrix down by nrows_scrolled lines. */
9244 bottom_row = MATRIX_BOTTOM_TEXT_ROW (w->current_matrix, w);
9245 rotate_matrix (w->current_matrix,
9246 start_vpos,
9247 MATRIX_ROW_VPOS (bottom_row, w->current_matrix),
9248 nrows_scrolled);
9249
9250 /* Disable lines not reused. */
9251 for (i = 0; i < it.vpos; ++i)
9252 MATRIX_ROW (w->current_matrix, i)->enabled_p = 0;
9253
9254 /* Re-compute Y positions. */
9255 row = MATRIX_FIRST_TEXT_ROW (w->current_matrix) + nrows_scrolled;
045dee35 9256 min_y = WINDOW_DISPLAY_HEADER_LINE_HEIGHT (w);
5f5c8ee5
GM
9257 max_y = it.last_visible_y;
9258 while (row < bottom_row)
d2f84654 9259 {
5f5c8ee5
GM
9260 row->y = it.current_y;
9261
9262 if (row->y < min_y)
9263 row->visible_height = row->height - (min_y - row->y);
9264 else if (row->y + row->height > max_y)
9265 row->visible_height
9266 = row->height - (row->y + row->height - max_y);
9267 else
9268 row->visible_height = row->height;
9269
9270 it.current_y += row->height;
9271 ++it.vpos;
9272
9273 if (MATRIX_ROW_DISPLAYS_TEXT_P (row))
9274 last_reused_text_row = row;
9275 if (MATRIX_ROW_BOTTOM_Y (row) >= it.last_visible_y)
9276 break;
9277 ++row;
d2f84654 9278 }
a2889657 9279 }
5f5c8ee5
GM
9280
9281 /* Update window_end_pos etc.; last_reused_text_row is the last
9282 reused row from the current matrix containing text, if any.
9283 The value of last_text_row is the last displayed line
9284 containing text. */
9285 if (last_reused_text_row)
a2889657 9286 {
5f5c8ee5
GM
9287 w->window_end_bytepos
9288 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_reused_text_row);
9289 XSETFASTINT (w->window_end_pos,
9290 Z - MATRIX_ROW_END_CHARPOS (last_reused_text_row));
9291 XSETFASTINT (w->window_end_vpos,
9292 MATRIX_ROW_VPOS (last_reused_text_row,
9293 w->current_matrix));
a2889657 9294 }
5f5c8ee5
GM
9295 else if (last_text_row)
9296 {
9297 w->window_end_bytepos
9298 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_text_row);
9299 XSETFASTINT (w->window_end_pos,
9300 Z - MATRIX_ROW_END_CHARPOS (last_text_row));
9301 XSETFASTINT (w->window_end_vpos,
9302 MATRIX_ROW_VPOS (last_text_row, w->desired_matrix));
9303 }
9304 else
9305 {
9306 /* This window must be completely empty. */
9307 w->window_end_bytepos = 0;
9308 XSETFASTINT (w->window_end_pos, 0);
9309 XSETFASTINT (w->window_end_vpos, 0);
9310 }
9311 w->window_end_valid = Qnil;
a2889657 9312
5f5c8ee5
GM
9313 /* Update hint: don't try scrolling again in update_window. */
9314 w->desired_matrix->no_scrolling_p = 1;
9315
9316#if GLYPH_DEBUG
9317 debug_method_add (w, "try_window_reusing_current_matrix 1");
9318#endif
9319 return 1;
a2889657 9320 }
5f5c8ee5
GM
9321 else if (CHARPOS (new_start) > CHARPOS (start))
9322 {
9323 struct glyph_row *pt_row, *row;
9324 struct glyph_row *first_reusable_row;
9325 struct glyph_row *first_row_to_display;
9326 int dy;
9327 int yb = window_text_bottom_y (w);
9328
9329 IF_DEBUG (debug_method_add (w, "twu2"));
9330
9331 /* Find the row starting at new_start, if there is one. Don't
9332 reuse a partially visible line at the end. */
9333 first_reusable_row = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
9334 while (first_reusable_row->enabled_p
9335 && MATRIX_ROW_BOTTOM_Y (first_reusable_row) < yb
9336 && (MATRIX_ROW_START_CHARPOS (first_reusable_row)
9337 < CHARPOS (new_start)))
9338 ++first_reusable_row;
9339
9340 /* Give up if there is no row to reuse. */
9341 if (MATRIX_ROW_BOTTOM_Y (first_reusable_row) >= yb
28514cd9
GM
9342 || !first_reusable_row->enabled_p
9343 || (MATRIX_ROW_START_CHARPOS (first_reusable_row)
9344 != CHARPOS (new_start)))
5f5c8ee5
GM
9345 return 0;
9346
5f5c8ee5
GM
9347 /* We can reuse fully visible rows beginning with
9348 first_reusable_row to the end of the window. Set
9349 first_row_to_display to the first row that cannot be reused.
9350 Set pt_row to the row containing point, if there is any. */
9351 first_row_to_display = first_reusable_row;
9352 pt_row = NULL;
9353 while (MATRIX_ROW_BOTTOM_Y (first_row_to_display) < yb)
9354 {
9355 if (PT >= MATRIX_ROW_START_CHARPOS (first_row_to_display)
9356 && PT < MATRIX_ROW_END_CHARPOS (first_row_to_display))
9357 pt_row = first_row_to_display;
a2889657 9358
5f5c8ee5
GM
9359 ++first_row_to_display;
9360 }
a2889657 9361
5f5c8ee5
GM
9362 /* Start displaying at the start of first_row_to_display. */
9363 xassert (first_row_to_display->y < yb);
9364 init_to_row_start (&it, w, first_row_to_display);
9365 nrows_scrolled = MATRIX_ROW_VPOS (first_reusable_row, w->current_matrix);
9366 it.vpos = (MATRIX_ROW_VPOS (first_row_to_display, w->current_matrix)
9367 - nrows_scrolled);
9368 it.current_y = first_row_to_display->y - first_reusable_row->y;
9369
9370 /* Display lines beginning with first_row_to_display in the
9371 desired matrix. Set last_text_row to the last row displayed
9372 that displays text. */
9373 it.glyph_row = MATRIX_ROW (w->desired_matrix, it.vpos);
9374 if (pt_row == NULL)
9375 w->cursor.vpos = -1;
9376 last_text_row = NULL;
9377 while (it.current_y < it.last_visible_y && !fonts_changed_p)
9378 if (display_line (&it))
9379 last_text_row = it.glyph_row - 1;
9380
9381 /* Give up If point isn't in a row displayed or reused. */
9382 if (w->cursor.vpos < 0)
9383 {
9384 clear_glyph_matrix (w->desired_matrix);
9385 return 0;
9386 }
12adba34 9387
5f5c8ee5
GM
9388 /* If point is in a reused row, adjust y and vpos of the cursor
9389 position. */
9390 if (pt_row)
9391 {
9392 w->cursor.vpos -= MATRIX_ROW_VPOS (first_reusable_row,
9393 w->current_matrix);
9394 w->cursor.y -= first_reusable_row->y;
a2889657
JB
9395 }
9396
5f5c8ee5
GM
9397 /* Scroll the display. */
9398 run.current_y = first_reusable_row->y;
045dee35 9399 run.desired_y = WINDOW_DISPLAY_HEADER_LINE_HEIGHT (w);
5f5c8ee5
GM
9400 run.height = it.last_visible_y - run.current_y;
9401 if (run.height)
9402 {
9403 struct frame *f = XFRAME (WINDOW_FRAME (w));
9404 update_begin (f);
9405 rif->update_window_begin_hook (w);
9406 rif->scroll_run_hook (w, &run);
9407 rif->update_window_end_hook (w, 0);
9408 update_end (f);
9409 }
a2889657 9410
5f5c8ee5
GM
9411 /* Adjust Y positions of reused rows. */
9412 bottom_row = MATRIX_BOTTOM_TEXT_ROW (w->current_matrix, w);
9413 row = first_reusable_row;
9414 dy = first_reusable_row->y;
045dee35 9415 min_y = WINDOW_DISPLAY_HEADER_LINE_HEIGHT (w);
5f5c8ee5
GM
9416 max_y = it.last_visible_y;
9417 while (row < first_row_to_display)
9418 {
9419 row->y -= dy;
9420 if (row->y < min_y)
9421 row->visible_height = row->height - (min_y - row->y);
9422 else if (row->y + row->height > max_y)
9423 row->visible_height
9424 = row->height - (row->y + row->height - max_y);
9425 else
9426 row->visible_height = row->height;
9427 ++row;
9428 }
a2889657 9429
5f5c8ee5
GM
9430 /* Disable rows not reused. */
9431 while (row < bottom_row)
9432 {
9433 row->enabled_p = 0;
9434 ++row;
9435 }
9436
9437 /* Scroll the current matrix. */
9438 xassert (nrows_scrolled > 0);
9439 rotate_matrix (w->current_matrix,
9440 start_vpos,
9441 MATRIX_ROW_VPOS (bottom_row, w->current_matrix),
9442 -nrows_scrolled);
9443
9444 /* Adjust window end. A null value of last_text_row means that
9445 the window end is in reused rows which in turn means that
9446 only its vpos can have changed. */
9447 if (last_text_row)
9448 {
9449 w->window_end_bytepos
9450 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_text_row);
9451 XSETFASTINT (w->window_end_pos,
9452 Z - MATRIX_ROW_END_CHARPOS (last_text_row));
9453 XSETFASTINT (w->window_end_vpos,
9454 MATRIX_ROW_VPOS (last_text_row, w->desired_matrix));
9455 }
9456 else
a2889657 9457 {
e8e536a9 9458 XSETFASTINT (w->window_end_vpos,
5f5c8ee5 9459 XFASTINT (w->window_end_vpos) - nrows_scrolled);
a2889657 9460 }
5f5c8ee5
GM
9461
9462 w->window_end_valid = Qnil;
9463 w->desired_matrix->no_scrolling_p = 1;
9464
9465#if GLYPH_DEBUG
9466 debug_method_add (w, "try_window_reusing_current_matrix 2");
9467#endif
9468 return 1;
a2889657 9469 }
5f5c8ee5
GM
9470
9471 return 0;
9472}
a2889657 9473
a2889657 9474
5f5c8ee5
GM
9475\f
9476/************************************************************************
9477 Window redisplay reusing current matrix when buffer has changed
9478 ************************************************************************/
9479
9480static struct glyph_row *get_last_unchanged_at_beg_row P_ ((struct window *));
9481static struct glyph_row *get_first_unchanged_at_end_row P_ ((struct window *,
9482 int *, int *));
9483static struct glyph_row *
9484find_last_row_displaying_text P_ ((struct glyph_matrix *, struct it *,
9485 struct glyph_row *));
9486
9487
9488/* Return the last row in MATRIX displaying text. If row START is
9489 non-null, start searching with that row. IT gives the dimensions
9490 of the display. Value is null if matrix is empty; otherwise it is
9491 a pointer to the row found. */
9492
9493static struct glyph_row *
9494find_last_row_displaying_text (matrix, it, start)
9495 struct glyph_matrix *matrix;
9496 struct it *it;
9497 struct glyph_row *start;
9498{
9499 struct glyph_row *row, *row_found;
9500
9501 /* Set row_found to the last row in IT->w's current matrix
9502 displaying text. The loop looks funny but think of partially
9503 visible lines. */
9504 row_found = NULL;
9505 row = start ? start : MATRIX_FIRST_TEXT_ROW (matrix);
9506 while (MATRIX_ROW_DISPLAYS_TEXT_P (row))
9507 {
9508 xassert (row->enabled_p);
9509 row_found = row;
9510 if (MATRIX_ROW_BOTTOM_Y (row) >= it->last_visible_y)
9511 break;
9512 ++row;
a2889657 9513 }
5f5c8ee5
GM
9514
9515 return row_found;
9516}
9517
a2889657 9518
5f5c8ee5
GM
9519/* Return the last row in the current matrix of W that is not affected
9520 by changes at the start of current_buffer that occurred since the
9521 last time W was redisplayed. Value is null if no such row exists.
a2889657 9522
5f5c8ee5
GM
9523 The global variable beg_unchanged has to contain the number of
9524 bytes unchanged at the start of current_buffer. BEG +
9525 beg_unchanged is the buffer position of the first changed byte in
9526 current_buffer. Characters at positions < BEG + beg_unchanged are
9527 at the same buffer positions as they were when the current matrix
9528 was built. */
9529
9530static struct glyph_row *
9531get_last_unchanged_at_beg_row (w)
9532 struct window *w;
9533{
9142dd5b 9534 int first_changed_pos = BEG + BEG_UNCHANGED;
5f5c8ee5
GM
9535 struct glyph_row *row;
9536 struct glyph_row *row_found = NULL;
9537 int yb = window_text_bottom_y (w);
9538
9539 /* Find the last row displaying unchanged text. */
9540 row = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
9541 while (MATRIX_ROW_DISPLAYS_TEXT_P (row)
9542 && MATRIX_ROW_START_CHARPOS (row) < first_changed_pos)
a2889657 9543 {
5f5c8ee5
GM
9544 if (/* If row ends before first_changed_pos, it is unchanged,
9545 except in some case. */
9546 MATRIX_ROW_END_CHARPOS (row) <= first_changed_pos
9547 /* When row ends in ZV and we write at ZV it is not
9548 unchanged. */
9549 && !row->ends_at_zv_p
9550 /* When first_changed_pos is the end of a continued line,
9551 row is not unchanged because it may be no longer
9552 continued. */
9553 && !(MATRIX_ROW_END_CHARPOS (row) == first_changed_pos
9554 && row->continued_p))
9555 row_found = row;
9556
9557 /* Stop if last visible row. */
9558 if (MATRIX_ROW_BOTTOM_Y (row) >= yb)
9559 break;
9560
9561 ++row;
a2889657
JB
9562 }
9563
5f5c8ee5 9564 return row_found;
a2889657 9565}
5f5c8ee5
GM
9566
9567
9568/* Find the first glyph row in the current matrix of W that is not
9569 affected by changes at the end of current_buffer since the last
9570 time the window was redisplayed. Return in *DELTA the number of
c59c668a
GM
9571 chars by which buffer positions in unchanged text at the end of
9572 current_buffer must be adjusted. Return in *DELTA_BYTES the
9573 corresponding number of bytes. Value is null if no such row
9574 exists, i.e. all rows are affected by changes. */
5f5c8ee5
GM
9575
9576static struct glyph_row *
9577get_first_unchanged_at_end_row (w, delta, delta_bytes)
9578 struct window *w;
9579 int *delta, *delta_bytes;
a2889657 9580{
5f5c8ee5
GM
9581 struct glyph_row *row;
9582 struct glyph_row *row_found = NULL;
c581d710 9583
5f5c8ee5 9584 *delta = *delta_bytes = 0;
b2a76982 9585
5f5c8ee5
GM
9586 /* A value of window_end_pos >= end_unchanged means that the window
9587 end is in the range of changed text. If so, there is no
9588 unchanged row at the end of W's current matrix. */
9589 xassert (!NILP (w->window_end_valid));
9142dd5b 9590 if (XFASTINT (w->window_end_pos) >= END_UNCHANGED)
5f5c8ee5
GM
9591 return NULL;
9592
9593 /* Set row to the last row in W's current matrix displaying text. */
9594 row = MATRIX_ROW (w->current_matrix, XFASTINT (w->window_end_vpos));
9595
5f5c8ee5
GM
9596 /* If matrix is entirely empty, no unchanged row exists. */
9597 if (MATRIX_ROW_DISPLAYS_TEXT_P (row))
9598 {
9599 /* The value of row is the last glyph row in the matrix having a
9600 meaningful buffer position in it. The end position of row
9601 corresponds to window_end_pos. This allows us to translate
9602 buffer positions in the current matrix to current buffer
9603 positions for characters not in changed text. */
9604 int Z_old = MATRIX_ROW_END_CHARPOS (row) + XFASTINT (w->window_end_pos);
9605 int Z_BYTE_old = MATRIX_ROW_END_BYTEPOS (row) + w->window_end_bytepos;
9606 int last_unchanged_pos, last_unchanged_pos_old;
9607 struct glyph_row *first_text_row
9608 = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
9609
9610 *delta = Z - Z_old;
9611 *delta_bytes = Z_BYTE - Z_BYTE_old;
9612
9613 /* Set last_unchanged_pos to the buffer position of the last
9614 character in the buffer that has not been changed. Z is the
9615 index + 1 of the last byte in current_buffer, i.e. by
9616 subtracting end_unchanged we get the index of the last
9617 unchanged character, and we have to add BEG to get its buffer
9618 position. */
9142dd5b 9619 last_unchanged_pos = Z - END_UNCHANGED + BEG;
5f5c8ee5
GM
9620 last_unchanged_pos_old = last_unchanged_pos - *delta;
9621
9622 /* Search backward from ROW for a row displaying a line that
9623 starts at a minimum position >= last_unchanged_pos_old. */
9624 while (row >= first_text_row)
9625 {
9626 xassert (row->enabled_p);
9627 xassert (MATRIX_ROW_DISPLAYS_TEXT_P (row));
9628
9629 if (MATRIX_ROW_START_CHARPOS (row) >= last_unchanged_pos_old)
9630 row_found = row;
9631 --row;
9632 }
9633 }
9634
9635 xassert (!row_found || MATRIX_ROW_DISPLAYS_TEXT_P (row_found));
9636 return row_found;
c581d710
RS
9637}
9638
c581d710 9639
5f5c8ee5
GM
9640/* Make sure that glyph rows in the current matrix of window W
9641 reference the same glyph memory as corresponding rows in the
9642 frame's frame matrix. This function is called after scrolling W's
9643 current matrix on a terminal frame in try_window_id and
9644 try_window_reusing_current_matrix. */
9645
9646static void
9647sync_frame_with_window_matrix_rows (w)
9648 struct window *w;
c581d710 9649{
5f5c8ee5
GM
9650 struct frame *f = XFRAME (w->frame);
9651 struct glyph_row *window_row, *window_row_end, *frame_row;
9652
9653 /* Preconditions: W must be a leaf window and full-width. Its frame
9654 must have a frame matrix. */
9655 xassert (NILP (w->hchild) && NILP (w->vchild));
9656 xassert (WINDOW_FULL_WIDTH_P (w));
9657 xassert (!FRAME_WINDOW_P (f));
9658
9659 /* If W is a full-width window, glyph pointers in W's current matrix
9660 have, by definition, to be the same as glyph pointers in the
9661 corresponding frame matrix. */
9662 window_row = w->current_matrix->rows;
9663 window_row_end = window_row + w->current_matrix->nrows;
9664 frame_row = f->current_matrix->rows + XFASTINT (w->top);
9665 while (window_row < window_row_end)
659a218f 9666 {
5f5c8ee5
GM
9667 int area;
9668 for (area = LEFT_MARGIN_AREA; area <= LAST_AREA; ++area)
9669 frame_row->glyphs[area] = window_row->glyphs[area];
9670 ++window_row, ++frame_row;
659a218f 9671 }
a2889657 9672}
5f5c8ee5
GM
9673
9674
e037b9ec
GM
9675/* Find the glyph row in window W containing CHARPOS. Consider all
9676 rows between START and END (not inclusive). END null means search
9677 all rows to the end of the display area of W. Value is the row
9678 containing CHARPOS or null. */
9679
9680static struct glyph_row *
9681row_containing_pos (w, charpos, start, end)
9682 struct window *w;
9683 int charpos;
9684 struct glyph_row *start, *end;
9685{
9686 struct glyph_row *row = start;
9687 int last_y;
9688
9689 /* If we happen to start on a header-line, skip that. */
9690 if (row->mode_line_p)
9691 ++row;
9692
9693 if ((end && row >= end) || !row->enabled_p)
9694 return NULL;
9695
9696 last_y = window_text_bottom_y (w);
9697
9698 while ((end == NULL || row < end)
9699 && (MATRIX_ROW_END_CHARPOS (row) < charpos
9700 /* The end position of a row equals the start
9701 position of the next row. If CHARPOS is there, we
9702 would rather display it in the next line, except
9703 when this line ends in ZV. */
9704 || (MATRIX_ROW_END_CHARPOS (row) == charpos
9705 && (MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row)
9706 || !row->ends_at_zv_p)))
9707 && MATRIX_ROW_BOTTOM_Y (row) < last_y)
9708 ++row;
9709
9710 /* Give up if CHARPOS not found. */
9711 if ((end && row >= end)
9712 || charpos < MATRIX_ROW_START_CHARPOS (row)
9713 || charpos > MATRIX_ROW_END_CHARPOS (row))
9714 row = NULL;
9715
9716 return row;
9717}
9718
9719
5f5c8ee5
GM
9720/* Try to redisplay window W by reusing its existing display. W's
9721 current matrix must be up to date when this function is called,
9722 i.e. window_end_valid must not be nil.
9723
9724 Value is
9725
9726 1 if display has been updated
9727 0 if otherwise unsuccessful
9728 -1 if redisplay with same window start is known not to succeed
9729
9730 The following steps are performed:
9731
9732 1. Find the last row in the current matrix of W that is not
9733 affected by changes at the start of current_buffer. If no such row
9734 is found, give up.
9735
9736 2. Find the first row in W's current matrix that is not affected by
9737 changes at the end of current_buffer. Maybe there is no such row.
9738
9739 3. Display lines beginning with the row + 1 found in step 1 to the
9740 row found in step 2 or, if step 2 didn't find a row, to the end of
9741 the window.
9742
9743 4. If cursor is not known to appear on the window, give up.
9744
9745 5. If display stopped at the row found in step 2, scroll the
9746 display and current matrix as needed.
9747
9748 6. Maybe display some lines at the end of W, if we must. This can
9749 happen under various circumstances, like a partially visible line
9750 becoming fully visible, or because newly displayed lines are displayed
9751 in smaller font sizes.
9752
9753 7. Update W's window end information. */
9754
9755 /* Check that window end is what we expect it to be. */
12adba34
RS
9756
9757static int
5f5c8ee5 9758try_window_id (w)
12adba34 9759 struct window *w;
12adba34 9760{
5f5c8ee5
GM
9761 struct frame *f = XFRAME (w->frame);
9762 struct glyph_matrix *current_matrix = w->current_matrix;
9763 struct glyph_matrix *desired_matrix = w->desired_matrix;
9764 struct glyph_row *last_unchanged_at_beg_row;
9765 struct glyph_row *first_unchanged_at_end_row;
9766 struct glyph_row *row;
9767 struct glyph_row *bottom_row;
9768 int bottom_vpos;
9769 struct it it;
9770 int delta = 0, delta_bytes = 0, stop_pos, dvpos, dy;
9771 struct text_pos start_pos;
9772 struct run run;
9773 int first_unchanged_at_end_vpos = 0;
9774 struct glyph_row *last_text_row, *last_text_row_at_end;
9775 struct text_pos start;
9776
9777 SET_TEXT_POS_FROM_MARKER (start, w->start);
9778
9779 /* Check pre-conditions. Window end must be valid, otherwise
9780 the current matrix would not be up to date. */
9781 xassert (!NILP (w->window_end_valid));
9782 xassert (FRAME_WINDOW_P (XFRAME (w->frame))
9783 || (line_ins_del_ok && WINDOW_FULL_WIDTH_P (w)));
9784
9785 /* Make sure beg_unchanged and end_unchanged are up to date. Do it
9786 only if buffer has really changed. The reason is that the gap is
9787 initially at Z for freshly visited files. The code below would
9788 set end_unchanged to 0 in that case. */
9789 if (MODIFF > SAVE_MODIFF)
9790 {
9142dd5b
GM
9791 if (GPT - BEG < BEG_UNCHANGED)
9792 BEG_UNCHANGED = GPT - BEG;
9793 if (Z - GPT < END_UNCHANGED)
9794 END_UNCHANGED = Z - GPT;
5f5c8ee5
GM
9795 }
9796
9797 /* If window starts after a line end, and the last change is in
9798 front of that newline, then changes don't affect the display.
9799 This case happens with stealth-fontification. */
9800 row = MATRIX_ROW (w->current_matrix, XFASTINT (w->window_end_vpos));
9801 if (CHARPOS (start) > BEGV
9142dd5b 9802 && Z - END_UNCHANGED < CHARPOS (start) - 1
5f5c8ee5
GM
9803 && FETCH_BYTE (BYTEPOS (start) - 1) == '\n'
9804 && PT < MATRIX_ROW_END_CHARPOS (row))
9805 {
9806 /* We have to update window end positions because the buffer's
9807 size has changed. */
9808 w->window_end_pos
9809 = make_number (Z - MATRIX_ROW_END_CHARPOS (row));
9810 w->window_end_bytepos
9811 = make_number (Z_BYTE - MATRIX_ROW_END_BYTEPOS (row));
9812 return 1;
9813 }
9814
9815 /* Return quickly if changes are all below what is displayed in the
9816 window, and if PT is in the window. */
9142dd5b 9817 if (BEG_UNCHANGED > MATRIX_ROW_END_CHARPOS (row)
5f5c8ee5
GM
9818 && PT < MATRIX_ROW_END_CHARPOS (row))
9819 {
9820 /* We have to update window end positions because the buffer's
9821 size has changed. */
9822 w->window_end_pos
9823 = make_number (Z - MATRIX_ROW_END_CHARPOS (row));
9824 w->window_end_bytepos
9825 = make_number (Z_BYTE - MATRIX_ROW_END_BYTEPOS (row));
9826 return 1;
9827 }
9828
9829 /* Check that window start agrees with the start of the first glyph
9830 row in its current matrix. Check this after we know the window
9831 start is not in changed text, otherwise positions would not be
9832 comparable. */
9833 row = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
9834 if (!TEXT_POS_EQUAL_P (start, row->start.pos))
9835 return 0;
9836
5f5c8ee5
GM
9837 /* Compute the position at which we have to start displaying new
9838 lines. Some of the lines at the top of the window might be
9839 reusable because they are not displaying changed text. Find the
9840 last row in W's current matrix not affected by changes at the
9841 start of current_buffer. Value is null if changes start in the
9842 first line of window. */
9843 last_unchanged_at_beg_row = get_last_unchanged_at_beg_row (w);
9844 if (last_unchanged_at_beg_row)
9845 {
9846 init_to_row_end (&it, w, last_unchanged_at_beg_row);
9847 start_pos = it.current.pos;
9848
9849 /* Start displaying new lines in the desired matrix at the same
9850 vpos we would use in the current matrix, i.e. below
9851 last_unchanged_at_beg_row. */
9852 it.vpos = 1 + MATRIX_ROW_VPOS (last_unchanged_at_beg_row,
9853 current_matrix);
9854 it.glyph_row = MATRIX_ROW (desired_matrix, it.vpos);
9855 it.current_y = MATRIX_ROW_BOTTOM_Y (last_unchanged_at_beg_row);
9856
9857 xassert (it.hpos == 0 && it.current_x == 0);
9858 }
9859 else
9860 {
9861 /* There are no reusable lines at the start of the window.
9862 Start displaying in the first line. */
9863 start_display (&it, w, start);
9864 start_pos = it.current.pos;
9865 }
9866
5f5c8ee5
GM
9867 /* Find the first row that is not affected by changes at the end of
9868 the buffer. Value will be null if there is no unchanged row, in
9869 which case we must redisplay to the end of the window. delta
9870 will be set to the value by which buffer positions beginning with
9871 first_unchanged_at_end_row have to be adjusted due to text
9872 changes. */
9873 first_unchanged_at_end_row
9874 = get_first_unchanged_at_end_row (w, &delta, &delta_bytes);
9875 IF_DEBUG (debug_delta = delta);
9876 IF_DEBUG (debug_delta_bytes = delta_bytes);
9877
9878 /* Set stop_pos to the buffer position up to which we will have to
9879 display new lines. If first_unchanged_at_end_row != NULL, this
9880 is the buffer position of the start of the line displayed in that
9881 row. For first_unchanged_at_end_row == NULL, use 0 to indicate
9882 that we don't stop at a buffer position. */
9883 stop_pos = 0;
9884 if (first_unchanged_at_end_row)
9885 {
9886 xassert (last_unchanged_at_beg_row == NULL
9887 || first_unchanged_at_end_row >= last_unchanged_at_beg_row);
9888
9889 /* If this is a continuation line, move forward to the next one
9890 that isn't. Changes in lines above affect this line.
9891 Caution: this may move first_unchanged_at_end_row to a row
9892 not displaying text. */
9893 while (MATRIX_ROW_CONTINUATION_LINE_P (first_unchanged_at_end_row)
9894 && MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row)
9895 && (MATRIX_ROW_BOTTOM_Y (first_unchanged_at_end_row)
9896 < it.last_visible_y))
9897 ++first_unchanged_at_end_row;
9898
9899 if (!MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row)
9900 || (MATRIX_ROW_BOTTOM_Y (first_unchanged_at_end_row)
9901 >= it.last_visible_y))
9902 first_unchanged_at_end_row = NULL;
9903 else
9904 {
9905 stop_pos = (MATRIX_ROW_START_CHARPOS (first_unchanged_at_end_row)
9906 + delta);
9907 first_unchanged_at_end_vpos
9908 = MATRIX_ROW_VPOS (first_unchanged_at_end_row, current_matrix);
9142dd5b 9909 xassert (stop_pos >= Z - END_UNCHANGED);
5f5c8ee5
GM
9910 }
9911 }
9912 else if (last_unchanged_at_beg_row == NULL)
9913 return 0;
9914
9915
9916#if GLYPH_DEBUG
9917
9918 /* Either there is no unchanged row at the end, or the one we have
9919 now displays text. This is a necessary condition for the window
9920 end pos calculation at the end of this function. */
9921 xassert (first_unchanged_at_end_row == NULL
9922 || MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row));
9923
9924 debug_last_unchanged_at_beg_vpos
9925 = (last_unchanged_at_beg_row
9926 ? MATRIX_ROW_VPOS (last_unchanged_at_beg_row, current_matrix)
9927 : -1);
9928 debug_first_unchanged_at_end_vpos = first_unchanged_at_end_vpos;
9929
9930#endif /* GLYPH_DEBUG != 0 */
9931
9932
9933 /* Display new lines. Set last_text_row to the last new line
9934 displayed which has text on it, i.e. might end up as being the
9935 line where the window_end_vpos is. */
9936 w->cursor.vpos = -1;
9937 last_text_row = NULL;
9938 overlay_arrow_seen = 0;
9939 while (it.current_y < it.last_visible_y
9940 && !fonts_changed_p
9941 && (first_unchanged_at_end_row == NULL
9942 || IT_CHARPOS (it) < stop_pos))
9943 {
9944 if (display_line (&it))
9945 last_text_row = it.glyph_row - 1;
9946 }
9947
9948 if (fonts_changed_p)
9949 return -1;
9950
9951
9952 /* Compute differences in buffer positions, y-positions etc. for
9953 lines reused at the bottom of the window. Compute what we can
9954 scroll. */
ca42b2e8
GM
9955 if (first_unchanged_at_end_row
9956 /* No lines reused because we displayed everything up to the
9957 bottom of the window. */
9958 && it.current_y < it.last_visible_y)
5f5c8ee5
GM
9959 {
9960 dvpos = (it.vpos
9961 - MATRIX_ROW_VPOS (first_unchanged_at_end_row,
9962 current_matrix));
9963 dy = it.current_y - first_unchanged_at_end_row->y;
9964 run.current_y = first_unchanged_at_end_row->y;
9965 run.desired_y = run.current_y + dy;
9966 run.height = it.last_visible_y - max (run.current_y, run.desired_y);
9967 }
9968 else
ca42b2e8
GM
9969 {
9970 delta = dvpos = dy = run.current_y = run.desired_y = run.height = 0;
9971 first_unchanged_at_end_row = NULL;
9972 }
5f5c8ee5
GM
9973 IF_DEBUG (debug_dvpos = dvpos; debug_dy = dy);
9974
8f8ba186 9975
5f5c8ee5
GM
9976 /* Find the cursor if not already found. We have to decide whether
9977 PT will appear on this window (it sometimes doesn't, but this is
9978 not a very frequent case.) This decision has to be made before
9979 the current matrix is altered. A value of cursor.vpos < 0 means
9980 that PT is either in one of the lines beginning at
9981 first_unchanged_at_end_row or below the window. Don't care for
9982 lines that might be displayed later at the window end; as
9983 mentioned, this is not a frequent case. */
9984 if (w->cursor.vpos < 0)
9985 {
9986 int last_y = min (it.last_visible_y, it.last_visible_y + dy);
9987
9988 /* Cursor in unchanged rows at the top? */
9989 if (PT < CHARPOS (start_pos)
9990 && last_unchanged_at_beg_row)
9991 {
e037b9ec
GM
9992 row = row_containing_pos (w, PT,
9993 MATRIX_FIRST_TEXT_ROW (w->current_matrix),
9994 last_unchanged_at_beg_row + 1);
9995 xassert (row && row <= last_unchanged_at_beg_row);
5f5c8ee5
GM
9996 set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0);
9997 }
9998
9999 /* Start from first_unchanged_at_end_row looking for PT. */
10000 else if (first_unchanged_at_end_row)
10001 {
e037b9ec
GM
10002 row = row_containing_pos (w, PT - delta,
10003 first_unchanged_at_end_row, NULL);
10004 if (row)
468155d7
GM
10005 set_cursor_from_row (w, row, w->current_matrix, delta,
10006 delta_bytes, dy, dvpos);
5f5c8ee5
GM
10007 }
10008
10009 /* Give up if cursor was not found. */
10010 if (w->cursor.vpos < 0)
10011 {
10012 clear_glyph_matrix (w->desired_matrix);
10013 return -1;
10014 }
10015 }
10016
10017 /* Don't let the cursor end in the scroll margins. */
10018 {
10019 int this_scroll_margin, cursor_height;
10020
10021 this_scroll_margin = max (0, scroll_margin);
10022 this_scroll_margin = min (this_scroll_margin,
10023 XFASTINT (w->height) / 4);
10024 this_scroll_margin *= CANON_Y_UNIT (it.f);
10025 cursor_height = MATRIX_ROW (w->desired_matrix, w->cursor.vpos)->height;
10026
10027 if ((w->cursor.y < this_scroll_margin
10028 && CHARPOS (start) > BEGV)
10029 /* Don't take scroll margin into account at the bottom because
10030 old redisplay didn't do it either. */
10031 || w->cursor.y + cursor_height > it.last_visible_y)
10032 {
10033 w->cursor.vpos = -1;
10034 clear_glyph_matrix (w->desired_matrix);
10035 return -1;
10036 }
10037 }
10038
10039 /* Scroll the display. Do it before changing the current matrix so
10040 that xterm.c doesn't get confused about where the cursor glyph is
10041 found. */
10042 if (dy)
10043 {
10044 update_begin (f);
10045
10046 if (FRAME_WINDOW_P (f))
10047 {
10048 rif->update_window_begin_hook (w);
10049 rif->scroll_run_hook (w, &run);
10050 rif->update_window_end_hook (w, 0);
10051 }
10052 else
10053 {
10054 /* Terminal frame. In this case, dvpos gives the number of
10055 lines to scroll by; dvpos < 0 means scroll up. */
10056 int first_unchanged_at_end_vpos
10057 = MATRIX_ROW_VPOS (first_unchanged_at_end_row, w->current_matrix);
10058 int from = XFASTINT (w->top) + first_unchanged_at_end_vpos;
10059 int end = XFASTINT (w->top) + window_internal_height (w);
10060
10061 /* Perform the operation on the screen. */
10062 if (dvpos > 0)
10063 {
10064 /* Scroll last_unchanged_at_beg_row to the end of the
10065 window down dvpos lines. */
10066 set_terminal_window (end);
10067
10068 /* On dumb terminals delete dvpos lines at the end
10069 before inserting dvpos empty lines. */
10070 if (!scroll_region_ok)
10071 ins_del_lines (end - dvpos, -dvpos);
10072
10073 /* Insert dvpos empty lines in front of
10074 last_unchanged_at_beg_row. */
10075 ins_del_lines (from, dvpos);
10076 }
10077 else if (dvpos < 0)
10078 {
10079 /* Scroll up last_unchanged_at_beg_vpos to the end of
10080 the window to last_unchanged_at_beg_vpos - |dvpos|. */
10081 set_terminal_window (end);
10082
10083 /* Delete dvpos lines in front of
10084 last_unchanged_at_beg_vpos. ins_del_lines will set
10085 the cursor to the given vpos and emit |dvpos| delete
10086 line sequences. */
10087 ins_del_lines (from + dvpos, dvpos);
10088
10089 /* On a dumb terminal insert dvpos empty lines at the
10090 end. */
10091 if (!scroll_region_ok)
10092 ins_del_lines (end + dvpos, -dvpos);
10093 }
10094
10095 set_terminal_window (0);
10096 }
10097
10098 update_end (f);
10099 }
10100
ca42b2e8
GM
10101 /* Shift reused rows of the current matrix to the right position.
10102 BOTTOM_ROW is the last + 1 row in the current matrix reserved for
10103 text. */
10104 bottom_row = MATRIX_BOTTOM_TEXT_ROW (current_matrix, w);
10105 bottom_vpos = MATRIX_ROW_VPOS (bottom_row, current_matrix);
5f5c8ee5
GM
10106 if (dvpos < 0)
10107 {
10108 rotate_matrix (current_matrix, first_unchanged_at_end_vpos + dvpos,
10109 bottom_vpos, dvpos);
10110 enable_glyph_matrix_rows (current_matrix, bottom_vpos + dvpos,
10111 bottom_vpos, 0);
10112 }
10113 else if (dvpos > 0)
10114 {
10115 rotate_matrix (current_matrix, first_unchanged_at_end_vpos,
10116 bottom_vpos, dvpos);
10117 enable_glyph_matrix_rows (current_matrix, first_unchanged_at_end_vpos,
10118 first_unchanged_at_end_vpos + dvpos, 0);
10119 }
10120
10121 /* For frame-based redisplay, make sure that current frame and window
10122 matrix are in sync with respect to glyph memory. */
10123 if (!FRAME_WINDOW_P (f))
10124 sync_frame_with_window_matrix_rows (w);
10125
10126 /* Adjust buffer positions in reused rows. */
10127 if (delta)
10128 increment_glyph_matrix_buffer_positions (current_matrix,
10129 first_unchanged_at_end_vpos + dvpos,
10130 bottom_vpos, delta, delta_bytes);
10131
10132 /* Adjust Y positions. */
10133 if (dy)
10134 shift_glyph_matrix (w, current_matrix,
10135 first_unchanged_at_end_vpos + dvpos,
10136 bottom_vpos, dy);
10137
10138 if (first_unchanged_at_end_row)
10139 first_unchanged_at_end_row += dvpos;
10140
10141 /* If scrolling up, there may be some lines to display at the end of
10142 the window. */
10143 last_text_row_at_end = NULL;
10144 if (dy < 0)
10145 {
10146 /* Set last_row to the glyph row in the current matrix where the
10147 window end line is found. It has been moved up or down in
10148 the matrix by dvpos. */
10149 int last_vpos = XFASTINT (w->window_end_vpos) + dvpos;
10150 struct glyph_row *last_row = MATRIX_ROW (current_matrix, last_vpos);
10151
10152 /* If last_row is the window end line, it should display text. */
10153 xassert (last_row->displays_text_p);
10154
10155 /* If window end line was partially visible before, begin
10156 displaying at that line. Otherwise begin displaying with the
10157 line following it. */
10158 if (MATRIX_ROW_BOTTOM_Y (last_row) - dy >= it.last_visible_y)
10159 {
10160 init_to_row_start (&it, w, last_row);
10161 it.vpos = last_vpos;
10162 it.current_y = last_row->y;
10163 }
10164 else
10165 {
10166 init_to_row_end (&it, w, last_row);
10167 it.vpos = 1 + last_vpos;
10168 it.current_y = MATRIX_ROW_BOTTOM_Y (last_row);
10169 ++last_row;
10170 }
12adba34 10171
5f5c8ee5
GM
10172 /* We may start in a continuation line. If so, we have to get
10173 the right continuation_lines_width and current_x. */
10174 it.continuation_lines_width = last_row->continuation_lines_width;
10175 it.hpos = it.current_x = 0;
10176
10177 /* Display the rest of the lines at the window end. */
10178 it.glyph_row = MATRIX_ROW (desired_matrix, it.vpos);
10179 while (it.current_y < it.last_visible_y
10180 && !fonts_changed_p)
10181 {
10182 /* Is it always sure that the display agrees with lines in
10183 the current matrix? I don't think so, so we mark rows
10184 displayed invalid in the current matrix by setting their
10185 enabled_p flag to zero. */
10186 MATRIX_ROW (w->current_matrix, it.vpos)->enabled_p = 0;
10187 if (display_line (&it))
10188 last_text_row_at_end = it.glyph_row - 1;
10189 }
10190 }
12adba34 10191
5f5c8ee5
GM
10192 /* Update window_end_pos and window_end_vpos. */
10193 if (first_unchanged_at_end_row
10194 && first_unchanged_at_end_row->y < it.last_visible_y
10195 && !last_text_row_at_end)
10196 {
10197 /* Window end line if one of the preserved rows from the current
10198 matrix. Set row to the last row displaying text in current
10199 matrix starting at first_unchanged_at_end_row, after
10200 scrolling. */
10201 xassert (first_unchanged_at_end_row->displays_text_p);
10202 row = find_last_row_displaying_text (w->current_matrix, &it,
10203 first_unchanged_at_end_row);
10204 xassert (row && MATRIX_ROW_DISPLAYS_TEXT_P (row));
10205
10206 XSETFASTINT (w->window_end_pos, Z - MATRIX_ROW_END_CHARPOS (row));
10207 w->window_end_bytepos = Z_BYTE - MATRIX_ROW_END_BYTEPOS (row);
10208 XSETFASTINT (w->window_end_vpos,
10209 MATRIX_ROW_VPOS (row, w->current_matrix));
10210 }
10211 else if (last_text_row_at_end)
10212 {
10213 XSETFASTINT (w->window_end_pos,
10214 Z - MATRIX_ROW_END_CHARPOS (last_text_row_at_end));
10215 w->window_end_bytepos
10216 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_text_row_at_end);
10217 XSETFASTINT (w->window_end_vpos,
10218 MATRIX_ROW_VPOS (last_text_row_at_end, desired_matrix));
10219 }
10220 else if (last_text_row)
10221 {
10222 /* We have displayed either to the end of the window or at the
10223 end of the window, i.e. the last row with text is to be found
10224 in the desired matrix. */
10225 XSETFASTINT (w->window_end_pos,
10226 Z - MATRIX_ROW_END_CHARPOS (last_text_row));
10227 w->window_end_bytepos
10228 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_text_row);
10229 XSETFASTINT (w->window_end_vpos,
10230 MATRIX_ROW_VPOS (last_text_row, desired_matrix));
10231 }
10232 else if (first_unchanged_at_end_row == NULL
10233 && last_text_row == NULL
10234 && last_text_row_at_end == NULL)
10235 {
10236 /* Displayed to end of window, but no line containing text was
10237 displayed. Lines were deleted at the end of the window. */
10238 int vpos;
045dee35 10239 int header_line_p = WINDOW_WANTS_HEADER_LINE_P (w) ? 1 : 0;
5f5c8ee5
GM
10240
10241 for (vpos = XFASTINT (w->window_end_vpos); vpos > 0; --vpos)
045dee35
GM
10242 if ((w->desired_matrix->rows[vpos + header_line_p].enabled_p
10243 && w->desired_matrix->rows[vpos + header_line_p].displays_text_p)
10244 || (!w->desired_matrix->rows[vpos + header_line_p].enabled_p
10245 && w->current_matrix->rows[vpos + header_line_p].displays_text_p))
5f5c8ee5 10246 break;
12adba34 10247
5f5c8ee5
GM
10248 w->window_end_vpos = make_number (vpos);
10249 }
10250 else
10251 abort ();
10252
10253 IF_DEBUG (debug_end_pos = XFASTINT (w->window_end_pos);
10254 debug_end_vpos = XFASTINT (w->window_end_vpos));
12adba34 10255
5f5c8ee5
GM
10256 /* Record that display has not been completed. */
10257 w->window_end_valid = Qnil;
10258 w->desired_matrix->no_scrolling_p = 1;
10259 return 1;
12adba34 10260}
0f9c0ff0 10261
a2889657 10262
5f5c8ee5
GM
10263\f
10264/***********************************************************************
10265 More debugging support
10266 ***********************************************************************/
a2889657 10267
5f5c8ee5 10268#if GLYPH_DEBUG
a2889657 10269
5f5c8ee5
GM
10270 void dump_glyph_row P_ ((struct glyph_matrix *, int, int));
10271static void dump_glyph_matrix P_ ((struct glyph_matrix *, int));
1c9241f5 10272
31b24551 10273
5f5c8ee5
GM
10274/* Dump the contents of glyph matrix MATRIX on stderr. If
10275 WITH_GLYPHS_P is non-zero, dump glyph contents as well. */
ca26e1c8 10276
5f5c8ee5
GM
10277void
10278dump_glyph_matrix (matrix, with_glyphs_p)
10279 struct glyph_matrix *matrix;
10280 int with_glyphs_p;
10281{
efc63ef0 10282 int i;
5f5c8ee5
GM
10283 for (i = 0; i < matrix->nrows; ++i)
10284 dump_glyph_row (matrix, i, with_glyphs_p);
10285}
31b24551 10286
68a37fa8 10287
5f5c8ee5
GM
10288/* Dump the contents of glyph row at VPOS in MATRIX to stderr.
10289 WITH_GLYPH_SP non-zero means dump glyph contents, too. */
a2889657 10290
5f5c8ee5
GM
10291void
10292dump_glyph_row (matrix, vpos, with_glyphs_p)
10293 struct glyph_matrix *matrix;
10294 int vpos, with_glyphs_p;
10295{
10296 struct glyph_row *row;
10297
10298 if (vpos < 0 || vpos >= matrix->nrows)
10299 return;
10300
10301 row = MATRIX_ROW (matrix, vpos);
10302
10303 fprintf (stderr, "Row Start End Used oEI><O\\CTZF X Y W\n");
10304 fprintf (stderr, "=============================================\n");
10305
10306 fprintf (stderr, "%3d %5d %5d %4d %1.1d%1.1d%1.1d%1.1d%1.1d%1.1d%1.1d%1.1d%1.1d%1.1d%1.1d %4d %4d %4d\n",
10307 row - matrix->rows,
10308 MATRIX_ROW_START_CHARPOS (row),
10309 MATRIX_ROW_END_CHARPOS (row),
10310 row->used[TEXT_AREA],
10311 row->contains_overlapping_glyphs_p,
10312 row->enabled_p,
10313 row->inverse_p,
10314 row->truncated_on_left_p,
10315 row->truncated_on_right_p,
10316 row->overlay_arrow_p,
10317 row->continued_p,
10318 MATRIX_ROW_CONTINUATION_LINE_P (row),
10319 row->displays_text_p,
10320 row->ends_at_zv_p,
10321 row->fill_line_p,
10322 row->x,
10323 row->y,
10324 row->pixel_width);
10325 fprintf (stderr, "%9d %5d\n", row->start.overlay_string_index,
10326 row->end.overlay_string_index);
10327 fprintf (stderr, "%9d %5d\n",
10328 CHARPOS (row->start.string_pos),
10329 CHARPOS (row->end.string_pos));
10330 fprintf (stderr, "%9d %5d\n", row->start.dpvec_index,
10331 row->end.dpvec_index);
10332
10333 if (with_glyphs_p)
bd66d1ba 10334 {
5f5c8ee5
GM
10335 struct glyph *glyph, *glyph_end;
10336 int prev_had_glyphs_p;
10337
10338 glyph = row->glyphs[TEXT_AREA];
10339 glyph_end = glyph + row->used[TEXT_AREA];
10340
10341 /* Glyph for a line end in text. */
10342 if (glyph == glyph_end && glyph->charpos > 0)
10343 ++glyph_end;
10344
10345 if (glyph < glyph_end)
bd66d1ba 10346 {
5f5c8ee5
GM
10347 fprintf (stderr, " Glyph Type Pos W Code C Face LR\n");
10348 prev_had_glyphs_p = 1;
bd66d1ba
RS
10349 }
10350 else
5f5c8ee5
GM
10351 prev_had_glyphs_p = 0;
10352
10353 while (glyph < glyph_end)
f7b4b63a 10354 {
5f5c8ee5
GM
10355 if (glyph->type == CHAR_GLYPH)
10356 {
10357 fprintf (stderr,
10358 " %5d %4c %6d %3d 0x%05x %c %4d %1.1d%1.1d\n",
10359 glyph - row->glyphs[TEXT_AREA],
10360 'C',
10361 glyph->charpos,
10362 glyph->pixel_width,
10363 glyph->u.ch.code,
10364 (glyph->u.ch.code < 0x80 && glyph->u.ch.code >= ' '
10365 ? glyph->u.ch.code
10366 : '.'),
10367 glyph->u.ch.face_id,
10368 glyph->left_box_line_p,
10369 glyph->right_box_line_p);
10370 }
10371 else if (glyph->type == STRETCH_GLYPH)
10372 {
10373 fprintf (stderr,
10374 " %5d %4c %6d %3d 0x%05x %c %4d %1.1d%1.1d\n",
10375 glyph - row->glyphs[TEXT_AREA],
10376 'S',
10377 glyph->charpos,
10378 glyph->pixel_width,
10379 0,
10380 '.',
10381 glyph->u.stretch.face_id,
10382 glyph->left_box_line_p,
10383 glyph->right_box_line_p);
10384 }
10385 else if (glyph->type == IMAGE_GLYPH)
10386 {
10387 fprintf (stderr,
10388 " %5d %4c %6d %3d 0x%05x %c %4d %1.1d%1.1d\n",
10389 glyph - row->glyphs[TEXT_AREA],
10390 'I',
10391 glyph->charpos,
10392 glyph->pixel_width,
10393 glyph->u.img.id,
10394 '.',
10395 glyph->u.img.face_id,
10396 glyph->left_box_line_p,
10397 glyph->right_box_line_p);
10398 }
10399 ++glyph;
f7b4b63a 10400 }
f4faa47c 10401 }
5f5c8ee5 10402}
f4faa47c 10403
a2889657 10404
5f5c8ee5
GM
10405DEFUN ("dump-glyph-matrix", Fdump_glyph_matrix,
10406 Sdump_glyph_matrix, 0, 1, "p",
10407 "Dump the current matrix of the selected window to stderr.\n\
10408Shows contents of glyph row structures. With non-nil optional\n\
10409parameter WITH-GLYPHS-P, dump glyphs as well.")
10410 (with_glyphs_p)
10411{
10412 struct window *w = XWINDOW (selected_window);
10413 struct buffer *buffer = XBUFFER (w->buffer);
10414
10415 fprintf (stderr, "PT = %d, BEGV = %d. ZV = %d\n",
10416 BUF_PT (buffer), BUF_BEGV (buffer), BUF_ZV (buffer));
10417 fprintf (stderr, "Cursor x = %d, y = %d, hpos = %d, vpos = %d\n",
10418 w->cursor.x, w->cursor.y, w->cursor.hpos, w->cursor.vpos);
10419 fprintf (stderr, "=============================================\n");
10420 dump_glyph_matrix (w->current_matrix, !NILP (with_glyphs_p));
10421 return Qnil;
10422}
1c2250c2 10423
1fca3fae 10424
5f5c8ee5
GM
10425DEFUN ("dump-glyph-row", Fdump_glyph_row, Sdump_glyph_row, 1, 1, "",
10426 "Dump glyph row ROW to stderr.")
10427 (row)
10428 Lisp_Object row;
10429{
10430 CHECK_NUMBER (row, 0);
10431 dump_glyph_row (XWINDOW (selected_window)->current_matrix, XINT (row), 1);
10432 return Qnil;
10433}
1fca3fae 10434
67481ae5 10435
e037b9ec 10436DEFUN ("dump-tool-bar-row", Fdump_tool_bar_row, Sdump_tool_bar_row,
5f5c8ee5
GM
10437 0, 0, "", "")
10438 ()
10439{
e037b9ec 10440 struct glyph_matrix *m = (XWINDOW (selected_frame->tool_bar_window)
5f5c8ee5
GM
10441 ->current_matrix);
10442 dump_glyph_row (m, 0, 1);
10443 return Qnil;
10444}
ca26e1c8 10445
0f9c0ff0 10446
5f5c8ee5
GM
10447DEFUN ("trace-redisplay-toggle", Ftrace_redisplay_toggle,
10448 Strace_redisplay_toggle, 0, 0, "",
10449 "Toggle tracing of redisplay.")
10450 ()
10451{
10452 trace_redisplay_p = !trace_redisplay_p;
10453 return Qnil;
10454}
10455
10456
10457#endif /* GLYPH_DEBUG */
ca26e1c8 10458
ca26e1c8 10459
5f5c8ee5
GM
10460\f
10461/***********************************************************************
10462 Building Desired Matrix Rows
10463 ***********************************************************************/
a2889657 10464
5f5c8ee5
GM
10465/* Return a temporary glyph row holding the glyphs of an overlay
10466 arrow. Only used for non-window-redisplay windows. */
ca26e1c8 10467
5f5c8ee5
GM
10468static struct glyph_row *
10469get_overlay_arrow_glyph_row (w)
10470 struct window *w;
10471{
10472 struct frame *f = XFRAME (WINDOW_FRAME (w));
10473 struct buffer *buffer = XBUFFER (w->buffer);
10474 struct buffer *old = current_buffer;
10475 unsigned char *arrow_string = XSTRING (Voverlay_arrow_string)->data;
10476 int arrow_len = XSTRING (Voverlay_arrow_string)->size;
10477 unsigned char *arrow_end = arrow_string + arrow_len;
10478 unsigned char *p;
10479 struct it it;
10480 int multibyte_p;
10481 int n_glyphs_before;
10482
10483 set_buffer_temp (buffer);
10484 init_iterator (&it, w, -1, -1, &scratch_glyph_row, DEFAULT_FACE_ID);
10485 it.glyph_row->used[TEXT_AREA] = 0;
10486 SET_TEXT_POS (it.position, 0, 0);
10487
10488 multibyte_p = !NILP (buffer->enable_multibyte_characters);
10489 p = arrow_string;
10490 while (p < arrow_end)
10491 {
10492 Lisp_Object face, ilisp;
10493
10494 /* Get the next character. */
10495 if (multibyte_p)
4fdb80f2 10496 it.c = string_char_and_length (p, arrow_len, &it.len);
5f5c8ee5
GM
10497 else
10498 it.c = *p, it.len = 1;
10499 p += it.len;
10500
10501 /* Get its face. */
10502 XSETFASTINT (ilisp, p - arrow_string);
10503 face = Fget_text_property (ilisp, Qface, Voverlay_arrow_string);
10504 it.face_id = compute_char_face (f, it.c, face);
10505
10506 /* Compute its width, get its glyphs. */
10507 n_glyphs_before = it.glyph_row->used[TEXT_AREA];
337042a9 10508 SET_TEXT_POS (it.position, -1, -1);
5f5c8ee5
GM
10509 PRODUCE_GLYPHS (&it);
10510
10511 /* If this character doesn't fit any more in the line, we have
10512 to remove some glyphs. */
10513 if (it.current_x > it.last_visible_x)
10514 {
10515 it.glyph_row->used[TEXT_AREA] = n_glyphs_before;
10516 break;
10517 }
10518 }
10519
10520 set_buffer_temp (old);
10521 return it.glyph_row;
10522}
ca26e1c8 10523
b0a0fbda 10524
5f5c8ee5
GM
10525/* Insert truncation glyphs at the start of IT->glyph_row. Truncation
10526 glyphs are only inserted for terminal frames since we can't really
10527 win with truncation glyphs when partially visible glyphs are
10528 involved. Which glyphs to insert is determined by
10529 produce_special_glyphs. */
67481ae5 10530
5f5c8ee5
GM
10531static void
10532insert_left_trunc_glyphs (it)
10533 struct it *it;
10534{
10535 struct it truncate_it;
10536 struct glyph *from, *end, *to, *toend;
10537
10538 xassert (!FRAME_WINDOW_P (it->f));
10539
10540 /* Get the truncation glyphs. */
10541 truncate_it = *it;
10542 truncate_it.charset = -1;
10543 truncate_it.current_x = 0;
10544 truncate_it.face_id = DEFAULT_FACE_ID;
10545 truncate_it.glyph_row = &scratch_glyph_row;
10546 truncate_it.glyph_row->used[TEXT_AREA] = 0;
10547 CHARPOS (truncate_it.position) = BYTEPOS (truncate_it.position) = -1;
10548 truncate_it.object = 0;
10549 produce_special_glyphs (&truncate_it, IT_TRUNCATION);
10550
10551 /* Overwrite glyphs from IT with truncation glyphs. */
10552 from = truncate_it.glyph_row->glyphs[TEXT_AREA];
10553 end = from + truncate_it.glyph_row->used[TEXT_AREA];
10554 to = it->glyph_row->glyphs[TEXT_AREA];
10555 toend = to + it->glyph_row->used[TEXT_AREA];
10556
10557 while (from < end)
10558 *to++ = *from++;
10559
10560 /* There may be padding glyphs left over. Remove them. */
10561 from = to;
10562 while (from < toend && CHAR_GLYPH_PADDING_P (*from))
10563 ++from;
10564 while (from < toend)
10565 *to++ = *from++;
10566
10567 it->glyph_row->used[TEXT_AREA] = to - it->glyph_row->glyphs[TEXT_AREA];
10568}
e0bfbde6 10569
e0bfbde6 10570
5f5c8ee5 10571/* Compute the pixel height and width of IT->glyph_row.
9c49d3d7 10572
5f5c8ee5
GM
10573 Most of the time, ascent and height of a display line will be equal
10574 to the max_ascent and max_height values of the display iterator
10575 structure. This is not the case if
67481ae5 10576
5f5c8ee5
GM
10577 1. We hit ZV without displaying anything. In this case, max_ascent
10578 and max_height will be zero.
1c9241f5 10579
5f5c8ee5
GM
10580 2. We have some glyphs that don't contribute to the line height.
10581 (The glyph row flag contributes_to_line_height_p is for future
10582 pixmap extensions).
f6fd109b 10583
5f5c8ee5
GM
10584 The first case is easily covered by using default values because in
10585 these cases, the line height does not really matter, except that it
10586 must not be zero. */
67481ae5 10587
5f5c8ee5
GM
10588static void
10589compute_line_metrics (it)
10590 struct it *it;
10591{
10592 struct glyph_row *row = it->glyph_row;
10593 int area, i;
1c2250c2 10594
5f5c8ee5
GM
10595 if (FRAME_WINDOW_P (it->f))
10596 {
045dee35 10597 int i, header_line_height;
1c2250c2 10598
5f5c8ee5
GM
10599 /* The line may consist of one space only, that was added to
10600 place the cursor on it. If so, the row's height hasn't been
10601 computed yet. */
10602 if (row->height == 0)
10603 {
10604 if (it->max_ascent + it->max_descent == 0)
312246d1 10605 it->max_descent = it->max_phys_descent = CANON_Y_UNIT (it->f);
5f5c8ee5
GM
10606 row->ascent = it->max_ascent;
10607 row->height = it->max_ascent + it->max_descent;
312246d1
GM
10608 row->phys_ascent = it->max_phys_ascent;
10609 row->phys_height = it->max_phys_ascent + it->max_phys_descent;
5f5c8ee5
GM
10610 }
10611
10612 /* Compute the width of this line. */
10613 row->pixel_width = row->x;
10614 for (i = 0; i < row->used[TEXT_AREA]; ++i)
10615 row->pixel_width += row->glyphs[TEXT_AREA][i].pixel_width;
10616
10617 xassert (row->pixel_width >= 0);
10618 xassert (row->ascent >= 0 && row->height > 0);
10619
312246d1
GM
10620 row->overlapping_p = (MATRIX_ROW_OVERLAPS_SUCC_P (row)
10621 || MATRIX_ROW_OVERLAPS_PRED_P (row));
10622
10623 /* If first line's physical ascent is larger than its logical
10624 ascent, use the physical ascent, and make the row taller.
10625 This makes accented characters fully visible. */
10626 if (row == it->w->desired_matrix->rows
10627 && row->phys_ascent > row->ascent)
10628 {
10629 row->height += row->phys_ascent - row->ascent;
10630 row->ascent = row->phys_ascent;
10631 }
10632
5f5c8ee5
GM
10633 /* Compute how much of the line is visible. */
10634 row->visible_height = row->height;
10635
045dee35
GM
10636 header_line_height = WINDOW_DISPLAY_HEADER_LINE_HEIGHT (it->w);
10637 if (row->y < header_line_height)
10638 row->visible_height -= header_line_height - row->y;
5f5c8ee5
GM
10639 else
10640 {
10641 int max_y = WINDOW_DISPLAY_HEIGHT_NO_MODE_LINE (it->w);
10642 if (row->y + row->height > max_y)
10643 row->visible_height -= row->y + row->height - max_y;
10644 }
10645 }
10646 else
10647 {
10648 row->pixel_width = row->used[TEXT_AREA];
312246d1
GM
10649 row->ascent = row->phys_ascent = 0;
10650 row->height = row->phys_height = row->visible_height = 1;
5f5c8ee5 10651 }
67481ae5 10652
5f5c8ee5
GM
10653 /* Compute a hash code for this row. */
10654 row->hash = 0;
10655 for (area = LEFT_MARGIN_AREA; area < LAST_AREA; ++area)
10656 for (i = 0; i < row->used[area]; ++i)
10657 row->hash = ((((row->hash << 4) + (row->hash >> 24)) & 0x0fffffff)
10658 + row->glyphs[area][i].u.val
10659 + (row->glyphs[area][i].type << 2));
a2889657 10660
5f5c8ee5 10661 it->max_ascent = it->max_descent = 0;
312246d1 10662 it->max_phys_ascent = it->max_phys_descent = 0;
5f5c8ee5 10663}
12adba34 10664
ca26e1c8 10665
5f5c8ee5
GM
10666/* Append one space to the glyph row of iterator IT if doing a
10667 window-based redisplay. DEFAULT_FACE_P non-zero means let the
10668 space have the default face, otherwise let it have the same face as
c6e89d6c
GM
10669 IT->face_id.
10670
10671 This function is called to make sure that there is always one glyph
10672 at the end of a glyph row that the cursor can be set on under
10673 window-systems. (If there weren't such a glyph we would not know
10674 how wide and tall a box cursor should be displayed).
10675
10676 At the same time this space let's a nicely handle clearing to the
10677 end of the line if the row ends in italic text. */
ca26e1c8 10678
5f5c8ee5
GM
10679static void
10680append_space (it, default_face_p)
10681 struct it *it;
10682 int default_face_p;
10683{
10684 if (FRAME_WINDOW_P (it->f))
10685 {
10686 int n = it->glyph_row->used[TEXT_AREA];
ca26e1c8 10687
5f5c8ee5
GM
10688 if (it->glyph_row->glyphs[TEXT_AREA] + n
10689 < it->glyph_row->glyphs[1 + TEXT_AREA])
a2889657 10690 {
5f5c8ee5
GM
10691 /* Save some values that must not be changed. */
10692 int saved_x = it->current_x;
10693 struct text_pos saved_pos;
10694 int saved_what = it->what;
10695 int saved_face_id = it->face_id;
10696 int saved_charset = it->charset;
10697 Lisp_Object saved_object;
10698
10699 saved_object = it->object;
10700 saved_pos = it->position;
10701
10702 it->what = IT_CHARACTER;
10703 bzero (&it->position, sizeof it->position);
10704 it->object = 0;
10705 it->c = ' ';
10706 it->len = 1;
10707 it->charset = CHARSET_ASCII;
10708
10709 if (default_face_p)
10710 it->face_id = DEFAULT_FACE_ID;
10711 if (it->multibyte_p)
10712 it->face_id = FACE_FOR_CHARSET (it->f, it->face_id, CHARSET_ASCII);
10713 else
10714 it->face_id = FACE_FOR_CHARSET (it->f, it->face_id, -1);
1842fc1a 10715
5f5c8ee5
GM
10716 PRODUCE_GLYPHS (it);
10717
10718 it->current_x = saved_x;
10719 it->object = saved_object;
10720 it->position = saved_pos;
10721 it->what = saved_what;
10722 it->face_id = saved_face_id;
10723 it->charset = saved_charset;
10724 }
10725 }
10726}
12adba34 10727
1842fc1a 10728
5f5c8ee5
GM
10729/* Extend the face of the last glyph in the text area of IT->glyph_row
10730 to the end of the display line. Called from display_line.
10731 If the glyph row is empty, add a space glyph to it so that we
10732 know the face to draw. Set the glyph row flag fill_line_p. */
10733
10734static void
10735extend_face_to_end_of_line (it)
10736 struct it *it;
10737{
10738 struct face *face;
10739 struct frame *f = it->f;
1842fc1a 10740
5f5c8ee5
GM
10741 /* If line is already filled, do nothing. */
10742 if (it->current_x >= it->last_visible_x)
10743 return;
10744
10745 /* Face extension extends the background and box of IT->face_id
10746 to the end of the line. If the background equals the background
10747 of the frame, we haven't to do anything. */
10748 face = FACE_FROM_ID (f, it->face_id);
10749 if (FRAME_WINDOW_P (f)
10750 && face->box == FACE_NO_BOX
10751 && face->background == FRAME_BACKGROUND_PIXEL (f)
10752 && !face->stipple)
10753 return;
1842fc1a 10754
5f5c8ee5
GM
10755 /* Set the glyph row flag indicating that the face of the last glyph
10756 in the text area has to be drawn to the end of the text area. */
10757 it->glyph_row->fill_line_p = 1;
545e04f6 10758
5f5c8ee5
GM
10759 /* If current charset of IT is not ASCII, make sure we have the
10760 ASCII face. This will be automatically undone the next time
10761 get_next_display_element returns a character from a different
10762 charset. Note that the charset will always be ASCII in unibyte
10763 text. */
10764 if (it->charset != CHARSET_ASCII)
10765 {
10766 it->charset = CHARSET_ASCII;
10767 it->face_id = FACE_FOR_CHARSET (f, it->face_id, CHARSET_ASCII);
10768 }
545e04f6 10769
5f5c8ee5
GM
10770 if (FRAME_WINDOW_P (f))
10771 {
10772 /* If the row is empty, add a space with the current face of IT,
10773 so that we know which face to draw. */
10774 if (it->glyph_row->used[TEXT_AREA] == 0)
a2889657 10775 {
5f5c8ee5
GM
10776 it->glyph_row->glyphs[TEXT_AREA][0] = space_glyph;
10777 it->glyph_row->glyphs[TEXT_AREA][0].u.ch.face_id = it->face_id;
10778 it->glyph_row->used[TEXT_AREA] = 1;
a2889657 10779 }
5f5c8ee5
GM
10780 }
10781 else
10782 {
10783 /* Save some values that must not be changed. */
10784 int saved_x = it->current_x;
10785 struct text_pos saved_pos;
10786 Lisp_Object saved_object;
10787 int saved_what = it->what;
10788
10789 saved_object = it->object;
10790 saved_pos = it->position;
10791
10792 it->what = IT_CHARACTER;
10793 bzero (&it->position, sizeof it->position);
10794 it->object = 0;
10795 it->c = ' ';
10796 it->len = 1;
10797
10798 PRODUCE_GLYPHS (it);
10799
10800 while (it->current_x <= it->last_visible_x)
10801 PRODUCE_GLYPHS (it);
10802
10803 /* Don't count these blanks really. It would let us insert a left
10804 truncation glyph below and make us set the cursor on them, maybe. */
10805 it->current_x = saved_x;
10806 it->object = saved_object;
10807 it->position = saved_pos;
10808 it->what = saved_what;
10809 }
10810}
12adba34 10811
545e04f6 10812
5f5c8ee5
GM
10813/* Value is non-zero if text starting at CHARPOS in current_buffer is
10814 trailing whitespace. */
1c9241f5 10815
5f5c8ee5
GM
10816static int
10817trailing_whitespace_p (charpos)
10818 int charpos;
10819{
10820 int bytepos = CHAR_TO_BYTE (charpos);
10821 int c = 0;
7bbe686f 10822
5f5c8ee5
GM
10823 while (bytepos < ZV_BYTE
10824 && (c = FETCH_CHAR (bytepos),
10825 c == ' ' || c == '\t'))
10826 ++bytepos;
0d09d1e6 10827
8f897821
GM
10828 if (bytepos >= ZV_BYTE || c == '\n' || c == '\r')
10829 {
10830 if (bytepos != PT_BYTE)
10831 return 1;
10832 }
10833 return 0;
5f5c8ee5 10834}
31b24551 10835
545e04f6 10836
5f5c8ee5 10837/* Highlight trailing whitespace, if any, in ROW. */
545e04f6 10838
5f5c8ee5
GM
10839void
10840highlight_trailing_whitespace (f, row)
10841 struct frame *f;
10842 struct glyph_row *row;
10843{
10844 int used = row->used[TEXT_AREA];
10845
10846 if (used)
10847 {
10848 struct glyph *start = row->glyphs[TEXT_AREA];
10849 struct glyph *glyph = start + used - 1;
10850
10851 /* Skip over the space glyph inserted to display the
10852 cursor at the end of a line. */
10853 if (glyph->type == CHAR_GLYPH
10854 && glyph->u.ch.code == ' '
10855 && glyph->object == 0)
10856 --glyph;
10857
10858 /* If last glyph is a space or stretch, and it's trailing
10859 whitespace, set the face of all trailing whitespace glyphs in
10860 IT->glyph_row to `trailing-whitespace'. */
10861 if (glyph >= start
10862 && BUFFERP (glyph->object)
10863 && (glyph->type == STRETCH_GLYPH
10864 || (glyph->type == CHAR_GLYPH
10865 && glyph->u.ch.code == ' '))
10866 && trailing_whitespace_p (glyph->charpos))
545e04f6 10867 {
5f5c8ee5
GM
10868 int face_id = lookup_named_face (f, Qtrailing_whitespace,
10869 CHARSET_ASCII);
10870
10871 while (glyph >= start
10872 && BUFFERP (glyph->object)
10873 && (glyph->type == STRETCH_GLYPH
10874 || (glyph->type == CHAR_GLYPH
10875 && glyph->u.ch.code == ' ')))
545e04f6 10876 {
5f5c8ee5
GM
10877 if (glyph->type == STRETCH_GLYPH)
10878 glyph->u.stretch.face_id = face_id;
10879 else
10880 glyph->u.ch.face_id = face_id;
10881 --glyph;
545e04f6
KH
10882 }
10883 }
a2889657 10884 }
5f5c8ee5 10885}
a2889657 10886
5fcbb24d 10887
5f5c8ee5
GM
10888/* Construct the glyph row IT->glyph_row in the desired matrix of
10889 IT->w from text at the current position of IT. See dispextern.h
10890 for an overview of struct it. Value is non-zero if
10891 IT->glyph_row displays text, as opposed to a line displaying ZV
10892 only. */
10893
10894static int
10895display_line (it)
10896 struct it *it;
10897{
10898 struct glyph_row *row = it->glyph_row;
10899
10900 /* We always start displaying at hpos zero even if hscrolled. */
10901 xassert (it->hpos == 0 && it->current_x == 0);
a2889657 10902
5f5c8ee5
GM
10903 /* We must not display in a row that's not a text row. */
10904 xassert (MATRIX_ROW_VPOS (row, it->w->desired_matrix)
10905 < it->w->desired_matrix->nrows);
12adba34 10906
5f5c8ee5
GM
10907 /* Is IT->w showing the region? */
10908 it->w->region_showing = it->region_beg_charpos > 0 ? Qt : Qnil;
12adba34 10909
5f5c8ee5
GM
10910 /* Clear the result glyph row and enable it. */
10911 prepare_desired_row (row);
12adba34 10912
5f5c8ee5
GM
10913 row->y = it->current_y;
10914 row->start = it->current;
10915 row->continuation_lines_width = it->continuation_lines_width;
10916 row->displays_text_p = 1;
10917
10918 /* Arrange the overlays nicely for our purposes. Usually, we call
10919 display_line on only one line at a time, in which case this
10920 can't really hurt too much, or we call it on lines which appear
10921 one after another in the buffer, in which case all calls to
10922 recenter_overlay_lists but the first will be pretty cheap. */
10923 recenter_overlay_lists (current_buffer, IT_CHARPOS (*it));
10924
5f5c8ee5
GM
10925 /* Move over display elements that are not visible because we are
10926 hscrolled. This may stop at an x-position < IT->first_visible_x
10927 if the first glyph is partially visible or if we hit a line end. */
10928 if (it->current_x < it->first_visible_x)
10929 move_it_in_display_line_to (it, ZV, it->first_visible_x,
10930 MOVE_TO_POS | MOVE_TO_X);
10931
10932 /* Get the initial row height. This is either the height of the
10933 text hscrolled, if there is any, or zero. */
10934 row->ascent = it->max_ascent;
10935 row->height = it->max_ascent + it->max_descent;
312246d1
GM
10936 row->phys_ascent = it->max_phys_ascent;
10937 row->phys_height = it->max_phys_ascent + it->max_phys_descent;
5f5c8ee5
GM
10938
10939 /* Loop generating characters. The loop is left with IT on the next
10940 character to display. */
10941 while (1)
10942 {
10943 int n_glyphs_before, hpos_before, x_before;
10944 int x, i, nglyphs;
10945
10946 /* Retrieve the next thing to display. Value is zero if end of
10947 buffer reached. */
10948 if (!get_next_display_element (it))
10949 {
10950 /* Maybe add a space at the end of this line that is used to
10951 display the cursor there under X. */
10952 append_space (it, 1);
10953
10954 /* The position -1 below indicates a blank line not
10955 corresponding to any text, as opposed to an empty line
10956 corresponding to a line end. */
10957 if (row->used[TEXT_AREA] <= 1)
a2889657 10958 {
5f5c8ee5
GM
10959 row->glyphs[TEXT_AREA]->charpos = -1;
10960 row->displays_text_p = 0;
10961
10962 if (!NILP (XBUFFER (it->w->buffer)->indicate_empty_lines))
10963 row->indicate_empty_line_p = 1;
a2889657 10964 }
5f5c8ee5
GM
10965
10966 it->continuation_lines_width = 0;
10967 row->ends_at_zv_p = 1;
10968 break;
a2889657 10969 }
a2889657 10970
5f5c8ee5
GM
10971 /* Now, get the metrics of what we want to display. This also
10972 generates glyphs in `row' (which is IT->glyph_row). */
10973 n_glyphs_before = row->used[TEXT_AREA];
10974 x = it->current_x;
10975 PRODUCE_GLYPHS (it);
a2889657 10976
5f5c8ee5
GM
10977 /* If this display element was in marginal areas, continue with
10978 the next one. */
10979 if (it->area != TEXT_AREA)
a2889657 10980 {
5f5c8ee5
GM
10981 row->ascent = max (row->ascent, it->max_ascent);
10982 row->height = max (row->height, it->max_ascent + it->max_descent);
312246d1
GM
10983 row->phys_ascent = max (row->phys_ascent, it->max_phys_ascent);
10984 row->phys_height = max (row->phys_height,
10985 it->max_phys_ascent + it->max_phys_descent);
5f5c8ee5
GM
10986 set_iterator_to_next (it);
10987 continue;
10988 }
5936754e 10989
5f5c8ee5
GM
10990 /* Does the display element fit on the line? If we truncate
10991 lines, we should draw past the right edge of the window. If
10992 we don't truncate, we want to stop so that we can display the
10993 continuation glyph before the right margin. If lines are
10994 continued, there are two possible strategies for characters
10995 resulting in more than 1 glyph (e.g. tabs): Display as many
10996 glyphs as possible in this line and leave the rest for the
10997 continuation line, or display the whole element in the next
10998 line. Original redisplay did the former, so we do it also. */
10999 nglyphs = row->used[TEXT_AREA] - n_glyphs_before;
11000 hpos_before = it->hpos;
11001 x_before = x;
11002
11003 if (nglyphs == 1
11004 && it->current_x < it->last_visible_x)
11005 {
11006 ++it->hpos;
11007 row->ascent = max (row->ascent, it->max_ascent);
11008 row->height = max (row->height, it->max_ascent + it->max_descent);
312246d1
GM
11009 row->phys_ascent = max (row->phys_ascent, it->max_phys_ascent);
11010 row->phys_height = max (row->phys_height,
11011 it->max_phys_ascent + it->max_phys_descent);
5f5c8ee5
GM
11012 if (it->current_x - it->pixel_width < it->first_visible_x)
11013 row->x = x - it->first_visible_x;
11014 }
11015 else
11016 {
11017 int new_x;
11018 struct glyph *glyph;
11019
11020 for (i = 0; i < nglyphs; ++i, x = new_x)
b5bbc9a5 11021 {
5f5c8ee5
GM
11022 glyph = row->glyphs[TEXT_AREA] + n_glyphs_before + i;
11023 new_x = x + glyph->pixel_width;
11024
11025 if (/* Lines are continued. */
11026 !it->truncate_lines_p
11027 && (/* Glyph doesn't fit on the line. */
11028 new_x > it->last_visible_x
11029 /* Or it fits exactly on a window system frame. */
11030 || (new_x == it->last_visible_x
11031 && FRAME_WINDOW_P (it->f))))
a2889657 11032 {
5f5c8ee5
GM
11033 /* End of a continued line. */
11034
11035 if (it->hpos == 0
11036 || (new_x == it->last_visible_x
11037 && FRAME_WINDOW_P (it->f)))
11038 {
11039 /* Current glyph fits exactly on the line. We
11040 must continue the line because we can't draw
11041 the cursor after the glyph. */
11042 row->continued_p = 1;
11043 it->current_x = new_x;
11044 it->continuation_lines_width += new_x;
11045 ++it->hpos;
11046 if (i == nglyphs - 1)
11047 set_iterator_to_next (it);
11048 }
11049 else
5936754e 11050 {
5f5c8ee5
GM
11051 /* Display element draws past the right edge of
11052 the window. Restore positions to values
11053 before the element. The next line starts
11054 with current_x before the glyph that could
11055 not be displayed, so that TAB works right. */
11056 row->used[TEXT_AREA] = n_glyphs_before + i;
11057
11058 /* Display continuation glyphs. */
11059 if (!FRAME_WINDOW_P (it->f))
11060 produce_special_glyphs (it, IT_CONTINUATION);
11061 row->continued_p = 1;
11062
11063 it->current_x = x;
11064 it->continuation_lines_width += x;
5936754e 11065 }
5f5c8ee5
GM
11066 break;
11067 }
11068 else if (new_x > it->first_visible_x)
11069 {
11070 /* Increment number of glyphs actually displayed. */
11071 ++it->hpos;
11072
11073 if (x < it->first_visible_x)
11074 /* Glyph is partially visible, i.e. row starts at
11075 negative X position. */
11076 row->x = x - it->first_visible_x;
11077 }
11078 else
11079 {
11080 /* Glyph is completely off the left margin of the
11081 window. This should not happen because of the
11082 move_it_in_display_line at the start of
11083 this function. */
11084 abort ();
a2889657 11085 }
a2889657 11086 }
5f5c8ee5
GM
11087
11088 row->ascent = max (row->ascent, it->max_ascent);
11089 row->height = max (row->height, it->max_ascent + it->max_descent);
312246d1
GM
11090 row->phys_ascent = max (row->phys_ascent, it->max_phys_ascent);
11091 row->phys_height = max (row->phys_height,
11092 it->max_phys_ascent + it->max_phys_descent);
5f5c8ee5
GM
11093
11094 /* End of this display line if row is continued. */
11095 if (row->continued_p)
11096 break;
a2889657 11097 }
a2889657 11098
5f5c8ee5
GM
11099 /* Is this a line end? If yes, we're also done, after making
11100 sure that a non-default face is extended up to the right
11101 margin of the window. */
11102 if (ITERATOR_AT_END_OF_LINE_P (it))
1c9241f5 11103 {
5f5c8ee5
GM
11104 int used_before = row->used[TEXT_AREA];
11105
11106 /* Add a space at the end of the line that is used to
11107 display the cursor there. */
11108 append_space (it, 0);
11109
11110 /* Extend the face to the end of the line. */
11111 extend_face_to_end_of_line (it);
11112
11113 /* Make sure we have the position. */
11114 if (used_before == 0)
11115 row->glyphs[TEXT_AREA]->charpos = CHARPOS (it->position);
11116
11117 /* Consume the line end. This skips over invisible lines. */
11118 set_iterator_to_next (it);
11119 it->continuation_lines_width = 0;
11120 break;
1c9241f5 11121 }
a2889657 11122
5f5c8ee5
GM
11123 /* Proceed with next display element. Note that this skips
11124 over lines invisible because of selective display. */
11125 set_iterator_to_next (it);
b1d1124b 11126
5f5c8ee5
GM
11127 /* If we truncate lines, we are done when the last displayed
11128 glyphs reach past the right margin of the window. */
11129 if (it->truncate_lines_p
11130 && (FRAME_WINDOW_P (it->f)
11131 ? (it->current_x >= it->last_visible_x)
11132 : (it->current_x > it->last_visible_x)))
75d13c64 11133 {
5f5c8ee5
GM
11134 /* Maybe add truncation glyphs. */
11135 if (!FRAME_WINDOW_P (it->f))
11136 {
11137 --it->glyph_row->used[TEXT_AREA];
11138 produce_special_glyphs (it, IT_TRUNCATION);
11139 }
11140
11141 row->truncated_on_right_p = 1;
11142 it->continuation_lines_width = 0;
312246d1 11143 reseat_at_next_visible_line_start (it, 0);
5f5c8ee5
GM
11144 row->ends_at_zv_p = FETCH_BYTE (IT_BYTEPOS (*it) - 1) != '\n';
11145 it->hpos = hpos_before;
11146 it->current_x = x_before;
11147 break;
75d13c64 11148 }
a2889657 11149 }
a2889657 11150
5f5c8ee5
GM
11151 /* If line is not empty and hscrolled, maybe insert truncation glyphs
11152 at the left window margin. */
11153 if (it->first_visible_x
11154 && IT_CHARPOS (*it) != MATRIX_ROW_START_CHARPOS (row))
11155 {
11156 if (!FRAME_WINDOW_P (it->f))
11157 insert_left_trunc_glyphs (it);
11158 row->truncated_on_left_p = 1;
11159 }
a2889657 11160
5f5c8ee5
GM
11161 /* If the start of this line is the overlay arrow-position, then
11162 mark this glyph row as the one containing the overlay arrow.
11163 This is clearly a mess with variable size fonts. It would be
11164 better to let it be displayed like cursors under X. */
e24c997d 11165 if (MARKERP (Voverlay_arrow_position)
a2889657 11166 && current_buffer == XMARKER (Voverlay_arrow_position)->buffer
5f5c8ee5
GM
11167 && (MATRIX_ROW_START_CHARPOS (row)
11168 == marker_position (Voverlay_arrow_position))
e24c997d 11169 && STRINGP (Voverlay_arrow_string)
a2889657
JB
11170 && ! overlay_arrow_seen)
11171 {
5f5c8ee5
GM
11172 /* Overlay arrow in window redisplay is a bitmap. */
11173 if (!FRAME_WINDOW_P (it->f))
c4628384 11174 {
5f5c8ee5
GM
11175 struct glyph_row *arrow_row = get_overlay_arrow_glyph_row (it->w);
11176 struct glyph *glyph = arrow_row->glyphs[TEXT_AREA];
11177 struct glyph *arrow_end = glyph + arrow_row->used[TEXT_AREA];
11178 struct glyph *p = row->glyphs[TEXT_AREA];
11179 struct glyph *p2, *end;
11180
11181 /* Copy the arrow glyphs. */
11182 while (glyph < arrow_end)
11183 *p++ = *glyph++;
11184
11185 /* Throw away padding glyphs. */
11186 p2 = p;
11187 end = row->glyphs[TEXT_AREA] + row->used[TEXT_AREA];
11188 while (p2 < end && CHAR_GLYPH_PADDING_P (*p2))
11189 ++p2;
11190 if (p2 > p)
212e4f87 11191 {
5f5c8ee5
GM
11192 while (p2 < end)
11193 *p++ = *p2++;
11194 row->used[TEXT_AREA] = p2 - row->glyphs[TEXT_AREA];
c4628384 11195 }
c4628384 11196 }
5f5c8ee5 11197
a2889657 11198 overlay_arrow_seen = 1;
5f5c8ee5 11199 row->overlay_arrow_p = 1;
a2889657
JB
11200 }
11201
5f5c8ee5
GM
11202 /* Compute pixel dimensions of this line. */
11203 compute_line_metrics (it);
11204
11205 /* Remember the position at which this line ends. */
11206 row->end = it->current;
11207
11208 /* Maybe set the cursor. If you change this, it's probably a good
11209 idea to also change the code in redisplay_window for cursor
11210 movement in an unchanged window. */
11211 if (it->w->cursor.vpos < 0
11212 && PT >= MATRIX_ROW_START_CHARPOS (row)
11213 && MATRIX_ROW_END_CHARPOS (row) >= PT
11214 && !(MATRIX_ROW_END_CHARPOS (row) == PT
11215 && (MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row)
11216 || !row->ends_at_zv_p)))
11217 set_cursor_from_row (it->w, row, it->w->desired_matrix, 0, 0, 0, 0);
11218
11219 /* Highlight trailing whitespace. */
8f897821 11220 if (!NILP (Vshow_trailing_whitespace))
5f5c8ee5
GM
11221 highlight_trailing_whitespace (it->f, it->glyph_row);
11222
11223 /* Prepare for the next line. This line starts horizontally at (X
11224 HPOS) = (0 0). Vertical positions are incremented. As a
11225 convenience for the caller, IT->glyph_row is set to the next
11226 row to be used. */
11227 it->current_x = it->hpos = 0;
11228 it->current_y += row->height;
11229 ++it->vpos;
11230 ++it->glyph_row;
11231 return row->displays_text_p;
a2889657 11232}
5f5c8ee5
GM
11233
11234
a2889657 11235\f
5f5c8ee5
GM
11236/***********************************************************************
11237 Menu Bar
11238 ***********************************************************************/
11239
11240/* Redisplay the menu bar in the frame for window W.
11241
11242 The menu bar of X frames that don't have X toolkit support is
11243 displayed in a special window W->frame->menu_bar_window.
11244
11245 The menu bar of terminal frames is treated specially as far as
11246 glyph matrices are concerned. Menu bar lines are not part of
11247 windows, so the update is done directly on the frame matrix rows
11248 for the menu bar. */
7ce2c095
RS
11249
11250static void
11251display_menu_bar (w)
11252 struct window *w;
11253{
5f5c8ee5
GM
11254 struct frame *f = XFRAME (WINDOW_FRAME (w));
11255 struct it it;
11256 Lisp_Object items;
8351baf2 11257 int i;
7ce2c095 11258
5f5c8ee5 11259 /* Don't do all this for graphical frames. */
dc937613 11260#ifdef HAVE_NTGUI
d129c4c2
KH
11261 if (!NILP (Vwindow_system))
11262 return;
dc937613 11263#endif
dc937613 11264#ifdef USE_X_TOOLKIT
d3413a53 11265 if (FRAME_X_P (f))
7ce2c095 11266 return;
5f5c8ee5
GM
11267#endif
11268
11269#ifdef USE_X_TOOLKIT
11270 xassert (!FRAME_WINDOW_P (f));
11271 init_iterator (&it, w, -1, -1, f->desired_matrix->rows, MODE_LINE_FACE_ID);
11272 it.first_visible_x = 0;
11273 it.last_visible_x = FRAME_WINDOW_WIDTH (f) * CANON_X_UNIT (f);
11274#else /* not USE_X_TOOLKIT */
11275 if (FRAME_WINDOW_P (f))
11276 {
11277 /* Menu bar lines are displayed in the desired matrix of the
11278 dummy window menu_bar_window. */
11279 struct window *menu_w;
11280 xassert (WINDOWP (f->menu_bar_window));
11281 menu_w = XWINDOW (f->menu_bar_window);
11282 init_iterator (&it, menu_w, -1, -1, menu_w->desired_matrix->rows,
11283 MODE_LINE_FACE_ID);
11284 it.first_visible_x = 0;
11285 it.last_visible_x = FRAME_WINDOW_WIDTH (f) * CANON_X_UNIT (f);
11286 }
11287 else
11288 {
11289 /* This is a TTY frame, i.e. character hpos/vpos are used as
11290 pixel x/y. */
11291 init_iterator (&it, w, -1, -1, f->desired_matrix->rows,
11292 MODE_LINE_FACE_ID);
11293 it.first_visible_x = 0;
11294 it.last_visible_x = FRAME_WIDTH (f);
11295 }
11296#endif /* not USE_X_TOOLKIT */
11297
11298 /* Clear all rows of the menu bar. */
11299 for (i = 0; i < FRAME_MENU_BAR_LINES (f); ++i)
11300 {
11301 struct glyph_row *row = it.glyph_row + i;
11302 clear_glyph_row (row);
11303 row->enabled_p = 1;
11304 row->full_width_p = 1;
11305 }
7ce2c095 11306
5f5c8ee5
GM
11307 /* Make the first line of the menu bar appear in reverse video. */
11308 it.glyph_row->inverse_p = mode_line_inverse_video != 0;
7ce2c095 11309
5f5c8ee5
GM
11310 /* Display all items of the menu bar. */
11311 items = FRAME_MENU_BAR_ITEMS (it.f);
469937ac 11312 for (i = 0; i < XVECTOR (items)->size; i += 4)
7ce2c095 11313 {
5f5c8ee5
GM
11314 Lisp_Object string;
11315
11316 /* Stop at nil string. */
8351baf2
RS
11317 string = XVECTOR (items)->contents[i + 1];
11318 if (NILP (string))
11319 break;
2d66ad19 11320
5f5c8ee5
GM
11321 /* Remember where item was displayed. */
11322 XSETFASTINT (XVECTOR (items)->contents[i + 3], it.hpos);
7ce2c095 11323
5f5c8ee5
GM
11324 /* Display the item, pad with one space. */
11325 if (it.current_x < it.last_visible_x)
11326 display_string (NULL, string, Qnil, 0, 0, &it,
11327 XSTRING (string)->size + 1, 0, 0, -1);
7ce2c095
RS
11328 }
11329
2d66ad19 11330 /* Fill out the line with spaces. */
5f5c8ee5
GM
11331 if (it.current_x < it.last_visible_x)
11332 display_string ("", Qnil, Qnil, 0, 0, &it, -1, 0, 0, -1);
db6f348c 11333
5f5c8ee5
GM
11334 /* Compute the total height of the lines. */
11335 compute_line_metrics (&it);
7ce2c095 11336}
5f5c8ee5
GM
11337
11338
7ce2c095 11339\f
5f5c8ee5
GM
11340/***********************************************************************
11341 Mode Line
11342 ***********************************************************************/
11343
11344/* Display the mode and/or top line of window W. */
a2889657
JB
11345
11346static void
5f5c8ee5 11347display_mode_lines (w)
a2889657
JB
11348 struct window *w;
11349{
5f5c8ee5 11350 /* These will be set while the mode line specs are processed. */
aa6d10fa 11351 line_number_displayed = 0;
155ef550 11352 w->column_number_displayed = Qnil;
aa6d10fa 11353
5f5c8ee5 11354 if (WINDOW_WANTS_MODELINE_P (w))
045dee35
GM
11355 display_mode_line (w, MODE_LINE_FACE_ID,
11356 current_buffer->mode_line_format);
5f5c8ee5 11357
045dee35
GM
11358 if (WINDOW_WANTS_HEADER_LINE_P (w))
11359 display_mode_line (w, HEADER_LINE_FACE_ID,
11360 current_buffer->header_line_format);
5f5c8ee5 11361}
03b294dc 11362
03b294dc 11363
5f5c8ee5 11364/* Display mode or top line of window W. FACE_ID specifies which line
045dee35 11365 to display; it is either MODE_LINE_FACE_ID or HEADER_LINE_FACE_ID.
5f5c8ee5 11366 FORMAT is the mode line format to display. */
03b294dc 11367
5f5c8ee5
GM
11368static void
11369display_mode_line (w, face_id, format)
11370 struct window *w;
11371 enum face_id face_id;
11372 Lisp_Object format;
11373{
11374 struct it it;
11375 struct face *face;
03b294dc 11376
5f5c8ee5
GM
11377 init_iterator (&it, w, -1, -1, NULL, face_id);
11378 prepare_desired_row (it.glyph_row);
11379
11380 /* Temporarily make frame's keyboard the current kboard so that
11381 kboard-local variables in the mode_line_format will get the right
11382 values. */
11383 push_frame_kboard (it.f);
11384 display_mode_element (&it, 0, 0, 0, format);
11385 pop_frame_kboard ();
a2889657 11386
5f5c8ee5
GM
11387 /* Fill up with spaces. */
11388 display_string (" ", Qnil, Qnil, 0, 0, &it, 10000, -1, -1, 0);
11389
11390 compute_line_metrics (&it);
11391 it.glyph_row->full_width_p = 1;
11392 it.glyph_row->mode_line_p = 1;
11393 it.glyph_row->inverse_p = mode_line_inverse_video != 0;
11394 it.glyph_row->continued_p = 0;
11395 it.glyph_row->truncated_on_left_p = 0;
11396 it.glyph_row->truncated_on_right_p = 0;
11397
11398 /* Make a 3D mode-line have a shadow at its right end. */
11399 face = FACE_FROM_ID (it.f, face_id);
11400 extend_face_to_end_of_line (&it);
11401 if (face->box != FACE_NO_BOX)
d7eb09a0 11402 {
5f5c8ee5
GM
11403 struct glyph *last = (it.glyph_row->glyphs[TEXT_AREA]
11404 + it.glyph_row->used[TEXT_AREA] - 1);
11405 last->right_box_line_p = 1;
d7eb09a0 11406 }
a2889657
JB
11407}
11408
a2889657 11409
5f5c8ee5
GM
11410/* Contribute ELT to the mode line for window IT->w. How it
11411 translates into text depends on its data type.
a2889657 11412
5f5c8ee5 11413 IT describes the display environment in which we display, as usual.
a2889657
JB
11414
11415 DEPTH is the depth in recursion. It is used to prevent
11416 infinite recursion here.
11417
5f5c8ee5
GM
11418 FIELD_WIDTH is the number of characters the display of ELT should
11419 occupy in the mode line, and PRECISION is the maximum number of
11420 characters to display from ELT's representation. See
11421 display_string for details. *
a2889657 11422
5f5c8ee5 11423 Returns the hpos of the end of the text generated by ELT. */
a2889657
JB
11424
11425static int
5f5c8ee5
GM
11426display_mode_element (it, depth, field_width, precision, elt)
11427 struct it *it;
a2889657 11428 int depth;
5f5c8ee5
GM
11429 int field_width, precision;
11430 Lisp_Object elt;
a2889657 11431{
5f5c8ee5
GM
11432 int n = 0, field, prec;
11433
a2889657
JB
11434 tail_recurse:
11435 if (depth > 10)
11436 goto invalid;
11437
11438 depth++;
11439
0220c518 11440 switch (SWITCH_ENUM_CAST (XTYPE (elt)))
a2889657
JB
11441 {
11442 case Lisp_String:
11443 {
11444 /* A string: output it and check for %-constructs within it. */
5f5c8ee5
GM
11445 unsigned char c;
11446 unsigned char *this = XSTRING (elt)->data;
11447 unsigned char *lisp_string = this;
11448
11449 while ((precision <= 0 || n < precision)
11450 && *this
11451 && (frame_title_ptr
11452 || it->current_x < it->last_visible_x))
a2889657
JB
11453 {
11454 unsigned char *last = this;
5f5c8ee5
GM
11455
11456 /* Advance to end of string or next format specifier. */
a2889657
JB
11457 while ((c = *this++) != '\0' && c != '%')
11458 ;
5f5c8ee5 11459
a2889657
JB
11460 if (this - 1 != last)
11461 {
5f5c8ee5
GM
11462 /* Output to end of string or up to '%'. Field width
11463 is length of string. Don't output more than
11464 PRECISION allows us. */
11465 prec = --this - last;
11466 if (precision > 0 && prec > precision - n)
11467 prec = precision - n;
11468
d39b6696 11469 if (frame_title_ptr)
5f5c8ee5 11470 n += store_frame_title (last, prec, prec);
d39b6696 11471 else
5f5c8ee5
GM
11472 n += display_string (NULL, elt, Qnil, 0, last - lisp_string,
11473 it, 0, prec, 0, -1);
a2889657
JB
11474 }
11475 else /* c == '%' */
11476 {
5f5c8ee5
GM
11477 unsigned char *percent_position = this;
11478
11479 /* Get the specified minimum width. Zero means
11480 don't pad. */
11481 field = 0;
a2889657 11482 while ((c = *this++) >= '0' && c <= '9')
5f5c8ee5 11483 field = field * 10 + c - '0';
a2889657 11484
5f5c8ee5
GM
11485 /* Don't pad beyond the total padding allowed. */
11486 if (field_width - n > 0 && field > field_width - n)
11487 field = field_width - n;
a2889657 11488
5f5c8ee5
GM
11489 /* Note that either PRECISION <= 0 or N < PRECISION. */
11490 prec = precision - n;
11491
a2889657 11492 if (c == 'M')
5f5c8ee5
GM
11493 n += display_mode_element (it, depth, field, prec,
11494 Vglobal_mode_string);
a2889657 11495 else if (c != 0)
d39b6696 11496 {
5f5c8ee5
GM
11497 unsigned char *spec
11498 = decode_mode_spec (it->w, c, field, prec);
11499
d39b6696 11500 if (frame_title_ptr)
5f5c8ee5 11501 n += store_frame_title (spec, field, prec);
d39b6696 11502 else
5f5c8ee5
GM
11503 {
11504 int nglyphs_before
11505 = it->glyph_row->used[TEXT_AREA];
11506 int charpos
11507 = percent_position - XSTRING (elt)->data;
11508 int nwritten
11509 = display_string (spec, Qnil, elt, charpos, 0, it,
11510 field, prec, 0, -1);
11511
11512 /* Assign to the glyphs written above the
11513 string where the `%x' came from, position
11514 of the `%'. */
11515 if (nwritten > 0)
11516 {
11517 struct glyph *glyph
11518 = (it->glyph_row->glyphs[TEXT_AREA]
11519 + nglyphs_before);
11520 int i;
11521
11522 for (i = 0; i < nwritten; ++i)
11523 {
11524 glyph[i].object = elt;
11525 glyph[i].charpos = charpos;
11526 }
11527
11528 n += nwritten;
11529 }
11530 }
d39b6696 11531 }
a2889657
JB
11532 }
11533 }
11534 }
11535 break;
11536
11537 case Lisp_Symbol:
11538 /* A symbol: process the value of the symbol recursively
11539 as if it appeared here directly. Avoid error if symbol void.
11540 Special case: if value of symbol is a string, output the string
11541 literally. */
11542 {
11543 register Lisp_Object tem;
11544 tem = Fboundp (elt);
265a9e55 11545 if (!NILP (tem))
a2889657
JB
11546 {
11547 tem = Fsymbol_value (elt);
11548 /* If value is a string, output that string literally:
11549 don't check for % within it. */
e24c997d 11550 if (STRINGP (tem))
d39b6696 11551 {
5f5c8ee5
GM
11552 prec = XSTRING (tem)->size;
11553 if (precision > 0 && prec > precision - n)
11554 prec = precision - n;
d39b6696 11555 if (frame_title_ptr)
5f5c8ee5 11556 n += store_frame_title (XSTRING (tem)->data, -1, prec);
d39b6696 11557 else
5f5c8ee5
GM
11558 n += display_string (NULL, tem, Qnil, 0, 0, it,
11559 0, prec, 0, -1);
d39b6696 11560 }
a2889657 11561 else if (!EQ (tem, elt))
5f5c8ee5
GM
11562 {
11563 /* Give up right away for nil or t. */
11564 elt = tem;
11565 goto tail_recurse;
11566 }
a2889657
JB
11567 }
11568 }
11569 break;
11570
11571 case Lisp_Cons:
11572 {
11573 register Lisp_Object car, tem;
11574
11575 /* A cons cell: three distinct cases.
11576 If first element is a string or a cons, process all the elements
11577 and effectively concatenate them.
11578 If first element is a negative number, truncate displaying cdr to
11579 at most that many characters. If positive, pad (with spaces)
11580 to at least that many characters.
11581 If first element is a symbol, process the cadr or caddr recursively
11582 according to whether the symbol's value is non-nil or nil. */
9472f927 11583 car = XCAR (elt);
5f5c8ee5
GM
11584 if (EQ (car, QCeval) && CONSP (XCDR (elt)))
11585 {
11586 /* An element of the form (:eval FORM) means evaluate FORM
11587 and use the result as mode line elements. */
11588 struct gcpro gcpro1;
11589 Lisp_Object spec;
11590
11591 spec = eval_form (XCAR (XCDR (elt)));
11592 GCPRO1 (spec);
11593 n += display_mode_element (it, depth, field_width - n,
11594 precision - n, spec);
11595 UNGCPRO;
11596 }
11597 else if (SYMBOLP (car))
a2889657
JB
11598 {
11599 tem = Fboundp (car);
9472f927 11600 elt = XCDR (elt);
e24c997d 11601 if (!CONSP (elt))
a2889657
JB
11602 goto invalid;
11603 /* elt is now the cdr, and we know it is a cons cell.
11604 Use its car if CAR has a non-nil value. */
265a9e55 11605 if (!NILP (tem))
a2889657
JB
11606 {
11607 tem = Fsymbol_value (car);
265a9e55 11608 if (!NILP (tem))
9472f927
GM
11609 {
11610 elt = XCAR (elt);
11611 goto tail_recurse;
11612 }
a2889657
JB
11613 }
11614 /* Symbol's value is nil (or symbol is unbound)
11615 Get the cddr of the original list
11616 and if possible find the caddr and use that. */
9472f927 11617 elt = XCDR (elt);
265a9e55 11618 if (NILP (elt))
a2889657 11619 break;
e24c997d 11620 else if (!CONSP (elt))
a2889657 11621 goto invalid;
9472f927 11622 elt = XCAR (elt);
a2889657
JB
11623 goto tail_recurse;
11624 }
e24c997d 11625 else if (INTEGERP (car))
a2889657
JB
11626 {
11627 register int lim = XINT (car);
9472f927 11628 elt = XCDR (elt);
a2889657 11629 if (lim < 0)
5f5c8ee5
GM
11630 {
11631 /* Negative int means reduce maximum width. */
11632 if (precision <= 0)
11633 precision = -lim;
11634 else
11635 precision = min (precision, -lim);
11636 }
a2889657
JB
11637 else if (lim > 0)
11638 {
11639 /* Padding specified. Don't let it be more than
11640 current maximum. */
5f5c8ee5
GM
11641 if (precision > 0)
11642 lim = min (precision, lim);
11643
a2889657
JB
11644 /* If that's more padding than already wanted, queue it.
11645 But don't reduce padding already specified even if
11646 that is beyond the current truncation point. */
5f5c8ee5 11647 field_width = max (lim, field_width);
a2889657
JB
11648 }
11649 goto tail_recurse;
11650 }
e24c997d 11651 else if (STRINGP (car) || CONSP (car))
a2889657
JB
11652 {
11653 register int limit = 50;
5f5c8ee5
GM
11654 /* Limit is to protect against circular lists. */
11655 while (CONSP (elt)
11656 && --limit > 0
11657 && (precision <= 0 || n < precision))
a2889657 11658 {
5f5c8ee5 11659 n += display_mode_element (it, depth, field_width - n,
9472f927
GM
11660 precision - n, XCAR (elt));
11661 elt = XCDR (elt);
a2889657
JB
11662 }
11663 }
11664 }
11665 break;
11666
11667 default:
11668 invalid:
d39b6696 11669 if (frame_title_ptr)
5f5c8ee5 11670 n += store_frame_title ("*invalid*", 0, precision - n);
d39b6696 11671 else
5f5c8ee5
GM
11672 n += display_string ("*invalid*", Qnil, Qnil, 0, 0, it, 0,
11673 precision - n, 0, 0);
11674 return n;
a2889657
JB
11675 }
11676
5f5c8ee5
GM
11677 /* Pad to FIELD_WIDTH. */
11678 if (field_width > 0 && n < field_width)
11679 {
11680 if (frame_title_ptr)
11681 n += store_frame_title ("", field_width - n, 0);
11682 else
11683 n += display_string ("", Qnil, Qnil, 0, 0, it, field_width - n,
11684 0, 0, 0);
11685 }
11686
11687 return n;
a2889657 11688}
5f5c8ee5
GM
11689
11690
766525bc
RS
11691/* Write a null-terminated, right justified decimal representation of
11692 the positive integer D to BUF using a minimal field width WIDTH. */
11693
11694static void
11695pint2str (buf, width, d)
11696 register char *buf;
11697 register int width;
11698 register int d;
11699{
11700 register char *p = buf;
11701
11702 if (d <= 0)
5f5c8ee5 11703 *p++ = '0';
766525bc 11704 else
5f5c8ee5 11705 {
766525bc 11706 while (d > 0)
5f5c8ee5 11707 {
766525bc
RS
11708 *p++ = d % 10 + '0';
11709 d /= 10;
5f5c8ee5
GM
11710 }
11711 }
11712
11713 for (width -= (int) (p - buf); width > 0; --width)
11714 *p++ = ' ';
766525bc
RS
11715 *p-- = '\0';
11716 while (p > buf)
5f5c8ee5 11717 {
766525bc
RS
11718 d = *buf;
11719 *buf++ = *p;
11720 *p-- = d;
5f5c8ee5 11721 }
766525bc
RS
11722}
11723
5f5c8ee5 11724/* Set a mnemonic character for coding_system (Lisp symbol) in BUF.
1c9241f5
KH
11725 If EOL_FLAG is 1, set also a mnemonic character for end-of-line
11726 type of CODING_SYSTEM. Return updated pointer into BUF. */
11727
6693a99a 11728static unsigned char invalid_eol_type[] = "(*invalid*)";
d24715e8 11729
1c9241f5
KH
11730static char *
11731decode_mode_spec_coding (coding_system, buf, eol_flag)
11732 Lisp_Object coding_system;
11733 register char *buf;
11734 int eol_flag;
11735{
1e1078d6 11736 Lisp_Object val;
916848d8 11737 int multibyte = !NILP (current_buffer->enable_multibyte_characters);
302f2b38
EZ
11738 unsigned char *eol_str;
11739 int eol_str_len;
11740 /* The EOL conversion we are using. */
11741 Lisp_Object eoltype;
1e1078d6
RS
11742
11743 val = coding_system;
1c9241f5
KH
11744
11745 if (NILP (val)) /* Not yet decided. */
11746 {
916848d8
RS
11747 if (multibyte)
11748 *buf++ = '-';
21e989e3 11749 if (eol_flag)
302f2b38 11750 eoltype = eol_mnemonic_undecided;
1e1078d6 11751 /* Don't mention EOL conversion if it isn't decided. */
1c9241f5
KH
11752 }
11753 else
11754 {
1e1078d6
RS
11755 Lisp_Object eolvalue;
11756
11757 eolvalue = Fget (coding_system, Qeol_type);
11758
1c9241f5 11759 while (!NILP (val) && SYMBOLP (val))
1e1078d6
RS
11760 {
11761 val = Fget (val, Qcoding_system);
11762 if (NILP (eolvalue))
b070c1d7 11763 eolvalue = Fget (val, Qeol_type);
1e1078d6
RS
11764 }
11765
916848d8
RS
11766 if (multibyte)
11767 *buf++ = XFASTINT (XVECTOR (val)->contents[1]);
11768
1c9241f5
KH
11769 if (eol_flag)
11770 {
1e1078d6
RS
11771 /* The EOL conversion that is normal on this system. */
11772
11773 if (NILP (eolvalue)) /* Not yet decided. */
11774 eoltype = eol_mnemonic_undecided;
11775 else if (VECTORP (eolvalue)) /* Not yet decided. */
11776 eoltype = eol_mnemonic_undecided;
11777 else /* INTEGERP (eolvalue) -- 0:LF, 1:CRLF, 2:CR */
11778 eoltype = (XFASTINT (eolvalue) == 0
11779 ? eol_mnemonic_unix
11780 : (XFASTINT (eolvalue) == 1
11781 ? eol_mnemonic_dos : eol_mnemonic_mac));
302f2b38
EZ
11782 }
11783 }
5f5c8ee5 11784
302f2b38
EZ
11785 if (eol_flag)
11786 {
11787 /* Mention the EOL conversion if it is not the usual one. */
11788 if (STRINGP (eoltype))
11789 {
11790 eol_str = XSTRING (eoltype)->data;
11791 eol_str_len = XSTRING (eoltype)->size;
11792 }
f30b3499
KH
11793 else if (INTEGERP (eoltype)
11794 && CHAR_VALID_P (XINT (eoltype), 0))
11795 {
f30b3499
KH
11796 unsigned char work[4];
11797
11798 eol_str_len = CHAR_STRING (XINT (eoltype), work, eol_str);
11799 }
302f2b38
EZ
11800 else
11801 {
11802 eol_str = invalid_eol_type;
11803 eol_str_len = sizeof (invalid_eol_type) - 1;
1c9241f5 11804 }
f30b3499 11805 bcopy (eol_str, buf, eol_str_len);
302f2b38 11806 buf += eol_str_len;
1c9241f5 11807 }
302f2b38 11808
1c9241f5
KH
11809 return buf;
11810}
11811
a2889657 11812/* Return a string for the output of a mode line %-spec for window W,
5f5c8ee5
GM
11813 generated by character C. PRECISION >= 0 means don't return a
11814 string longer than that value. FIELD_WIDTH > 0 means pad the
11815 string returned with spaces to that value. */
a2889657 11816
11e82b76
JB
11817static char lots_of_dashes[] = "--------------------------------------------------------------------------------------------------------------------------------------------";
11818
a2889657 11819static char *
5f5c8ee5 11820decode_mode_spec (w, c, field_width, precision)
a2889657
JB
11821 struct window *w;
11822 register char c;
5f5c8ee5 11823 int field_width, precision;
a2889657 11824{
0b67772d 11825 Lisp_Object obj;
5f5c8ee5
GM
11826 struct frame *f = XFRAME (WINDOW_FRAME (w));
11827 char *decode_mode_spec_buf = f->decode_mode_spec_buffer;
d39b6696 11828 struct buffer *b = XBUFFER (w->buffer);
a2889657 11829
0b67772d 11830 obj = Qnil;
a2889657
JB
11831
11832 switch (c)
11833 {
1af9f229
RS
11834 case '*':
11835 if (!NILP (b->read_only))
11836 return "%";
11837 if (BUF_MODIFF (b) > BUF_SAVE_MODIFF (b))
11838 return "*";
11839 return "-";
11840
11841 case '+':
11842 /* This differs from %* only for a modified read-only buffer. */
11843 if (BUF_MODIFF (b) > BUF_SAVE_MODIFF (b))
11844 return "*";
11845 if (!NILP (b->read_only))
11846 return "%";
11847 return "-";
11848
11849 case '&':
11850 /* This differs from %* in ignoring read-only-ness. */
11851 if (BUF_MODIFF (b) > BUF_SAVE_MODIFF (b))
11852 return "*";
11853 return "-";
11854
11855 case '%':
11856 return "%";
11857
11858 case '[':
11859 {
11860 int i;
11861 char *p;
11862
11863 if (command_loop_level > 5)
11864 return "[[[... ";
11865 p = decode_mode_spec_buf;
11866 for (i = 0; i < command_loop_level; i++)
11867 *p++ = '[';
11868 *p = 0;
11869 return decode_mode_spec_buf;
11870 }
11871
11872 case ']':
11873 {
11874 int i;
11875 char *p;
11876
11877 if (command_loop_level > 5)
11878 return " ...]]]";
11879 p = decode_mode_spec_buf;
11880 for (i = 0; i < command_loop_level; i++)
11881 *p++ = ']';
11882 *p = 0;
11883 return decode_mode_spec_buf;
11884 }
11885
11886 case '-':
11887 {
1af9f229 11888 register int i;
5f5c8ee5
GM
11889
11890 /* Let lots_of_dashes be a string of infinite length. */
11891 if (field_width <= 0
11892 || field_width > sizeof (lots_of_dashes))
1af9f229 11893 {
5f5c8ee5
GM
11894 for (i = 0; i < FRAME_MESSAGE_BUF_SIZE (f) - 1; ++i)
11895 decode_mode_spec_buf[i] = '-';
11896 decode_mode_spec_buf[i] = '\0';
11897 return decode_mode_spec_buf;
1af9f229 11898 }
5f5c8ee5
GM
11899 else
11900 return lots_of_dashes;
1af9f229
RS
11901 }
11902
a2889657 11903 case 'b':
d39b6696 11904 obj = b->name;
a2889657
JB
11905 break;
11906
1af9f229
RS
11907 case 'c':
11908 {
11909 int col = current_column ();
11910 XSETFASTINT (w->column_number_displayed, col);
5f5c8ee5 11911 pint2str (decode_mode_spec_buf, field_width, col);
1af9f229
RS
11912 return decode_mode_spec_buf;
11913 }
11914
11915 case 'F':
11916 /* %F displays the frame name. */
5f5c8ee5 11917 if (!NILP (f->title))
95184b48 11918 return (char *) XSTRING (f->title)->data;
fd8ff63d 11919 if (f->explicit_name || ! FRAME_WINDOW_P (f))
95184b48 11920 return (char *) XSTRING (f->name)->data;
9c6da96f 11921 return "Emacs";
1af9f229 11922
a2889657 11923 case 'f':
d39b6696 11924 obj = b->filename;
a2889657
JB
11925 break;
11926
aa6d10fa
RS
11927 case 'l':
11928 {
12adba34
RS
11929 int startpos = XMARKER (w->start)->charpos;
11930 int startpos_byte = marker_byte_position (w->start);
11931 int line, linepos, linepos_byte, topline;
aa6d10fa 11932 int nlines, junk;
aa6d10fa
RS
11933 int height = XFASTINT (w->height);
11934
11935 /* If we decided that this buffer isn't suitable for line numbers,
11936 don't forget that too fast. */
11937 if (EQ (w->base_line_pos, w->buffer))
766525bc 11938 goto no_value;
5300fd39
RS
11939 /* But do forget it, if the window shows a different buffer now. */
11940 else if (BUFFERP (w->base_line_pos))
11941 w->base_line_pos = Qnil;
aa6d10fa
RS
11942
11943 /* If the buffer is very big, don't waste time. */
d39b6696 11944 if (BUF_ZV (b) - BUF_BEGV (b) > line_number_display_limit)
aa6d10fa
RS
11945 {
11946 w->base_line_pos = Qnil;
11947 w->base_line_number = Qnil;
766525bc 11948 goto no_value;
aa6d10fa
RS
11949 }
11950
11951 if (!NILP (w->base_line_number)
11952 && !NILP (w->base_line_pos)
12adba34 11953 && XFASTINT (w->base_line_pos) <= startpos)
aa6d10fa
RS
11954 {
11955 line = XFASTINT (w->base_line_number);
11956 linepos = XFASTINT (w->base_line_pos);
12adba34 11957 linepos_byte = buf_charpos_to_bytepos (b, linepos);
aa6d10fa
RS
11958 }
11959 else
11960 {
11961 line = 1;
d39b6696 11962 linepos = BUF_BEGV (b);
12adba34 11963 linepos_byte = BUF_BEGV_BYTE (b);
aa6d10fa
RS
11964 }
11965
11966 /* Count lines from base line to window start position. */
12adba34
RS
11967 nlines = display_count_lines (linepos, linepos_byte,
11968 startpos_byte,
11969 startpos, &junk);
aa6d10fa
RS
11970
11971 topline = nlines + line;
11972
11973 /* Determine a new base line, if the old one is too close
11974 or too far away, or if we did not have one.
11975 "Too close" means it's plausible a scroll-down would
11976 go back past it. */
d39b6696 11977 if (startpos == BUF_BEGV (b))
aa6d10fa 11978 {
c2213350
KH
11979 XSETFASTINT (w->base_line_number, topline);
11980 XSETFASTINT (w->base_line_pos, BUF_BEGV (b));
aa6d10fa
RS
11981 }
11982 else if (nlines < height + 25 || nlines > height * 3 + 50
d39b6696 11983 || linepos == BUF_BEGV (b))
aa6d10fa 11984 {
d39b6696 11985 int limit = BUF_BEGV (b);
12adba34 11986 int limit_byte = BUF_BEGV_BYTE (b);
aa6d10fa 11987 int position;
5d121aec 11988 int distance = (height * 2 + 30) * line_number_display_limit_width;
aa6d10fa
RS
11989
11990 if (startpos - distance > limit)
12adba34
RS
11991 {
11992 limit = startpos - distance;
11993 limit_byte = CHAR_TO_BYTE (limit);
11994 }
aa6d10fa 11995
12adba34
RS
11996 nlines = display_count_lines (startpos, startpos_byte,
11997 limit_byte,
11998 - (height * 2 + 30),
aa6d10fa
RS
11999 &position);
12000 /* If we couldn't find the lines we wanted within
5d121aec 12001 line_number_display_limit_width chars per line,
aa6d10fa 12002 give up on line numbers for this window. */
12adba34 12003 if (position == limit_byte && limit == startpos - distance)
aa6d10fa
RS
12004 {
12005 w->base_line_pos = w->buffer;
12006 w->base_line_number = Qnil;
766525bc 12007 goto no_value;
aa6d10fa
RS
12008 }
12009
c2213350 12010 XSETFASTINT (w->base_line_number, topline - nlines);
12adba34 12011 XSETFASTINT (w->base_line_pos, BYTE_TO_CHAR (position));
aa6d10fa
RS
12012 }
12013
12014 /* Now count lines from the start pos to point. */
12adba34
RS
12015 nlines = display_count_lines (startpos, startpos_byte,
12016 PT_BYTE, PT, &junk);
aa6d10fa
RS
12017
12018 /* Record that we did display the line number. */
12019 line_number_displayed = 1;
12020
12021 /* Make the string to show. */
5f5c8ee5 12022 pint2str (decode_mode_spec_buf, field_width, topline + nlines);
aa6d10fa 12023 return decode_mode_spec_buf;
766525bc
RS
12024 no_value:
12025 {
12026 char* p = decode_mode_spec_buf;
5f5c8ee5
GM
12027 int pad = field_width - 2;
12028 while (pad-- > 0)
12029 *p++ = ' ';
12030 *p++ = '?';
12031 *p = '?';
766525bc
RS
12032 return decode_mode_spec_buf;
12033 }
aa6d10fa
RS
12034 }
12035 break;
12036
a2889657 12037 case 'm':
d39b6696 12038 obj = b->mode_name;
a2889657
JB
12039 break;
12040
12041 case 'n':
d39b6696 12042 if (BUF_BEGV (b) > BUF_BEG (b) || BUF_ZV (b) < BUF_Z (b))
a2889657
JB
12043 return " Narrow";
12044 break;
12045
a2889657
JB
12046 case 'p':
12047 {
12048 int pos = marker_position (w->start);
d39b6696 12049 int total = BUF_ZV (b) - BUF_BEGV (b);
a2889657 12050
d39b6696 12051 if (XFASTINT (w->window_end_pos) <= BUF_Z (b) - BUF_ZV (b))
a2889657 12052 {
d39b6696 12053 if (pos <= BUF_BEGV (b))
a2889657
JB
12054 return "All";
12055 else
12056 return "Bottom";
12057 }
d39b6696 12058 else if (pos <= BUF_BEGV (b))
a2889657
JB
12059 return "Top";
12060 else
12061 {
3c7d31b9
RS
12062 if (total > 1000000)
12063 /* Do it differently for a large value, to avoid overflow. */
12064 total = ((pos - BUF_BEGV (b)) + (total / 100) - 1) / (total / 100);
12065 else
12066 total = ((pos - BUF_BEGV (b)) * 100 + total - 1) / total;
a2889657
JB
12067 /* We can't normally display a 3-digit number,
12068 so get us a 2-digit number that is close. */
12069 if (total == 100)
12070 total = 99;
12071 sprintf (decode_mode_spec_buf, "%2d%%", total);
12072 return decode_mode_spec_buf;
12073 }
12074 }
12075
8ffcb79f
RS
12076 /* Display percentage of size above the bottom of the screen. */
12077 case 'P':
12078 {
12079 int toppos = marker_position (w->start);
d39b6696
KH
12080 int botpos = BUF_Z (b) - XFASTINT (w->window_end_pos);
12081 int total = BUF_ZV (b) - BUF_BEGV (b);
8ffcb79f 12082
d39b6696 12083 if (botpos >= BUF_ZV (b))
8ffcb79f 12084 {
d39b6696 12085 if (toppos <= BUF_BEGV (b))
8ffcb79f
RS
12086 return "All";
12087 else
12088 return "Bottom";
12089 }
12090 else
12091 {
3c7d31b9
RS
12092 if (total > 1000000)
12093 /* Do it differently for a large value, to avoid overflow. */
12094 total = ((botpos - BUF_BEGV (b)) + (total / 100) - 1) / (total / 100);
12095 else
12096 total = ((botpos - BUF_BEGV (b)) * 100 + total - 1) / total;
8ffcb79f
RS
12097 /* We can't normally display a 3-digit number,
12098 so get us a 2-digit number that is close. */
12099 if (total == 100)
12100 total = 99;
d39b6696 12101 if (toppos <= BUF_BEGV (b))
8ffcb79f
RS
12102 sprintf (decode_mode_spec_buf, "Top%2d%%", total);
12103 else
12104 sprintf (decode_mode_spec_buf, "%2d%%", total);
12105 return decode_mode_spec_buf;
12106 }
12107 }
12108
1af9f229
RS
12109 case 's':
12110 /* status of process */
12111 obj = Fget_buffer_process (w->buffer);
12112 if (NILP (obj))
12113 return "no process";
12114#ifdef subprocesses
12115 obj = Fsymbol_name (Fprocess_status (obj));
12116#endif
12117 break;
d39b6696 12118
1af9f229
RS
12119 case 't': /* indicate TEXT or BINARY */
12120#ifdef MODE_LINE_BINARY_TEXT
12121 return MODE_LINE_BINARY_TEXT (b);
12122#else
12123 return "T";
12124#endif
1c9241f5
KH
12125
12126 case 'z':
12127 /* coding-system (not including end-of-line format) */
12128 case 'Z':
12129 /* coding-system (including end-of-line type) */
12130 {
12131 int eol_flag = (c == 'Z');
539b4d41 12132 char *p = decode_mode_spec_buf;
1c9241f5 12133
d30e754b 12134 if (! FRAME_WINDOW_P (f))
1c9241f5 12135 {
11c52c4f
RS
12136 /* No need to mention EOL here--the terminal never needs
12137 to do EOL conversion. */
12138 p = decode_mode_spec_coding (keyboard_coding.symbol, p, 0);
12139 p = decode_mode_spec_coding (terminal_coding.symbol, p, 0);
1c9241f5 12140 }
f13c925f 12141 p = decode_mode_spec_coding (b->buffer_file_coding_system,
539b4d41 12142 p, eol_flag);
f13c925f 12143
11c52c4f 12144#if 0 /* This proves to be annoying; I think we can do without. -- rms. */
1c9241f5
KH
12145#ifdef subprocesses
12146 obj = Fget_buffer_process (Fcurrent_buffer ());
12147 if (PROCESSP (obj))
12148 {
12149 p = decode_mode_spec_coding (XPROCESS (obj)->decode_coding_system,
12150 p, eol_flag);
12151 p = decode_mode_spec_coding (XPROCESS (obj)->encode_coding_system,
12152 p, eol_flag);
12153 }
12154#endif /* subprocesses */
11c52c4f 12155#endif /* 0 */
1c9241f5
KH
12156 *p = 0;
12157 return decode_mode_spec_buf;
12158 }
a2889657 12159 }
d39b6696 12160
e24c997d 12161 if (STRINGP (obj))
a2889657
JB
12162 return (char *) XSTRING (obj)->data;
12163 else
12164 return "";
12165}
5f5c8ee5
GM
12166
12167
12adba34
RS
12168/* Count up to COUNT lines starting from START / START_BYTE.
12169 But don't go beyond LIMIT_BYTE.
12170 Return the number of lines thus found (always nonnegative).
59b49f63 12171
12adba34 12172 Set *BYTE_POS_PTR to 1 if we found COUNT lines, 0 if we hit LIMIT. */
59b49f63
RS
12173
12174static int
12adba34
RS
12175display_count_lines (start, start_byte, limit_byte, count, byte_pos_ptr)
12176 int start, start_byte, limit_byte, count;
12177 int *byte_pos_ptr;
59b49f63 12178{
59b49f63
RS
12179 register unsigned char *cursor;
12180 unsigned char *base;
12181
12182 register int ceiling;
12183 register unsigned char *ceiling_addr;
12adba34 12184 int orig_count = count;
59b49f63
RS
12185
12186 /* If we are not in selective display mode,
12187 check only for newlines. */
12adba34
RS
12188 int selective_display = (!NILP (current_buffer->selective_display)
12189 && !INTEGERP (current_buffer->selective_display));
59b49f63
RS
12190
12191 if (count > 0)
12adba34
RS
12192 {
12193 while (start_byte < limit_byte)
12194 {
12195 ceiling = BUFFER_CEILING_OF (start_byte);
12196 ceiling = min (limit_byte - 1, ceiling);
12197 ceiling_addr = BYTE_POS_ADDR (ceiling) + 1;
12198 base = (cursor = BYTE_POS_ADDR (start_byte));
12199 while (1)
12200 {
12201 if (selective_display)
12202 while (*cursor != '\n' && *cursor != 015 && ++cursor != ceiling_addr)
12203 ;
12204 else
12205 while (*cursor != '\n' && ++cursor != ceiling_addr)
12206 ;
12207
12208 if (cursor != ceiling_addr)
12209 {
12210 if (--count == 0)
12211 {
12212 start_byte += cursor - base + 1;
12213 *byte_pos_ptr = start_byte;
12214 return orig_count;
12215 }
12216 else
12217 if (++cursor == ceiling_addr)
12218 break;
12219 }
12220 else
12221 break;
12222 }
12223 start_byte += cursor - base;
12224 }
12225 }
59b49f63
RS
12226 else
12227 {
12adba34
RS
12228 while (start_byte > limit_byte)
12229 {
12230 ceiling = BUFFER_FLOOR_OF (start_byte - 1);
12231 ceiling = max (limit_byte, ceiling);
12232 ceiling_addr = BYTE_POS_ADDR (ceiling) - 1;
12233 base = (cursor = BYTE_POS_ADDR (start_byte - 1) + 1);
59b49f63
RS
12234 while (1)
12235 {
12adba34
RS
12236 if (selective_display)
12237 while (--cursor != ceiling_addr
12238 && *cursor != '\n' && *cursor != 015)
12239 ;
12240 else
12241 while (--cursor != ceiling_addr && *cursor != '\n')
12242 ;
12243
59b49f63
RS
12244 if (cursor != ceiling_addr)
12245 {
12246 if (++count == 0)
12247 {
12adba34
RS
12248 start_byte += cursor - base + 1;
12249 *byte_pos_ptr = start_byte;
12250 /* When scanning backwards, we should
12251 not count the newline posterior to which we stop. */
12252 return - orig_count - 1;
59b49f63
RS
12253 }
12254 }
12255 else
12256 break;
12257 }
12adba34
RS
12258 /* Here we add 1 to compensate for the last decrement
12259 of CURSOR, which took it past the valid range. */
12260 start_byte += cursor - base + 1;
59b49f63
RS
12261 }
12262 }
12263
12adba34 12264 *byte_pos_ptr = limit_byte;
aa6d10fa 12265
12adba34
RS
12266 if (count < 0)
12267 return - orig_count + count;
12268 return orig_count - count;
aa6d10fa 12269
12adba34 12270}
a2889657 12271
a2889657 12272
5f5c8ee5
GM
12273\f
12274/***********************************************************************
12275 Displaying strings
12276 ***********************************************************************/
278feba9 12277
5f5c8ee5 12278/* Display a NUL-terminated string, starting with index START.
a3788d53 12279
5f5c8ee5
GM
12280 If STRING is non-null, display that C string. Otherwise, the Lisp
12281 string LISP_STRING is displayed.
a2889657 12282
5f5c8ee5
GM
12283 If FACE_STRING is not nil, FACE_STRING_POS is a position in
12284 FACE_STRING. Display STRING or LISP_STRING with the face at
12285 FACE_STRING_POS in FACE_STRING:
a2889657 12286
5f5c8ee5
GM
12287 Display the string in the environment given by IT, but use the
12288 standard display table, temporarily.
a3788d53 12289
5f5c8ee5
GM
12290 FIELD_WIDTH is the minimum number of output glyphs to produce.
12291 If STRING has fewer characters than FIELD_WIDTH, pad to the right
12292 with spaces. If STRING has more characters, more than FIELD_WIDTH
12293 glyphs will be produced. FIELD_WIDTH <= 0 means don't pad.
12294
12295 PRECISION is the maximum number of characters to output from
12296 STRING. PRECISION < 0 means don't truncate the string.
a2889657 12297
5f5c8ee5 12298 This is roughly equivalent to printf format specifiers:
a2889657 12299
5f5c8ee5
GM
12300 FIELD_WIDTH PRECISION PRINTF
12301 ----------------------------------------
12302 -1 -1 %s
12303 -1 10 %.10s
12304 10 -1 %10s
12305 20 10 %20.10s
a2889657 12306
5f5c8ee5
GM
12307 MULTIBYTE zero means do not display multibyte chars, > 0 means do
12308 display them, and < 0 means obey the current buffer's value of
12309 enable_multibyte_characters.
278feba9 12310
5f5c8ee5 12311 Value is the number of glyphs produced. */
b1d1124b 12312
5f5c8ee5
GM
12313static int
12314display_string (string, lisp_string, face_string, face_string_pos,
12315 start, it, field_width, precision, max_x, multibyte)
12316 unsigned char *string;
12317 Lisp_Object lisp_string;
12318 int start;
12319 struct it *it;
12320 int field_width, precision, max_x;
12321 int multibyte;
12322{
12323 int hpos_at_start = it->hpos;
12324 int saved_face_id = it->face_id;
12325 struct glyph_row *row = it->glyph_row;
12326
12327 /* Initialize the iterator IT for iteration over STRING beginning
12328 with index START. We assume that IT may be modified here (which
12329 means that display_line has to do something when displaying a
12330 mini-buffer prompt, which it does). */
12331 reseat_to_string (it, string, lisp_string, start,
12332 precision, field_width, multibyte);
12333
12334 /* If displaying STRING, set up the face of the iterator
12335 from LISP_STRING, if that's given. */
12336 if (STRINGP (face_string))
12337 {
12338 int endptr;
12339 struct face *face;
12340
12341 it->face_id
12342 = face_at_string_position (it->w, face_string, face_string_pos,
12343 0, it->region_beg_charpos,
12344 it->region_end_charpos,
12345 &endptr, it->base_face_id);
12346 face = FACE_FROM_ID (it->f, it->face_id);
12347 it->face_box_p = face->box != FACE_NO_BOX;
b1d1124b 12348 }
a2889657 12349
5f5c8ee5
GM
12350 /* Set max_x to the maximum allowed X position. Don't let it go
12351 beyond the right edge of the window. */
12352 if (max_x <= 0)
12353 max_x = it->last_visible_x;
12354 else
12355 max_x = min (max_x, it->last_visible_x);
efc63ef0 12356
5f5c8ee5
GM
12357 /* Skip over display elements that are not visible. because IT->w is
12358 hscrolled. */
12359 if (it->current_x < it->first_visible_x)
12360 move_it_in_display_line_to (it, 100000, it->first_visible_x,
12361 MOVE_TO_POS | MOVE_TO_X);
a2889657 12362
5f5c8ee5
GM
12363 row->ascent = it->max_ascent;
12364 row->height = it->max_ascent + it->max_descent;
312246d1
GM
12365 row->phys_ascent = it->max_phys_ascent;
12366 row->phys_height = it->max_phys_ascent + it->max_phys_descent;
1c9241f5 12367
5f5c8ee5
GM
12368 /* This condition is for the case that we are called with current_x
12369 past last_visible_x. */
12370 while (it->current_x < max_x)
a2889657 12371 {
5f5c8ee5 12372 int x_before, x, n_glyphs_before, i, nglyphs;
1c9241f5 12373
5f5c8ee5
GM
12374 /* Get the next display element. */
12375 if (!get_next_display_element (it))
90adcf20 12376 break;
1c9241f5 12377
5f5c8ee5
GM
12378 /* Produce glyphs. */
12379 x_before = it->current_x;
12380 n_glyphs_before = it->glyph_row->used[TEXT_AREA];
12381 PRODUCE_GLYPHS (it);
90adcf20 12382
5f5c8ee5
GM
12383 nglyphs = it->glyph_row->used[TEXT_AREA] - n_glyphs_before;
12384 i = 0;
12385 x = x_before;
12386 while (i < nglyphs)
a2889657 12387 {
5f5c8ee5
GM
12388 struct glyph *glyph = row->glyphs[TEXT_AREA] + n_glyphs_before + i;
12389
12390 if (!it->truncate_lines_p
12391 && x + glyph->pixel_width > max_x)
12392 {
12393 /* End of continued line or max_x reached. */
12394 it->glyph_row->used[TEXT_AREA] = n_glyphs_before + i;
12395 it->current_x = x;
12396 break;
12397 }
12398 else if (x + glyph->pixel_width > it->first_visible_x)
12399 {
12400 /* Glyph is at least partially visible. */
12401 ++it->hpos;
12402 if (x < it->first_visible_x)
12403 it->glyph_row->x = x - it->first_visible_x;
12404 }
12405 else
a2889657 12406 {
5f5c8ee5
GM
12407 /* Glyph is off the left margin of the display area.
12408 Should not happen. */
12409 abort ();
a2889657 12410 }
5f5c8ee5
GM
12411
12412 row->ascent = max (row->ascent, it->max_ascent);
12413 row->height = max (row->height, it->max_ascent + it->max_descent);
312246d1
GM
12414 row->phys_ascent = max (row->phys_ascent, it->max_phys_ascent);
12415 row->phys_height = max (row->phys_height,
12416 it->max_phys_ascent + it->max_phys_descent);
5f5c8ee5
GM
12417 x += glyph->pixel_width;
12418 ++i;
a2889657 12419 }
5f5c8ee5
GM
12420
12421 /* Stop if max_x reached. */
12422 if (i < nglyphs)
12423 break;
12424
12425 /* Stop at line ends. */
12426 if (ITERATOR_AT_END_OF_LINE_P (it))
a2889657 12427 {
5f5c8ee5
GM
12428 it->continuation_lines_width = 0;
12429 break;
a2889657 12430 }
1c9241f5 12431
5f5c8ee5 12432 set_iterator_to_next (it);
a688bb24 12433
5f5c8ee5
GM
12434 /* Stop if truncating at the right edge. */
12435 if (it->truncate_lines_p
12436 && it->current_x >= it->last_visible_x)
12437 {
12438 /* Add truncation mark, but don't do it if the line is
12439 truncated at a padding space. */
12440 if (IT_CHARPOS (*it) < it->string_nchars)
1c9241f5 12441 {
5f5c8ee5
GM
12442 if (!FRAME_WINDOW_P (it->f))
12443 produce_special_glyphs (it, IT_TRUNCATION);
12444 it->glyph_row->truncated_on_right_p = 1;
1c9241f5 12445 }
5f5c8ee5 12446 break;
1c9241f5 12447 }
a2889657
JB
12448 }
12449
5f5c8ee5
GM
12450 /* Maybe insert a truncation at the left. */
12451 if (it->first_visible_x
12452 && IT_CHARPOS (*it) > 0)
a2889657 12453 {
5f5c8ee5
GM
12454 if (!FRAME_WINDOW_P (it->f))
12455 insert_left_trunc_glyphs (it);
12456 it->glyph_row->truncated_on_left_p = 1;
a2889657
JB
12457 }
12458
5f5c8ee5
GM
12459 it->face_id = saved_face_id;
12460
12461 /* Value is number of columns displayed. */
12462 return it->hpos - hpos_at_start;
12463}
a2889657 12464
a2889657 12465
a2889657 12466\f
5f5c8ee5
GM
12467/* This is like a combination of memq and assq. Return 1 if PROPVAL
12468 appears as an element of LIST or as the car of an element of LIST.
12469 If PROPVAL is a list, compare each element against LIST in that
12470 way, and return 1 if any element of PROPVAL is found in LIST.
12471 Otherwise return 0. This function cannot quit. */
642eefc6
RS
12472
12473int
12474invisible_p (propval, list)
12475 register Lisp_Object propval;
12476 Lisp_Object list;
12477{
af460d46 12478 register Lisp_Object tail, proptail;
9472f927 12479 for (tail = list; CONSP (tail); tail = XCDR (tail))
642eefc6
RS
12480 {
12481 register Lisp_Object tem;
9472f927 12482 tem = XCAR (tail);
642eefc6
RS
12483 if (EQ (propval, tem))
12484 return 1;
9472f927 12485 if (CONSP (tem) && EQ (propval, XCAR (tem)))
642eefc6
RS
12486 return 1;
12487 }
af460d46
RS
12488 if (CONSP (propval))
12489 for (proptail = propval; CONSP (proptail);
9472f927 12490 proptail = XCDR (proptail))
af460d46
RS
12491 {
12492 Lisp_Object propelt;
9472f927
GM
12493 propelt = XCAR (proptail);
12494 for (tail = list; CONSP (tail); tail = XCDR (tail))
af460d46
RS
12495 {
12496 register Lisp_Object tem;
9472f927 12497 tem = XCAR (tail);
af460d46
RS
12498 if (EQ (propelt, tem))
12499 return 1;
9472f927 12500 if (CONSP (tem) && EQ (propelt, XCAR (tem)))
af460d46
RS
12501 return 1;
12502 }
12503 }
642eefc6
RS
12504 return 0;
12505}
12506
5f5c8ee5
GM
12507
12508/* Return 1 if PROPVAL appears as the car of an element of LIST and
12509 the cdr of that element is non-nil. If PROPVAL is a list, check
12510 each element of PROPVAL in that way, and the first time some
12511 element is found, return 1 if the cdr of that element is non-nil.
12512 Otherwise return 0. This function cannot quit. */
642eefc6
RS
12513
12514int
12515invisible_ellipsis_p (propval, list)
12516 register Lisp_Object propval;
12517 Lisp_Object list;
12518{
af460d46 12519 register Lisp_Object tail, proptail;
9472f927
GM
12520
12521 for (tail = list; CONSP (tail); tail = XCDR (tail))
642eefc6
RS
12522 {
12523 register Lisp_Object tem;
9472f927
GM
12524 tem = XCAR (tail);
12525 if (CONSP (tem) && EQ (propval, XCAR (tem)))
12526 return ! NILP (XCDR (tem));
642eefc6 12527 }
9472f927 12528
af460d46 12529 if (CONSP (propval))
9472f927 12530 for (proptail = propval; CONSP (proptail); proptail = XCDR (proptail))
af460d46
RS
12531 {
12532 Lisp_Object propelt;
9472f927
GM
12533 propelt = XCAR (proptail);
12534 for (tail = list; CONSP (tail); tail = XCDR (tail))
af460d46
RS
12535 {
12536 register Lisp_Object tem;
9472f927
GM
12537 tem = XCAR (tail);
12538 if (CONSP (tem) && EQ (propelt, XCAR (tem)))
12539 return ! NILP (XCDR (tem));
af460d46
RS
12540 }
12541 }
9472f927 12542
642eefc6
RS
12543 return 0;
12544}
5f5c8ee5
GM
12545
12546
642eefc6 12547\f
5f5c8ee5
GM
12548/***********************************************************************
12549 Initialization
12550 ***********************************************************************/
12551
a2889657
JB
12552void
12553syms_of_xdisp ()
12554{
c6e89d6c
GM
12555 Vwith_echo_area_save_vector = Qnil;
12556 staticpro (&Vwith_echo_area_save_vector);
5f5c8ee5 12557
c6e89d6c
GM
12558 Vmessage_stack = Qnil;
12559 staticpro (&Vmessage_stack);
12560
735c094c 12561 Qinhibit_redisplay = intern ("inhibit-redisplay");
c6e89d6c 12562 staticpro (&Qinhibit_redisplay);
735c094c 12563
5f5c8ee5
GM
12564#if GLYPH_DEBUG
12565 defsubr (&Sdump_glyph_matrix);
12566 defsubr (&Sdump_glyph_row);
e037b9ec 12567 defsubr (&Sdump_tool_bar_row);
5f5c8ee5
GM
12568 defsubr (&Strace_redisplay_toggle);
12569#endif
12570
cf074754
RS
12571 staticpro (&Qmenu_bar_update_hook);
12572 Qmenu_bar_update_hook = intern ("menu-bar-update-hook");
12573
d46fb96a 12574 staticpro (&Qoverriding_terminal_local_map);
7079aefa 12575 Qoverriding_terminal_local_map = intern ("overriding-terminal-local-map");
d46fb96a 12576
399164b4
KH
12577 staticpro (&Qoverriding_local_map);
12578 Qoverriding_local_map = intern ("overriding-local-map");
12579
75c43375
RS
12580 staticpro (&Qwindow_scroll_functions);
12581 Qwindow_scroll_functions = intern ("window-scroll-functions");
12582
e0bfbde6
RS
12583 staticpro (&Qredisplay_end_trigger_functions);
12584 Qredisplay_end_trigger_functions = intern ("redisplay-end-trigger-functions");
5f5c8ee5 12585
2e54982e
RS
12586 staticpro (&Qinhibit_point_motion_hooks);
12587 Qinhibit_point_motion_hooks = intern ("inhibit-point-motion-hooks");
12588
5f5c8ee5
GM
12589 staticpro (&Qdisplay);
12590 Qdisplay = intern ("display");
12591 staticpro (&Qleft_margin);
12592 Qspace_width = intern ("space-width");
12593 staticpro (&Qspace_width);
12594 Qheight = intern ("height");
12595 staticpro (&Qheight);
12596 Qraise = intern ("raise");
12597 staticpro (&Qraise);
12598 Qspace = intern ("space");
12599 staticpro (&Qspace);
12600 Qleft_margin = intern ("left-margin");
12601 staticpro (&Qright_margin);
12602 Qright_margin = intern ("right-margin");
12603 Qalign_to = intern ("align-to");
12604 staticpro (&Qalign_to);
12605 QCalign_to = intern (":align-to");
12606 staticpro (&QCalign_to);
12607 Qwidth = intern ("width");
12608 staticpro (&Qwidth);
12609 Qrelative_width = intern ("relative-width");
12610 staticpro (&Qrelative_width);
12611 QCrelative_width = intern (":relative-width");
12612 staticpro (&QCrelative_width);
12613 QCrelative_height = intern (":relative-height");
12614 staticpro (&QCrelative_height);
12615 QCeval = intern (":eval");
12616 staticpro (&QCeval);
d3acf96b
GM
12617 Qwhen = intern ("when");
12618 staticpro (&Qwhen);
5f5c8ee5
GM
12619 Qfontified = intern ("fontified");
12620 staticpro (&Qfontified);
12621 Qfontification_functions = intern ("fontification-functions");
12622 staticpro (&Qfontification_functions);
5f5c8ee5
GM
12623 Qtrailing_whitespace = intern ("trailing-whitespace");
12624 staticpro (&Qtrailing_whitespace);
12625 Qimage = intern ("image");
12626 staticpro (&Qimage);
12627
a2889657
JB
12628 staticpro (&last_arrow_position);
12629 staticpro (&last_arrow_string);
12630 last_arrow_position = Qnil;
12631 last_arrow_string = Qnil;
c6e89d6c
GM
12632
12633 echo_buffer[0] = echo_buffer[1] = Qnil;
12634 staticpro (&echo_buffer[0]);
12635 staticpro (&echo_buffer[1]);
12636
12637 echo_area_buffer[0] = echo_area_buffer[1] = Qnil;
12638 staticpro (&echo_area_buffer[0]);
12639 staticpro (&echo_area_buffer[1]);
a2889657 12640
8f897821
GM
12641 DEFVAR_LISP ("show-trailing-whitespace", &Vshow_trailing_whitespace,
12642 "Non-nil means highlight trailing whitespace.\n\
12643The face used for trailing whitespace is `trailing-whitespace'.");
12644 Vshow_trailing_whitespace = Qnil;
12645
735c094c
KH
12646 DEFVAR_LISP ("inhibit-redisplay", &Vinhibit_redisplay,
12647 "Non-nil means don't actually do any redisplay.\n\
12648This is used for internal purposes.");
12649 Vinhibit_redisplay = Qnil;
12650
a2889657 12651 DEFVAR_LISP ("global-mode-string", &Vglobal_mode_string,
8c45d522 12652 "String (or mode line construct) included (normally) in `mode-line-format'.");
a2889657
JB
12653 Vglobal_mode_string = Qnil;
12654
12655 DEFVAR_LISP ("overlay-arrow-position", &Voverlay_arrow_position,
12656 "Marker for where to display an arrow on top of the buffer text.\n\
12657This must be the beginning of a line in order to work.\n\
12658See also `overlay-arrow-string'.");
12659 Voverlay_arrow_position = Qnil;
12660
12661 DEFVAR_LISP ("overlay-arrow-string", &Voverlay_arrow_string,
12662 "String to display as an arrow. See also `overlay-arrow-position'.");
12663 Voverlay_arrow_string = Qnil;
12664
12665 DEFVAR_INT ("scroll-step", &scroll_step,
12666 "*The number of lines to try scrolling a window by when point moves out.\n\
44fa5b1e
JB
12667If that fails to bring point back on frame, point is centered instead.\n\
12668If this is zero, point is always centered after it moves off frame.");
a2889657 12669
0789adb2
RS
12670 DEFVAR_INT ("scroll-conservatively", &scroll_conservatively,
12671 "*Scroll up to this many lines, to bring point back on screen.");
12672 scroll_conservatively = 0;
12673
9afd2168
RS
12674 DEFVAR_INT ("scroll-margin", &scroll_margin,
12675 "*Number of lines of margin at the top and bottom of a window.\n\
12676Recenter the window whenever point gets within this many lines\n\
12677of the top or bottom of the window.");
12678 scroll_margin = 0;
12679
5f5c8ee5 12680#if GLYPH_DEBUG
a2889657 12681 DEFVAR_INT ("debug-end-pos", &debug_end_pos, "Don't ask");
5f5c8ee5 12682#endif
a2889657
JB
12683
12684 DEFVAR_BOOL ("truncate-partial-width-windows",
12685 &truncate_partial_width_windows,
44fa5b1e 12686 "*Non-nil means truncate lines in all windows less than full frame wide.");
a2889657
JB
12687 truncate_partial_width_windows = 1;
12688
12689 DEFVAR_BOOL ("mode-line-inverse-video", &mode_line_inverse_video,
12690 "*Non-nil means use inverse video for the mode line.");
12691 mode_line_inverse_video = 1;
aa6d10fa
RS
12692
12693 DEFVAR_INT ("line-number-display-limit", &line_number_display_limit,
5f5c8ee5 12694 "*Maximum buffer size for which line number should be displayed.\n\
db4f2bfa 12695If the buffer is bigger than this, the line number does not appear\n\
9f027393 12696in the mode line.");
aa6d10fa 12697 line_number_display_limit = 1000000;
fba9ce76 12698
5d121aec
KH
12699 DEFVAR_INT ("line-number-display-limit-width", &line_number_display_limit_width,
12700 "*Maximum line width (in characters) for line number display.\n\
12701If the average length of the lines near point is bigger than this, then the\n\
12702line number may be omitted from the mode line.");
12703 line_number_display_limit_width = 200;
12704
fba9ce76
RS
12705 DEFVAR_BOOL ("highlight-nonselected-windows", &highlight_nonselected_windows,
12706 "*Non-nil means highlight region even in nonselected windows.");
293a54ce 12707 highlight_nonselected_windows = 0;
d39b6696
KH
12708
12709 DEFVAR_BOOL ("multiple-frames", &multiple_frames,
3450d04c
KH
12710 "Non-nil if more than one frame is visible on this display.\n\
12711Minibuffer-only frames don't count, but iconified frames do.\n\
4c2eb242
RS
12712This variable is not guaranteed to be accurate except while processing\n\
12713`frame-title-format' and `icon-title-format'.");
d39b6696
KH
12714
12715 DEFVAR_LISP ("frame-title-format", &Vframe_title_format,
5f5c8ee5 12716 "Template for displaying the title bar of visible frames.\n\
d39b6696
KH
12717\(Assuming the window manager supports this feature.)\n\
12718This variable has the same structure as `mode-line-format' (which see),\n\
12719and is used only on frames for which no explicit name has been set\n\
12720\(see `modify-frame-parameters').");
12721 DEFVAR_LISP ("icon-title-format", &Vicon_title_format,
5f5c8ee5 12722 "Template for displaying the title bar of an iconified frame.\n\
d39b6696
KH
12723\(Assuming the window manager supports this feature.)\n\
12724This variable has the same structure as `mode-line-format' (which see),\n\
12725and is used only on frames for which no explicit name has been set\n\
12726\(see `modify-frame-parameters').");
12727 Vicon_title_format
12728 = Vframe_title_format
12729 = Fcons (intern ("multiple-frames"),
12730 Fcons (build_string ("%b"),
12731 Fcons (Fcons (build_string (""),
12732 Fcons (intern ("invocation-name"),
12733 Fcons (build_string ("@"),
12734 Fcons (intern ("system-name"),
12735 Qnil)))),
12736 Qnil)));
5992c4f7
KH
12737
12738 DEFVAR_LISP ("message-log-max", &Vmessage_log_max,
12739 "Maximum number of lines to keep in the message log buffer.\n\
12740If nil, disable message logging. If t, log messages but don't truncate\n\
12741the buffer when it becomes large.");
12742 XSETFASTINT (Vmessage_log_max, 50);
08b610e4
RS
12743
12744 DEFVAR_LISP ("window-size-change-functions", &Vwindow_size_change_functions,
12745 "Functions called before redisplay, if window sizes have changed.\n\
12746The value should be a list of functions that take one argument.\n\
12747Just before redisplay, for each frame, if any of its windows have changed\n\
12748size since the last redisplay, or have been split or deleted,\n\
12749all the functions in the list are called, with the frame as argument.");
12750 Vwindow_size_change_functions = Qnil;
75c43375
RS
12751
12752 DEFVAR_LISP ("window-scroll-functions", &Vwindow_scroll_functions,
5f5c8ee5 12753 "List of Functions to call before redisplaying a window with scrolling.\n\
75c43375 12754Each function is called with two arguments, the window\n\
8d9583b0
RS
12755and its new display-start position. Note that the value of `window-end'\n\
12756is not valid when these functions are called.");
75c43375 12757 Vwindow_scroll_functions = Qnil;
5f5c8ee5 12758
e037b9ec
GM
12759 DEFVAR_BOOL ("auto-resize-tool-bars", &auto_resize_tool_bars_p,
12760 "*Non-nil means automatically resize tool-bars.\n\
12761This increases a tool-bar's height if not all tool-bar items are visible.\n\
12762It decreases a tool-bar's height when it would display blank lines\n\
5f5c8ee5 12763otherwise.");
e037b9ec 12764 auto_resize_tool_bars_p = 1;
5f5c8ee5 12765
e037b9ec
GM
12766 DEFVAR_BOOL ("auto-raise-tool-bar-buttons", &auto_raise_tool_bar_buttons_p,
12767 "*Non-nil means raise tool-bar buttons when the mouse moves over them.");
12768 auto_raise_tool_bar_buttons_p = 1;
5f5c8ee5 12769
e037b9ec
GM
12770 DEFVAR_INT ("tool-bar-button-margin", &tool_bar_button_margin,
12771 "*Margin around tool-bar buttons in pixels.");
12772 tool_bar_button_margin = 1;
5f5c8ee5 12773
e037b9ec
GM
12774 DEFVAR_INT ("tool-bar-button-relief", &tool_bar_button_relief,
12775 "Relief thickness of tool-bar buttons.");
12776 tool_bar_button_relief = 3;
5f5c8ee5
GM
12777
12778 DEFVAR_LISP ("fontification-functions", &Vfontification_functions,
12779 "List of functions to call to fontify regions of text.\n\
12780Each function is called with one argument POS. Functions must\n\
12781fontify a region starting at POS in the current buffer, and give\n\
12782fontified regions the property `fontified'.\n\
12783This variable automatically becomes buffer-local when set.");
12784 Vfontification_functions = Qnil;
12785 Fmake_local_variable (Qfontification_functions);
7bbe686f
AI
12786
12787 DEFVAR_BOOL ("unibyte-display-via-language-environment",
5f5c8ee5
GM
12788 &unibyte_display_via_language_environment,
12789 "*Non-nil means display unibyte text according to language environment.\n\
7bbe686f
AI
12790Specifically this means that unibyte non-ASCII characters\n\
12791are displayed by converting them to the equivalent multibyte characters\n\
12792according to the current language environment. As a result, they are\n\
12793displayed according to the current fontset.");
12794 unibyte_display_via_language_environment = 0;
c6e89d6c
GM
12795
12796 DEFVAR_LISP ("max-mini-window-height", &Vmax_mini_window_height,
12797 "*Maximum height for resizing mini-windows.\n\
12798If a float, it specifies a fraction of the mini-window frame's height.\n\
97cafc0f
GM
12799If an integer, it specifies a number of lines.\n\
12800If nil, don't resize.");
c6e89d6c 12801 Vmax_mini_window_height = make_float (0.25);
a2889657
JB
12802}
12803
5f5c8ee5
GM
12804
12805/* Initialize this module when Emacs starts. */
12806
dfcf069d 12807void
a2889657
JB
12808init_xdisp ()
12809{
12810 Lisp_Object root_window;
5f5c8ee5 12811 struct window *mini_w;
a2889657 12812
5f5c8ee5 12813 CHARPOS (this_line_start_pos) = 0;
a2889657
JB
12814
12815 mini_w = XWINDOW (minibuf_window);
11e82b76 12816 root_window = FRAME_ROOT_WINDOW (XFRAME (WINDOW_FRAME (mini_w)));
a2889657 12817
a2889657
JB
12818 if (!noninteractive)
12819 {
5f5c8ee5
GM
12820 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (root_window)));
12821 int i;
12822
12823 XSETFASTINT (XWINDOW (root_window)->top, FRAME_TOP_MARGIN (f));
12c226c5 12824 set_window_height (root_window,
5f5c8ee5 12825 FRAME_HEIGHT (f) - 1 - FRAME_TOP_MARGIN (f),
12c226c5 12826 0);
c2213350 12827 XSETFASTINT (mini_w->top, FRAME_HEIGHT (f) - 1);
a2889657
JB
12828 set_window_height (minibuf_window, 1, 0);
12829
c2213350
KH
12830 XSETFASTINT (XWINDOW (root_window)->width, FRAME_WIDTH (f));
12831 XSETFASTINT (mini_w->width, FRAME_WIDTH (f));
5f5c8ee5
GM
12832
12833 scratch_glyph_row.glyphs[TEXT_AREA] = scratch_glyphs;
12834 scratch_glyph_row.glyphs[TEXT_AREA + 1]
12835 = scratch_glyphs + MAX_SCRATCH_GLYPHS;
12836
12837 /* The default ellipsis glyphs `...'. */
12838 for (i = 0; i < 3; ++i)
12839 XSETFASTINT (default_invis_vector[i], '.');
a2889657 12840 }
5f5c8ee5
GM
12841
12842#ifdef HAVE_WINDOW_SYSTEM
12843 {
12844 /* Allocate the buffer for frame titles. */
12845 int size = 100;
12846 frame_title_buf = (char *) xmalloc (size);
12847 frame_title_buf_end = frame_title_buf + size;
12848 frame_title_ptr = NULL;
12849 }
12850#endif /* HAVE_WINDOW_SYSTEM */
a2889657 12851}
5f5c8ee5
GM
12852
12853