Use Latin-5 for Turkish.
[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;
886bd6f2 222Lisp_Object QCeval, Qwhen, QCfile;
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
701552dd 3977static enum move_it_result
5f5c8ee5
GM
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{
886bd6f2 4811 struct frame *sf = SELECTED_FRAME ();
5f5c8ee5
GM
4812 message_enable_multibyte = multibyte;
4813
4814 if (noninteractive)
4815 {
4816 if (noninteractive_need_newline)
4817 putc ('\n', stderr);
4818 noninteractive_need_newline = 0;
4819 if (m)
4820 fwrite (m, len, 1, stderr);
4821 if (cursor_in_echo_area == 0)
4822 fprintf (stderr, "\n");
4823 fflush (stderr);
4824 }
4825 /* A null message buffer means that the frame hasn't really been
4826 initialized yet. Error messages get reported properly by
4827 cmd_error, so this must be just an informative message; toss it. */
4828 else if (INTERACTIVE
886bd6f2
GM
4829 && sf->glyphs_initialized_p
4830 && FRAME_MESSAGE_BUF (sf))
5f5c8ee5
GM
4831 {
4832 Lisp_Object mini_window;
4833 struct frame *f;
4834
4835 /* Get the frame containing the mini-buffer
4836 that the selected frame is using. */
886bd6f2 4837 mini_window = FRAME_MINIBUF_WINDOW (sf);
5f5c8ee5
GM
4838 f = XFRAME (WINDOW_FRAME (XWINDOW (mini_window)));
4839
4840 FRAME_SAMPLE_VISIBILITY (f);
886bd6f2 4841 if (FRAME_VISIBLE_P (sf)
5f5c8ee5
GM
4842 && ! FRAME_VISIBLE_P (f))
4843 Fmake_frame_visible (WINDOW_FRAME (XWINDOW (mini_window)));
4844
4845 if (m)
4846 {
c6e89d6c 4847 set_message (m, Qnil, len, multibyte);
5f5c8ee5
GM
4848 if (minibuffer_auto_raise)
4849 Fraise_frame (WINDOW_FRAME (XWINDOW (mini_window)));
4850 }
4851 else
c6e89d6c 4852 clear_message (1, 1);
5f5c8ee5 4853
c6e89d6c 4854 do_pending_window_change (0);
5f5c8ee5 4855 echo_area_display (1);
c6e89d6c 4856 do_pending_window_change (0);
5f5c8ee5
GM
4857 if (frame_up_to_date_hook != 0 && ! gc_in_progress)
4858 (*frame_up_to_date_hook) (f);
4859 }
4860}
4861
4862
c6e89d6c
GM
4863/* Display an echo area message M with a specified length of NBYTES
4864 bytes. The string may include null characters. If M is not a
5f5c8ee5
GM
4865 string, clear out any existing message, and let the mini-buffer
4866 text show through. */
4867
4868void
c6e89d6c 4869message3 (m, nbytes, multibyte)
5f5c8ee5 4870 Lisp_Object m;
c6e89d6c 4871 int nbytes;
5f5c8ee5
GM
4872 int multibyte;
4873{
4874 struct gcpro gcpro1;
4875
4876 GCPRO1 (m);
4877
4878 /* First flush out any partial line written with print. */
4879 message_log_maybe_newline ();
4880 if (STRINGP (m))
c6e89d6c
GM
4881 message_dolog (XSTRING (m)->data, nbytes, 1, multibyte);
4882 message3_nolog (m, nbytes, multibyte);
5f5c8ee5
GM
4883
4884 UNGCPRO;
4885}
4886
4887
4888/* The non-logging version of message3. */
4889
4890void
c6e89d6c 4891message3_nolog (m, nbytes, multibyte)
5f5c8ee5 4892 Lisp_Object m;
c6e89d6c 4893 int nbytes, multibyte;
5f5c8ee5 4894{
886bd6f2 4895 struct frame *sf = SELECTED_FRAME ();
5f5c8ee5
GM
4896 message_enable_multibyte = multibyte;
4897
4898 if (noninteractive)
4899 {
4900 if (noninteractive_need_newline)
4901 putc ('\n', stderr);
4902 noninteractive_need_newline = 0;
4903 if (STRINGP (m))
c6e89d6c 4904 fwrite (XSTRING (m)->data, nbytes, 1, stderr);
5f5c8ee5
GM
4905 if (cursor_in_echo_area == 0)
4906 fprintf (stderr, "\n");
4907 fflush (stderr);
4908 }
4909 /* A null message buffer means that the frame hasn't really been
4910 initialized yet. Error messages get reported properly by
4911 cmd_error, so this must be just an informative message; toss it. */
4912 else if (INTERACTIVE
886bd6f2
GM
4913 && sf->glyphs_initialized_p
4914 && FRAME_MESSAGE_BUF (sf))
5f5c8ee5
GM
4915 {
4916 Lisp_Object mini_window;
c6e89d6c 4917 Lisp_Object frame;
5f5c8ee5
GM
4918 struct frame *f;
4919
4920 /* Get the frame containing the mini-buffer
4921 that the selected frame is using. */
886bd6f2 4922 mini_window = FRAME_MINIBUF_WINDOW (sf);
c6e89d6c
GM
4923 frame = XWINDOW (mini_window)->frame;
4924 f = XFRAME (frame);
5f5c8ee5
GM
4925
4926 FRAME_SAMPLE_VISIBILITY (f);
886bd6f2 4927 if (FRAME_VISIBLE_P (sf)
c6e89d6c
GM
4928 && !FRAME_VISIBLE_P (f))
4929 Fmake_frame_visible (frame);
5f5c8ee5 4930
c6e89d6c 4931 if (STRINGP (m) && XSTRING (m)->size)
5f5c8ee5 4932 {
c6e89d6c 4933 set_message (NULL, m, nbytes, multibyte);
468155d7
GM
4934 if (minibuffer_auto_raise)
4935 Fraise_frame (frame);
5f5c8ee5
GM
4936 }
4937 else
c6e89d6c 4938 clear_message (1, 1);
5f5c8ee5 4939
c6e89d6c 4940 do_pending_window_change (0);
5f5c8ee5 4941 echo_area_display (1);
c6e89d6c 4942 do_pending_window_change (0);
5f5c8ee5
GM
4943 if (frame_up_to_date_hook != 0 && ! gc_in_progress)
4944 (*frame_up_to_date_hook) (f);
4945 }
4946}
4947
4948
4949/* Display a null-terminated echo area message M. If M is 0, clear
4950 out any existing message, and let the mini-buffer text show through.
4951
4952 The buffer M must continue to exist until after the echo area gets
4953 cleared or some other message gets displayed there. Do not pass
4954 text that is stored in a Lisp string. Do not pass text in a buffer
4955 that was alloca'd. */
4956
4957void
4958message1 (m)
4959 char *m;
4960{
4961 message2 (m, (m ? strlen (m) : 0), 0);
4962}
4963
4964
4965/* The non-logging counterpart of message1. */
4966
4967void
4968message1_nolog (m)
4969 char *m;
4970{
4971 message2_nolog (m, (m ? strlen (m) : 0), 0);
4972}
4973
4974/* Display a message M which contains a single %s
4975 which gets replaced with STRING. */
4976
4977void
4978message_with_string (m, string, log)
4979 char *m;
4980 Lisp_Object string;
4981 int log;
4982{
4983 if (noninteractive)
4984 {
4985 if (m)
4986 {
4987 if (noninteractive_need_newline)
4988 putc ('\n', stderr);
4989 noninteractive_need_newline = 0;
4990 fprintf (stderr, m, XSTRING (string)->data);
4991 if (cursor_in_echo_area == 0)
4992 fprintf (stderr, "\n");
4993 fflush (stderr);
4994 }
4995 }
4996 else if (INTERACTIVE)
4997 {
4998 /* The frame whose minibuffer we're going to display the message on.
4999 It may be larger than the selected frame, so we need
5000 to use its buffer, not the selected frame's buffer. */
5001 Lisp_Object mini_window;
886bd6f2 5002 struct frame *f, *sf = SELECTED_FRAME ();
5f5c8ee5
GM
5003
5004 /* Get the frame containing the minibuffer
5005 that the selected frame is using. */
886bd6f2 5006 mini_window = FRAME_MINIBUF_WINDOW (sf);
5f5c8ee5
GM
5007 f = XFRAME (WINDOW_FRAME (XWINDOW (mini_window)));
5008
5009 /* A null message buffer means that the frame hasn't really been
5010 initialized yet. Error messages get reported properly by
5011 cmd_error, so this must be just an informative message; toss it. */
5012 if (FRAME_MESSAGE_BUF (f))
5013 {
5014 int len;
5015 char *a[1];
5016 a[0] = (char *) XSTRING (string)->data;
5017
5018 len = doprnt (FRAME_MESSAGE_BUF (f),
5019 FRAME_MESSAGE_BUF_SIZE (f), m, (char *)0, 3, a);
5020
5021 if (log)
5022 message2 (FRAME_MESSAGE_BUF (f), len,
5023 STRING_MULTIBYTE (string));
5024 else
5025 message2_nolog (FRAME_MESSAGE_BUF (f), len,
5026 STRING_MULTIBYTE (string));
5027
5028 /* Print should start at the beginning of the message
5029 buffer next time. */
5030 message_buf_print = 0;
5031 }
5032 }
5033}
5034
5035
5f5c8ee5
GM
5036/* Dump an informative message to the minibuf. If M is 0, clear out
5037 any existing message, and let the mini-buffer text show through. */
5038
5039/* VARARGS 1 */
5040void
5041message (m, a1, a2, a3)
5042 char *m;
5043 EMACS_INT a1, a2, a3;
5044{
5045 if (noninteractive)
5046 {
5047 if (m)
5048 {
5049 if (noninteractive_need_newline)
5050 putc ('\n', stderr);
5051 noninteractive_need_newline = 0;
5052 fprintf (stderr, m, a1, a2, a3);
5053 if (cursor_in_echo_area == 0)
5054 fprintf (stderr, "\n");
5055 fflush (stderr);
5056 }
5057 }
5058 else if (INTERACTIVE)
5059 {
5060 /* The frame whose mini-buffer we're going to display the message
5061 on. It may be larger than the selected frame, so we need to
5062 use its buffer, not the selected frame's buffer. */
5063 Lisp_Object mini_window;
886bd6f2 5064 struct frame *f, *sf = SELECTED_FRAME ();
5f5c8ee5
GM
5065
5066 /* Get the frame containing the mini-buffer
5067 that the selected frame is using. */
886bd6f2 5068 mini_window = FRAME_MINIBUF_WINDOW (sf);
5f5c8ee5
GM
5069 f = XFRAME (WINDOW_FRAME (XWINDOW (mini_window)));
5070
5071 /* A null message buffer means that the frame hasn't really been
5072 initialized yet. Error messages get reported properly by
5073 cmd_error, so this must be just an informative message; toss
5074 it. */
5075 if (FRAME_MESSAGE_BUF (f))
5076 {
5077 if (m)
5078 {
5079 int len;
5080#ifdef NO_ARG_ARRAY
5081 char *a[3];
5082 a[0] = (char *) a1;
5083 a[1] = (char *) a2;
5084 a[2] = (char *) a3;
5085
5086 len = doprnt (FRAME_MESSAGE_BUF (f),
5087 FRAME_MESSAGE_BUF_SIZE (f), m, (char *)0, 3, a);
5088#else
5089 len = doprnt (FRAME_MESSAGE_BUF (f),
5090 FRAME_MESSAGE_BUF_SIZE (f), m, (char *)0, 3,
5091 (char **) &a1);
5092#endif /* NO_ARG_ARRAY */
5093
5094 message2 (FRAME_MESSAGE_BUF (f), len, 0);
5095 }
5096 else
5097 message1 (0);
5098
5099 /* Print should start at the beginning of the message
5100 buffer next time. */
5101 message_buf_print = 0;
5102 }
5103 }
5104}
5105
5106
5107/* The non-logging version of message. */
5108
5109void
5110message_nolog (m, a1, a2, a3)
5111 char *m;
5112 EMACS_INT a1, a2, a3;
5113{
5114 Lisp_Object old_log_max;
5115 old_log_max = Vmessage_log_max;
5116 Vmessage_log_max = Qnil;
5117 message (m, a1, a2, a3);
5118 Vmessage_log_max = old_log_max;
5119}
5120
5121
c6e89d6c
GM
5122/* Display the current message in the current mini-buffer. This is
5123 only called from error handlers in process.c, and is not time
5124 critical. */
5f5c8ee5
GM
5125
5126void
5127update_echo_area ()
5128{
c6e89d6c
GM
5129 if (!NILP (echo_area_buffer[0]))
5130 {
5131 Lisp_Object string;
5132 string = Fcurrent_message ();
5133 message3 (string, XSTRING (string)->size,
5134 !NILP (current_buffer->enable_multibyte_characters));
5135 }
5136}
5137
5138
5139/* Call FN with args A1..A5 with either the current or last displayed
5140 echo_area_buffer as current buffer.
5141
5142 WHICH zero means use the current message buffer
5143 echo_area_buffer[0]. If that is nil, choose a suitable buffer
5144 from echo_buffer[] and clear it.
5145
5146 WHICH > 0 means use echo_area_buffer[1]. If that is nil, choose a
5147 suitable buffer from echo_buffer[] and clear it.
5148
5149 If WHICH < 0, set echo_area_buffer[1] to echo_area_buffer[0], so
5150 that the current message becomes the last displayed one, make
5151 choose a suitable buffer for echo_area_buffer[0], and clear it.
5152
5153 Value is what FN returns. */
5154
5155static int
5156with_echo_area_buffer (w, which, fn, a1, a2, a3, a4, a5)
5157 struct window *w;
5158 int which;
5159 int (*fn) ();
5160 int a1, a2, a3, a4, a5;
5161{
5162 Lisp_Object buffer;
5163 int i, this_one, the_other, clear_buffer_p, rc;
5164 int count = specpdl_ptr - specpdl;
5165
5166 /* If buffers aren't life, make new ones. */
5167 for (i = 0; i < 2; ++i)
5168 if (!BUFFERP (echo_buffer[i])
5169 || NILP (XBUFFER (echo_buffer[i])->name))
5170 {
5171 char name[30];
5172 sprintf (name, " *Echo Area %d*", i);
5173 echo_buffer[i] = Fget_buffer_create (build_string (name));
5174 }
5175
5176 clear_buffer_p = 0;
5177
5178 if (which == 0)
5179 this_one = 0, the_other = 1;
5180 else if (which > 0)
5181 this_one = 1, the_other = 0;
5f5c8ee5 5182 else
c6e89d6c
GM
5183 {
5184 this_one = 0, the_other = 1;
5185 clear_buffer_p = 1;
5186
5187 /* We need a fresh one in case the current echo buffer equals
5188 the one containing the last displayed echo area message. */
5189 if (!NILP (echo_area_buffer[this_one])
5190 && EQ (echo_area_buffer[this_one], echo_area_buffer[the_other]))
5191 echo_area_buffer[this_one] = Qnil;
c6e89d6c
GM
5192 }
5193
5194 /* Choose a suitable buffer from echo_buffer[] is we don't
5195 have one. */
5196 if (NILP (echo_area_buffer[this_one]))
5197 {
5198 echo_area_buffer[this_one]
5199 = (EQ (echo_area_buffer[the_other], echo_buffer[this_one])
5200 ? echo_buffer[the_other]
5201 : echo_buffer[this_one]);
5202 clear_buffer_p = 1;
5203 }
5204
5205 buffer = echo_area_buffer[this_one];
5206
5207 record_unwind_protect (unwind_with_echo_area_buffer,
5208 with_echo_area_buffer_unwind_data (w));
5209
5210 /* Make the echo area buffer current. Note that for display
5211 purposes, it is not necessary that the displayed window's buffer
5212 == current_buffer, except for text property lookup. So, let's
5213 only set that buffer temporarily here without doing a full
5214 Fset_window_buffer. We must also change w->pointm, though,
5215 because otherwise an assertions in unshow_buffer fails, and Emacs
5216 aborts. */
9142dd5b 5217 set_buffer_internal_1 (XBUFFER (buffer));
c6e89d6c
GM
5218 if (w)
5219 {
5220 w->buffer = buffer;
5221 set_marker_both (w->pointm, buffer, BEG, BEG_BYTE);
5222 }
5223 current_buffer->truncate_lines = Qnil;
5224 current_buffer->undo_list = Qt;
5225 current_buffer->read_only = Qnil;
5226
5227 if (clear_buffer_p && Z > BEG)
5228 del_range (BEG, Z);
5229
5230 xassert (BEGV >= BEG);
5231 xassert (ZV <= Z && ZV >= BEGV);
5232
5233 rc = fn (a1, a2, a3, a4, a5);
5234
5235 xassert (BEGV >= BEG);
5236 xassert (ZV <= Z && ZV >= BEGV);
5237
5238 unbind_to (count, Qnil);
5239 return rc;
5f5c8ee5
GM
5240}
5241
5242
c6e89d6c
GM
5243/* Save state that should be preserved around the call to the function
5244 FN called in with_echo_area_buffer. */
5f5c8ee5 5245
c6e89d6c
GM
5246static Lisp_Object
5247with_echo_area_buffer_unwind_data (w)
5248 struct window *w;
5f5c8ee5 5249{
c6e89d6c
GM
5250 int i = 0;
5251 Lisp_Object vector;
5f5c8ee5 5252
c6e89d6c
GM
5253 /* Reduce consing by keeping one vector in
5254 Vwith_echo_area_save_vector. */
5255 vector = Vwith_echo_area_save_vector;
5256 Vwith_echo_area_save_vector = Qnil;
5257
5258 if (NILP (vector))
9142dd5b 5259 vector = Fmake_vector (make_number (7), Qnil);
c6e89d6c
GM
5260
5261 XSETBUFFER (XVECTOR (vector)->contents[i], current_buffer); ++i;
5262 XVECTOR (vector)->contents[i++] = Vdeactivate_mark;
5263 XVECTOR (vector)->contents[i++] = make_number (windows_or_buffers_changed);
c6e89d6c
GM
5264
5265 if (w)
5266 {
5267 XSETWINDOW (XVECTOR (vector)->contents[i], w); ++i;
5268 XVECTOR (vector)->contents[i++] = w->buffer;
5269 XVECTOR (vector)->contents[i++]
5270 = make_number (XMARKER (w->pointm)->charpos);
5271 XVECTOR (vector)->contents[i++]
5272 = make_number (XMARKER (w->pointm)->bytepos);
5273 }
5274 else
5275 {
5276 int end = i + 4;
5277 while (i < end)
5278 XVECTOR (vector)->contents[i++] = Qnil;
5279 }
5f5c8ee5 5280
c6e89d6c
GM
5281 xassert (i == XVECTOR (vector)->size);
5282 return vector;
5283}
5f5c8ee5 5284
5f5c8ee5 5285
c6e89d6c
GM
5286/* Restore global state from VECTOR which was created by
5287 with_echo_area_buffer_unwind_data. */
5288
5289static Lisp_Object
5290unwind_with_echo_area_buffer (vector)
5291 Lisp_Object vector;
5292{
5293 int i = 0;
5294
9142dd5b 5295 set_buffer_internal_1 (XBUFFER (XVECTOR (vector)->contents[i])); ++i;
c6e89d6c
GM
5296 Vdeactivate_mark = XVECTOR (vector)->contents[i]; ++i;
5297 windows_or_buffers_changed = XFASTINT (XVECTOR (vector)->contents[i]); ++i;
c6e89d6c
GM
5298
5299 if (WINDOWP (XVECTOR (vector)->contents[i]))
5300 {
5301 struct window *w;
5302 Lisp_Object buffer, charpos, bytepos;
5303
5304 w = XWINDOW (XVECTOR (vector)->contents[i]); ++i;
5305 buffer = XVECTOR (vector)->contents[i]; ++i;
5306 charpos = XVECTOR (vector)->contents[i]; ++i;
5307 bytepos = XVECTOR (vector)->contents[i]; ++i;
5308
5309 w->buffer = buffer;
5310 set_marker_both (w->pointm, buffer,
5311 XFASTINT (charpos), XFASTINT (bytepos));
5312 }
5313
5314 Vwith_echo_area_save_vector = vector;
5315 return Qnil;
5316}
5317
5318
5319/* Set up the echo area for use by print functions. MULTIBYTE_P
5320 non-zero means we will print multibyte. */
5321
5322void
5323setup_echo_area_for_printing (multibyte_p)
5324 int multibyte_p;
5325{
5326 if (!message_buf_print)
5327 {
5328 /* A message has been output since the last time we printed.
5329 Choose a fresh echo area buffer. */
5330 if (EQ (echo_area_buffer[1], echo_buffer[0]))
5331 echo_area_buffer[0] = echo_buffer[1];
5332 else
5333 echo_area_buffer[0] = echo_buffer[0];
5334
5335 /* Switch to that buffer and clear it. */
5336 set_buffer_internal (XBUFFER (echo_area_buffer[0]));
5337 if (Z > BEG)
5338 del_range (BEG, Z);
5339 TEMP_SET_PT_BOTH (BEG, BEG_BYTE);
5340
5341 /* Set up the buffer for the multibyteness we need. */
5342 if (multibyte_p
5343 != !NILP (current_buffer->enable_multibyte_characters))
5344 Fset_buffer_multibyte (multibyte_p ? Qt : Qnil);
5345
5346 /* Raise the frame containing the echo area. */
5347 if (minibuffer_auto_raise)
5348 {
886bd6f2 5349 struct frame *sf = SELECTED_FRAME ();
c6e89d6c 5350 Lisp_Object mini_window;
886bd6f2 5351 mini_window = FRAME_MINIBUF_WINDOW (sf);
c6e89d6c
GM
5352 Fraise_frame (WINDOW_FRAME (XWINDOW (mini_window)));
5353 }
5354
5355 message_buf_print = 1;
5356 }
5357 else if (current_buffer != XBUFFER (echo_area_buffer[0]))
5358 /* Someone switched buffers between print requests. */
5359 set_buffer_internal (XBUFFER (echo_area_buffer[0]));
5360}
5361
5362
dd2eb166
GM
5363/* Display an echo area message in window W. Value is non-zero if W's
5364 height is changed. If display_last_displayed_message_p is
5365 non-zero, display the message that was last displayed, otherwise
5366 display the current message. */
c6e89d6c
GM
5367
5368static int
5369display_echo_area (w)
5370 struct window *w;
5371{
dd2eb166
GM
5372 int i, no_message_p, window_height_changed_p;
5373
5374 /* If there is no message, we must call display_echo_area_1
5375 nevertheless because it resizes the window. But we will have to
5376 reset the echo_area_buffer in question to nil at the end because
5377 with_echo_area_buffer will sets it to an empty buffer. */
5378 i = display_last_displayed_message_p ? 1 : 0;
5379 no_message_p = NILP (echo_area_buffer[i]);
5380
5381 window_height_changed_p
5382 = with_echo_area_buffer (w, display_last_displayed_message_p,
5383 (int (*) ()) display_echo_area_1, w);
5384
5385 if (no_message_p)
5386 echo_area_buffer[i] = Qnil;
5387
5388 return window_height_changed_p;
c6e89d6c
GM
5389}
5390
5391
5392/* Helper for display_echo_area. Display the current buffer which
5393 contains the current echo area message in window W, a mini-window.
5394 Change the height of W so that all of the message is displayed.
5395 Value is non-zero if height of W was changed. */
5396
5397static int
5398display_echo_area_1 (w)
5399 struct window *w;
5400{
5401 Lisp_Object window;
c6e89d6c
GM
5402 struct text_pos start;
5403 int window_height_changed_p = 0;
5404
5405 /* Do this before displaying, so that we have a large enough glyph
5406 matrix for the display. */
92a90e89 5407 window_height_changed_p = resize_mini_window (w, 0);
c6e89d6c
GM
5408
5409 /* Display. */
5410 clear_glyph_matrix (w->desired_matrix);
5411 XSETWINDOW (window, w);
5412 SET_TEXT_POS (start, BEG, BEG_BYTE);
5413 try_window (window, start);
5414
c6e89d6c
GM
5415 return window_height_changed_p;
5416}
5417
5418
92a90e89
GM
5419/* Resize the echo area window to exactly the size needed for the
5420 currently displayed message, if there is one. */
5421
5422void
5423resize_echo_area_axactly ()
5424{
5425 if (BUFFERP (echo_area_buffer[0])
5426 && WINDOWP (echo_area_window))
5427 {
5428 struct window *w = XWINDOW (echo_area_window);
5429 int resized_p;
5430
5431 resized_p = with_echo_area_buffer (w, 0,
5432 (int (*) ()) resize_mini_window,
5433 w, 1);
5434 if (resized_p)
5435 {
5436 ++windows_or_buffers_changed;
5437 ++update_mode_lines;
5438 redisplay_internal (0);
5439 }
5440 }
5441}
5442
5443
5444/* Resize mini-window W to fit the size of its contents. EXACT:P
5445 means size the window exactly to the size needed. Otherwise, it's
5446 only enlarged until W's buffer is empty. Value is non-zero if
5447 the window height has been changed. */
c6e89d6c 5448
9472f927 5449int
92a90e89 5450resize_mini_window (w, exact_p)
c6e89d6c 5451 struct window *w;
92a90e89 5452 int exact_p;
c6e89d6c
GM
5453{
5454 struct frame *f = XFRAME (w->frame);
5455 int window_height_changed_p = 0;
5456
5457 xassert (MINI_WINDOW_P (w));
97cafc0f
GM
5458
5459 /* Nil means don't try to resize. */
5460 if (NILP (Vmax_mini_window_height))
5461 return 0;
c6e89d6c
GM
5462
5463 if (!FRAME_MINIBUF_ONLY_P (f))
5464 {
5465 struct it it;
dd2eb166
GM
5466 struct window *root = XWINDOW (FRAME_ROOT_WINDOW (f));
5467 int total_height = XFASTINT (root->height) + XFASTINT (w->height);
5468 int height, max_height;
5469 int unit = CANON_Y_UNIT (f);
5470 struct text_pos start;
9142dd5b 5471
c6e89d6c 5472 init_iterator (&it, w, BEGV, BEGV_BYTE, NULL, DEFAULT_FACE_ID);
c6e89d6c 5473
dd2eb166
GM
5474 /* Compute the max. number of lines specified by the user. */
5475 if (FLOATP (Vmax_mini_window_height))
5476 max_height = XFLOATINT (Vmax_mini_window_height) * total_height;
5477 else if (INTEGERP (Vmax_mini_window_height))
5478 max_height = XINT (Vmax_mini_window_height);
97cafc0f
GM
5479 else
5480 max_height = total_height / 4;
dd2eb166
GM
5481
5482 /* Correct that max. height if it's bogus. */
5483 max_height = max (1, max_height);
5484 max_height = min (total_height, max_height);
5485
5486 /* Find out the height of the text in the window. */
5487 move_it_to (&it, ZV, -1, -1, -1, MOVE_TO_POS);
5488 height = (unit - 1 + it.current_y + last_height) / unit;
5489 height = max (1, height);
5490
5491 /* Compute a suitable window start. */
5492 if (height > max_height)
5493 {
5494 height = max_height;
5495 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID);
5496 move_it_vertically_backward (&it, (height - 1) * unit);
5497 start = it.current.pos;
5498 }
5499 else
5500 SET_TEXT_POS (start, BEGV, BEGV_BYTE);
5501 SET_MARKER_FROM_TEXT_POS (w->start, start);
c59c668a 5502
9472f927
GM
5503 /* Let it grow only, until we display an empty message, in which
5504 case the window shrinks again. */
5505 if (height > XFASTINT (w->height)
92a90e89 5506 || exact_p
9472f927 5507 || BEGV == ZV)
dd2eb166 5508 {
9472f927 5509 Lisp_Object old_selected_window;
c0c64ad1 5510 Lisp_Object fix_window;
d2c48e86 5511 int old_height = XFASTINT (w->height);
c59c668a 5512
9472f927 5513 freeze_window_starts (f, height > XFASTINT (w->height));
c0c64ad1
GM
5514
5515 /* If the mini-buffer is selected, try to not change
5516 the height of Vminibuf_scroll_window. Otherwise try
5517 to not change the height of the selected window. */
5518 if (MINI_WINDOW_P (XWINDOW (selected_window)))
5519 fix_window = Vminibuf_scroll_window;
5520 else
5521 fix_window = selected_window;
5522
9472f927
GM
5523 old_selected_window = selected_window;
5524 XSETWINDOW (selected_window, w);
c0c64ad1 5525 XWINDOW (fix_window)->height_fixed_p = 1;
9472f927 5526 change_window_height (height - XFASTINT (w->height), 0);
c0c64ad1 5527 XWINDOW (fix_window)->height_fixed_p = 0;
9472f927 5528 selected_window = old_selected_window;
d2c48e86 5529 window_height_changed_p = XFASTINT (w->height) != old_height;
9142dd5b 5530 }
c6e89d6c
GM
5531 }
5532
5533 return window_height_changed_p;
5534}
5535
5536
5537/* Value is the current message, a string, or nil if there is no
5538 current message. */
5539
5540Lisp_Object
5541current_message ()
5542{
5543 Lisp_Object msg;
5544
5545 if (NILP (echo_area_buffer[0]))
5546 msg = Qnil;
5547 else
5548 {
5549 with_echo_area_buffer (0, 0, (int (*) ()) current_message_1, &msg);
5550 if (NILP (msg))
5551 echo_area_buffer[0] = Qnil;
5552 }
5553
5554 return msg;
5555}
5556
5557
5558static int
5559current_message_1 (msg)
5560 Lisp_Object *msg;
5561{
5562 if (Z > BEG)
5563 *msg = make_buffer_string (BEG, Z, 1);
5564 else
5565 *msg = Qnil;
5566 return 0;
5567}
5568
5569
5570/* Push the current message on Vmessage_stack for later restauration
5571 by restore_message. Value is non-zero if the current message isn't
5572 empty. This is a relatively infrequent operation, so it's not
5573 worth optimizing. */
5574
5575int
5576push_message ()
5577{
5578 Lisp_Object msg;
5579 msg = current_message ();
5580 Vmessage_stack = Fcons (msg, Vmessage_stack);
5581 return STRINGP (msg);
5582}
5583
5584
5585/* Restore message display from the top of Vmessage_stack. */
5586
5587void
5588restore_message ()
5589{
5590 Lisp_Object msg;
5591
5592 xassert (CONSP (Vmessage_stack));
5593 msg = XCAR (Vmessage_stack);
5594 if (STRINGP (msg))
5595 message3_nolog (msg, STRING_BYTES (XSTRING (msg)), STRING_MULTIBYTE (msg));
5596 else
5597 message3_nolog (msg, 0, 0);
5598}
5599
5600
5601/* Pop the top-most entry off Vmessage_stack. */
5602
5603void
5604pop_message ()
5605{
5606 xassert (CONSP (Vmessage_stack));
5607 Vmessage_stack = XCDR (Vmessage_stack);
5608}
5609
5610
5611/* Check that Vmessage_stack is nil. Called from emacs.c when Emacs
5612 exits. If the stack is not empty, we have a missing pop_message
5613 somewhere. */
5614
5615void
5616check_message_stack ()
5617{
5618 if (!NILP (Vmessage_stack))
5619 abort ();
5620}
5621
5622
5623/* Truncate to NCHARS what will be displayed in the echo area the next
5624 time we display it---but don't redisplay it now. */
5625
5626void
5627truncate_echo_area (nchars)
5628 int nchars;
5629{
5630 if (nchars == 0)
5631 echo_area_buffer[0] = Qnil;
5632 /* A null message buffer means that the frame hasn't really been
5633 initialized yet. Error messages get reported properly by
5634 cmd_error, so this must be just an informative message; toss it. */
5635 else if (!noninteractive
5636 && INTERACTIVE
c6e89d6c 5637 && !NILP (echo_area_buffer[0]))
886bd6f2
GM
5638 {
5639 struct frame *sf = SELECTED_FRAME ();
5640 if (FRAME_MESSAGE_BUF (sf))
5641 with_echo_area_buffer (0, 0, (int (*) ()) truncate_message_1, nchars);
5642 }
c6e89d6c
GM
5643}
5644
5645
5646/* Helper function for truncate_echo_area. Truncate the current
5647 message to at most NCHARS characters. */
5648
5649static int
5650truncate_message_1 (nchars)
5651 int nchars;
5652{
5653 if (BEG + nchars < Z)
5654 del_range (BEG + nchars, Z);
5655 if (Z == BEG)
5656 echo_area_buffer[0] = Qnil;
5657 return 0;
5658}
5659
5660
5661/* Set the current message to a substring of S or STRING.
5662
5663 If STRING is a Lisp string, set the message to the first NBYTES
5664 bytes from STRING. NBYTES zero means use the whole string. If
5665 STRING is multibyte, the message will be displayed multibyte.
5666
5667 If S is not null, set the message to the first LEN bytes of S. LEN
5668 zero means use the whole string. MULTIBYTE_P non-zero means S is
5669 multibyte. Display the message multibyte in that case. */
5670
5671void
5672set_message (s, string, nbytes, multibyte_p)
5673 char *s;
5674 Lisp_Object string;
5675 int nbytes;
5676{
5677 message_enable_multibyte
5678 = ((s && multibyte_p)
5679 || (STRINGP (string) && STRING_MULTIBYTE (string)));
5680
5681 with_echo_area_buffer (0, -1, (int (*) ()) set_message_1,
5682 s, string, nbytes, multibyte_p);
5683 message_buf_print = 0;
5684}
5685
5686
5687/* Helper function for set_message. Arguments have the same meaning
5688 as there. This function is called with the echo area buffer being
5689 current. */
5690
5691static int
5692set_message_1 (s, string, nbytes, multibyte_p)
5693 char *s;
5694 Lisp_Object string;
5695 int nbytes, multibyte_p;
5696{
5697 xassert (BEG == Z);
5698
5699 /* Change multibyteness of the echo buffer appropriately. */
5700 if (message_enable_multibyte
5701 != !NILP (current_buffer->enable_multibyte_characters))
5702 Fset_buffer_multibyte (message_enable_multibyte ? Qt : Qnil);
5703
5704 /* Insert new message at BEG. */
5705 TEMP_SET_PT_BOTH (BEG, BEG_BYTE);
5706
5707 if (STRINGP (string))
5708 {
5709 int nchars;
5710
5711 if (nbytes == 0)
5712 nbytes = XSTRING (string)->size_byte;
5713 nchars = string_byte_to_char (string, nbytes);
5714
5715 /* This function takes care of single/multibyte conversion. We
5716 just have to ensure that the echo area buffer has the right
5717 setting of enable_multibyte_characters. */
5718 insert_from_string (string, 0, 0, nchars, nbytes, 1);
5719 }
5720 else if (s)
5721 {
5722 if (nbytes == 0)
5723 nbytes = strlen (s);
5724
5725 if (multibyte_p && NILP (current_buffer->enable_multibyte_characters))
5726 {
5727 /* Convert from multi-byte to single-byte. */
5728 int i, c, n;
5729 unsigned char work[1];
5730
5731 /* Convert a multibyte string to single-byte. */
5732 for (i = 0; i < nbytes; i += n)
5733 {
5734 c = string_char_and_length (s + i, nbytes - i, &n);
5735 work[0] = (SINGLE_BYTE_CHAR_P (c)
5736 ? c
5737 : multibyte_char_to_unibyte (c, Qnil));
5738 insert_1_both (work, 1, 1, 1, 0, 0);
5739 }
5740 }
5741 else if (!multibyte_p
5742 && !NILP (current_buffer->enable_multibyte_characters))
5743 {
5744 /* Convert from single-byte to multi-byte. */
5745 int i, c, n;
5746 unsigned char *msg = (unsigned char *) s;
5747 unsigned char *str, work[4];
5748
5749 /* Convert a single-byte string to multibyte. */
5750 for (i = 0; i < nbytes; i++)
5751 {
5752 c = unibyte_char_to_multibyte (msg[i]);
5753 n = CHAR_STRING (c, work, str);
5754 insert_1_both (work, 1, n, 1, 0, 0);
5755 }
5756 }
5757 else
5758 insert_1 (s, nbytes, 1, 0, 0);
5759 }
5760
5761 return 0;
5762}
5763
5764
5765/* Clear messages. CURRENT_P non-zero means clear the current
5766 message. LAST_DISPLAYED_P non-zero means clear the message
5767 last displayed. */
5768
5769void
5770clear_message (current_p, last_displayed_p)
5771 int current_p, last_displayed_p;
5772{
5773 if (current_p)
5774 echo_area_buffer[0] = Qnil;
5775
5776 if (last_displayed_p)
5777 echo_area_buffer[1] = Qnil;
5778
5779 message_buf_print = 0;
5780}
5781
5782/* Clear garbaged frames.
5783
5784 This function is used where the old redisplay called
5785 redraw_garbaged_frames which in turn called redraw_frame which in
5786 turn called clear_frame. The call to clear_frame was a source of
5787 flickering. I believe a clear_frame is not necessary. It should
5788 suffice in the new redisplay to invalidate all current matrices,
5789 and ensure a complete redisplay of all windows. */
5790
5791static void
5792clear_garbaged_frames ()
5793{
5f5c8ee5
GM
5794 if (frame_garbaged)
5795 {
5f5c8ee5
GM
5796 Lisp_Object tail, frame;
5797
5798 FOR_EACH_FRAME (tail, frame)
5799 {
5800 struct frame *f = XFRAME (frame);
5801
5802 if (FRAME_VISIBLE_P (f) && FRAME_GARBAGED_P (f))
5803 {
5804 clear_current_matrices (f);
5805 f->garbaged = 0;
5806 }
5807 }
5808
5809 frame_garbaged = 0;
5810 ++windows_or_buffers_changed;
5811 }
c6e89d6c 5812}
5f5c8ee5 5813
5f5c8ee5 5814
886bd6f2
GM
5815/* Redisplay the echo area of the selected frame. If UPDATE_FRAME_P
5816 is non-zero update selected_frame. Value is non-zero if the
c6e89d6c 5817 mini-windows height has been changed. */
5f5c8ee5 5818
c6e89d6c
GM
5819static int
5820echo_area_display (update_frame_p)
5821 int update_frame_p;
5822{
5823 Lisp_Object mini_window;
5824 struct window *w;
5825 struct frame *f;
5826 int window_height_changed_p = 0;
886bd6f2 5827 struct frame *sf = SELECTED_FRAME ();
c6e89d6c 5828
886bd6f2 5829 mini_window = FRAME_MINIBUF_WINDOW (sf);
c6e89d6c
GM
5830 w = XWINDOW (mini_window);
5831 f = XFRAME (WINDOW_FRAME (w));
5832
5833 /* Don't display if frame is invisible or not yet initialized. */
5834 if (!FRAME_VISIBLE_P (f) || !f->glyphs_initialized_p)
5835 return 0;
5f5c8ee5 5836
d9e28aa0
RS
5837#if 0 /* inhibit_window_system is not a valid way of testing
5838 whether a window system is in use.
5839 This code prevents all echo area display
5840 when you run plain `emacs' on a tty. */
c6e89d6c
GM
5841 /* When Emacs starts, selected_frame may be a visible terminal
5842 frame, even if we run under a window system. If we let this
5843 through, a message would be displayed on the terminal. */
5844#ifdef HAVE_WINDOW_SYSTEM
886bd6f2 5845 if (!inhibit_window_system && !FRAME_WINDOW_P (sf))
c6e89d6c
GM
5846 return 0;
5847#endif /* HAVE_WINDOW_SYSTEM */
d9e28aa0 5848#endif
c6e89d6c
GM
5849
5850 /* Redraw garbaged frames. */
5851 if (frame_garbaged)
5852 clear_garbaged_frames ();
5853
5854 if (!NILP (echo_area_buffer[0]) || minibuf_level == 0)
5855 {
5856 echo_area_window = mini_window;
5857 window_height_changed_p = display_echo_area (w);
5f5c8ee5 5858 w->must_be_updated_p = 1;
c59c668a 5859
5f5c8ee5
GM
5860 if (update_frame_p)
5861 {
c59c668a
GM
5862 /* Not called from redisplay_internal. If we changed
5863 window configuration, we must redisplay thoroughly.
5864 Otherwise, we can do with updating what we displayed
5865 above. */
5866 if (window_height_changed_p)
5867 {
5868 ++windows_or_buffers_changed;
5869 ++update_mode_lines;
5870 redisplay_internal (0);
5871 }
5872 else if (FRAME_WINDOW_P (f))
5f5c8ee5
GM
5873 {
5874 update_single_window (w, 1);
5875 rif->flush_display (f);
5876 }
5877 else
5878 update_frame (f, 1, 1);
5879 }
5880 }
5881 else if (!EQ (mini_window, selected_window))
5882 windows_or_buffers_changed++;
c59c668a
GM
5883
5884 /* Last displayed message is now the current message. */
dd2eb166
GM
5885 echo_area_buffer[1] = echo_area_buffer[0];
5886
5f5c8ee5
GM
5887 /* Prevent redisplay optimization in redisplay_internal by resetting
5888 this_line_start_pos. This is done because the mini-buffer now
5889 displays the message instead of its buffer text. */
5890 if (EQ (mini_window, selected_window))
5891 CHARPOS (this_line_start_pos) = 0;
c6e89d6c
GM
5892
5893 return window_height_changed_p;
5f5c8ee5
GM
5894}
5895
5896
5897\f
5898/***********************************************************************
5899 Frame Titles
5900 ***********************************************************************/
5901
5902
5903#ifdef HAVE_WINDOW_SYSTEM
5904
5905/* A buffer for constructing frame titles in it; allocated from the
5906 heap in init_xdisp and resized as needed in store_frame_title_char. */
5907
5908static char *frame_title_buf;
5909
5910/* The buffer's end, and a current output position in it. */
5911
5912static char *frame_title_buf_end;
5913static char *frame_title_ptr;
5914
5915
5916/* Store a single character C for the frame title in frame_title_buf.
5917 Re-allocate frame_title_buf if necessary. */
5918
5919static void
5920store_frame_title_char (c)
5921 char c;
5922{
5923 /* If output position has reached the end of the allocated buffer,
5924 double the buffer's size. */
5925 if (frame_title_ptr == frame_title_buf_end)
5926 {
5927 int len = frame_title_ptr - frame_title_buf;
5928 int new_size = 2 * len * sizeof *frame_title_buf;
5929 frame_title_buf = (char *) xrealloc (frame_title_buf, new_size);
5930 frame_title_buf_end = frame_title_buf + new_size;
5931 frame_title_ptr = frame_title_buf + len;
5932 }
5933
5934 *frame_title_ptr++ = c;
5935}
5936
5937
5938/* Store part of a frame title in frame_title_buf, beginning at
5939 frame_title_ptr. STR is the string to store. Do not copy more
5940 than PRECISION number of bytes from STR; PRECISION <= 0 means copy
5941 the whole string. Pad with spaces until FIELD_WIDTH number of
5942 characters have been copied; FIELD_WIDTH <= 0 means don't pad.
5943 Called from display_mode_element when it is used to build a frame
5944 title. */
5945
5946static int
5947store_frame_title (str, field_width, precision)
5948 unsigned char *str;
5949 int field_width, precision;
5950{
5951 int n = 0;
5952
5953 /* Copy at most PRECISION chars from STR. */
5954 while ((precision <= 0 || n < precision)
5955 && *str)
5956 {
5957 store_frame_title_char (*str++);
5958 ++n;
5959 }
5960
5961 /* Fill up with spaces until FIELD_WIDTH reached. */
5962 while (field_width > 0
5963 && n < field_width)
5964 {
5965 store_frame_title_char (' ');
5966 ++n;
5967 }
5968
5969 return n;
5970}
5971
5972
5973/* Set the title of FRAME, if it has changed. The title format is
5974 Vicon_title_format if FRAME is iconified, otherwise it is
5975 frame_title_format. */
5976
5977static void
5978x_consider_frame_title (frame)
5979 Lisp_Object frame;
5980{
5981 struct frame *f = XFRAME (frame);
5982
5983 if (FRAME_WINDOW_P (f)
5984 || FRAME_MINIBUF_ONLY_P (f)
5985 || f->explicit_name)
5986 {
5987 /* Do we have more than one visible frame on this X display? */
5988 Lisp_Object tail;
5989 Lisp_Object fmt;
5990 struct buffer *obuf;
5991 int len;
5992 struct it it;
5993
9472f927 5994 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
5f5c8ee5 5995 {
9472f927 5996 struct frame *tf = XFRAME (XCAR (tail));
5f5c8ee5
GM
5997
5998 if (tf != f
5999 && FRAME_KBOARD (tf) == FRAME_KBOARD (f)
6000 && !FRAME_MINIBUF_ONLY_P (tf)
6001 && (FRAME_VISIBLE_P (tf) || FRAME_ICONIFIED_P (tf)))
6002 break;
6003 }
6004
6005 /* Set global variable indicating that multiple frames exist. */
6006 multiple_frames = CONSP (tail);
6007
6008 /* Switch to the buffer of selected window of the frame. Set up
6009 frame_title_ptr so that display_mode_element will output into it;
6010 then display the title. */
6011 obuf = current_buffer;
6012 Fset_buffer (XWINDOW (f->selected_window)->buffer);
6013 fmt = FRAME_ICONIFIED_P (f) ? Vicon_title_format : Vframe_title_format;
6014 frame_title_ptr = frame_title_buf;
6015 init_iterator (&it, XWINDOW (f->selected_window), -1, -1,
6016 NULL, DEFAULT_FACE_ID);
6017 len = display_mode_element (&it, 0, -1, -1, fmt);
6018 frame_title_ptr = NULL;
6019 set_buffer_internal (obuf);
6020
6021 /* Set the title only if it's changed. This avoids consing in
6022 the common case where it hasn't. (If it turns out that we've
6023 already wasted too much time by walking through the list with
6024 display_mode_element, then we might need to optimize at a
6025 higher level than this.) */
6026 if (! STRINGP (f->name)
6027 || STRING_BYTES (XSTRING (f->name)) != len
6028 || bcmp (frame_title_buf, XSTRING (f->name)->data, len) != 0)
6029 x_implicitly_set_name (f, make_string (frame_title_buf, len), Qnil);
6030 }
6031}
6032
6033#else /* not HAVE_WINDOW_SYSTEM */
6034
6035#define frame_title_ptr ((char *)0)
6036#define store_frame_title(str, mincol, maxcol) 0
6037
6038#endif /* not HAVE_WINDOW_SYSTEM */
6039
6040
6041
6042\f
6043/***********************************************************************
6044 Menu Bars
6045 ***********************************************************************/
6046
6047
6048/* Prepare for redisplay by updating menu-bar item lists when
6049 appropriate. This can call eval. */
6050
6051void
6052prepare_menu_bars ()
6053{
6054 int all_windows;
6055 struct gcpro gcpro1, gcpro2;
6056 struct frame *f;
6057 struct frame *tooltip_frame;
6058
6059#ifdef HAVE_X_WINDOWS
6060 tooltip_frame = tip_frame;
6061#else
6062 tooltip_frame = NULL;
6063#endif
6064
6065 /* Update all frame titles based on their buffer names, etc. We do
6066 this before the menu bars so that the buffer-menu will show the
6067 up-to-date frame titles. */
6068#ifdef HAVE_WINDOW_SYSTEM
6069 if (windows_or_buffers_changed || update_mode_lines)
6070 {
6071 Lisp_Object tail, frame;
6072
6073 FOR_EACH_FRAME (tail, frame)
6074 {
6075 f = XFRAME (frame);
6076 if (f != tooltip_frame
6077 && (FRAME_VISIBLE_P (f) || FRAME_ICONIFIED_P (f)))
6078 x_consider_frame_title (frame);
6079 }
6080 }
6081#endif /* HAVE_WINDOW_SYSTEM */
6082
6083 /* Update the menu bar item lists, if appropriate. This has to be
6084 done before any actual redisplay or generation of display lines. */
6085 all_windows = (update_mode_lines
6086 || buffer_shared > 1
6087 || windows_or_buffers_changed);
6088 if (all_windows)
6089 {
6090 Lisp_Object tail, frame;
6091 int count = specpdl_ptr - specpdl;
6092
6093 record_unwind_protect (Fset_match_data, Fmatch_data (Qnil, Qnil));
6094
6095 FOR_EACH_FRAME (tail, frame)
6096 {
6097 f = XFRAME (frame);
6098
6099 /* Ignore tooltip frame. */
6100 if (f == tooltip_frame)
6101 continue;
6102
6103 /* If a window on this frame changed size, report that to
6104 the user and clear the size-change flag. */
6105 if (FRAME_WINDOW_SIZES_CHANGED (f))
6106 {
6107 Lisp_Object functions;
6108
6109 /* Clear flag first in case we get an error below. */
6110 FRAME_WINDOW_SIZES_CHANGED (f) = 0;
6111 functions = Vwindow_size_change_functions;
6112 GCPRO2 (tail, functions);
6113
6114 while (CONSP (functions))
6115 {
6116 call1 (XCAR (functions), frame);
6117 functions = XCDR (functions);
6118 }
6119 UNGCPRO;
6120 }
6121
6122 GCPRO1 (tail);
6123 update_menu_bar (f, 0);
6124#ifdef HAVE_WINDOW_SYSTEM
e037b9ec 6125 update_tool_bar (f, 0);
5f5c8ee5
GM
6126#endif
6127 UNGCPRO;
6128 }
6129
6130 unbind_to (count, Qnil);
6131 }
6132 else
6133 {
886bd6f2
GM
6134 struct frame *sf = SELECTED_FRAME ();
6135 update_menu_bar (sf, 1);
5f5c8ee5 6136#ifdef HAVE_WINDOW_SYSTEM
886bd6f2 6137 update_tool_bar (sf, 1);
5f5c8ee5
GM
6138#endif
6139 }
6140
6141 /* Motif needs this. See comment in xmenu.c. Turn it off when
6142 pending_menu_activation is not defined. */
6143#ifdef USE_X_TOOLKIT
6144 pending_menu_activation = 0;
6145#endif
6146}
6147
6148
6149/* Update the menu bar item list for frame F. This has to be done
6150 before we start to fill in any display lines, because it can call
6151 eval.
6152
6153 If SAVE_MATCH_DATA is non-zero, we must save and restore it here. */
6154
6155static void
6156update_menu_bar (f, save_match_data)
6157 struct frame *f;
6158 int save_match_data;
6159{
6160 Lisp_Object window;
6161 register struct window *w;
6162
6163 window = FRAME_SELECTED_WINDOW (f);
6164 w = XWINDOW (window);
6165
6166 if (update_mode_lines)
6167 w->update_mode_line = Qt;
6168
6169 if (FRAME_WINDOW_P (f)
6170 ?
6171#if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI)
6172 FRAME_EXTERNAL_MENU_BAR (f)
6173#else
6174 FRAME_MENU_BAR_LINES (f) > 0
6175#endif
6176 : FRAME_MENU_BAR_LINES (f) > 0)
6177 {
6178 /* If the user has switched buffers or windows, we need to
6179 recompute to reflect the new bindings. But we'll
6180 recompute when update_mode_lines is set too; that means
6181 that people can use force-mode-line-update to request
6182 that the menu bar be recomputed. The adverse effect on
6183 the rest of the redisplay algorithm is about the same as
6184 windows_or_buffers_changed anyway. */
6185 if (windows_or_buffers_changed
6186 || !NILP (w->update_mode_line)
6187 || ((BUF_SAVE_MODIFF (XBUFFER (w->buffer))
6188 < BUF_MODIFF (XBUFFER (w->buffer)))
6189 != !NILP (w->last_had_star))
6190 || ((!NILP (Vtransient_mark_mode)
6191 && !NILP (XBUFFER (w->buffer)->mark_active))
6192 != !NILP (w->region_showing)))
6193 {
6194 struct buffer *prev = current_buffer;
6195 int count = specpdl_ptr - specpdl;
6196
6197 set_buffer_internal_1 (XBUFFER (w->buffer));
6198 if (save_match_data)
6199 record_unwind_protect (Fset_match_data, Fmatch_data (Qnil, Qnil));
6200 if (NILP (Voverriding_local_map_menu_flag))
6201 {
6202 specbind (Qoverriding_terminal_local_map, Qnil);
6203 specbind (Qoverriding_local_map, Qnil);
6204 }
6205
6206 /* Run the Lucid hook. */
6207 call1 (Vrun_hooks, Qactivate_menubar_hook);
6208
6209 /* If it has changed current-menubar from previous value,
6210 really recompute the menu-bar from the value. */
6211 if (! NILP (Vlucid_menu_bar_dirty_flag))
6212 call0 (Qrecompute_lucid_menubar);
6213
6214 safe_run_hooks (Qmenu_bar_update_hook);
6215 FRAME_MENU_BAR_ITEMS (f) = menu_bar_items (FRAME_MENU_BAR_ITEMS (f));
6216
6217 /* Redisplay the menu bar in case we changed it. */
6218#if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI)
6219 if (FRAME_WINDOW_P (f))
6220 set_frame_menubar (f, 0, 0);
6221 else
6222 /* On a terminal screen, the menu bar is an ordinary screen
6223 line, and this makes it get updated. */
6224 w->update_mode_line = Qt;
6225#else /* ! (USE_X_TOOLKIT || HAVE_NTGUI) */
6226 /* In the non-toolkit version, the menu bar is an ordinary screen
6227 line, and this makes it get updated. */
6228 w->update_mode_line = Qt;
6229#endif /* ! (USE_X_TOOLKIT || HAVE_NTGUI) */
6230
6231 unbind_to (count, Qnil);
6232 set_buffer_internal_1 (prev);
6233 }
6234 }
6235}
6236
6237
6238\f
6239/***********************************************************************
e037b9ec 6240 Tool-bars
5f5c8ee5
GM
6241 ***********************************************************************/
6242
6243#ifdef HAVE_WINDOW_SYSTEM
6244
e037b9ec 6245/* Update the tool-bar item list for frame F. This has to be done
5f5c8ee5
GM
6246 before we start to fill in any display lines. Called from
6247 prepare_menu_bars. If SAVE_MATCH_DATA is non-zero, we must save
6248 and restore it here. */
6249
6250static void
e037b9ec 6251update_tool_bar (f, save_match_data)
5f5c8ee5
GM
6252 struct frame *f;
6253 int save_match_data;
6254{
e037b9ec
GM
6255 if (WINDOWP (f->tool_bar_window)
6256 && XFASTINT (XWINDOW (f->tool_bar_window)->height) > 0)
5f5c8ee5
GM
6257 {
6258 Lisp_Object window;
6259 struct window *w;
6260
6261 window = FRAME_SELECTED_WINDOW (f);
6262 w = XWINDOW (window);
6263
6264 /* If the user has switched buffers or windows, we need to
6265 recompute to reflect the new bindings. But we'll
6266 recompute when update_mode_lines is set too; that means
6267 that people can use force-mode-line-update to request
6268 that the menu bar be recomputed. The adverse effect on
6269 the rest of the redisplay algorithm is about the same as
6270 windows_or_buffers_changed anyway. */
6271 if (windows_or_buffers_changed
6272 || !NILP (w->update_mode_line)
6273 || ((BUF_SAVE_MODIFF (XBUFFER (w->buffer))
6274 < BUF_MODIFF (XBUFFER (w->buffer)))
6275 != !NILP (w->last_had_star))
6276 || ((!NILP (Vtransient_mark_mode)
6277 && !NILP (XBUFFER (w->buffer)->mark_active))
6278 != !NILP (w->region_showing)))
6279 {
6280 struct buffer *prev = current_buffer;
6281 int count = specpdl_ptr - specpdl;
a2889657 6282
5f5c8ee5
GM
6283 /* Set current_buffer to the buffer of the selected
6284 window of the frame, so that we get the right local
6285 keymaps. */
6286 set_buffer_internal_1 (XBUFFER (w->buffer));
1f40cad2 6287
5f5c8ee5
GM
6288 /* Save match data, if we must. */
6289 if (save_match_data)
6290 record_unwind_protect (Fset_match_data, Fmatch_data (Qnil, Qnil));
6291
6292 /* Make sure that we don't accidentally use bogus keymaps. */
6293 if (NILP (Voverriding_local_map_menu_flag))
6294 {
6295 specbind (Qoverriding_terminal_local_map, Qnil);
6296 specbind (Qoverriding_local_map, Qnil);
1f40cad2 6297 }
1f40cad2 6298
e037b9ec
GM
6299 /* Build desired tool-bar items from keymaps. */
6300 f->desired_tool_bar_items
6301 = tool_bar_items (f->desired_tool_bar_items,
6302 &f->n_desired_tool_bar_items);
5f5c8ee5 6303
e037b9ec 6304 /* Redisplay the tool-bar in case we changed it. */
5f5c8ee5
GM
6305 w->update_mode_line = Qt;
6306
6307 unbind_to (count, Qnil);
6308 set_buffer_internal_1 (prev);
81d478f3 6309 }
a2889657
JB
6310 }
6311}
6312
6c4429a5 6313
e037b9ec
GM
6314/* Set F->desired_tool_bar_string to a Lisp string representing frame
6315 F's desired tool-bar contents. F->desired_tool_bar_items must have
5f5c8ee5
GM
6316 been set up previously by calling prepare_menu_bars. */
6317
a2889657 6318static void
e037b9ec 6319build_desired_tool_bar_string (f)
5f5c8ee5 6320 struct frame *f;
a2889657 6321{
5f5c8ee5
GM
6322 int i, size, size_needed, string_idx;
6323 struct gcpro gcpro1, gcpro2, gcpro3;
6324 Lisp_Object image, plist, props;
a2889657 6325
5f5c8ee5
GM
6326 image = plist = props = Qnil;
6327 GCPRO3 (image, plist, props);
a2889657 6328
e037b9ec 6329 /* Prepare F->desired_tool_bar_string. If we can reuse it, do so.
5f5c8ee5
GM
6330 Otherwise, make a new string. */
6331
6332 /* The size of the string we might be able to reuse. */
e037b9ec
GM
6333 size = (STRINGP (f->desired_tool_bar_string)
6334 ? XSTRING (f->desired_tool_bar_string)->size
5f5c8ee5
GM
6335 : 0);
6336
6337 /* Each image in the string we build is preceded by a space,
6338 and there is a space at the end. */
e037b9ec 6339 size_needed = f->n_desired_tool_bar_items + 1;
5f5c8ee5 6340
e037b9ec 6341 /* Reuse f->desired_tool_bar_string, if possible. */
5f5c8ee5 6342 if (size < size_needed)
e037b9ec 6343 f->desired_tool_bar_string = Fmake_string (make_number (size_needed), ' ');
5f5c8ee5
GM
6344 else
6345 {
6346 props = list4 (Qdisplay, Qnil, Qmenu_item, Qnil);
6347 Fremove_text_properties (make_number (0), make_number (size),
e037b9ec 6348 props, f->desired_tool_bar_string);
5f5c8ee5 6349 }
a2889657 6350
5f5c8ee5 6351 /* Put a `display' property on the string for the images to display,
e037b9ec
GM
6352 put a `menu_item' property on tool-bar items with a value that
6353 is the index of the item in F's tool-bar item vector. */
5f5c8ee5 6354 for (i = 0, string_idx = 0;
e037b9ec 6355 i < f->n_desired_tool_bar_items;
5f5c8ee5 6356 ++i, string_idx += 1)
a2889657 6357 {
5f5c8ee5 6358#define PROP(IDX) \
e037b9ec
GM
6359 (XVECTOR (f->desired_tool_bar_items) \
6360 ->contents[i * TOOL_BAR_ITEM_NSLOTS + (IDX)])
5f5c8ee5 6361
e037b9ec
GM
6362 int enabled_p = !NILP (PROP (TOOL_BAR_ITEM_ENABLED_P));
6363 int selected_p = !NILP (PROP (TOOL_BAR_ITEM_SELECTED_P));
5f5c8ee5
GM
6364 int margin, relief;
6365 extern Lisp_Object QCrelief, QCmargin, QCalgorithm, Qimage;
6366 extern Lisp_Object Qlaplace;
6367
6368 /* If image is a vector, choose the image according to the
6369 button state. */
e037b9ec 6370 image = PROP (TOOL_BAR_ITEM_IMAGES);
5f5c8ee5
GM
6371 if (VECTORP (image))
6372 {
e037b9ec 6373 enum tool_bar_item_image idx;
5f5c8ee5
GM
6374
6375 if (enabled_p)
6376 idx = (selected_p
e037b9ec
GM
6377 ? TOOL_BAR_IMAGE_ENABLED_SELECTED
6378 : TOOL_BAR_IMAGE_ENABLED_DESELECTED);
5f5c8ee5
GM
6379 else
6380 idx = (selected_p
e037b9ec
GM
6381 ? TOOL_BAR_IMAGE_DISABLED_SELECTED
6382 : TOOL_BAR_IMAGE_DISABLED_DESELECTED);
5f5c8ee5
GM
6383
6384 xassert (XVECTOR (image)->size >= idx);
6385 image = XVECTOR (image)->contents[idx];
6386 }
6387
6388 /* Ignore invalid image specifications. */
6389 if (!valid_image_p (image))
6390 continue;
6391
e037b9ec 6392 /* Display the tool-bar button pressed, or depressed. */
5f5c8ee5
GM
6393 plist = Fcopy_sequence (XCDR (image));
6394
6395 /* Compute margin and relief to draw. */
e037b9ec
GM
6396 relief = tool_bar_button_relief > 0 ? tool_bar_button_relief : 3;
6397 margin = relief + max (0, tool_bar_button_margin);
5f5c8ee5 6398
e037b9ec 6399 if (auto_raise_tool_bar_buttons_p)
5f5c8ee5
GM
6400 {
6401 /* Add a `:relief' property to the image spec if the item is
6402 selected. */
6403 if (selected_p)
6404 {
6405 plist = Fplist_put (plist, QCrelief, make_number (-relief));
6406 margin -= relief;
6407 }
6408 }
6409 else
6410 {
6411 /* If image is selected, display it pressed, i.e. with a
6412 negative relief. If it's not selected, display it with a
6413 raised relief. */
6414 plist = Fplist_put (plist, QCrelief,
6415 (selected_p
6416 ? make_number (-relief)
6417 : make_number (relief)));
6418 margin -= relief;
6419 }
6420
6421 /* Put a margin around the image. */
6422 if (margin)
6423 plist = Fplist_put (plist, QCmargin, make_number (margin));
6424
6425 /* If button is not enabled, make the image appear disabled by
6426 applying an appropriate algorithm to it. */
6427 if (!enabled_p)
6428 plist = Fplist_put (plist, QCalgorithm, Qlaplace);
6429
6430 /* Put a `display' text property on the string for the image to
6431 display. Put a `menu-item' property on the string that gives
e037b9ec 6432 the start of this item's properties in the tool-bar items
5f5c8ee5
GM
6433 vector. */
6434 image = Fcons (Qimage, plist);
6435 props = list4 (Qdisplay, image,
e037b9ec 6436 Qmenu_item, make_number (i * TOOL_BAR_ITEM_NSLOTS)),
5f5c8ee5
GM
6437 Fadd_text_properties (make_number (string_idx),
6438 make_number (string_idx + 1),
e037b9ec 6439 props, f->desired_tool_bar_string);
5f5c8ee5 6440#undef PROP
a2889657
JB
6441 }
6442
5f5c8ee5
GM
6443 UNGCPRO;
6444}
6445
6446
e037b9ec 6447/* Display one line of the tool-bar of frame IT->f. */
5f5c8ee5
GM
6448
6449static void
e037b9ec 6450display_tool_bar_line (it)
5f5c8ee5
GM
6451 struct it *it;
6452{
6453 struct glyph_row *row = it->glyph_row;
6454 int max_x = it->last_visible_x;
6455 struct glyph *last;
6456
6457 prepare_desired_row (row);
6458 row->y = it->current_y;
6459
6460 while (it->current_x < max_x)
a2889657 6461 {
5f5c8ee5 6462 int x_before, x, n_glyphs_before, i, nglyphs;
a2f016e3 6463
5f5c8ee5
GM
6464 /* Get the next display element. */
6465 if (!get_next_display_element (it))
6466 break;
73af359d 6467
5f5c8ee5
GM
6468 /* Produce glyphs. */
6469 x_before = it->current_x;
6470 n_glyphs_before = it->glyph_row->used[TEXT_AREA];
6471 PRODUCE_GLYPHS (it);
daa37602 6472
5f5c8ee5
GM
6473 nglyphs = it->glyph_row->used[TEXT_AREA] - n_glyphs_before;
6474 i = 0;
6475 x = x_before;
6476 while (i < nglyphs)
6477 {
6478 struct glyph *glyph = row->glyphs[TEXT_AREA] + n_glyphs_before + i;
6479
6480 if (x + glyph->pixel_width > max_x)
6481 {
6482 /* Glyph doesn't fit on line. */
6483 it->glyph_row->used[TEXT_AREA] = n_glyphs_before + i;
6484 it->current_x = x;
6485 goto out;
6486 }
daa37602 6487
5f5c8ee5
GM
6488 ++it->hpos;
6489 x += glyph->pixel_width;
6490 ++i;
6491 }
6492
6493 /* Stop at line ends. */
6494 if (ITERATOR_AT_END_OF_LINE_P (it))
6495 break;
6496
6497 set_iterator_to_next (it);
a2889657 6498 }
a2889657 6499
5f5c8ee5 6500 out:;
a2889657 6501
5f5c8ee5
GM
6502 row->displays_text_p = row->used[TEXT_AREA] != 0;
6503 extend_face_to_end_of_line (it);
6504 last = row->glyphs[TEXT_AREA] + row->used[TEXT_AREA] - 1;
6505 last->right_box_line_p = 1;
6506 compute_line_metrics (it);
6507
e037b9ec 6508 /* If line is empty, make it occupy the rest of the tool-bar. */
5f5c8ee5
GM
6509 if (!row->displays_text_p)
6510 {
312246d1
GM
6511 row->height = row->phys_height = it->last_visible_y - row->y;
6512 row->ascent = row->phys_ascent = 0;
5f5c8ee5
GM
6513 }
6514
6515 row->full_width_p = 1;
6516 row->continued_p = 0;
6517 row->truncated_on_left_p = 0;
6518 row->truncated_on_right_p = 0;
6519
6520 it->current_x = it->hpos = 0;
6521 it->current_y += row->height;
6522 ++it->vpos;
6523 ++it->glyph_row;
a2889657 6524}
96a410bc 6525
5f5c8ee5 6526
e037b9ec 6527/* Value is the number of screen lines needed to make all tool-bar
5f5c8ee5 6528 items of frame F visible. */
96a410bc 6529
d39b6696 6530static int
e037b9ec 6531tool_bar_lines_needed (f)
5f5c8ee5 6532 struct frame *f;
d39b6696 6533{
e037b9ec 6534 struct window *w = XWINDOW (f->tool_bar_window);
5f5c8ee5
GM
6535 struct it it;
6536
e037b9ec
GM
6537 /* Initialize an iterator for iteration over
6538 F->desired_tool_bar_string in the tool-bar window of frame F. */
6539 init_iterator (&it, w, -1, -1, w->desired_matrix->rows, TOOL_BAR_FACE_ID);
5f5c8ee5
GM
6540 it.first_visible_x = 0;
6541 it.last_visible_x = FRAME_WINDOW_WIDTH (f) * CANON_X_UNIT (f);
e037b9ec 6542 reseat_to_string (&it, NULL, f->desired_tool_bar_string, 0, 0, 0, -1);
5f5c8ee5
GM
6543
6544 while (!ITERATOR_AT_END_P (&it))
6545 {
6546 it.glyph_row = w->desired_matrix->rows;
6547 clear_glyph_row (it.glyph_row);
e037b9ec 6548 display_tool_bar_line (&it);
5f5c8ee5
GM
6549 }
6550
6551 return (it.current_y + CANON_Y_UNIT (f) - 1) / CANON_Y_UNIT (f);
d39b6696 6552}
96a410bc 6553
5f5c8ee5 6554
e037b9ec 6555/* Display the tool-bar of frame F. Value is non-zero if tool-bar's
5f5c8ee5
GM
6556 height should be changed. */
6557
6558static int
e037b9ec 6559redisplay_tool_bar (f)
5f5c8ee5 6560 struct frame *f;
96a410bc 6561{
5f5c8ee5
GM
6562 struct window *w;
6563 struct it it;
6564 struct glyph_row *row;
6565 int change_height_p = 0;
6566
e037b9ec
GM
6567 /* If frame hasn't a tool-bar window or if it is zero-height, don't
6568 do anything. This means you must start with tool-bar-lines
5f5c8ee5 6569 non-zero to get the auto-sizing effect. Or in other words, you
e037b9ec
GM
6570 can turn off tool-bars by specifying tool-bar-lines zero. */
6571 if (!WINDOWP (f->tool_bar_window)
6572 || (w = XWINDOW (f->tool_bar_window),
5f5c8ee5
GM
6573 XFASTINT (w->height) == 0))
6574 return 0;
96a410bc 6575
e037b9ec
GM
6576 /* Set up an iterator for the tool-bar window. */
6577 init_iterator (&it, w, -1, -1, w->desired_matrix->rows, TOOL_BAR_FACE_ID);
5f5c8ee5
GM
6578 it.first_visible_x = 0;
6579 it.last_visible_x = FRAME_WINDOW_WIDTH (f) * CANON_X_UNIT (f);
6580 row = it.glyph_row;
3450d04c 6581
e037b9ec
GM
6582 /* Build a string that represents the contents of the tool-bar. */
6583 build_desired_tool_bar_string (f);
6584 reseat_to_string (&it, NULL, f->desired_tool_bar_string, 0, 0, 0, -1);
3450d04c 6585
e037b9ec 6586 /* Display as many lines as needed to display all tool-bar items. */
5f5c8ee5 6587 while (it.current_y < it.last_visible_y)
e037b9ec 6588 display_tool_bar_line (&it);
3450d04c 6589
e037b9ec 6590 /* It doesn't make much sense to try scrolling in the tool-bar
5f5c8ee5
GM
6591 window, so don't do it. */
6592 w->desired_matrix->no_scrolling_p = 1;
6593 w->must_be_updated_p = 1;
3450d04c 6594
e037b9ec 6595 if (auto_resize_tool_bars_p)
5f5c8ee5
GM
6596 {
6597 int nlines;
6598
6599 /* If there are blank lines at the end, except for a partially
6600 visible blank line at the end that is smaller than
e037b9ec 6601 CANON_Y_UNIT, change the tool-bar's height. */
5f5c8ee5
GM
6602 row = it.glyph_row - 1;
6603 if (!row->displays_text_p
6604 && row->height >= CANON_Y_UNIT (f))
6605 change_height_p = 1;
6606
e037b9ec
GM
6607 /* If row displays tool-bar items, but is partially visible,
6608 change the tool-bar's height. */
5f5c8ee5
GM
6609 if (row->displays_text_p
6610 && MATRIX_ROW_BOTTOM_Y (row) > it.last_visible_y)
6611 change_height_p = 1;
6612
e037b9ec 6613 /* Resize windows as needed by changing the `tool-bar-lines'
5f5c8ee5
GM
6614 frame parameter. */
6615 if (change_height_p
e037b9ec 6616 && (nlines = tool_bar_lines_needed (f),
5f5c8ee5
GM
6617 nlines != XFASTINT (w->height)))
6618 {
e037b9ec 6619 extern Lisp_Object Qtool_bar_lines;
5f5c8ee5
GM
6620 Lisp_Object frame;
6621
6622 XSETFRAME (frame, f);
6623 clear_glyph_matrix (w->desired_matrix);
6624 Fmodify_frame_parameters (frame,
e037b9ec 6625 Fcons (Fcons (Qtool_bar_lines,
5f5c8ee5
GM
6626 make_number (nlines)),
6627 Qnil));
6628 fonts_changed_p = 1;
6629 }
6630 }
3450d04c 6631
5f5c8ee5 6632 return change_height_p;
96a410bc 6633}
90adcf20 6634
5f5c8ee5 6635
e037b9ec
GM
6636/* Get information about the tool-bar item which is displayed in GLYPH
6637 on frame F. Return in *PROP_IDX the index where tool-bar item
6638 properties start in F->current_tool_bar_items. Value is zero if
6639 GLYPH doesn't display a tool-bar item. */
5f5c8ee5
GM
6640
6641int
e037b9ec 6642tool_bar_item_info (f, glyph, prop_idx)
5f5c8ee5
GM
6643 struct frame *f;
6644 struct glyph *glyph;
6645 int *prop_idx;
90adcf20 6646{
5f5c8ee5
GM
6647 Lisp_Object prop;
6648 int success_p;
6649
6650 /* Get the text property `menu-item' at pos. The value of that
6651 property is the start index of this item's properties in
e037b9ec 6652 F->current_tool_bar_items. */
5f5c8ee5 6653 prop = Fget_text_property (make_number (glyph->charpos),
e037b9ec 6654 Qmenu_item, f->current_tool_bar_string);
5f5c8ee5
GM
6655 if (INTEGERP (prop))
6656 {
6657 *prop_idx = XINT (prop);
6658 success_p = 1;
6659 }
6660 else
6661 success_p = 0;
90adcf20 6662
5f5c8ee5
GM
6663 return success_p;
6664}
6665
6666#endif /* HAVE_WINDOW_SYSTEM */
90adcf20 6667
feb0c42f 6668
5f5c8ee5
GM
6669\f
6670/************************************************************************
6671 Horizontal scrolling
6672 ************************************************************************/
feb0c42f 6673
5f5c8ee5
GM
6674static int hscroll_window_tree P_ ((Lisp_Object));
6675static int hscroll_windows P_ ((Lisp_Object));
feb0c42f 6676
5f5c8ee5
GM
6677/* For all leaf windows in the window tree rooted at WINDOW, set their
6678 hscroll value so that PT is (i) visible in the window, and (ii) so
6679 that it is not within a certain margin at the window's left and
6680 right border. Value is non-zero if any window's hscroll has been
6681 changed. */
6682
6683static int
6684hscroll_window_tree (window)
6685 Lisp_Object window;
6686{
6687 int hscrolled_p = 0;
6688
6689 while (WINDOWP (window))
90adcf20 6690 {
5f5c8ee5
GM
6691 struct window *w = XWINDOW (window);
6692
6693 if (WINDOWP (w->hchild))
6694 hscrolled_p |= hscroll_window_tree (w->hchild);
6695 else if (WINDOWP (w->vchild))
6696 hscrolled_p |= hscroll_window_tree (w->vchild);
6697 else if (w->cursor.vpos >= 0)
6698 {
6699 int hscroll_margin, text_area_x, text_area_y;
6700 int text_area_width, text_area_height;
92a90e89
GM
6701 struct glyph_row *current_cursor_row
6702 = MATRIX_ROW (w->current_matrix, w->cursor.vpos);
6703 struct glyph_row *desired_cursor_row
6704 = MATRIX_ROW (w->desired_matrix, w->cursor.vpos);
6705 struct glyph_row *cursor_row
6706 = (desired_cursor_row->enabled_p
6707 ? desired_cursor_row
6708 : current_cursor_row);
a2725ab2 6709
5f5c8ee5
GM
6710 window_box (w, TEXT_AREA, &text_area_x, &text_area_y,
6711 &text_area_width, &text_area_height);
90adcf20 6712
5f5c8ee5
GM
6713 /* Scroll when cursor is inside this scroll margin. */
6714 hscroll_margin = 5 * CANON_X_UNIT (XFRAME (w->frame));
6715
6716 if ((XFASTINT (w->hscroll)
6717 && w->cursor.x < hscroll_margin)
92a90e89
GM
6718 || (cursor_row->enabled_p
6719 && cursor_row->truncated_on_right_p
5f5c8ee5 6720 && (w->cursor.x > text_area_width - hscroll_margin)))
08b610e4 6721 {
5f5c8ee5
GM
6722 struct it it;
6723 int hscroll;
6724 struct buffer *saved_current_buffer;
6725 int pt;
6726
6727 /* Find point in a display of infinite width. */
6728 saved_current_buffer = current_buffer;
6729 current_buffer = XBUFFER (w->buffer);
6730
6731 if (w == XWINDOW (selected_window))
6732 pt = BUF_PT (current_buffer);
6733 else
08b610e4 6734 {
5f5c8ee5
GM
6735 pt = marker_position (w->pointm);
6736 pt = max (BEGV, pt);
6737 pt = min (ZV, pt);
6738 }
6739
6740 /* Move iterator to pt starting at cursor_row->start in
6741 a line with infinite width. */
6742 init_to_row_start (&it, w, cursor_row);
6743 it.last_visible_x = INFINITY;
6744 move_it_in_display_line_to (&it, pt, -1, MOVE_TO_POS);
6745 current_buffer = saved_current_buffer;
6746
6747 /* Center cursor in window. */
6748 hscroll = (max (0, it.current_x - text_area_width / 2)
6749 / CANON_X_UNIT (it.f));
6750
6751 /* Don't call Fset_window_hscroll if value hasn't
6752 changed because it will prevent redisplay
6753 optimizations. */
6754 if (XFASTINT (w->hscroll) != hscroll)
6755 {
6756 Fset_window_hscroll (window, make_number (hscroll));
6757 hscrolled_p = 1;
08b610e4 6758 }
08b610e4 6759 }
08b610e4 6760 }
a2725ab2 6761
5f5c8ee5 6762 window = w->next;
90adcf20 6763 }
cd6dfed6 6764
5f5c8ee5
GM
6765 /* Value is non-zero if hscroll of any leaf window has been changed. */
6766 return hscrolled_p;
6767}
6768
6769
6770/* Set hscroll so that cursor is visible and not inside horizontal
6771 scroll margins for all windows in the tree rooted at WINDOW. See
6772 also hscroll_window_tree above. Value is non-zero if any window's
6773 hscroll has been changed. If it has, desired matrices on the frame
6774 of WINDOW are cleared. */
6775
6776static int
6777hscroll_windows (window)
6778 Lisp_Object window;
6779{
6780 int hscrolled_p = hscroll_window_tree (window);
6781 if (hscrolled_p)
6782 clear_desired_matrices (XFRAME (WINDOW_FRAME (XWINDOW (window))));
6783 return hscrolled_p;
90adcf20 6784}
5f5c8ee5
GM
6785
6786
90adcf20 6787\f
5f5c8ee5
GM
6788/************************************************************************
6789 Redisplay
6790 ************************************************************************/
6791
6792/* Variables holding some state of redisplay if GLYPH_DEBUG is defined
6793 to a non-zero value. This is sometimes handy to have in a debugger
6794 session. */
6795
6796#if GLYPH_DEBUG
a2889657 6797
5f5c8ee5
GM
6798/* First and last unchanged row for try_window_id. */
6799
6800int debug_first_unchanged_at_end_vpos;
6801int debug_last_unchanged_at_beg_vpos;
6802
6803/* Delta vpos and y. */
6804
6805int debug_dvpos, debug_dy;
6806
6807/* Delta in characters and bytes for try_window_id. */
6808
6809int debug_delta, debug_delta_bytes;
6810
6811/* Values of window_end_pos and window_end_vpos at the end of
6812 try_window_id. */
6813
6814int debug_end_pos, debug_end_vpos;
6815
6816/* Append a string to W->desired_matrix->method. FMT is a printf
6817 format string. A1...A9 are a supplement for a variable-length
6818 argument list. If trace_redisplay_p is non-zero also printf the
6819 resulting string to stderr. */
6820
6821static void
6822debug_method_add (w, fmt, a1, a2, a3, a4, a5, a6, a7, a8, a9)
6823 struct window *w;
6824 char *fmt;
6825 int a1, a2, a3, a4, a5, a6, a7, a8, a9;
6826{
6827 char buffer[512];
6828 char *method = w->desired_matrix->method;
6829 int len = strlen (method);
6830 int size = sizeof w->desired_matrix->method;
6831 int remaining = size - len - 1;
6832
6833 sprintf (buffer, fmt, a1, a2, a3, a4, a5, a6, a7, a8, a9);
6834 if (len && remaining)
6835 {
6836 method[len] = '|';
6837 --remaining, ++len;
6838 }
6839
6840 strncpy (method + len, buffer, remaining);
6841
6842 if (trace_redisplay_p)
6843 fprintf (stderr, "%p (%s): %s\n",
6844 w,
6845 ((BUFFERP (w->buffer)
6846 && STRINGP (XBUFFER (w->buffer)->name))
6847 ? (char *) XSTRING (XBUFFER (w->buffer)->name)->data
6848 : "no buffer"),
6849 buffer);
6850}
a2889657 6851
5f5c8ee5 6852#endif /* GLYPH_DEBUG */
90adcf20 6853
a2889657 6854
5f5c8ee5
GM
6855/* This counter is used to clear the face cache every once in a while
6856 in redisplay_internal. It is incremented for each redisplay.
6857 Every CLEAR_FACE_CACHE_COUNT full redisplays, the face cache is
6858 cleared. */
0d231165 6859
5f5c8ee5 6860#define CLEAR_FACE_CACHE_COUNT 10000
463f6b91
RS
6861static int clear_face_cache_count;
6862
20de20dc 6863/* Record the previous terminal frame we displayed. */
5f5c8ee5
GM
6864
6865static struct frame *previous_terminal_frame;
6866
6867/* Non-zero while redisplay_internal is in progress. */
6868
6869int redisplaying_p;
6870
6871
6872/* Value is non-zero if all changes in window W, which displays
6873 current_buffer, are in the text between START and END. START is a
6874 buffer position, END is given as a distance from Z. Used in
6875 redisplay_internal for display optimization. */
6876
6877static INLINE int
6878text_outside_line_unchanged_p (w, start, end)
6879 struct window *w;
6880 int start, end;
6881{
6882 int unchanged_p = 1;
6883
6884 /* If text or overlays have changed, see where. */
6885 if (XFASTINT (w->last_modified) < MODIFF
6886 || XFASTINT (w->last_overlay_modified) < OVERLAY_MODIFF)
6887 {
6888 /* Gap in the line? */
6889 if (GPT < start || Z - GPT < end)
6890 unchanged_p = 0;
6891
6892 /* Changes start in front of the line, or end after it? */
6893 if (unchanged_p
9142dd5b
GM
6894 && (BEG_UNCHANGED < start - 1
6895 || END_UNCHANGED < end))
5f5c8ee5
GM
6896 unchanged_p = 0;
6897
6898 /* If selective display, can't optimize if changes start at the
6899 beginning of the line. */
6900 if (unchanged_p
6901 && INTEGERP (current_buffer->selective_display)
6902 && XINT (current_buffer->selective_display) > 0
9142dd5b 6903 && (BEG_UNCHANGED < start || GPT <= start))
5f5c8ee5
GM
6904 unchanged_p = 0;
6905 }
6906
6907 return unchanged_p;
6908}
6909
6910
6911/* Do a frame update, taking possible shortcuts into account. This is
6912 the main external entry point for redisplay.
6913
6914 If the last redisplay displayed an echo area message and that message
6915 is no longer requested, we clear the echo area or bring back the
6916 mini-buffer if that is in use. */
20de20dc 6917
a2889657
JB
6918void
6919redisplay ()
e9874cee
RS
6920{
6921 redisplay_internal (0);
6922}
6923
5f5c8ee5 6924
9142dd5b
GM
6925/* Reconsider the setting of B->clip_changed which is displayed
6926 in window W. */
6927
6928static INLINE void
6929reconsider_clip_changes (w, b)
6930 struct window *w;
6931 struct buffer *b;
6932{
6933 if (b->prevent_redisplay_optimizations_p)
6934 b->clip_changed = 1;
6935 else if (b->clip_changed
6936 && !NILP (w->window_end_valid)
6937 && w->current_matrix->buffer == b
6938 && w->current_matrix->zv == BUF_ZV (b)
6939 && w->current_matrix->begv == BUF_BEGV (b))
6940 b->clip_changed = 0;
6941}
6942
6943
5f5c8ee5
GM
6944/* If PRESERVE_ECHO_AREA is nonzero, it means this redisplay is not in
6945 response to any user action; therefore, we should preserve the echo
6946 area. (Actually, our caller does that job.) Perhaps in the future
6947 avoid recentering windows if it is not necessary; currently that
6948 causes some problems. */
e9874cee
RS
6949
6950static void
6951redisplay_internal (preserve_echo_area)
6952 int preserve_echo_area;
a2889657 6953{
5f5c8ee5
GM
6954 struct window *w = XWINDOW (selected_window);
6955 struct frame *f = XFRAME (w->frame);
6956 int pause;
a2889657 6957 int must_finish = 0;
5f5c8ee5 6958 struct text_pos tlbufpos, tlendpos;
89819bdd 6959 int number_of_visible_frames;
28514cd9 6960 int count;
886bd6f2 6961 struct frame *sf = SELECTED_FRAME ();
a2889657 6962
5f5c8ee5
GM
6963 /* Non-zero means redisplay has to consider all windows on all
6964 frames. Zero means, only selected_window is considered. */
6965 int consider_all_windows_p;
6966
6967 TRACE ((stderr, "redisplay_internal %d\n", redisplaying_p));
6968
6969 /* No redisplay if running in batch mode or frame is not yet fully
6970 initialized, or redisplay is explicitly turned off by setting
6971 Vinhibit_redisplay. */
6972 if (noninteractive
6973 || !NILP (Vinhibit_redisplay)
6974 || !f->glyphs_initialized_p)
a2889657
JB
6975 return;
6976
5f5c8ee5
GM
6977 /* The flag redisplay_performed_directly_p is set by
6978 direct_output_for_insert when it already did the whole screen
6979 update necessary. */
6980 if (redisplay_performed_directly_p)
6981 {
6982 redisplay_performed_directly_p = 0;
6983 if (!hscroll_windows (selected_window))
6984 return;
6985 }
6986
15f0cf78
RS
6987#ifdef USE_X_TOOLKIT
6988 if (popup_activated ())
6989 return;
6990#endif
6991
28514cd9 6992 /* I don't think this happens but let's be paranoid. */
5f5c8ee5 6993 if (redisplaying_p)
735c094c
KH
6994 return;
6995
28514cd9
GM
6996 /* Record a function that resets redisplaying_p to its old value
6997 when we leave this function. */
6998 count = specpdl_ptr - specpdl;
6999 record_unwind_protect (unwind_redisplay, make_number (redisplaying_p));
7000 ++redisplaying_p;
7001
8b32d885
RS
7002 retry:
7003
9142dd5b
GM
7004 reconsider_clip_changes (w, current_buffer);
7005
5f5c8ee5
GM
7006 /* If new fonts have been loaded that make a glyph matrix adjustment
7007 necessary, do it. */
7008 if (fonts_changed_p)
7009 {
7010 adjust_glyphs (NULL);
7011 ++windows_or_buffers_changed;
7012 fonts_changed_p = 0;
7013 }
7014
886bd6f2
GM
7015 if (! FRAME_WINDOW_P (sf)
7016 && previous_terminal_frame != sf)
20de20dc 7017 {
5f5c8ee5
GM
7018 /* Since frames on an ASCII terminal share the same display
7019 area, displaying a different frame means redisplay the whole
7020 thing. */
20de20dc 7021 windows_or_buffers_changed++;
886bd6f2
GM
7022 SET_FRAME_GARBAGED (sf);
7023 XSETFRAME (Vterminal_frame, sf);
20de20dc 7024 }
886bd6f2 7025 previous_terminal_frame = sf;
20de20dc 7026
5f5c8ee5
GM
7027 /* Set the visible flags for all frames. Do this before checking
7028 for resized or garbaged frames; they want to know if their frames
7029 are visible. See the comment in frame.h for
7030 FRAME_SAMPLE_VISIBILITY. */
d724d989 7031 {
35f56f96 7032 Lisp_Object tail, frame;
d724d989 7033
89819bdd
RS
7034 number_of_visible_frames = 0;
7035
35f56f96 7036 FOR_EACH_FRAME (tail, frame)
f82aff7c 7037 {
5f5c8ee5
GM
7038 struct frame *f = XFRAME (frame);
7039
7040 FRAME_SAMPLE_VISIBILITY (f);
7041 if (FRAME_VISIBLE_P (f))
7042 ++number_of_visible_frames;
7043 clear_desired_matrices (f);
f82aff7c 7044 }
d724d989
JB
7045 }
7046
44fa5b1e 7047 /* Notice any pending interrupt request to change frame size. */
c6e89d6c 7048 do_pending_window_change (1);
a2889657 7049
5f5c8ee5 7050 /* Clear frames marked as garbaged. */
44fa5b1e 7051 if (frame_garbaged)
c6e89d6c 7052 clear_garbaged_frames ();
a2889657 7053
e037b9ec 7054 /* Build menubar and tool-bar items. */
f82aff7c
RS
7055 prepare_menu_bars ();
7056
28995e67 7057 if (windows_or_buffers_changed)
a2889657
JB
7058 update_mode_lines++;
7059
538f13d4
RS
7060 /* Detect case that we need to write or remove a star in the mode line. */
7061 if ((SAVE_MODIFF < MODIFF) != !NILP (w->last_had_star))
a2889657
JB
7062 {
7063 w->update_mode_line = Qt;
7064 if (buffer_shared > 1)
7065 update_mode_lines++;
7066 }
7067
5f5c8ee5 7068 /* If %c is in the mode line, update it if needed. */
28995e67
RS
7069 if (!NILP (w->column_number_displayed)
7070 /* This alternative quickly identifies a common case
7071 where no change is needed. */
7072 && !(PT == XFASTINT (w->last_point)
8850a573
RS
7073 && XFASTINT (w->last_modified) >= MODIFF
7074 && XFASTINT (w->last_overlay_modified) >= OVERLAY_MODIFF)
28995e67
RS
7075 && XFASTINT (w->column_number_displayed) != current_column ())
7076 w->update_mode_line = Qt;
7077
44fa5b1e 7078 FRAME_SCROLL_BOTTOM_VPOS (XFRAME (w->frame)) = -1;
a2889657 7079
5f5c8ee5
GM
7080 /* The variable buffer_shared is set in redisplay_window and
7081 indicates that we redisplay a buffer in different windows. See
7082 there. */
7083 consider_all_windows_p = update_mode_lines || buffer_shared > 1;
a2889657
JB
7084
7085 /* If specs for an arrow have changed, do thorough redisplay
7086 to ensure we remove any arrow that should no longer exist. */
d45de95b 7087 if (! EQ (COERCE_MARKER (Voverlay_arrow_position), last_arrow_position)
ded34426 7088 || ! EQ (Voverlay_arrow_string, last_arrow_string))
5f5c8ee5 7089 consider_all_windows_p = windows_or_buffers_changed = 1;
a2889657 7090
90adcf20
RS
7091 /* Normally the message* functions will have already displayed and
7092 updated the echo area, but the frame may have been trashed, or
7093 the update may have been preempted, so display the echo area
c6e89d6c
GM
7094 again here. Checking both message buffers captures the case that
7095 the echo area should be cleared. */
7096 if (!NILP (echo_area_buffer[0]) || !NILP (echo_area_buffer[1]))
90adcf20 7097 {
c6e89d6c 7098 int window_height_changed_p = echo_area_display (0);
90adcf20 7099 must_finish = 1;
dd2eb166 7100
c6e89d6c
GM
7101 if (fonts_changed_p)
7102 goto retry;
7103 else if (window_height_changed_p)
7104 {
7105 consider_all_windows_p = 1;
7106 ++update_mode_lines;
7107 ++windows_or_buffers_changed;
9142dd5b
GM
7108
7109 /* If window configuration was changed, frames may have been
7110 marked garbaged. Clear them or we will experience
7111 surprises wrt scrolling. */
7112 if (frame_garbaged)
7113 clear_garbaged_frames ();
c6e89d6c 7114 }
90adcf20 7115 }
dd2eb166
GM
7116 else if (w == XWINDOW (minibuf_window)
7117 && (current_buffer->clip_changed
7118 || XFASTINT (w->last_modified) < MODIFF
7119 || XFASTINT (w->last_overlay_modified) < OVERLAY_MODIFF)
92a90e89 7120 && resize_mini_window (w, 0))
c6e89d6c
GM
7121 {
7122 /* Resized active mini-window to fit the size of what it is
dd2eb166
GM
7123 showing if its contents might have changed. */
7124 must_finish = 1;
7125 consider_all_windows_p = 1;
c6e89d6c 7126 ++windows_or_buffers_changed;
dd2eb166 7127 ++update_mode_lines;
9142dd5b
GM
7128
7129 /* If window configuration was changed, frames may have been
7130 marked garbaged. Clear them or we will experience
7131 surprises wrt scrolling. */
7132 if (frame_garbaged)
7133 clear_garbaged_frames ();
c6e89d6c
GM
7134 }
7135
90adcf20 7136
5f5c8ee5
GM
7137 /* If showing the region, and mark has changed, we must redisplay
7138 the whole window. The assignment to this_line_start_pos prevents
7139 the optimization directly below this if-statement. */
bd66d1ba
RS
7140 if (((!NILP (Vtransient_mark_mode)
7141 && !NILP (XBUFFER (w->buffer)->mark_active))
7142 != !NILP (w->region_showing))
82d04750
JB
7143 || (!NILP (w->region_showing)
7144 && !EQ (w->region_showing,
7145 Fmarker_position (XBUFFER (w->buffer)->mark))))
5f5c8ee5
GM
7146 CHARPOS (this_line_start_pos) = 0;
7147
7148 /* Optimize the case that only the line containing the cursor in the
7149 selected window has changed. Variables starting with this_ are
7150 set in display_line and record information about the line
7151 containing the cursor. */
7152 tlbufpos = this_line_start_pos;
7153 tlendpos = this_line_end_pos;
7154 if (!consider_all_windows_p
7155 && CHARPOS (tlbufpos) > 0
7156 && NILP (w->update_mode_line)
73af359d 7157 && !current_buffer->clip_changed
44fa5b1e 7158 && FRAME_VISIBLE_P (XFRAME (w->frame))
f21ef775 7159 && !FRAME_OBSCURED_P (XFRAME (w->frame))
5f5c8ee5 7160 /* Make sure recorded data applies to current buffer, etc. */
a2889657
JB
7161 && this_line_buffer == current_buffer
7162 && current_buffer == XBUFFER (w->buffer)
265a9e55 7163 && NILP (w->force_start)
5f5c8ee5
GM
7164 /* Point must be on the line that we have info recorded about. */
7165 && PT >= CHARPOS (tlbufpos)
7166 && PT <= Z - CHARPOS (tlendpos)
a2889657
JB
7167 /* All text outside that line, including its final newline,
7168 must be unchanged */
5f5c8ee5
GM
7169 && text_outside_line_unchanged_p (w, CHARPOS (tlbufpos),
7170 CHARPOS (tlendpos)))
7171 {
7172 if (CHARPOS (tlbufpos) > BEGV
7173 && FETCH_BYTE (BYTEPOS (tlbufpos) - 1) != '\n'
7174 && (CHARPOS (tlbufpos) == ZV
7175 || FETCH_BYTE (BYTEPOS (tlbufpos)) == '\n'))
a2889657
JB
7176 /* Former continuation line has disappeared by becoming empty */
7177 goto cancel;
7178 else if (XFASTINT (w->last_modified) < MODIFF
8850a573 7179 || XFASTINT (w->last_overlay_modified) < OVERLAY_MODIFF
a2889657
JB
7180 || MINI_WINDOW_P (w))
7181 {
1c9241f5
KH
7182 /* We have to handle the case of continuation around a
7183 wide-column character (See the comment in indent.c around
7184 line 885).
7185
7186 For instance, in the following case:
7187
7188 -------- Insert --------
7189 K_A_N_\\ `a' K_A_N_a\ `X_' are wide-column chars.
7190 J_I_ ==> J_I_ `^^' are cursors.
7191 ^^ ^^
7192 -------- --------
7193
7194 As we have to redraw the line above, we should goto cancel. */
7195
5f5c8ee5
GM
7196 struct it it;
7197 int line_height_before = this_line_pixel_height;
7198
7199 /* Note that start_display will handle the case that the
7200 line starting at tlbufpos is a continuation lines. */
7201 start_display (&it, w, tlbufpos);
7202
7203 /* Implementation note: It this still necessary? */
7204 if (it.current_x != this_line_start_x)
1c9241f5
KH
7205 goto cancel;
7206
5f5c8ee5
GM
7207 TRACE ((stderr, "trying display optimization 1\n"));
7208 w->cursor.vpos = -1;
a2889657 7209 overlay_arrow_seen = 0;
5f5c8ee5
GM
7210 it.vpos = this_line_vpos;
7211 it.current_y = this_line_y;
7212 it.glyph_row = MATRIX_ROW (w->desired_matrix, this_line_vpos);
7213 display_line (&it);
7214
a2889657 7215 /* If line contains point, is not continued,
5f5c8ee5
GM
7216 and ends at same distance from eob as before, we win */
7217 if (w->cursor.vpos >= 0
7218 /* Line is not continued, otherwise this_line_start_pos
7219 would have been set to 0 in display_line. */
7220 && CHARPOS (this_line_start_pos)
7221 /* Line ends as before. */
7222 && CHARPOS (this_line_end_pos) == CHARPOS (tlendpos)
7223 /* Line has same height as before. Otherwise other lines
7224 would have to be shifted up or down. */
7225 && this_line_pixel_height == line_height_before)
a2889657 7226 {
5f5c8ee5
GM
7227 /* If this is not the window's last line, we must adjust
7228 the charstarts of the lines below. */
7229 if (it.current_y < it.last_visible_y)
7230 {
7231 struct glyph_row *row
7232 = MATRIX_ROW (w->current_matrix, this_line_vpos + 1);
7233 int delta, delta_bytes;
7234
7235 if (Z - CHARPOS (tlendpos) == ZV)
7236 {
7237 /* This line ends at end of (accessible part of)
7238 buffer. There is no newline to count. */
7239 delta = (Z
7240 - CHARPOS (tlendpos)
7241 - MATRIX_ROW_START_CHARPOS (row));
7242 delta_bytes = (Z_BYTE
7243 - BYTEPOS (tlendpos)
7244 - MATRIX_ROW_START_BYTEPOS (row));
7245 }
7246 else
7247 {
7248 /* This line ends in a newline. Must take
7249 account of the newline and the rest of the
7250 text that follows. */
7251 delta = (Z
7252 - CHARPOS (tlendpos)
7253 - MATRIX_ROW_START_CHARPOS (row));
7254 delta_bytes = (Z_BYTE
7255 - BYTEPOS (tlendpos)
7256 - MATRIX_ROW_START_BYTEPOS (row));
7257 }
7258
7259 increment_glyph_matrix_buffer_positions (w->current_matrix,
7260 this_line_vpos + 1,
7261 w->current_matrix->nrows,
7262 delta, delta_bytes);
85bcef6c 7263 }
46db8486 7264
5f5c8ee5
GM
7265 /* If this row displays text now but previously didn't,
7266 or vice versa, w->window_end_vpos may have to be
7267 adjusted. */
7268 if ((it.glyph_row - 1)->displays_text_p)
7269 {
7270 if (XFASTINT (w->window_end_vpos) < this_line_vpos)
7271 XSETINT (w->window_end_vpos, this_line_vpos);
7272 }
7273 else if (XFASTINT (w->window_end_vpos) == this_line_vpos
7274 && this_line_vpos > 0)
7275 XSETINT (w->window_end_vpos, this_line_vpos - 1);
7276 w->window_end_valid = Qnil;
7277
7278 /* Update hint: No need to try to scroll in update_window. */
7279 w->desired_matrix->no_scrolling_p = 1;
7280
7281#if GLYPH_DEBUG
7282 *w->desired_matrix->method = 0;
7283 debug_method_add (w, "optimization 1");
7284#endif
a2889657
JB
7285 goto update;
7286 }
7287 else
7288 goto cancel;
7289 }
5f5c8ee5
GM
7290 else if (/* Cursor position hasn't changed. */
7291 PT == XFASTINT (w->last_point)
b6f0fe04
RS
7292 /* Make sure the cursor was last displayed
7293 in this window. Otherwise we have to reposition it. */
5f5c8ee5
GM
7294 && 0 <= w->cursor.vpos
7295 && XINT (w->height) > w->cursor.vpos)
a2889657
JB
7296 {
7297 if (!must_finish)
7298 {
c6e89d6c 7299 do_pending_window_change (1);
5f5c8ee5
GM
7300
7301 /* We used to always goto end_of_redisplay here, but this
7302 isn't enough if we have a blinking cursor. */
7303 if (w->cursor_off_p == w->last_cursor_off_p)
7304 goto end_of_redisplay;
a2889657
JB
7305 }
7306 goto update;
7307 }
8b51f1e3
KH
7308 /* If highlighting the region, or if the cursor is in the echo area,
7309 then we can't just move the cursor. */
bd66d1ba
RS
7310 else if (! (!NILP (Vtransient_mark_mode)
7311 && !NILP (current_buffer->mark_active))
293a54ce
RS
7312 && (w == XWINDOW (current_buffer->last_selected_window)
7313 || highlight_nonselected_windows)
8b51f1e3 7314 && NILP (w->region_showing)
8f897821 7315 && NILP (Vshow_trailing_whitespace)
8b51f1e3 7316 && !cursor_in_echo_area)
a2889657 7317 {
5f5c8ee5
GM
7318 struct it it;
7319 struct glyph_row *row;
7320
7321 /* Skip from tlbufpos to PT and see where it is. Note that
7322 PT may be in invisible text. If so, we will end at the
7323 next visible position. */
7324 init_iterator (&it, w, CHARPOS (tlbufpos), BYTEPOS (tlbufpos),
7325 NULL, DEFAULT_FACE_ID);
7326 it.current_x = this_line_start_x;
7327 it.current_y = this_line_y;
7328 it.vpos = this_line_vpos;
7329
7330 /* The call to move_it_to stops in front of PT, but
7331 moves over before-strings. */
7332 move_it_to (&it, PT, -1, -1, -1, MOVE_TO_POS);
7333
7334 if (it.vpos == this_line_vpos
7335 && (row = MATRIX_ROW (w->current_matrix, this_line_vpos),
7336 row->enabled_p))
a2889657 7337 {
5f5c8ee5
GM
7338 xassert (this_line_vpos == it.vpos);
7339 xassert (this_line_y == it.current_y);
7340 set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0);
a2889657
JB
7341 goto update;
7342 }
7343 else
7344 goto cancel;
7345 }
5f5c8ee5 7346
a2889657 7347 cancel:
5f5c8ee5
GM
7348 /* Text changed drastically or point moved off of line. */
7349 SET_MATRIX_ROW_ENABLED_P (w->desired_matrix, this_line_vpos, 0);
a2889657
JB
7350 }
7351
5f5c8ee5
GM
7352 CHARPOS (this_line_start_pos) = 0;
7353 consider_all_windows_p |= buffer_shared > 1;
7354 ++clear_face_cache_count;
a2889657 7355
5f5c8ee5
GM
7356
7357 /* Build desired matrices. If consider_all_windows_p is non-zero,
7358 do it for all windows on all frames. Otherwise do it for
7359 selected_window, only. */
463f6b91 7360
5f5c8ee5 7361 if (consider_all_windows_p)
a2889657 7362 {
35f56f96 7363 Lisp_Object tail, frame;
a2889657 7364
5f5c8ee5
GM
7365 /* Clear the face cache eventually. */
7366 if (clear_face_cache_count > CLEAR_FACE_CACHE_COUNT)
463f6b91 7367 {
5f5c8ee5 7368 clear_face_cache (0);
463f6b91
RS
7369 clear_face_cache_count = 0;
7370 }
31b24551 7371
5f5c8ee5
GM
7372 /* Recompute # windows showing selected buffer. This will be
7373 incremented each time such a window is displayed. */
a2889657
JB
7374 buffer_shared = 0;
7375
35f56f96 7376 FOR_EACH_FRAME (tail, frame)
30c566e4 7377 {
5f5c8ee5 7378 struct frame *f = XFRAME (frame);
886bd6f2 7379 if (FRAME_WINDOW_P (f) || f == sf)
9769686d 7380 {
5f5c8ee5
GM
7381 /* Mark all the scroll bars to be removed; we'll redeem
7382 the ones we want when we redisplay their windows. */
9769686d
RS
7383 if (condemn_scroll_bars_hook)
7384 (*condemn_scroll_bars_hook) (f);
30c566e4 7385
f21ef775 7386 if (FRAME_VISIBLE_P (f) && !FRAME_OBSCURED_P (f))
5f5c8ee5 7387 redisplay_windows (FRAME_ROOT_WINDOW (f));
30c566e4 7388
5f5c8ee5
GM
7389 /* Any scroll bars which redisplay_windows should have
7390 nuked should now go away. */
9769686d
RS
7391 if (judge_scroll_bars_hook)
7392 (*judge_scroll_bars_hook) (f);
7393 }
30c566e4 7394 }
a2889657 7395 }
886bd6f2
GM
7396 else if (FRAME_VISIBLE_P (sf)
7397 && !FRAME_OBSCURED_P (sf))
5f5c8ee5
GM
7398 redisplay_window (selected_window, 1);
7399
7400
7401 /* Compare desired and current matrices, perform output. */
7402
7403update:
7404
7405 /* If fonts changed, display again. */
7406 if (fonts_changed_p)
7407 goto retry;
a2889657 7408
a2889657
JB
7409 /* Prevent various kinds of signals during display update.
7410 stdio is not robust about handling signals,
7411 which can cause an apparent I/O error. */
7412 if (interrupt_input)
7413 unrequest_sigio ();
7414 stop_polling ();
7415
5f5c8ee5 7416 if (consider_all_windows_p)
a2889657
JB
7417 {
7418 Lisp_Object tail;
92a90e89
GM
7419 struct frame *f;
7420 int hscrolled_p;
a2889657
JB
7421
7422 pause = 0;
92a90e89 7423 hscrolled_p = 0;
a2889657 7424
92a90e89 7425 /* See if we have to hscroll. */
9472f927 7426 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
92a90e89
GM
7427 if (FRAMEP (XCAR (tail)))
7428 {
7429 f = XFRAME (XCAR (tail));
7430
7431 if ((FRAME_WINDOW_P (f)
886bd6f2 7432 || f == sf)
92a90e89
GM
7433 && FRAME_VISIBLE_P (f)
7434 && !FRAME_OBSCURED_P (f)
7435 && hscroll_windows (f->root_window))
7436 hscrolled_p = 1;
7437 }
7438
7439 if (hscrolled_p)
7440 goto retry;
a2889657 7441
92a90e89
GM
7442 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
7443 {
9472f927 7444 if (!FRAMEP (XCAR (tail)))
a2889657
JB
7445 continue;
7446
9472f927 7447 f = XFRAME (XCAR (tail));
1af9f229 7448
886bd6f2 7449 if ((FRAME_WINDOW_P (f) || f == sf)
f21ef775 7450 && FRAME_VISIBLE_P (f) && !FRAME_OBSCURED_P (f))
a2889657 7451 {
5f5c8ee5
GM
7452 /* Mark all windows as to be updated. */
7453 set_window_update_flags (XWINDOW (f->root_window), 1);
44fa5b1e 7454 pause |= update_frame (f, 0, 0);
a2889657 7455 if (!pause)
efc63ef0
RS
7456 {
7457 mark_window_display_accurate (f->root_window, 1);
7458 if (frame_up_to_date_hook != 0)
7459 (*frame_up_to_date_hook) (f);
7460 }
a2889657
JB
7461 }
7462 }
7463 }
7464 else
6e8290aa 7465 {
886bd6f2
GM
7466 if (FRAME_VISIBLE_P (sf)
7467 && !FRAME_OBSCURED_P (sf))
5f5c8ee5 7468 {
92a90e89
GM
7469 if (hscroll_windows (selected_window))
7470 goto retry;
7471
5f5c8ee5 7472 XWINDOW (selected_window)->must_be_updated_p = 1;
886bd6f2 7473 pause = update_frame (sf, 0, 0);
5f5c8ee5 7474 }
4d641a15
KH
7475 else
7476 pause = 0;
d724d989 7477
8de2d90b 7478 /* We may have called echo_area_display at the top of this
44fa5b1e
JB
7479 function. If the echo area is on another frame, that may
7480 have put text on a frame other than the selected one, so the
7481 above call to update_frame would not have caught it. Catch
8de2d90b
JB
7482 it here. */
7483 {
84faf44c 7484 Lisp_Object mini_window;
5f5c8ee5 7485 struct frame *mini_frame;
84faf44c 7486
886bd6f2 7487 mini_window = FRAME_MINIBUF_WINDOW (sf);
84faf44c 7488 mini_frame = XFRAME (WINDOW_FRAME (XWINDOW (mini_window)));
8de2d90b 7489
886bd6f2 7490 if (mini_frame != sf && FRAME_WINDOW_P (mini_frame))
5f5c8ee5
GM
7491 {
7492 XWINDOW (mini_window)->must_be_updated_p = 1;
7493 pause |= update_frame (mini_frame, 0, 0);
7494 if (!pause && hscroll_windows (mini_window))
7495 goto retry;
7496 }
8de2d90b 7497 }
6e8290aa 7498 }
a2889657 7499
5f5c8ee5
GM
7500 /* If display was paused because of pending input, make sure we do a
7501 thorough update the next time. */
a2889657
JB
7502 if (pause)
7503 {
5f5c8ee5
GM
7504 /* Prevent the optimization at the beginning of
7505 redisplay_internal that tries a single-line update of the
7506 line containing the cursor in the selected window. */
7507 CHARPOS (this_line_start_pos) = 0;
7508
7509 /* Let the overlay arrow be updated the next time. */
265a9e55 7510 if (!NILP (last_arrow_position))
a2889657
JB
7511 {
7512 last_arrow_position = Qt;
7513 last_arrow_string = Qt;
7514 }
5f5c8ee5
GM
7515
7516 /* If we pause after scrolling, some rows in the current
7517 matrices of some windows are not valid. */
7518 if (!WINDOW_FULL_WIDTH_P (w)
7519 && !FRAME_WINDOW_P (XFRAME (w->frame)))
a2889657
JB
7520 update_mode_lines = 1;
7521 }
7522
5f5c8ee5
GM
7523 /* Now text on frame agrees with windows, so put info into the
7524 windows for partial redisplay to follow. */
a2889657
JB
7525 if (!pause)
7526 {
7527 register struct buffer *b = XBUFFER (w->buffer);
7528
9142dd5b
GM
7529 BUF_UNCHANGED_MODIFIED (b) = BUF_MODIFF (b);
7530 BUF_OVERLAY_UNCHANGED_MODIFIED (b) = BUF_OVERLAY_MODIFF (b);
7531 BUF_BEG_UNCHANGED (b) = BUF_GPT (b) - BUF_BEG (b);
7532 BUF_END_UNCHANGED (b) = BUF_Z (b) - BUF_GPT (b);
a2889657 7533
5f5c8ee5 7534 if (consider_all_windows_p)
886bd6f2 7535 mark_window_display_accurate (FRAME_ROOT_WINDOW (sf), 1);
a2889657
JB
7536 else
7537 {
5f5c8ee5
GM
7538 XSETFASTINT (w->last_point, BUF_PT (b));
7539 w->last_cursor = w->cursor;
7540 w->last_cursor_off_p = w->cursor_off_p;
7541
28995e67 7542 b->clip_changed = 0;
9142dd5b 7543 b->prevent_redisplay_optimizations_p = 0;
a2889657 7544 w->update_mode_line = Qnil;
c2213350 7545 XSETFASTINT (w->last_modified, BUF_MODIFF (b));
8850a573 7546 XSETFASTINT (w->last_overlay_modified, BUF_OVERLAY_MODIFF (b));
538f13d4
RS
7547 w->last_had_star
7548 = (BUF_MODIFF (XBUFFER (w->buffer)) > BUF_SAVE_MODIFF (XBUFFER (w->buffer))
7549 ? Qt : Qnil);
3ee4159a
RS
7550
7551 /* Record if we are showing a region, so can make sure to
7552 update it fully at next redisplay. */
7553 w->region_showing = (!NILP (Vtransient_mark_mode)
293a54ce
RS
7554 && (w == XWINDOW (current_buffer->last_selected_window)
7555 || highlight_nonselected_windows)
3ee4159a
RS
7556 && !NILP (XBUFFER (w->buffer)->mark_active)
7557 ? Fmarker_position (XBUFFER (w->buffer)->mark)
7558 : Qnil);
7559
d2f84654 7560 w->window_end_valid = w->buffer;
d45de95b 7561 last_arrow_position = COERCE_MARKER (Voverlay_arrow_position);
a2889657 7562 last_arrow_string = Voverlay_arrow_string;
efc63ef0 7563 if (frame_up_to_date_hook != 0)
886bd6f2 7564 (*frame_up_to_date_hook) (sf);
9142dd5b
GM
7565
7566 w->current_matrix->buffer = b;
7567 w->current_matrix->begv = BUF_BEGV (b);
7568 w->current_matrix->zv = BUF_ZV (b);
a2889657 7569 }
5f5c8ee5 7570
a2889657
JB
7571 update_mode_lines = 0;
7572 windows_or_buffers_changed = 0;
7573 }
7574
5f5c8ee5
GM
7575 /* Start SIGIO interrupts coming again. Having them off during the
7576 code above makes it less likely one will discard output, but not
7577 impossible, since there might be stuff in the system buffer here.
a2889657 7578 But it is much hairier to try to do anything about that. */
a2889657
JB
7579 if (interrupt_input)
7580 request_sigio ();
7581 start_polling ();
7582
5f5c8ee5
GM
7583 /* If a frame has become visible which was not before, redisplay
7584 again, so that we display it. Expose events for such a frame
7585 (which it gets when becoming visible) don't call the parts of
7586 redisplay constructing glyphs, so simply exposing a frame won't
7587 display anything in this case. So, we have to display these
7588 frames here explicitly. */
11c52c4f
RS
7589 if (!pause)
7590 {
7591 Lisp_Object tail, frame;
7592 int new_count = 0;
7593
7594 FOR_EACH_FRAME (tail, frame)
7595 {
7596 int this_is_visible = 0;
8e83f802
RS
7597
7598 if (XFRAME (frame)->visible)
7599 this_is_visible = 1;
7600 FRAME_SAMPLE_VISIBILITY (XFRAME (frame));
7601 if (XFRAME (frame)->visible)
7602 this_is_visible = 1;
11c52c4f
RS
7603
7604 if (this_is_visible)
7605 new_count++;
7606 }
7607
89819bdd 7608 if (new_count != number_of_visible_frames)
11c52c4f
RS
7609 windows_or_buffers_changed++;
7610 }
7611
44fa5b1e 7612 /* Change frame size now if a change is pending. */
c6e89d6c 7613 do_pending_window_change (1);
d8e242fd 7614
8b32d885
RS
7615 /* If we just did a pending size change, or have additional
7616 visible frames, redisplay again. */
3c8c72e0 7617 if (windows_or_buffers_changed && !pause)
8b32d885 7618 goto retry;
5f5c8ee5
GM
7619
7620 end_of_redisplay:;
c6e89d6c 7621
28514cd9 7622 unbind_to (count, Qnil);
a2889657
JB
7623}
7624
5f5c8ee5
GM
7625
7626/* Redisplay, but leave alone any recent echo area message unless
7627 another message has been requested in its place.
a2889657
JB
7628
7629 This is useful in situations where you need to redisplay but no
7630 user action has occurred, making it inappropriate for the message
7631 area to be cleared. See tracking_off and
7632 wait_reading_process_input for examples of these situations. */
7633
8991bb31 7634void
a2889657
JB
7635redisplay_preserve_echo_area ()
7636{
c6e89d6c 7637 if (!NILP (echo_area_buffer[1]))
a2889657 7638 {
c6e89d6c
GM
7639 /* We have a previously displayed message, but no current
7640 message. Redisplay the previous message. */
7641 display_last_displayed_message_p = 1;
e9874cee 7642 redisplay_internal (1);
c6e89d6c 7643 display_last_displayed_message_p = 0;
a2889657
JB
7644 }
7645 else
e9874cee 7646 redisplay_internal (1);
a2889657
JB
7647}
7648
5f5c8ee5 7649
28514cd9
GM
7650/* Function registered with record_unwind_protect in
7651 redisplay_internal. Clears the flag indicating that a redisplay is
7652 in progress. */
7653
7654static Lisp_Object
7655unwind_redisplay (old_redisplaying_p)
7656 Lisp_Object old_redisplaying_p;
7657{
7658 redisplaying_p = XFASTINT (old_redisplaying_p);
c6e89d6c 7659 return Qnil;
28514cd9
GM
7660}
7661
7662
5f5c8ee5
GM
7663/* Mark the display of windows in the window tree rooted at WINDOW as
7664 accurate or inaccurate. If FLAG is non-zero mark display of WINDOW
7665 as accurate. If FLAG is zero arrange for WINDOW to be redisplayed
7666 the next time redisplay_internal is called. */
7667
a2889657 7668void
5f5c8ee5 7669mark_window_display_accurate (window, accurate_p)
a2889657 7670 Lisp_Object window;
5f5c8ee5 7671 int accurate_p;
a2889657 7672{
5f5c8ee5
GM
7673 struct window *w;
7674
7675 for (; !NILP (window); window = w->next)
a2889657
JB
7676 {
7677 w = XWINDOW (window);
7678
5f5c8ee5 7679 if (BUFFERP (w->buffer))
bd66d1ba 7680 {
5f5c8ee5
GM
7681 struct buffer *b = XBUFFER (w->buffer);
7682
c2213350 7683 XSETFASTINT (w->last_modified,
5f5c8ee5 7684 accurate_p ? BUF_MODIFF (b) : 0);
8850a573 7685 XSETFASTINT (w->last_overlay_modified,
5f5c8ee5
GM
7686 accurate_p ? BUF_OVERLAY_MODIFF (b) : 0);
7687 w->last_had_star = (BUF_MODIFF (b) > BUF_SAVE_MODIFF (b)
7688 ? Qt : Qnil);
bd66d1ba 7689
5f5c8ee5
GM
7690#if 0 /* I don't think this is necessary because display_line does it.
7691 Let's check it. */
bd66d1ba
RS
7692 /* Record if we are showing a region, so can make sure to
7693 update it fully at next redisplay. */
5f5c8ee5
GM
7694 w->region_showing
7695 = (!NILP (Vtransient_mark_mode)
7696 && (w == XWINDOW (current_buffer->last_selected_window)
7697 || highlight_nonselected_windows)
7698 && (!NILP (b->mark_active)
7699 ? Fmarker_position (b->mark)
7700 : Qnil));
7701#endif
7702
7703 if (accurate_p)
7704 {
7705 b->clip_changed = 0;
9142dd5b
GM
7706 b->prevent_redisplay_optimizations_p = 0;
7707 w->current_matrix->buffer = b;
7708 w->current_matrix->begv = BUF_BEGV (b);
7709 w->current_matrix->zv = BUF_ZV (b);
5f5c8ee5
GM
7710 w->last_cursor = w->cursor;
7711 w->last_cursor_off_p = w->cursor_off_p;
7712 if (w == XWINDOW (selected_window))
7713 w->last_point = BUF_PT (b);
7714 else
7715 w->last_point = XMARKER (w->pointm)->charpos;
7716 }
bd66d1ba
RS
7717 }
7718
d2f84654 7719 w->window_end_valid = w->buffer;
a2889657
JB
7720 w->update_mode_line = Qnil;
7721
265a9e55 7722 if (!NILP (w->vchild))
5f5c8ee5 7723 mark_window_display_accurate (w->vchild, accurate_p);
265a9e55 7724 if (!NILP (w->hchild))
5f5c8ee5 7725 mark_window_display_accurate (w->hchild, accurate_p);
a2889657
JB
7726 }
7727
5f5c8ee5 7728 if (accurate_p)
a2889657 7729 {
d45de95b 7730 last_arrow_position = COERCE_MARKER (Voverlay_arrow_position);
a2889657
JB
7731 last_arrow_string = Voverlay_arrow_string;
7732 }
7733 else
7734 {
5f5c8ee5
GM
7735 /* Force a thorough redisplay the next time by setting
7736 last_arrow_position and last_arrow_string to t, which is
7737 unequal to any useful value of Voverlay_arrow_... */
a2889657
JB
7738 last_arrow_position = Qt;
7739 last_arrow_string = Qt;
7740 }
7741}
5f5c8ee5
GM
7742
7743
7744/* Return value in display table DP (Lisp_Char_Table *) for character
7745 C. Since a display table doesn't have any parent, we don't have to
7746 follow parent. Do not call this function directly but use the
7747 macro DISP_CHAR_VECTOR. */
7748
7749Lisp_Object
7750disp_char_vector (dp, c)
7751 struct Lisp_Char_Table *dp;
7752 int c;
7753{
7754 int code[4], i;
7755 Lisp_Object val;
7756
7757 if (SINGLE_BYTE_CHAR_P (c))
7758 return (dp->contents[c]);
7759
7760 SPLIT_NON_ASCII_CHAR (c, code[0], code[1], code[2]);
7761 if (code[0] != CHARSET_COMPOSITION)
7762 {
7763 if (code[1] < 32)
7764 code[1] = -1;
7765 else if (code[2] < 32)
7766 code[2] = -1;
7767 }
7768
7769 /* Here, the possible range of code[0] (== charset ID) is
7770 128..max_charset. Since the top level char table contains data
7771 for multibyte characters after 256th element, we must increment
7772 code[0] by 128 to get a correct index. */
7773 code[0] += 128;
7774 code[3] = -1; /* anchor */
7775
7776 for (i = 0; code[i] >= 0; i++, dp = XCHAR_TABLE (val))
7777 {
7778 val = dp->contents[code[i]];
7779 if (!SUB_CHAR_TABLE_P (val))
7780 return (NILP (val) ? dp->defalt : val);
7781 }
7782
7783 /* Here, val is a sub char table. We return the default value of
7784 it. */
7785 return (dp->defalt);
7786}
7787
7788
a2889657 7789\f
5f5c8ee5
GM
7790/***********************************************************************
7791 Window Redisplay
7792 ***********************************************************************/
a2725ab2 7793
5f5c8ee5 7794/* Redisplay all leaf windows in the window tree rooted at WINDOW. */
90adcf20
RS
7795
7796static void
5f5c8ee5
GM
7797redisplay_windows (window)
7798 Lisp_Object window;
90adcf20 7799{
5f5c8ee5
GM
7800 while (!NILP (window))
7801 {
7802 struct window *w = XWINDOW (window);
7803
7804 if (!NILP (w->hchild))
7805 redisplay_windows (w->hchild);
7806 else if (!NILP (w->vchild))
7807 redisplay_windows (w->vchild);
7808 else
7809 redisplay_window (window, 0);
a2725ab2 7810
5f5c8ee5
GM
7811 window = w->next;
7812 }
7813}
7814
7815
7816/* Set cursor position of W. PT is assumed to be displayed in ROW.
7817 DELTA is the number of bytes by which positions recorded in ROW
7818 differ from current buffer positions. */
7819
7820void
7821set_cursor_from_row (w, row, matrix, delta, delta_bytes, dy, dvpos)
7822 struct window *w;
7823 struct glyph_row *row;
7824 struct glyph_matrix *matrix;
7825 int delta, delta_bytes, dy, dvpos;
7826{
7827 struct glyph *glyph = row->glyphs[TEXT_AREA];
7828 struct glyph *end = glyph + row->used[TEXT_AREA];
7829 int x = row->x;
7830 int pt_old = PT - delta;
7831
7832 /* Skip over glyphs not having an object at the start of the row.
7833 These are special glyphs like truncation marks on terminal
7834 frames. */
7835 if (row->displays_text_p)
7836 while (glyph < end
7837 && !glyph->object
7838 && glyph->charpos < 0)
7839 {
7840 x += glyph->pixel_width;
7841 ++glyph;
7842 }
7843
7844 while (glyph < end
7845 && glyph->object
7846 && (!BUFFERP (glyph->object)
7847 || glyph->charpos < pt_old))
7848 {
7849 x += glyph->pixel_width;
7850 ++glyph;
7851 }
7852
7853 w->cursor.hpos = glyph - row->glyphs[TEXT_AREA];
7854 w->cursor.x = x;
7855 w->cursor.vpos = MATRIX_ROW_VPOS (row, matrix) + dvpos;
7856 w->cursor.y = row->y + dy;
7857
7858 if (w == XWINDOW (selected_window))
7859 {
7860 if (!row->continued_p
7861 && !MATRIX_ROW_CONTINUATION_LINE_P (row)
7862 && row->x == 0)
7863 {
7864 this_line_buffer = XBUFFER (w->buffer);
7865
7866 CHARPOS (this_line_start_pos)
7867 = MATRIX_ROW_START_CHARPOS (row) + delta;
7868 BYTEPOS (this_line_start_pos)
7869 = MATRIX_ROW_START_BYTEPOS (row) + delta_bytes;
7870
7871 CHARPOS (this_line_end_pos)
7872 = Z - (MATRIX_ROW_END_CHARPOS (row) + delta);
7873 BYTEPOS (this_line_end_pos)
7874 = Z_BYTE - (MATRIX_ROW_END_BYTEPOS (row) + delta_bytes);
7875
7876 this_line_y = w->cursor.y;
7877 this_line_pixel_height = row->height;
7878 this_line_vpos = w->cursor.vpos;
7879 this_line_start_x = row->x;
7880 }
7881 else
7882 CHARPOS (this_line_start_pos) = 0;
7883 }
7884}
7885
7886
7887/* Run window scroll functions, if any, for WINDOW with new window
756a3cb6
RS
7888 start STARTP. Sets the window start of WINDOW to that position.
7889
7890 We assume that the window's buffer is really current. */
5f5c8ee5
GM
7891
7892static INLINE struct text_pos
7893run_window_scroll_functions (window, startp)
7894 Lisp_Object window;
7895 struct text_pos startp;
7896{
7897 struct window *w = XWINDOW (window);
7898 SET_MARKER_FROM_TEXT_POS (w->start, startp);
756a3cb6
RS
7899
7900 if (current_buffer != XBUFFER (w->buffer))
7901 abort ();
7902
5f5c8ee5
GM
7903 if (!NILP (Vwindow_scroll_functions))
7904 {
7905 run_hook_with_args_2 (Qwindow_scroll_functions, window,
7906 make_number (CHARPOS (startp)));
7907 SET_TEXT_POS_FROM_MARKER (startp, w->start);
756a3cb6
RS
7908 /* In case the hook functions switch buffers. */
7909 if (current_buffer != XBUFFER (w->buffer))
7910 set_buffer_internal_1 (XBUFFER (w->buffer));
5f5c8ee5 7911 }
90adcf20 7912
5f5c8ee5
GM
7913 return startp;
7914}
7915
7916
7917/* Modify the desired matrix of window W and W->vscroll so that the
7918 line containing the cursor is fully visible. */
7919
7920static void
7921make_cursor_line_fully_visible (w)
7922 struct window *w;
7923{
7924 struct glyph_matrix *matrix;
7925 struct glyph_row *row;
045dee35 7926 int header_line_height;
5f5c8ee5
GM
7927
7928 /* It's not always possible to find the cursor, e.g, when a window
7929 is full of overlay strings. Don't do anything in that case. */
7930 if (w->cursor.vpos < 0)
7931 return;
7932
7933 matrix = w->desired_matrix;
7934 row = MATRIX_ROW (matrix, w->cursor.vpos);
7935
7936 /* If row->y == top y of window display area, the window isn't tall
7937 enough to display a single line. There is nothing we can do
7938 about it. */
045dee35
GM
7939 header_line_height = WINDOW_DISPLAY_HEADER_LINE_HEIGHT (w);
7940 if (row->y == header_line_height)
5f5c8ee5
GM
7941 return;
7942
7943 if (MATRIX_ROW_PARTIALLY_VISIBLE_AT_TOP_P (w, row))
7944 {
7945 int dy = row->height - row->visible_height;
7946 w->vscroll = 0;
7947 w->cursor.y += dy;
7948 shift_glyph_matrix (w, matrix, 0, matrix->nrows, dy);
7949 }
7950 else if (MATRIX_ROW_PARTIALLY_VISIBLE_AT_BOTTOM_P (w, row))
7951 {
7952 int dy = - (row->height - row->visible_height);
7953 w->vscroll = dy;
7954 w->cursor.y += dy;
7955 shift_glyph_matrix (w, matrix, 0, matrix->nrows, dy);
7956 }
7957
7958 /* When we change the cursor y-position of the selected window,
7959 change this_line_y as well so that the display optimization for
7960 the cursor line of the selected window in redisplay_internal uses
7961 the correct y-position. */
7962 if (w == XWINDOW (selected_window))
7963 this_line_y = w->cursor.y;
7964}
7965
7966
7967/* Try scrolling PT into view in window WINDOW. JUST_THIS_ONE_P
7968 non-zero means only WINDOW is redisplayed in redisplay_internal.
7969 TEMP_SCROLL_STEP has the same meaning as scroll_step, and is used
7970 in redisplay_window to bring a partially visible line into view in
7971 the case that only the cursor has moved.
7972
7973 Value is
7974
7975 1 if scrolling succeeded
7976
7977 0 if scrolling didn't find point.
7978
7979 -1 if new fonts have been loaded so that we must interrupt
7980 redisplay, adjust glyph matrices, and try again. */
7981
7982static int
7983try_scrolling (window, just_this_one_p, scroll_conservatively,
7984 scroll_step, temp_scroll_step)
7985 Lisp_Object window;
7986 int just_this_one_p;
7987 int scroll_conservatively, scroll_step;
7988 int temp_scroll_step;
7989{
7990 struct window *w = XWINDOW (window);
7991 struct frame *f = XFRAME (w->frame);
7992 struct text_pos scroll_margin_pos;
7993 struct text_pos pos;
7994 struct text_pos startp;
7995 struct it it;
7996 Lisp_Object window_end;
7997 int this_scroll_margin;
7998 int dy = 0;
7999 int scroll_max;
8000 int line_height, rc;
8001 int amount_to_scroll = 0;
8002 Lisp_Object aggressive;
8003 int height;
8004
8005#if GLYPH_DEBUG
8006 debug_method_add (w, "try_scrolling");
78614721 8007#endif
5f5c8ee5
GM
8008
8009 SET_TEXT_POS_FROM_MARKER (startp, w->start);
8010
8011 /* Compute scroll margin height in pixels. We scroll when point is
8012 within this distance from the top or bottom of the window. */
8013 if (scroll_margin > 0)
90adcf20 8014 {
5f5c8ee5
GM
8015 this_scroll_margin = min (scroll_margin, XINT (w->height) / 4);
8016 this_scroll_margin *= CANON_Y_UNIT (f);
8017 }
8018 else
8019 this_scroll_margin = 0;
8020
8021 /* Compute how much we should try to scroll maximally to bring point
8022 into view. */
8023 if (scroll_step)
8024 scroll_max = scroll_step;
8025 else if (scroll_conservatively)
8026 scroll_max = scroll_conservatively;
8027 else if (temp_scroll_step)
8028 scroll_max = temp_scroll_step;
8029 else if (NUMBERP (current_buffer->scroll_down_aggressively)
8030 || NUMBERP (current_buffer->scroll_up_aggressively))
8031 /* We're trying to scroll because of aggressive scrolling
8032 but no scroll_step is set. Choose an arbitrary one. Maybe
8033 there should be a variable for this. */
8034 scroll_max = 10;
8035 else
8036 scroll_max = 0;
8037 scroll_max *= CANON_Y_UNIT (f);
8038
8039 /* Decide whether we have to scroll down. Start at the window end
8040 and move this_scroll_margin up to find the position of the scroll
8041 margin. */
8042 window_end = Fwindow_end (window, Qt);
8043 CHARPOS (scroll_margin_pos) = XINT (window_end);
8044 BYTEPOS (scroll_margin_pos) = CHAR_TO_BYTE (CHARPOS (scroll_margin_pos));
8045 if (this_scroll_margin)
8046 {
8047 start_display (&it, w, scroll_margin_pos);
8048 move_it_vertically (&it, - this_scroll_margin);
8049 scroll_margin_pos = it.current.pos;
8050 }
8051
8052 if (PT >= CHARPOS (scroll_margin_pos))
8053 {
8054 int y0;
8055
8056 /* Point is in the scroll margin at the bottom of the window, or
8057 below. Compute a new window start that makes point visible. */
8058
8059 /* Compute the distance from the scroll margin to PT.
8060 Give up if the distance is greater than scroll_max. */
8061 start_display (&it, w, scroll_margin_pos);
8062 y0 = it.current_y;
8063 move_it_to (&it, PT, 0, it.last_visible_y, -1,
8064 MOVE_TO_POS | MOVE_TO_X | MOVE_TO_Y);
8065 line_height = (it.max_ascent + it.max_descent
8066 ? it.max_ascent + it.max_descent
8067 : last_height);
8068 dy = it.current_y + line_height - y0;
8069 if (dy > scroll_max)
8070 return 0;
8071
8072 /* Move the window start down. If scrolling conservatively,
8073 move it just enough down to make point visible. If
8074 scroll_step is set, move it down by scroll_step. */
8075 start_display (&it, w, startp);
8076
8077 if (scroll_conservatively)
8078 amount_to_scroll = dy;
8079 else if (scroll_step || temp_scroll_step)
8080 amount_to_scroll = scroll_max;
8081 else
90adcf20 8082 {
5f5c8ee5
GM
8083 aggressive = current_buffer->scroll_down_aggressively;
8084 height = (WINDOW_DISPLAY_HEIGHT_NO_MODE_LINE (w)
045dee35 8085 - WINDOW_DISPLAY_HEADER_LINE_HEIGHT (w));
5f5c8ee5
GM
8086 if (NUMBERP (aggressive))
8087 amount_to_scroll = XFLOATINT (aggressive) * height;
8088 }
a2725ab2 8089
5f5c8ee5
GM
8090 if (amount_to_scroll <= 0)
8091 return 0;
a2725ab2 8092
5f5c8ee5
GM
8093 move_it_vertically (&it, amount_to_scroll);
8094 startp = it.current.pos;
8095 }
8096 else
8097 {
8098 /* See if point is inside the scroll margin at the top of the
8099 window. */
8100 scroll_margin_pos = startp;
8101 if (this_scroll_margin)
8102 {
8103 start_display (&it, w, startp);
8104 move_it_vertically (&it, this_scroll_margin);
8105 scroll_margin_pos = it.current.pos;
8106 }
8107
8108 if (PT < CHARPOS (scroll_margin_pos))
8109 {
8110 /* Point is in the scroll margin at the top of the window or
8111 above what is displayed in the window. */
8112 int y0;
8113
8114 /* Compute the vertical distance from PT to the scroll
8115 margin position. Give up if distance is greater than
8116 scroll_max. */
8117 SET_TEXT_POS (pos, PT, PT_BYTE);
8118 start_display (&it, w, pos);
8119 y0 = it.current_y;
8120 move_it_to (&it, CHARPOS (scroll_margin_pos), 0,
8121 it.last_visible_y, -1,
8122 MOVE_TO_POS | MOVE_TO_X | MOVE_TO_Y);
8123 dy = it.current_y - y0;
8124 if (dy > scroll_max)
8125 return 0;
8126
8127 /* Compute new window start. */
8128 start_display (&it, w, startp);
8129
8130 if (scroll_conservatively)
8131 amount_to_scroll = dy;
8132 else if (scroll_step || temp_scroll_step)
8133 amount_to_scroll = scroll_max;
538f13d4 8134 else
5f5c8ee5
GM
8135 {
8136 aggressive = current_buffer->scroll_up_aggressively;
8137 height = (WINDOW_DISPLAY_HEIGHT_NO_MODE_LINE (w)
045dee35 8138 - WINDOW_DISPLAY_HEADER_LINE_HEIGHT (w));
5f5c8ee5
GM
8139 if (NUMBERP (aggressive))
8140 amount_to_scroll = XFLOATINT (aggressive) * height;
8141 }
a2725ab2 8142
5f5c8ee5
GM
8143 if (amount_to_scroll <= 0)
8144 return 0;
8145
8146 move_it_vertically (&it, - amount_to_scroll);
8147 startp = it.current.pos;
90adcf20
RS
8148 }
8149 }
a2889657 8150
5f5c8ee5
GM
8151 /* Run window scroll functions. */
8152 startp = run_window_scroll_functions (window, startp);
90adcf20 8153
5f5c8ee5
GM
8154 /* Display the window. Give up if new fonts are loaded, or if point
8155 doesn't appear. */
8156 if (!try_window (window, startp))
8157 rc = -1;
8158 else if (w->cursor.vpos < 0)
8159 {
8160 clear_glyph_matrix (w->desired_matrix);
8161 rc = 0;
8162 }
8163 else
8164 {
8165 /* Maybe forget recorded base line for line number display. */
8166 if (!just_this_one_p
8167 || current_buffer->clip_changed
9142dd5b 8168 || BEG_UNCHANGED < CHARPOS (startp))
5f5c8ee5
GM
8169 w->base_line_number = Qnil;
8170
8171 /* If cursor ends up on a partially visible line, shift display
8172 lines up or down. */
8173 make_cursor_line_fully_visible (w);
8174 rc = 1;
8175 }
8176
8177 return rc;
a2889657
JB
8178}
8179
5f5c8ee5
GM
8180
8181/* Compute a suitable window start for window W if display of W starts
8182 on a continuation line. Value is non-zero if a new window start
8183 was computed.
8184
8185 The new window start will be computed, based on W's width, starting
8186 from the start of the continued line. It is the start of the
8187 screen line with the minimum distance from the old start W->start. */
8188
8189static int
8190compute_window_start_on_continuation_line (w)
8191 struct window *w;
1f1ff51d 8192{
5f5c8ee5
GM
8193 struct text_pos pos, start_pos;
8194 int window_start_changed_p = 0;
1f1ff51d 8195
5f5c8ee5 8196 SET_TEXT_POS_FROM_MARKER (start_pos, w->start);
1f1ff51d 8197
5f5c8ee5
GM
8198 /* If window start is on a continuation line... Window start may be
8199 < BEGV in case there's invisible text at the start of the
8200 buffer (M-x rmail, for example). */
8201 if (CHARPOS (start_pos) > BEGV
8202 && FETCH_BYTE (BYTEPOS (start_pos) - 1) != '\n')
1f1ff51d 8203 {
5f5c8ee5
GM
8204 struct it it;
8205 struct glyph_row *row;
8206
8207 /* Find the start of the continued line. This should be fast
8208 because scan_buffer is fast (newline cache). */
045dee35 8209 row = w->desired_matrix->rows + (WINDOW_WANTS_HEADER_LINE_P (w) ? 1 : 0);
5f5c8ee5
GM
8210 init_iterator (&it, w, CHARPOS (start_pos), BYTEPOS (start_pos),
8211 row, DEFAULT_FACE_ID);
8212 reseat_at_previous_visible_line_start (&it);
8213
8214 /* If the line start is "too far" away from the window start,
8215 say it takes too much time to compute a new window start. */
8216 if (CHARPOS (start_pos) - IT_CHARPOS (it)
8217 < XFASTINT (w->height) * XFASTINT (w->width))
8218 {
8219 int min_distance, distance;
8220
8221 /* Move forward by display lines to find the new window
8222 start. If window width was enlarged, the new start can
8223 be expected to be > the old start. If window width was
8224 decreased, the new window start will be < the old start.
8225 So, we're looking for the display line start with the
8226 minimum distance from the old window start. */
8227 pos = it.current.pos;
8228 min_distance = INFINITY;
8229 while ((distance = abs (CHARPOS (start_pos) - IT_CHARPOS (it))),
8230 distance < min_distance)
8231 {
8232 min_distance = distance;
8233 pos = it.current.pos;
8234 move_it_by_lines (&it, 1, 0);
8235 }
8236
8237 /* Set the window start there. */
8238 SET_MARKER_FROM_TEXT_POS (w->start, pos);
8239 window_start_changed_p = 1;
8240 }
1f1ff51d 8241 }
5f5c8ee5
GM
8242
8243 return window_start_changed_p;
1f1ff51d
KH
8244}
8245
5f5c8ee5
GM
8246
8247/* Redisplay leaf window WINDOW. JUST_THIS_ONE_P non-zero means only
8248 selected_window is redisplayed. */
90adcf20 8249
a2889657 8250static void
5f5c8ee5 8251redisplay_window (window, just_this_one_p)
a2889657 8252 Lisp_Object window;
5f5c8ee5 8253 int just_this_one_p;
a2889657 8254{
5f5c8ee5
GM
8255 struct window *w = XWINDOW (window);
8256 struct frame *f = XFRAME (w->frame);
8257 struct buffer *buffer = XBUFFER (w->buffer);
a2889657 8258 struct buffer *old = current_buffer;
5f5c8ee5 8259 struct text_pos lpoint, opoint, startp;
e481f960 8260 int update_mode_line;
5f5c8ee5
GM
8261 int tem;
8262 struct it it;
8263 /* Record it now because it's overwritten. */
8264 int current_matrix_up_to_date_p = 0;
5ba50c51 8265 int really_switched_buffer = 0;
5f5c8ee5 8266 int temp_scroll_step = 0;
2e54982e 8267 int count = specpdl_ptr - specpdl;
a2889657 8268
5f5c8ee5
GM
8269 SET_TEXT_POS (lpoint, PT, PT_BYTE);
8270 opoint = lpoint;
a2889657 8271
5f5c8ee5
GM
8272 /* W must be a leaf window here. */
8273 xassert (!NILP (w->buffer));
8274#if GLYPH_DEBUG
8275 *w->desired_matrix->method = 0;
8276#endif
2e54982e
RS
8277
8278 specbind (Qinhibit_point_motion_hooks, Qt);
9142dd5b
GM
8279
8280 reconsider_clip_changes (w, buffer);
8281
5f5c8ee5
GM
8282 /* Has the mode line to be updated? */
8283 update_mode_line = (!NILP (w->update_mode_line)
8284 || update_mode_lines
8285 || buffer->clip_changed);
8de2d90b
JB
8286
8287 if (MINI_WINDOW_P (w))
8288 {
5f5c8ee5 8289 if (w == XWINDOW (echo_area_window)
c6e89d6c 8290 && !NILP (echo_area_buffer[0]))
5f5c8ee5
GM
8291 {
8292 if (update_mode_line)
8293 /* We may have to update a tty frame's menu bar or a
e037b9ec 8294 tool-bar. Example `M-x C-h C-h C-g'. */
5f5c8ee5
GM
8295 goto finish_menu_bars;
8296 else
8297 /* We've already displayed the echo area glyphs in this window. */
8298 goto finish_scroll_bars;
8299 }
73af359d 8300 else if (w != XWINDOW (minibuf_window))
8de2d90b 8301 {
5f5c8ee5
GM
8302 /* W is a mini-buffer window, but it's not the currently
8303 active one, so clear it. */
8304 int yb = window_text_bottom_y (w);
8305 struct glyph_row *row;
8306 int y;
8307
8308 for (y = 0, row = w->desired_matrix->rows;
8309 y < yb;
8310 y += row->height, ++row)
8311 blank_row (w, row, y);
88f22aff 8312 goto finish_scroll_bars;
8de2d90b
JB
8313 }
8314 }
a2889657 8315
5f5c8ee5
GM
8316 /* Otherwise set up data on this window; select its buffer and point
8317 value. */
e481f960 8318 if (update_mode_line)
5ba50c51 8319 {
5f5c8ee5
GM
8320 /* Really select the buffer, for the sake of buffer-local
8321 variables. */
5ba50c51
RS
8322 set_buffer_internal_1 (XBUFFER (w->buffer));
8323 really_switched_buffer = 1;
8324 }
e481f960
RS
8325 else
8326 set_buffer_temp (XBUFFER (w->buffer));
5f5c8ee5
GM
8327 SET_TEXT_POS (opoint, PT, PT_BYTE);
8328
8329 current_matrix_up_to_date_p
8330 = (!NILP (w->window_end_valid)
8331 && !current_buffer->clip_changed
8332 && XFASTINT (w->last_modified) >= MODIFF
8333 && XFASTINT (w->last_overlay_modified) >= OVERLAY_MODIFF);
e481f960 8334
5f5c8ee5
GM
8335 /* When windows_or_buffers_changed is non-zero, we can't rely on
8336 the window end being valid, so set it to nil there. */
8337 if (windows_or_buffers_changed)
8338 {
8339 /* If window starts on a continuation line, maybe adjust the
8340 window start in case the window's width changed. */
8341 if (XMARKER (w->start)->buffer == current_buffer)
8342 compute_window_start_on_continuation_line (w);
8343
8344 w->window_end_valid = Qnil;
8345 }
12adba34 8346
5f5c8ee5
GM
8347 /* Some sanity checks. */
8348 CHECK_WINDOW_END (w);
8349 if (Z == Z_BYTE && CHARPOS (opoint) != BYTEPOS (opoint))
12adba34 8350 abort ();
5f5c8ee5 8351 if (BYTEPOS (opoint) < CHARPOS (opoint))
12adba34 8352 abort ();
a2889657 8353
28995e67
RS
8354 /* If %c is in mode line, update it if needed. */
8355 if (!NILP (w->column_number_displayed)
8356 /* This alternative quickly identifies a common case
8357 where no change is needed. */
8358 && !(PT == XFASTINT (w->last_point)
8850a573
RS
8359 && XFASTINT (w->last_modified) >= MODIFF
8360 && XFASTINT (w->last_overlay_modified) >= OVERLAY_MODIFF)
28995e67
RS
8361 && XFASTINT (w->column_number_displayed) != current_column ())
8362 update_mode_line = 1;
8363
5f5c8ee5
GM
8364 /* Count number of windows showing the selected buffer. An indirect
8365 buffer counts as its base buffer. */
8366 if (!just_this_one_p)
42640f83
RS
8367 {
8368 struct buffer *current_base, *window_base;
8369 current_base = current_buffer;
8370 window_base = XBUFFER (XWINDOW (selected_window)->buffer);
8371 if (current_base->base_buffer)
8372 current_base = current_base->base_buffer;
8373 if (window_base->base_buffer)
8374 window_base = window_base->base_buffer;
8375 if (current_base == window_base)
8376 buffer_shared++;
8377 }
a2889657 8378
5f5c8ee5
GM
8379 /* Point refers normally to the selected window. For any other
8380 window, set up appropriate value. */
a2889657
JB
8381 if (!EQ (window, selected_window))
8382 {
12adba34
RS
8383 int new_pt = XMARKER (w->pointm)->charpos;
8384 int new_pt_byte = marker_byte_position (w->pointm);
f67a0f51 8385 if (new_pt < BEGV)
a2889657 8386 {
f67a0f51 8387 new_pt = BEGV;
12adba34
RS
8388 new_pt_byte = BEGV_BYTE;
8389 set_marker_both (w->pointm, Qnil, BEGV, BEGV_BYTE);
a2889657 8390 }
f67a0f51 8391 else if (new_pt > (ZV - 1))
a2889657 8392 {
f67a0f51 8393 new_pt = ZV;
12adba34
RS
8394 new_pt_byte = ZV_BYTE;
8395 set_marker_both (w->pointm, Qnil, ZV, ZV_BYTE);
a2889657 8396 }
5f5c8ee5 8397
f67a0f51 8398 /* We don't use SET_PT so that the point-motion hooks don't run. */
12adba34 8399 TEMP_SET_PT_BOTH (new_pt, new_pt_byte);
a2889657
JB
8400 }
8401
f4faa47c 8402 /* If any of the character widths specified in the display table
5f5c8ee5
GM
8403 have changed, invalidate the width run cache. It's true that
8404 this may be a bit late to catch such changes, but the rest of
f4faa47c
JB
8405 redisplay goes (non-fatally) haywire when the display table is
8406 changed, so why should we worry about doing any better? */
8407 if (current_buffer->width_run_cache)
8408 {
f908610f 8409 struct Lisp_Char_Table *disptab = buffer_display_table ();
f4faa47c
JB
8410
8411 if (! disptab_matches_widthtab (disptab,
8412 XVECTOR (current_buffer->width_table)))
8413 {
8414 invalidate_region_cache (current_buffer,
8415 current_buffer->width_run_cache,
8416 BEG, Z);
8417 recompute_width_table (current_buffer, disptab);
8418 }
8419 }
8420
a2889657 8421 /* If window-start is screwed up, choose a new one. */
a2889657
JB
8422 if (XMARKER (w->start)->buffer != current_buffer)
8423 goto recenter;
8424
5f5c8ee5 8425 SET_TEXT_POS_FROM_MARKER (startp, w->start);
a2889657 8426
cf0df6ab
RS
8427 /* If someone specified a new starting point but did not insist,
8428 check whether it can be used. */
5f5c8ee5 8429 if (!NILP (w->optional_new_start))
cf0df6ab
RS
8430 {
8431 w->optional_new_start = Qnil;
5f5c8ee5
GM
8432 /* This takes a mini-buffer prompt into account. */
8433 start_display (&it, w, startp);
8434 move_it_to (&it, PT, 0, it.last_visible_y, -1,
8435 MOVE_TO_POS | MOVE_TO_X | MOVE_TO_Y);
8436 if (IT_CHARPOS (it) == PT)
cf0df6ab
RS
8437 w->force_start = Qt;
8438 }
8439
8de2d90b 8440 /* Handle case where place to start displaying has been specified,
aa6d10fa 8441 unless the specified location is outside the accessible range. */
9472f927
GM
8442 if (!NILP (w->force_start)
8443 || w->frozen_window_start_p)
a2889657 8444 {
e63574d7 8445 w->force_start = Qnil;
5f5c8ee5 8446 w->vscroll = 0;
b5174a51 8447 w->window_end_valid = Qnil;
5f5c8ee5
GM
8448
8449 /* Forget any recorded base line for line number display. */
8450 if (!current_matrix_up_to_date_p
8451 || current_buffer->clip_changed)
8452 w->base_line_number = Qnil;
8453
75c43375
RS
8454 /* Redisplay the mode line. Select the buffer properly for that.
8455 Also, run the hook window-scroll-functions
8456 because we have scrolled. */
e63574d7
RS
8457 /* Note, we do this after clearing force_start because
8458 if there's an error, it is better to forget about force_start
8459 than to get into an infinite loop calling the hook functions
8460 and having them get more errors. */
75c43375
RS
8461 if (!update_mode_line
8462 || ! NILP (Vwindow_scroll_functions))
e481f960 8463 {
5ba50c51
RS
8464 if (!really_switched_buffer)
8465 {
8466 set_buffer_temp (old);
8467 set_buffer_internal_1 (XBUFFER (w->buffer));
5f5c8ee5 8468 really_switched_buffer = 1;
5ba50c51 8469 }
5f5c8ee5 8470
e481f960
RS
8471 update_mode_line = 1;
8472 w->update_mode_line = Qt;
5f5c8ee5 8473 startp = run_window_scroll_functions (window, startp);
e481f960 8474 }
5f5c8ee5 8475
c2213350 8476 XSETFASTINT (w->last_modified, 0);
8850a573 8477 XSETFASTINT (w->last_overlay_modified, 0);
5f5c8ee5
GM
8478 if (CHARPOS (startp) < BEGV)
8479 SET_TEXT_POS (startp, BEGV, BEGV_BYTE);
8480 else if (CHARPOS (startp) > ZV)
8481 SET_TEXT_POS (startp, ZV, ZV_BYTE);
8482
8483 /* Redisplay, then check if cursor has been set during the
8484 redisplay. Give up if new fonts were loaded. */
8485 if (!try_window (window, startp))
8486 {
8487 w->force_start = Qt;
8488 clear_glyph_matrix (w->desired_matrix);
8489 goto restore_buffers;
8490 }
8491
9472f927 8492 if (w->cursor.vpos < 0 && !w->frozen_window_start_p)
5f5c8ee5
GM
8493 {
8494 /* If point does not appear, or on a line that is not fully
8495 visible, move point so it does appear. The desired
8496 matrix has been built above, so we can use it. */
8497 int height = window_box_height (w) / 2;
8498 struct glyph_row *row = MATRIX_ROW (w->desired_matrix, 0);
8499
8500 while (row->y < height)
8501 ++row;
8502
8503 TEMP_SET_PT_BOTH (MATRIX_ROW_START_CHARPOS (row),
8504 MATRIX_ROW_START_BYTEPOS (row));
8505
90adcf20 8506 if (w != XWINDOW (selected_window))
12adba34 8507 set_marker_both (w->pointm, Qnil, PT, PT_BYTE);
5f5c8ee5
GM
8508 else if (current_buffer == old)
8509 SET_TEXT_POS (lpoint, PT, PT_BYTE);
8510
8511 set_cursor_from_row (w, row, w->desired_matrix, 0, 0, 0, 0);
8512
8513 /* If we are highlighting the region, then we just changed
8514 the region, so redisplay to show it. */
df0b5ea1
RS
8515 if (!NILP (Vtransient_mark_mode)
8516 && !NILP (current_buffer->mark_active))
6f27fa9b 8517 {
5f5c8ee5
GM
8518 clear_glyph_matrix (w->desired_matrix);
8519 if (!try_window (window, startp))
8520 goto restore_buffers;
6f27fa9b 8521 }
a2889657 8522 }
5f5c8ee5
GM
8523
8524 make_cursor_line_fully_visible (w);
8525#if GLYPH_DEBUG
8526 debug_method_add (w, "forced window start");
8527#endif
a2889657
JB
8528 goto done;
8529 }
8530
5f5c8ee5
GM
8531 /* Handle case where text has not changed, only point, and it has
8532 not moved off the frame. */
8533 if (current_matrix_up_to_date_p
8534 /* Point may be in this window. */
8535 && PT >= CHARPOS (startp)
8536 /* If we don't check this, we are called to move the cursor in a
8537 horizontally split window with a current matrix that doesn't
8538 fit the display. */
8539 && !windows_or_buffers_changed
8540 /* Selective display hasn't changed. */
8541 && !current_buffer->clip_changed
b1aa6cb3
RS
8542 /* If force-mode-line-update was called, really redisplay;
8543 that's how redisplay is forced after e.g. changing
8544 buffer-invisibility-spec. */
632ab665 8545 && NILP (w->update_mode_line)
5f5c8ee5
GM
8546 /* Can't use this case if highlighting a region. When a
8547 region exists, cursor movement has to do more than just
8548 set the cursor. */
8549 && !(!NILP (Vtransient_mark_mode)
8550 && !NILP (current_buffer->mark_active))
bd66d1ba 8551 && NILP (w->region_showing)
8f897821 8552 && NILP (Vshow_trailing_whitespace)
5f5c8ee5
GM
8553 /* Right after splitting windows, last_point may be nil. */
8554 && INTEGERP (w->last_point)
8555 /* This code is not used for mini-buffer for the sake of the case
8556 of redisplaying to replace an echo area message; since in
8557 that case the mini-buffer contents per se are usually
8558 unchanged. This code is of no real use in the mini-buffer
8559 since the handling of this_line_start_pos, etc., in redisplay
8560 handles the same cases. */
d45de95b 8561 && !EQ (window, minibuf_window)
5f5c8ee5
GM
8562 /* When splitting windows or for new windows, it happens that
8563 redisplay is called with a nil window_end_vpos or one being
8564 larger than the window. This should really be fixed in
8565 window.c. I don't have this on my list, now, so we do
8566 approximately the same as the old redisplay code. --gerd. */
8567 && INTEGERP (w->window_end_vpos)
8568 && XFASTINT (w->window_end_vpos) < w->current_matrix->nrows
8569 && (FRAME_WINDOW_P (f)
8570 || !MARKERP (Voverlay_arrow_position)
377dbd97 8571 || current_buffer != XMARKER (Voverlay_arrow_position)->buffer))
a2889657 8572 {
5f5c8ee5
GM
8573 int this_scroll_margin;
8574 struct glyph_row *row;
8575 int scroll_p;
a2889657 8576
5f5c8ee5
GM
8577#if GLYPH_DEBUG
8578 debug_method_add (w, "cursor movement");
8579#endif
9afd2168 8580
5f5c8ee5
GM
8581 /* Scroll if point within this distance from the top or bottom
8582 of the window. This is a pixel value. */
8583 this_scroll_margin = max (0, scroll_margin);
8584 this_scroll_margin = min (this_scroll_margin, XFASTINT (w->height) / 4);
8585 this_scroll_margin *= CANON_Y_UNIT (f);
8586
8587 /* Start with the row the cursor was displayed during the last
8588 not paused redisplay. Give up if that row is not valid. */
8589 if (w->last_cursor.vpos >= w->current_matrix->nrows)
8590 goto try_to_scroll;
8591 row = MATRIX_ROW (w->current_matrix, w->last_cursor.vpos);
8592 if (row->mode_line_p)
8593 ++row;
8594 if (!row->enabled_p)
8595 goto try_to_scroll;
8596
8597 scroll_p = 0;
8598 if (PT > XFASTINT (w->last_point))
8599 {
8600 /* Point has moved forward. */
8601 int last_y = window_text_bottom_y (w) - this_scroll_margin;
8602
8603 while ((MATRIX_ROW_END_CHARPOS (row) < PT
8604 /* The end position of a row equals the start
8605 position of the next row. If PT is there, we
8606 would rather display it in the next line, except
8607 when this line ends in ZV. */
8608 || (MATRIX_ROW_END_CHARPOS (row) == PT
8609 && (MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row)
8610 || !row->ends_at_zv_p)))
8611 && MATRIX_ROW_BOTTOM_Y (row) < last_y)
8612 {
8613 xassert (row->enabled_p);
8614 ++row;
8615 }
9afd2168 8616
5f5c8ee5
GM
8617 /* If within the scroll margin, scroll. Note that
8618 MATRIX_ROW_BOTTOM_Y gives the pixel position at which the
8619 next line would be drawn, and that this_scroll_margin can
8620 be zero. */
8621 if (MATRIX_ROW_BOTTOM_Y (row) > last_y
8622 || PT > MATRIX_ROW_END_CHARPOS (row)
8623 /* Line is completely visible last line in window and PT
8624 is to be set in the next line. */
8625 || (MATRIX_ROW_BOTTOM_Y (row) == last_y
8626 && PT == MATRIX_ROW_END_CHARPOS (row)
8627 && !row->ends_at_zv_p
8628 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row)))
8629 scroll_p = 1;
8630 }
8631 else if (PT < XFASTINT (w->last_point))
a2889657 8632 {
5f5c8ee5
GM
8633 /* Cursor has to be moved backward. Note that PT >=
8634 CHARPOS (startp) because of the outer if-statement. */
8635 while (!row->mode_line_p
8636 && (MATRIX_ROW_START_CHARPOS (row) > PT
8637 || (MATRIX_ROW_START_CHARPOS (row) == PT
8638 && MATRIX_ROW_STARTS_IN_MIDDLE_OF_CHAR_P (row)))
8639 && (row->y > this_scroll_margin
8640 || CHARPOS (startp) == BEGV))
a2889657 8641 {
5f5c8ee5
GM
8642 xassert (row->enabled_p);
8643 --row;
a2889657 8644 }
abb4c08f 8645
5f5c8ee5
GM
8646 /* Consider the following case: Window starts at BEGV, there
8647 is invisible, intangible text at BEGV, so that display
8648 starts at some point START > BEGV. It can happen that
8649 we are called with PT somewhere between BEGV and START.
8650 Try to handle that case. */
8651 if (row < w->current_matrix->rows
8652 || row->mode_line_p)
8653 {
8654 row = w->current_matrix->rows;
8655 if (row->mode_line_p)
8656 ++row;
8657 }
8658
8659 /* Due to newlines in overlay strings, we may have to skip
8660 forward over overlay strings. */
8661 while (MATRIX_ROW_END_CHARPOS (row) == PT
8662 && MATRIX_ROW_ENDS_IN_OVERLAY_STRING_P (row)
8663 && !row->ends_at_zv_p)
8664 ++row;
8665
8666 /* If within the scroll margin, scroll. */
8667 if (row->y < this_scroll_margin
8668 && CHARPOS (startp) != BEGV)
8669 scroll_p = 1;
8670 }
8671
8672 /* if PT is not in the glyph row, give up. */
8673 if (PT < MATRIX_ROW_START_CHARPOS (row)
8674 || PT > MATRIX_ROW_END_CHARPOS (row))
8675 goto try_to_scroll;
8676
8677 /* If we end up in a partially visible line, let's make it fully
8678 visible. This can be done most easily by using the existing
8679 scrolling code. */
8680 if (MATRIX_ROW_PARTIALLY_VISIBLE_P (row))
8681 {
8682 temp_scroll_step = 1;
8683 goto try_to_scroll;
a2889657 8684 }
5f5c8ee5
GM
8685 else if (scroll_p)
8686 goto try_to_scroll;
8687
8688 set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0);
8689 goto done;
a2889657 8690 }
5f5c8ee5 8691
a2889657
JB
8692 /* If current starting point was originally the beginning of a line
8693 but no longer is, find a new starting point. */
265a9e55 8694 else if (!NILP (w->start_at_line_beg)
5f5c8ee5
GM
8695 && !(CHARPOS (startp) <= BEGV
8696 || FETCH_BYTE (BYTEPOS (startp) - 1) == '\n'))
a2889657 8697 {
5f5c8ee5
GM
8698#if GLYPH_DEBUG
8699 debug_method_add (w, "recenter 1");
8700#endif
a2889657
JB
8701 goto recenter;
8702 }
5f5c8ee5
GM
8703
8704 /* Try scrolling with try_window_id. */
9142dd5b
GM
8705 else if (/* Windows and buffers haven't changed. */
8706 !windows_or_buffers_changed
5f5c8ee5
GM
8707 /* Window must be either use window-based redisplay or
8708 be full width. */
8709 && (FRAME_WINDOW_P (f)
c59c668a 8710 || (line_ins_del_ok && WINDOW_FULL_WIDTH_P (w)))
5f5c8ee5
GM
8711 && !MINI_WINDOW_P (w)
8712 /* Point is not known NOT to appear in window. */
8713 && PT >= CHARPOS (startp)
a2889657 8714 && XFASTINT (w->last_modified)
5f5c8ee5
GM
8715 /* Window is not hscrolled. */
8716 && XFASTINT (w->hscroll) == 0
8717 /* Selective display has not changed. */
8718 && !current_buffer->clip_changed
8719 /* Current matrix is up to date. */
8720 && !NILP (w->window_end_valid)
8721 /* Can't use this case if highlighting a region because
8722 a cursor movement will do more than just set the cursor. */
bd66d1ba
RS
8723 && !(!NILP (Vtransient_mark_mode)
8724 && !NILP (current_buffer->mark_active))
8725 && NILP (w->region_showing)
8f897821 8726 && NILP (Vshow_trailing_whitespace)
5f5c8ee5 8727 /* Overlay arrow position and string not changed. */
d45de95b 8728 && EQ (last_arrow_position, COERCE_MARKER (Voverlay_arrow_position))
a2889657 8729 && EQ (last_arrow_string, Voverlay_arrow_string)
5f5c8ee5
GM
8730 /* Value is > 0 if update has been done, it is -1 if we
8731 know that the same window start will not work. It is 0
8732 if unsuccessful for some other reason. */
8733 && (tem = try_window_id (w)) != 0)
a2889657 8734 {
5f5c8ee5
GM
8735#if GLYPH_DEBUG
8736 debug_method_add (w, "try_window_id");
8737#endif
8738
8739 if (fonts_changed_p)
8740 goto restore_buffers;
a2889657
JB
8741 if (tem > 0)
8742 goto done;
5f5c8ee5
GM
8743 /* Otherwise try_window_id has returned -1 which means that we
8744 don't want the alternative below this comment to execute. */
a2889657 8745 }
5f5c8ee5
GM
8746 else if (CHARPOS (startp) >= BEGV
8747 && CHARPOS (startp) <= ZV
8748 && PT >= CHARPOS (startp)
8749 && (CHARPOS (startp) < ZV
e9874cee 8750 /* Avoid starting at end of buffer. */
5f5c8ee5 8751 || CHARPOS (startp) == BEGV
8850a573
RS
8752 || (XFASTINT (w->last_modified) >= MODIFF
8753 && XFASTINT (w->last_overlay_modified) >= OVERLAY_MODIFF)))
a2889657 8754 {
5f5c8ee5
GM
8755#if GLYPH_DEBUG
8756 debug_method_add (w, "same window start");
8757#endif
8758
8759 /* Try to redisplay starting at same place as before.
8760 If point has not moved off frame, accept the results. */
8761 if (!current_matrix_up_to_date_p
8762 /* Don't use try_window_reusing_current_matrix in this case
8763 because it can have changed the buffer. */
8764 || !NILP (Vwindow_scroll_functions)
8765 || MINI_WINDOW_P (w)
8766 || !try_window_reusing_current_matrix (w))
8767 {
8768 IF_DEBUG (debug_method_add (w, "1"));
8769 try_window (window, startp);
8770 }
8771
8772 if (fonts_changed_p)
8773 goto restore_buffers;
8774
8775 if (w->cursor.vpos >= 0)
aa6d10fa 8776 {
5f5c8ee5
GM
8777 if (!just_this_one_p
8778 || current_buffer->clip_changed
9142dd5b 8779 || BEG_UNCHANGED < CHARPOS (startp))
aa6d10fa
RS
8780 /* Forget any recorded base line for line number display. */
8781 w->base_line_number = Qnil;
5f5c8ee5
GM
8782
8783 make_cursor_line_fully_visible (w);
aa6d10fa
RS
8784 goto done;
8785 }
a2889657 8786 else
5f5c8ee5 8787 clear_glyph_matrix (w->desired_matrix);
a2889657
JB
8788 }
8789
5f5c8ee5
GM
8790 try_to_scroll:
8791
c2213350 8792 XSETFASTINT (w->last_modified, 0);
8850a573 8793 XSETFASTINT (w->last_overlay_modified, 0);
5f5c8ee5 8794
e481f960
RS
8795 /* Redisplay the mode line. Select the buffer properly for that. */
8796 if (!update_mode_line)
8797 {
5ba50c51
RS
8798 if (!really_switched_buffer)
8799 {
8800 set_buffer_temp (old);
8801 set_buffer_internal_1 (XBUFFER (w->buffer));
5f5c8ee5 8802 really_switched_buffer = 1;
5ba50c51 8803 }
e481f960
RS
8804 update_mode_line = 1;
8805 w->update_mode_line = Qt;
8806 }
a2889657 8807
5f5c8ee5
GM
8808 /* Try to scroll by specified few lines. */
8809 if ((scroll_conservatively
8810 || scroll_step
8811 || temp_scroll_step
8812 || NUMBERP (current_buffer->scroll_up_aggressively)
8813 || NUMBERP (current_buffer->scroll_down_aggressively))
09cacf9c 8814 && !current_buffer->clip_changed
5f5c8ee5
GM
8815 && CHARPOS (startp) >= BEGV
8816 && CHARPOS (startp) <= ZV)
0789adb2 8817 {
5f5c8ee5
GM
8818 /* The function returns -1 if new fonts were loaded, 1 if
8819 successful, 0 if not successful. */
8820 int rc = try_scrolling (window, just_this_one_p,
8821 scroll_conservatively,
8822 scroll_step,
8823 temp_scroll_step);
8824 if (rc > 0)
8825 goto done;
8826 else if (rc < 0)
8827 goto restore_buffers;
8828 }
f9c8af06 8829
5f5c8ee5 8830 /* Finally, just choose place to start which centers point */
5936754e 8831
5f5c8ee5 8832 recenter:
44173109 8833
5f5c8ee5
GM
8834#if GLYPH_DEBUG
8835 debug_method_add (w, "recenter");
8836#endif
0789adb2 8837
5f5c8ee5 8838 /* w->vscroll = 0; */
0789adb2 8839
5f5c8ee5
GM
8840 /* Forget any previously recorded base line for line number display. */
8841 if (!current_matrix_up_to_date_p
8842 || current_buffer->clip_changed)
8843 w->base_line_number = Qnil;
8844
8845 /* Move backward half the height of the window. */
8846 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID);
8847 it.current_y = it.last_visible_y;
8848 move_it_vertically_backward (&it, it.last_visible_y / 2);
8849 xassert (IT_CHARPOS (it) >= BEGV);
8850
8851 /* The function move_it_vertically_backward may move over more
8852 than the specified y-distance. If it->w is small, e.g. a
8853 mini-buffer window, we may end up in front of the window's
8854 display area. Start displaying at the start of the line
8855 containing PT in this case. */
8856 if (it.current_y <= 0)
8857 {
8858 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID);
8859 move_it_vertically (&it, 0);
8860 xassert (IT_CHARPOS (it) <= PT);
8861 it.current_y = 0;
0789adb2
RS
8862 }
8863
5f5c8ee5
GM
8864 it.current_x = it.hpos = 0;
8865
8866 /* Set startp here explicitly in case that helps avoid an infinite loop
8867 in case the window-scroll-functions functions get errors. */
8868 set_marker_both (w->start, Qnil, IT_CHARPOS (it), IT_BYTEPOS (it));
8869
8870 /* Run scroll hooks. */
8871 startp = run_window_scroll_functions (window, it.current.pos);
8872
8873 /* Redisplay the window. */
8874 if (!current_matrix_up_to_date_p
8875 || windows_or_buffers_changed
8876 /* Don't use try_window_reusing_current_matrix in this case
8877 because it can have changed the buffer. */
8878 || !NILP (Vwindow_scroll_functions)
8879 || !just_this_one_p
8880 || MINI_WINDOW_P (w)
8881 || !try_window_reusing_current_matrix (w))
8882 try_window (window, startp);
8883
8884 /* If new fonts have been loaded (due to fontsets), give up. We
8885 have to start a new redisplay since we need to re-adjust glyph
8886 matrices. */
8887 if (fonts_changed_p)
8888 goto restore_buffers;
8889
8890 /* If cursor did not appear assume that the middle of the window is
8891 in the first line of the window. Do it again with the next line.
8892 (Imagine a window of height 100, displaying two lines of height
8893 60. Moving back 50 from it->last_visible_y will end in the first
8894 line.) */
8895 if (w->cursor.vpos < 0)
a2889657 8896 {
5f5c8ee5
GM
8897 if (!NILP (w->window_end_valid)
8898 && PT >= Z - XFASTINT (w->window_end_pos))
a2889657 8899 {
5f5c8ee5
GM
8900 clear_glyph_matrix (w->desired_matrix);
8901 move_it_by_lines (&it, 1, 0);
8902 try_window (window, it.current.pos);
a2889657 8903 }
5f5c8ee5 8904 else if (PT < IT_CHARPOS (it))
a2889657 8905 {
5f5c8ee5
GM
8906 clear_glyph_matrix (w->desired_matrix);
8907 move_it_by_lines (&it, -1, 0);
8908 try_window (window, it.current.pos);
8909 }
8910 else
8911 {
8912 /* Not much we can do about it. */
a2889657 8913 }
a2889657 8914 }
010494d0 8915
5f5c8ee5
GM
8916 /* Consider the following case: Window starts at BEGV, there is
8917 invisible, intangible text at BEGV, so that display starts at
8918 some point START > BEGV. It can happen that we are called with
8919 PT somewhere between BEGV and START. Try to handle that case. */
8920 if (w->cursor.vpos < 0)
835766b6 8921 {
5f5c8ee5
GM
8922 struct glyph_row *row = w->current_matrix->rows;
8923 if (row->mode_line_p)
8924 ++row;
8925 set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0);
835766b6 8926 }
5f5c8ee5
GM
8927
8928 make_cursor_line_fully_visible (w);
b5174a51 8929
74d481ac
GM
8930 done:
8931
5f5c8ee5
GM
8932 SET_TEXT_POS_FROM_MARKER (startp, w->start);
8933 w->start_at_line_beg = ((CHARPOS (startp) == BEGV
8934 || FETCH_BYTE (BYTEPOS (startp) - 1) == '\n')
8935 ? Qt : Qnil);
a2889657 8936
5f5c8ee5 8937 /* Display the mode line, if we must. */
e481f960 8938 if ((update_mode_line
aa6d10fa 8939 /* If window not full width, must redo its mode line
5f5c8ee5
GM
8940 if (a) the window to its side is being redone and
8941 (b) we do a frame-based redisplay. This is a consequence
8942 of how inverted lines are drawn in frame-based redisplay. */
8943 || (!just_this_one_p
8944 && !FRAME_WINDOW_P (f)
8945 && !WINDOW_FULL_WIDTH_P (w))
8946 /* Line number to display. */
155ef550 8947 || INTEGERP (w->base_line_pos)
5f5c8ee5 8948 /* Column number is displayed and different from the one displayed. */
155ef550
KH
8949 || (!NILP (w->column_number_displayed)
8950 && XFASTINT (w->column_number_displayed) != current_column ()))
5f5c8ee5
GM
8951 /* This means that the window has a mode line. */
8952 && (WINDOW_WANTS_MODELINE_P (w)
045dee35 8953 || WINDOW_WANTS_HEADER_LINE_P (w)))
5ba50c51 8954 {
5f5c8ee5
GM
8955 display_mode_lines (w);
8956
8957 /* If mode line height has changed, arrange for a thorough
8958 immediate redisplay using the correct mode line height. */
8959 if (WINDOW_WANTS_MODELINE_P (w)
8960 && CURRENT_MODE_LINE_HEIGHT (w) != DESIRED_MODE_LINE_HEIGHT (w))
5ba50c51 8961 {
5f5c8ee5
GM
8962 fonts_changed_p = 1;
8963 MATRIX_MODE_LINE_ROW (w->current_matrix)->height
8964 = DESIRED_MODE_LINE_HEIGHT (w);
5ba50c51 8965 }
5f5c8ee5
GM
8966
8967 /* If top line height has changed, arrange for a thorough
8968 immediate redisplay using the correct mode line height. */
045dee35
GM
8969 if (WINDOW_WANTS_HEADER_LINE_P (w)
8970 && CURRENT_HEADER_LINE_HEIGHT (w) != DESIRED_HEADER_LINE_HEIGHT (w))
5f5c8ee5
GM
8971 {
8972 fonts_changed_p = 1;
045dee35
GM
8973 MATRIX_HEADER_LINE_ROW (w->current_matrix)->height
8974 = DESIRED_HEADER_LINE_HEIGHT (w);
5f5c8ee5
GM
8975 }
8976
8977 if (fonts_changed_p)
8978 goto restore_buffers;
5ba50c51 8979 }
5f5c8ee5
GM
8980
8981 if (!line_number_displayed
8982 && !BUFFERP (w->base_line_pos))
aa6d10fa
RS
8983 {
8984 w->base_line_pos = Qnil;
8985 w->base_line_number = Qnil;
8986 }
a2889657 8987
5f5c8ee5
GM
8988 finish_menu_bars:
8989
7ce2c095 8990 /* When we reach a frame's selected window, redo the frame's menu bar. */
e481f960 8991 if (update_mode_line
5f5c8ee5
GM
8992 && EQ (FRAME_SELECTED_WINDOW (f), window))
8993 {
8994 int redisplay_menu_p = 0;
8995
8996 if (FRAME_WINDOW_P (f))
8997 {
dc937613 8998#if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI)
5f5c8ee5 8999 redisplay_menu_p = FRAME_EXTERNAL_MENU_BAR (f);
76412d64 9000#else
5f5c8ee5 9001 redisplay_menu_p = FRAME_MENU_BAR_LINES (f) > 0;
76412d64 9002#endif
5f5c8ee5
GM
9003 }
9004 else
9005 redisplay_menu_p = FRAME_MENU_BAR_LINES (f) > 0;
9006
9007 if (redisplay_menu_p)
9008 display_menu_bar (w);
9009
9010#ifdef HAVE_WINDOW_SYSTEM
e037b9ec
GM
9011 if (WINDOWP (f->tool_bar_window)
9012 && (FRAME_TOOL_BAR_LINES (f) > 0
9013 || auto_resize_tool_bars_p))
9014 redisplay_tool_bar (f);
5f5c8ee5
GM
9015#endif
9016 }
7ce2c095 9017
88f22aff 9018 finish_scroll_bars:
5f5c8ee5 9019
88f22aff 9020 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
30c566e4 9021 {
b1d1124b 9022 int start, end, whole;
30c566e4 9023
b1d1124b 9024 /* Calculate the start and end positions for the current window.
3505ea70
JB
9025 At some point, it would be nice to choose between scrollbars
9026 which reflect the whole buffer size, with special markers
9027 indicating narrowing, and scrollbars which reflect only the
9028 visible region.
9029
5f5c8ee5 9030 Note that mini-buffers sometimes aren't displaying any text. */
c6e89d6c 9031 if (!MINI_WINDOW_P (w)
5f5c8ee5 9032 || (w == XWINDOW (minibuf_window)
c6e89d6c 9033 && NILP (echo_area_buffer[0])))
b1d1124b 9034 {
8a9311d7 9035 whole = ZV - BEGV;
4d641a15 9036 start = marker_position (w->start) - BEGV;
b1d1124b
JB
9037 /* I don't think this is guaranteed to be right. For the
9038 moment, we'll pretend it is. */
5f5c8ee5 9039 end = (Z - XFASTINT (w->window_end_pos)) - BEGV;
3505ea70 9040
5f5c8ee5
GM
9041 if (end < start)
9042 end = start;
9043 if (whole < (end - start))
9044 whole = end - start;
b1d1124b
JB
9045 }
9046 else
9047 start = end = whole = 0;
30c566e4 9048
88f22aff 9049 /* Indicate what this scroll bar ought to be displaying now. */
7eb9ba41 9050 (*set_vertical_scroll_bar_hook) (w, end - start, whole, start);
30c566e4 9051
5f5c8ee5
GM
9052 /* Note that we actually used the scroll bar attached to this
9053 window, so it shouldn't be deleted at the end of redisplay. */
88f22aff 9054 (*redeem_scroll_bar_hook) (w);
30c566e4 9055 }
b1d1124b 9056
5f5c8ee5
GM
9057 restore_buffers:
9058
9059 /* Restore current_buffer and value of point in it. */
9060 TEMP_SET_PT_BOTH (CHARPOS (opoint), BYTEPOS (opoint));
5ba50c51 9061 if (really_switched_buffer)
f72df6ac 9062 set_buffer_internal_1 (old);
e481f960
RS
9063 else
9064 set_buffer_temp (old);
5f5c8ee5 9065 TEMP_SET_PT_BOTH (CHARPOS (lpoint), BYTEPOS (lpoint));
2e54982e
RS
9066
9067 unbind_to (count, Qnil);
a2889657 9068}
a2889657 9069
5f5c8ee5
GM
9070
9071/* Build the complete desired matrix of WINDOW with a window start
9072 buffer position POS. Value is non-zero if successful. It is zero
9073 if fonts were loaded during redisplay which makes re-adjusting
9074 glyph matrices necessary. */
9075
9076int
a2889657
JB
9077try_window (window, pos)
9078 Lisp_Object window;
5f5c8ee5
GM
9079 struct text_pos pos;
9080{
9081 struct window *w = XWINDOW (window);
9082 struct it it;
9083 struct glyph_row *last_text_row = NULL;
9cbab4ff 9084
5f5c8ee5
GM
9085 /* Make POS the new window start. */
9086 set_marker_both (w->start, Qnil, CHARPOS (pos), BYTEPOS (pos));
12adba34 9087
5f5c8ee5
GM
9088 /* Mark cursor position as unknown. No overlay arrow seen. */
9089 w->cursor.vpos = -1;
a2889657 9090 overlay_arrow_seen = 0;
642eefc6 9091
5f5c8ee5
GM
9092 /* Initialize iterator and info to start at POS. */
9093 start_display (&it, w, pos);
a2889657 9094
5f5c8ee5
GM
9095 /* Display all lines of W. */
9096 while (it.current_y < it.last_visible_y)
9097 {
9098 if (display_line (&it))
9099 last_text_row = it.glyph_row - 1;
9100 if (fonts_changed_p)
9101 return 0;
9102 }
a2889657 9103
5f5c8ee5
GM
9104 /* If bottom moved off end of frame, change mode line percentage. */
9105 if (XFASTINT (w->window_end_pos) <= 0
9106 && Z != IT_CHARPOS (it))
a2889657
JB
9107 w->update_mode_line = Qt;
9108
5f5c8ee5
GM
9109 /* Set window_end_pos to the offset of the last character displayed
9110 on the window from the end of current_buffer. Set
9111 window_end_vpos to its row number. */
9112 if (last_text_row)
9113 {
9114 xassert (MATRIX_ROW_DISPLAYS_TEXT_P (last_text_row));
9115 w->window_end_bytepos
9116 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_text_row);
9117 XSETFASTINT (w->window_end_pos,
9118 Z - MATRIX_ROW_END_CHARPOS (last_text_row));
9119 XSETFASTINT (w->window_end_vpos,
9120 MATRIX_ROW_VPOS (last_text_row, w->desired_matrix));
9121 xassert (MATRIX_ROW (w->desired_matrix, XFASTINT (w->window_end_vpos))
9122 ->displays_text_p);
9123 }
9124 else
9125 {
9126 w->window_end_bytepos = 0;
9127 XSETFASTINT (w->window_end_pos, 0);
9128 XSETFASTINT (w->window_end_vpos, 0);
9129 }
9130
a2889657
JB
9131 /* But that is not valid info until redisplay finishes. */
9132 w->window_end_valid = Qnil;
5f5c8ee5 9133 return 1;
a2889657 9134}
5f5c8ee5
GM
9135
9136
a2889657 9137\f
5f5c8ee5
GM
9138/************************************************************************
9139 Window redisplay reusing current matrix when buffer has not changed
9140 ************************************************************************/
9141
9142/* Try redisplay of window W showing an unchanged buffer with a
9143 different window start than the last time it was displayed by
9144 reusing its current matrix. Value is non-zero if successful.
9145 W->start is the new window start. */
a2889657
JB
9146
9147static int
5f5c8ee5
GM
9148try_window_reusing_current_matrix (w)
9149 struct window *w;
a2889657 9150{
5f5c8ee5
GM
9151 struct frame *f = XFRAME (w->frame);
9152 struct glyph_row *row, *bottom_row;
9153 struct it it;
9154 struct run run;
9155 struct text_pos start, new_start;
9156 int nrows_scrolled, i;
9157 struct glyph_row *last_text_row;
9158 struct glyph_row *last_reused_text_row;
9159 struct glyph_row *start_row;
9160 int start_vpos, min_y, max_y;
9161
9162 /* Right now this function doesn't handle terminal frames. */
9163 if (!FRAME_WINDOW_P (f))
9164 return 0;
a2889657 9165
5f5c8ee5
GM
9166 /* Can't do this if region may have changed. */
9167 if ((!NILP (Vtransient_mark_mode)
9168 && !NILP (current_buffer->mark_active))
8f897821
GM
9169 || !NILP (w->region_showing)
9170 || !NILP (Vshow_trailing_whitespace))
5f5c8ee5 9171 return 0;
a2889657 9172
5f5c8ee5 9173 /* If top-line visibility has changed, give up. */
045dee35
GM
9174 if (WINDOW_WANTS_HEADER_LINE_P (w)
9175 != MATRIX_HEADER_LINE_ROW (w->current_matrix)->mode_line_p)
5f5c8ee5
GM
9176 return 0;
9177
9178 /* Give up if old or new display is scrolled vertically. We could
9179 make this function handle this, but right now it doesn't. */
9180 start_row = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
9181 if (w->vscroll || MATRIX_ROW_PARTIALLY_VISIBLE_P (start_row))
9182 return 0;
9183
9184 /* The variable new_start now holds the new window start. The old
9185 start `start' can be determined from the current matrix. */
9186 SET_TEXT_POS_FROM_MARKER (new_start, w->start);
9187 start = start_row->start.pos;
9188 start_vpos = MATRIX_ROW_VPOS (start_row, w->current_matrix);
a2889657 9189
5f5c8ee5
GM
9190 /* Clear the desired matrix for the display below. */
9191 clear_glyph_matrix (w->desired_matrix);
9192
9193 if (CHARPOS (new_start) <= CHARPOS (start))
9194 {
9195 int first_row_y;
9196
9197 IF_DEBUG (debug_method_add (w, "twu1"));
9198
9199 /* Display up to a row that can be reused. The variable
9200 last_text_row is set to the last row displayed that displays
9201 text. */
9202 start_display (&it, w, new_start);
9203 first_row_y = it.current_y;
9204 w->cursor.vpos = -1;
9205 last_text_row = last_reused_text_row = NULL;
9206 while (it.current_y < it.last_visible_y
9207 && IT_CHARPOS (it) < CHARPOS (start)
9208 && !fonts_changed_p)
9209 if (display_line (&it))
9210 last_text_row = it.glyph_row - 1;
9211
9212 /* A value of current_y < last_visible_y means that we stopped
9213 at the previous window start, which in turn means that we
9214 have at least one reusable row. */
9215 if (it.current_y < it.last_visible_y)
a2889657 9216 {
5f5c8ee5
GM
9217 nrows_scrolled = it.vpos;
9218
9219 /* Find PT if not already found in the lines displayed. */
9220 if (w->cursor.vpos < 0)
a2889657 9221 {
5f5c8ee5
GM
9222 int dy = it.current_y - first_row_y;
9223
9224 row = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
9225 while (MATRIX_ROW_DISPLAYS_TEXT_P (row))
9226 {
9227 if (PT >= MATRIX_ROW_START_CHARPOS (row)
9228 && PT < MATRIX_ROW_END_CHARPOS (row))
9229 {
9230 set_cursor_from_row (w, row, w->current_matrix, 0, 0,
9231 dy, nrows_scrolled);
9232 break;
9233 }
9234
9235 if (MATRIX_ROW_BOTTOM_Y (row) + dy >= it.last_visible_y)
9236 break;
9237
9238 ++row;
9239 }
9240
9241 /* Give up if point was not found. This shouldn't
9242 happen often; not more often than with try_window
9243 itself. */
9244 if (w->cursor.vpos < 0)
9245 {
9246 clear_glyph_matrix (w->desired_matrix);
9247 return 0;
9248 }
a2889657 9249 }
5f5c8ee5
GM
9250
9251 /* Scroll the display. Do it before the current matrix is
9252 changed. The problem here is that update has not yet
9253 run, i.e. part of the current matrix is not up to date.
9254 scroll_run_hook will clear the cursor, and use the
9255 current matrix to get the height of the row the cursor is
9256 in. */
9257 run.current_y = first_row_y;
9258 run.desired_y = it.current_y;
9259 run.height = it.last_visible_y - it.current_y;
9260 if (run.height > 0)
a2889657 9261 {
5f5c8ee5
GM
9262 update_begin (f);
9263 rif->update_window_begin_hook (w);
9264 rif->scroll_run_hook (w, &run);
9265 rif->update_window_end_hook (w, 0);
9266 update_end (f);
a2889657 9267 }
5f5c8ee5
GM
9268
9269 /* Shift current matrix down by nrows_scrolled lines. */
9270 bottom_row = MATRIX_BOTTOM_TEXT_ROW (w->current_matrix, w);
9271 rotate_matrix (w->current_matrix,
9272 start_vpos,
9273 MATRIX_ROW_VPOS (bottom_row, w->current_matrix),
9274 nrows_scrolled);
9275
9276 /* Disable lines not reused. */
9277 for (i = 0; i < it.vpos; ++i)
9278 MATRIX_ROW (w->current_matrix, i)->enabled_p = 0;
9279
9280 /* Re-compute Y positions. */
9281 row = MATRIX_FIRST_TEXT_ROW (w->current_matrix) + nrows_scrolled;
045dee35 9282 min_y = WINDOW_DISPLAY_HEADER_LINE_HEIGHT (w);
5f5c8ee5
GM
9283 max_y = it.last_visible_y;
9284 while (row < bottom_row)
d2f84654 9285 {
5f5c8ee5
GM
9286 row->y = it.current_y;
9287
9288 if (row->y < min_y)
9289 row->visible_height = row->height - (min_y - row->y);
9290 else if (row->y + row->height > max_y)
9291 row->visible_height
9292 = row->height - (row->y + row->height - max_y);
9293 else
9294 row->visible_height = row->height;
9295
9296 it.current_y += row->height;
9297 ++it.vpos;
9298
9299 if (MATRIX_ROW_DISPLAYS_TEXT_P (row))
9300 last_reused_text_row = row;
9301 if (MATRIX_ROW_BOTTOM_Y (row) >= it.last_visible_y)
9302 break;
9303 ++row;
d2f84654 9304 }
a2889657 9305 }
5f5c8ee5
GM
9306
9307 /* Update window_end_pos etc.; last_reused_text_row is the last
9308 reused row from the current matrix containing text, if any.
9309 The value of last_text_row is the last displayed line
9310 containing text. */
9311 if (last_reused_text_row)
a2889657 9312 {
5f5c8ee5
GM
9313 w->window_end_bytepos
9314 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_reused_text_row);
9315 XSETFASTINT (w->window_end_pos,
9316 Z - MATRIX_ROW_END_CHARPOS (last_reused_text_row));
9317 XSETFASTINT (w->window_end_vpos,
9318 MATRIX_ROW_VPOS (last_reused_text_row,
9319 w->current_matrix));
a2889657 9320 }
5f5c8ee5
GM
9321 else if (last_text_row)
9322 {
9323 w->window_end_bytepos
9324 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_text_row);
9325 XSETFASTINT (w->window_end_pos,
9326 Z - MATRIX_ROW_END_CHARPOS (last_text_row));
9327 XSETFASTINT (w->window_end_vpos,
9328 MATRIX_ROW_VPOS (last_text_row, w->desired_matrix));
9329 }
9330 else
9331 {
9332 /* This window must be completely empty. */
9333 w->window_end_bytepos = 0;
9334 XSETFASTINT (w->window_end_pos, 0);
9335 XSETFASTINT (w->window_end_vpos, 0);
9336 }
9337 w->window_end_valid = Qnil;
a2889657 9338
5f5c8ee5
GM
9339 /* Update hint: don't try scrolling again in update_window. */
9340 w->desired_matrix->no_scrolling_p = 1;
9341
9342#if GLYPH_DEBUG
9343 debug_method_add (w, "try_window_reusing_current_matrix 1");
9344#endif
9345 return 1;
a2889657 9346 }
5f5c8ee5
GM
9347 else if (CHARPOS (new_start) > CHARPOS (start))
9348 {
9349 struct glyph_row *pt_row, *row;
9350 struct glyph_row *first_reusable_row;
9351 struct glyph_row *first_row_to_display;
9352 int dy;
9353 int yb = window_text_bottom_y (w);
9354
9355 IF_DEBUG (debug_method_add (w, "twu2"));
9356
9357 /* Find the row starting at new_start, if there is one. Don't
9358 reuse a partially visible line at the end. */
9359 first_reusable_row = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
9360 while (first_reusable_row->enabled_p
9361 && MATRIX_ROW_BOTTOM_Y (first_reusable_row) < yb
9362 && (MATRIX_ROW_START_CHARPOS (first_reusable_row)
9363 < CHARPOS (new_start)))
9364 ++first_reusable_row;
9365
9366 /* Give up if there is no row to reuse. */
9367 if (MATRIX_ROW_BOTTOM_Y (first_reusable_row) >= yb
28514cd9
GM
9368 || !first_reusable_row->enabled_p
9369 || (MATRIX_ROW_START_CHARPOS (first_reusable_row)
9370 != CHARPOS (new_start)))
5f5c8ee5
GM
9371 return 0;
9372
5f5c8ee5
GM
9373 /* We can reuse fully visible rows beginning with
9374 first_reusable_row to the end of the window. Set
9375 first_row_to_display to the first row that cannot be reused.
9376 Set pt_row to the row containing point, if there is any. */
9377 first_row_to_display = first_reusable_row;
9378 pt_row = NULL;
9379 while (MATRIX_ROW_BOTTOM_Y (first_row_to_display) < yb)
9380 {
9381 if (PT >= MATRIX_ROW_START_CHARPOS (first_row_to_display)
9382 && PT < MATRIX_ROW_END_CHARPOS (first_row_to_display))
9383 pt_row = first_row_to_display;
a2889657 9384
5f5c8ee5
GM
9385 ++first_row_to_display;
9386 }
a2889657 9387
5f5c8ee5
GM
9388 /* Start displaying at the start of first_row_to_display. */
9389 xassert (first_row_to_display->y < yb);
9390 init_to_row_start (&it, w, first_row_to_display);
9391 nrows_scrolled = MATRIX_ROW_VPOS (first_reusable_row, w->current_matrix);
9392 it.vpos = (MATRIX_ROW_VPOS (first_row_to_display, w->current_matrix)
9393 - nrows_scrolled);
9394 it.current_y = first_row_to_display->y - first_reusable_row->y;
9395
9396 /* Display lines beginning with first_row_to_display in the
9397 desired matrix. Set last_text_row to the last row displayed
9398 that displays text. */
9399 it.glyph_row = MATRIX_ROW (w->desired_matrix, it.vpos);
9400 if (pt_row == NULL)
9401 w->cursor.vpos = -1;
9402 last_text_row = NULL;
9403 while (it.current_y < it.last_visible_y && !fonts_changed_p)
9404 if (display_line (&it))
9405 last_text_row = it.glyph_row - 1;
9406
9407 /* Give up If point isn't in a row displayed or reused. */
9408 if (w->cursor.vpos < 0)
9409 {
9410 clear_glyph_matrix (w->desired_matrix);
9411 return 0;
9412 }
12adba34 9413
5f5c8ee5
GM
9414 /* If point is in a reused row, adjust y and vpos of the cursor
9415 position. */
9416 if (pt_row)
9417 {
9418 w->cursor.vpos -= MATRIX_ROW_VPOS (first_reusable_row,
9419 w->current_matrix);
9420 w->cursor.y -= first_reusable_row->y;
a2889657
JB
9421 }
9422
5f5c8ee5
GM
9423 /* Scroll the display. */
9424 run.current_y = first_reusable_row->y;
045dee35 9425 run.desired_y = WINDOW_DISPLAY_HEADER_LINE_HEIGHT (w);
5f5c8ee5
GM
9426 run.height = it.last_visible_y - run.current_y;
9427 if (run.height)
9428 {
9429 struct frame *f = XFRAME (WINDOW_FRAME (w));
9430 update_begin (f);
9431 rif->update_window_begin_hook (w);
9432 rif->scroll_run_hook (w, &run);
9433 rif->update_window_end_hook (w, 0);
9434 update_end (f);
9435 }
a2889657 9436
5f5c8ee5
GM
9437 /* Adjust Y positions of reused rows. */
9438 bottom_row = MATRIX_BOTTOM_TEXT_ROW (w->current_matrix, w);
9439 row = first_reusable_row;
9440 dy = first_reusable_row->y;
045dee35 9441 min_y = WINDOW_DISPLAY_HEADER_LINE_HEIGHT (w);
5f5c8ee5
GM
9442 max_y = it.last_visible_y;
9443 while (row < first_row_to_display)
9444 {
9445 row->y -= dy;
9446 if (row->y < min_y)
9447 row->visible_height = row->height - (min_y - row->y);
9448 else if (row->y + row->height > max_y)
9449 row->visible_height
9450 = row->height - (row->y + row->height - max_y);
9451 else
9452 row->visible_height = row->height;
9453 ++row;
9454 }
a2889657 9455
5f5c8ee5
GM
9456 /* Disable rows not reused. */
9457 while (row < bottom_row)
9458 {
9459 row->enabled_p = 0;
9460 ++row;
9461 }
9462
9463 /* Scroll the current matrix. */
9464 xassert (nrows_scrolled > 0);
9465 rotate_matrix (w->current_matrix,
9466 start_vpos,
9467 MATRIX_ROW_VPOS (bottom_row, w->current_matrix),
9468 -nrows_scrolled);
9469
9470 /* Adjust window end. A null value of last_text_row means that
9471 the window end is in reused rows which in turn means that
9472 only its vpos can have changed. */
9473 if (last_text_row)
9474 {
9475 w->window_end_bytepos
9476 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_text_row);
9477 XSETFASTINT (w->window_end_pos,
9478 Z - MATRIX_ROW_END_CHARPOS (last_text_row));
9479 XSETFASTINT (w->window_end_vpos,
9480 MATRIX_ROW_VPOS (last_text_row, w->desired_matrix));
9481 }
9482 else
a2889657 9483 {
e8e536a9 9484 XSETFASTINT (w->window_end_vpos,
5f5c8ee5 9485 XFASTINT (w->window_end_vpos) - nrows_scrolled);
a2889657 9486 }
5f5c8ee5
GM
9487
9488 w->window_end_valid = Qnil;
9489 w->desired_matrix->no_scrolling_p = 1;
9490
9491#if GLYPH_DEBUG
9492 debug_method_add (w, "try_window_reusing_current_matrix 2");
9493#endif
9494 return 1;
a2889657 9495 }
5f5c8ee5
GM
9496
9497 return 0;
9498}
a2889657 9499
a2889657 9500
5f5c8ee5
GM
9501\f
9502/************************************************************************
9503 Window redisplay reusing current matrix when buffer has changed
9504 ************************************************************************/
9505
9506static struct glyph_row *get_last_unchanged_at_beg_row P_ ((struct window *));
9507static struct glyph_row *get_first_unchanged_at_end_row P_ ((struct window *,
9508 int *, int *));
9509static struct glyph_row *
9510find_last_row_displaying_text P_ ((struct glyph_matrix *, struct it *,
9511 struct glyph_row *));
9512
9513
9514/* Return the last row in MATRIX displaying text. If row START is
9515 non-null, start searching with that row. IT gives the dimensions
9516 of the display. Value is null if matrix is empty; otherwise it is
9517 a pointer to the row found. */
9518
9519static struct glyph_row *
9520find_last_row_displaying_text (matrix, it, start)
9521 struct glyph_matrix *matrix;
9522 struct it *it;
9523 struct glyph_row *start;
9524{
9525 struct glyph_row *row, *row_found;
9526
9527 /* Set row_found to the last row in IT->w's current matrix
9528 displaying text. The loop looks funny but think of partially
9529 visible lines. */
9530 row_found = NULL;
9531 row = start ? start : MATRIX_FIRST_TEXT_ROW (matrix);
9532 while (MATRIX_ROW_DISPLAYS_TEXT_P (row))
9533 {
9534 xassert (row->enabled_p);
9535 row_found = row;
9536 if (MATRIX_ROW_BOTTOM_Y (row) >= it->last_visible_y)
9537 break;
9538 ++row;
a2889657 9539 }
5f5c8ee5
GM
9540
9541 return row_found;
9542}
9543
a2889657 9544
5f5c8ee5
GM
9545/* Return the last row in the current matrix of W that is not affected
9546 by changes at the start of current_buffer that occurred since the
9547 last time W was redisplayed. Value is null if no such row exists.
a2889657 9548
5f5c8ee5
GM
9549 The global variable beg_unchanged has to contain the number of
9550 bytes unchanged at the start of current_buffer. BEG +
9551 beg_unchanged is the buffer position of the first changed byte in
9552 current_buffer. Characters at positions < BEG + beg_unchanged are
9553 at the same buffer positions as they were when the current matrix
9554 was built. */
9555
9556static struct glyph_row *
9557get_last_unchanged_at_beg_row (w)
9558 struct window *w;
9559{
9142dd5b 9560 int first_changed_pos = BEG + BEG_UNCHANGED;
5f5c8ee5
GM
9561 struct glyph_row *row;
9562 struct glyph_row *row_found = NULL;
9563 int yb = window_text_bottom_y (w);
9564
9565 /* Find the last row displaying unchanged text. */
9566 row = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
9567 while (MATRIX_ROW_DISPLAYS_TEXT_P (row)
9568 && MATRIX_ROW_START_CHARPOS (row) < first_changed_pos)
a2889657 9569 {
5f5c8ee5
GM
9570 if (/* If row ends before first_changed_pos, it is unchanged,
9571 except in some case. */
9572 MATRIX_ROW_END_CHARPOS (row) <= first_changed_pos
9573 /* When row ends in ZV and we write at ZV it is not
9574 unchanged. */
9575 && !row->ends_at_zv_p
9576 /* When first_changed_pos is the end of a continued line,
9577 row is not unchanged because it may be no longer
9578 continued. */
9579 && !(MATRIX_ROW_END_CHARPOS (row) == first_changed_pos
9580 && row->continued_p))
9581 row_found = row;
9582
9583 /* Stop if last visible row. */
9584 if (MATRIX_ROW_BOTTOM_Y (row) >= yb)
9585 break;
9586
9587 ++row;
a2889657
JB
9588 }
9589
5f5c8ee5 9590 return row_found;
a2889657 9591}
5f5c8ee5
GM
9592
9593
9594/* Find the first glyph row in the current matrix of W that is not
9595 affected by changes at the end of current_buffer since the last
9596 time the window was redisplayed. Return in *DELTA the number of
c59c668a
GM
9597 chars by which buffer positions in unchanged text at the end of
9598 current_buffer must be adjusted. Return in *DELTA_BYTES the
9599 corresponding number of bytes. Value is null if no such row
9600 exists, i.e. all rows are affected by changes. */
5f5c8ee5
GM
9601
9602static struct glyph_row *
9603get_first_unchanged_at_end_row (w, delta, delta_bytes)
9604 struct window *w;
9605 int *delta, *delta_bytes;
a2889657 9606{
5f5c8ee5
GM
9607 struct glyph_row *row;
9608 struct glyph_row *row_found = NULL;
c581d710 9609
5f5c8ee5 9610 *delta = *delta_bytes = 0;
b2a76982 9611
5f5c8ee5
GM
9612 /* A value of window_end_pos >= end_unchanged means that the window
9613 end is in the range of changed text. If so, there is no
9614 unchanged row at the end of W's current matrix. */
9615 xassert (!NILP (w->window_end_valid));
9142dd5b 9616 if (XFASTINT (w->window_end_pos) >= END_UNCHANGED)
5f5c8ee5
GM
9617 return NULL;
9618
9619 /* Set row to the last row in W's current matrix displaying text. */
9620 row = MATRIX_ROW (w->current_matrix, XFASTINT (w->window_end_vpos));
9621
5f5c8ee5
GM
9622 /* If matrix is entirely empty, no unchanged row exists. */
9623 if (MATRIX_ROW_DISPLAYS_TEXT_P (row))
9624 {
9625 /* The value of row is the last glyph row in the matrix having a
9626 meaningful buffer position in it. The end position of row
9627 corresponds to window_end_pos. This allows us to translate
9628 buffer positions in the current matrix to current buffer
9629 positions for characters not in changed text. */
9630 int Z_old = MATRIX_ROW_END_CHARPOS (row) + XFASTINT (w->window_end_pos);
9631 int Z_BYTE_old = MATRIX_ROW_END_BYTEPOS (row) + w->window_end_bytepos;
9632 int last_unchanged_pos, last_unchanged_pos_old;
9633 struct glyph_row *first_text_row
9634 = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
9635
9636 *delta = Z - Z_old;
9637 *delta_bytes = Z_BYTE - Z_BYTE_old;
9638
9639 /* Set last_unchanged_pos to the buffer position of the last
9640 character in the buffer that has not been changed. Z is the
9641 index + 1 of the last byte in current_buffer, i.e. by
9642 subtracting end_unchanged we get the index of the last
9643 unchanged character, and we have to add BEG to get its buffer
9644 position. */
9142dd5b 9645 last_unchanged_pos = Z - END_UNCHANGED + BEG;
5f5c8ee5
GM
9646 last_unchanged_pos_old = last_unchanged_pos - *delta;
9647
9648 /* Search backward from ROW for a row displaying a line that
9649 starts at a minimum position >= last_unchanged_pos_old. */
9650 while (row >= first_text_row)
9651 {
9652 xassert (row->enabled_p);
9653 xassert (MATRIX_ROW_DISPLAYS_TEXT_P (row));
9654
9655 if (MATRIX_ROW_START_CHARPOS (row) >= last_unchanged_pos_old)
9656 row_found = row;
9657 --row;
9658 }
9659 }
9660
9661 xassert (!row_found || MATRIX_ROW_DISPLAYS_TEXT_P (row_found));
9662 return row_found;
c581d710
RS
9663}
9664
c581d710 9665
5f5c8ee5
GM
9666/* Make sure that glyph rows in the current matrix of window W
9667 reference the same glyph memory as corresponding rows in the
9668 frame's frame matrix. This function is called after scrolling W's
9669 current matrix on a terminal frame in try_window_id and
9670 try_window_reusing_current_matrix. */
9671
9672static void
9673sync_frame_with_window_matrix_rows (w)
9674 struct window *w;
c581d710 9675{
5f5c8ee5
GM
9676 struct frame *f = XFRAME (w->frame);
9677 struct glyph_row *window_row, *window_row_end, *frame_row;
9678
9679 /* Preconditions: W must be a leaf window and full-width. Its frame
9680 must have a frame matrix. */
9681 xassert (NILP (w->hchild) && NILP (w->vchild));
9682 xassert (WINDOW_FULL_WIDTH_P (w));
9683 xassert (!FRAME_WINDOW_P (f));
9684
9685 /* If W is a full-width window, glyph pointers in W's current matrix
9686 have, by definition, to be the same as glyph pointers in the
9687 corresponding frame matrix. */
9688 window_row = w->current_matrix->rows;
9689 window_row_end = window_row + w->current_matrix->nrows;
9690 frame_row = f->current_matrix->rows + XFASTINT (w->top);
9691 while (window_row < window_row_end)
659a218f 9692 {
5f5c8ee5
GM
9693 int area;
9694 for (area = LEFT_MARGIN_AREA; area <= LAST_AREA; ++area)
9695 frame_row->glyphs[area] = window_row->glyphs[area];
9696 ++window_row, ++frame_row;
659a218f 9697 }
a2889657 9698}
5f5c8ee5
GM
9699
9700
e037b9ec
GM
9701/* Find the glyph row in window W containing CHARPOS. Consider all
9702 rows between START and END (not inclusive). END null means search
9703 all rows to the end of the display area of W. Value is the row
9704 containing CHARPOS or null. */
9705
9706static struct glyph_row *
9707row_containing_pos (w, charpos, start, end)
9708 struct window *w;
9709 int charpos;
9710 struct glyph_row *start, *end;
9711{
9712 struct glyph_row *row = start;
9713 int last_y;
9714
9715 /* If we happen to start on a header-line, skip that. */
9716 if (row->mode_line_p)
9717 ++row;
9718
9719 if ((end && row >= end) || !row->enabled_p)
9720 return NULL;
9721
9722 last_y = window_text_bottom_y (w);
9723
9724 while ((end == NULL || row < end)
9725 && (MATRIX_ROW_END_CHARPOS (row) < charpos
9726 /* The end position of a row equals the start
9727 position of the next row. If CHARPOS is there, we
9728 would rather display it in the next line, except
9729 when this line ends in ZV. */
9730 || (MATRIX_ROW_END_CHARPOS (row) == charpos
9731 && (MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row)
9732 || !row->ends_at_zv_p)))
9733 && MATRIX_ROW_BOTTOM_Y (row) < last_y)
9734 ++row;
9735
9736 /* Give up if CHARPOS not found. */
9737 if ((end && row >= end)
9738 || charpos < MATRIX_ROW_START_CHARPOS (row)
9739 || charpos > MATRIX_ROW_END_CHARPOS (row))
9740 row = NULL;
9741
9742 return row;
9743}
9744
9745
5f5c8ee5
GM
9746/* Try to redisplay window W by reusing its existing display. W's
9747 current matrix must be up to date when this function is called,
9748 i.e. window_end_valid must not be nil.
9749
9750 Value is
9751
9752 1 if display has been updated
9753 0 if otherwise unsuccessful
9754 -1 if redisplay with same window start is known not to succeed
9755
9756 The following steps are performed:
9757
9758 1. Find the last row in the current matrix of W that is not
9759 affected by changes at the start of current_buffer. If no such row
9760 is found, give up.
9761
9762 2. Find the first row in W's current matrix that is not affected by
9763 changes at the end of current_buffer. Maybe there is no such row.
9764
9765 3. Display lines beginning with the row + 1 found in step 1 to the
9766 row found in step 2 or, if step 2 didn't find a row, to the end of
9767 the window.
9768
9769 4. If cursor is not known to appear on the window, give up.
9770
9771 5. If display stopped at the row found in step 2, scroll the
9772 display and current matrix as needed.
9773
9774 6. Maybe display some lines at the end of W, if we must. This can
9775 happen under various circumstances, like a partially visible line
9776 becoming fully visible, or because newly displayed lines are displayed
9777 in smaller font sizes.
9778
9779 7. Update W's window end information. */
9780
9781 /* Check that window end is what we expect it to be. */
12adba34
RS
9782
9783static int
5f5c8ee5 9784try_window_id (w)
12adba34 9785 struct window *w;
12adba34 9786{
5f5c8ee5
GM
9787 struct frame *f = XFRAME (w->frame);
9788 struct glyph_matrix *current_matrix = w->current_matrix;
9789 struct glyph_matrix *desired_matrix = w->desired_matrix;
9790 struct glyph_row *last_unchanged_at_beg_row;
9791 struct glyph_row *first_unchanged_at_end_row;
9792 struct glyph_row *row;
9793 struct glyph_row *bottom_row;
9794 int bottom_vpos;
9795 struct it it;
9796 int delta = 0, delta_bytes = 0, stop_pos, dvpos, dy;
9797 struct text_pos start_pos;
9798 struct run run;
9799 int first_unchanged_at_end_vpos = 0;
9800 struct glyph_row *last_text_row, *last_text_row_at_end;
9801 struct text_pos start;
9802
9803 SET_TEXT_POS_FROM_MARKER (start, w->start);
9804
9805 /* Check pre-conditions. Window end must be valid, otherwise
9806 the current matrix would not be up to date. */
9807 xassert (!NILP (w->window_end_valid));
9808 xassert (FRAME_WINDOW_P (XFRAME (w->frame))
9809 || (line_ins_del_ok && WINDOW_FULL_WIDTH_P (w)));
9810
9811 /* Make sure beg_unchanged and end_unchanged are up to date. Do it
9812 only if buffer has really changed. The reason is that the gap is
9813 initially at Z for freshly visited files. The code below would
9814 set end_unchanged to 0 in that case. */
9815 if (MODIFF > SAVE_MODIFF)
9816 {
9142dd5b
GM
9817 if (GPT - BEG < BEG_UNCHANGED)
9818 BEG_UNCHANGED = GPT - BEG;
9819 if (Z - GPT < END_UNCHANGED)
9820 END_UNCHANGED = Z - GPT;
5f5c8ee5
GM
9821 }
9822
9823 /* If window starts after a line end, and the last change is in
9824 front of that newline, then changes don't affect the display.
9825 This case happens with stealth-fontification. */
9826 row = MATRIX_ROW (w->current_matrix, XFASTINT (w->window_end_vpos));
9827 if (CHARPOS (start) > BEGV
9142dd5b 9828 && Z - END_UNCHANGED < CHARPOS (start) - 1
5f5c8ee5
GM
9829 && FETCH_BYTE (BYTEPOS (start) - 1) == '\n'
9830 && PT < MATRIX_ROW_END_CHARPOS (row))
9831 {
9832 /* We have to update window end positions because the buffer's
9833 size has changed. */
9834 w->window_end_pos
9835 = make_number (Z - MATRIX_ROW_END_CHARPOS (row));
9836 w->window_end_bytepos
9837 = make_number (Z_BYTE - MATRIX_ROW_END_BYTEPOS (row));
9838 return 1;
9839 }
9840
9841 /* Return quickly if changes are all below what is displayed in the
9842 window, and if PT is in the window. */
9142dd5b 9843 if (BEG_UNCHANGED > MATRIX_ROW_END_CHARPOS (row)
5f5c8ee5
GM
9844 && PT < MATRIX_ROW_END_CHARPOS (row))
9845 {
9846 /* We have to update window end positions because the buffer's
9847 size has changed. */
9848 w->window_end_pos
9849 = make_number (Z - MATRIX_ROW_END_CHARPOS (row));
9850 w->window_end_bytepos
9851 = make_number (Z_BYTE - MATRIX_ROW_END_BYTEPOS (row));
9852 return 1;
9853 }
9854
9855 /* Check that window start agrees with the start of the first glyph
9856 row in its current matrix. Check this after we know the window
9857 start is not in changed text, otherwise positions would not be
9858 comparable. */
9859 row = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
9860 if (!TEXT_POS_EQUAL_P (start, row->start.pos))
9861 return 0;
9862
5f5c8ee5
GM
9863 /* Compute the position at which we have to start displaying new
9864 lines. Some of the lines at the top of the window might be
9865 reusable because they are not displaying changed text. Find the
9866 last row in W's current matrix not affected by changes at the
9867 start of current_buffer. Value is null if changes start in the
9868 first line of window. */
9869 last_unchanged_at_beg_row = get_last_unchanged_at_beg_row (w);
9870 if (last_unchanged_at_beg_row)
9871 {
9872 init_to_row_end (&it, w, last_unchanged_at_beg_row);
9873 start_pos = it.current.pos;
9874
9875 /* Start displaying new lines in the desired matrix at the same
9876 vpos we would use in the current matrix, i.e. below
9877 last_unchanged_at_beg_row. */
9878 it.vpos = 1 + MATRIX_ROW_VPOS (last_unchanged_at_beg_row,
9879 current_matrix);
9880 it.glyph_row = MATRIX_ROW (desired_matrix, it.vpos);
9881 it.current_y = MATRIX_ROW_BOTTOM_Y (last_unchanged_at_beg_row);
9882
9883 xassert (it.hpos == 0 && it.current_x == 0);
9884 }
9885 else
9886 {
9887 /* There are no reusable lines at the start of the window.
9888 Start displaying in the first line. */
9889 start_display (&it, w, start);
9890 start_pos = it.current.pos;
9891 }
9892
5f5c8ee5
GM
9893 /* Find the first row that is not affected by changes at the end of
9894 the buffer. Value will be null if there is no unchanged row, in
9895 which case we must redisplay to the end of the window. delta
9896 will be set to the value by which buffer positions beginning with
9897 first_unchanged_at_end_row have to be adjusted due to text
9898 changes. */
9899 first_unchanged_at_end_row
9900 = get_first_unchanged_at_end_row (w, &delta, &delta_bytes);
9901 IF_DEBUG (debug_delta = delta);
9902 IF_DEBUG (debug_delta_bytes = delta_bytes);
9903
9904 /* Set stop_pos to the buffer position up to which we will have to
9905 display new lines. If first_unchanged_at_end_row != NULL, this
9906 is the buffer position of the start of the line displayed in that
9907 row. For first_unchanged_at_end_row == NULL, use 0 to indicate
9908 that we don't stop at a buffer position. */
9909 stop_pos = 0;
9910 if (first_unchanged_at_end_row)
9911 {
9912 xassert (last_unchanged_at_beg_row == NULL
9913 || first_unchanged_at_end_row >= last_unchanged_at_beg_row);
9914
9915 /* If this is a continuation line, move forward to the next one
9916 that isn't. Changes in lines above affect this line.
9917 Caution: this may move first_unchanged_at_end_row to a row
9918 not displaying text. */
9919 while (MATRIX_ROW_CONTINUATION_LINE_P (first_unchanged_at_end_row)
9920 && MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row)
9921 && (MATRIX_ROW_BOTTOM_Y (first_unchanged_at_end_row)
9922 < it.last_visible_y))
9923 ++first_unchanged_at_end_row;
9924
9925 if (!MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row)
9926 || (MATRIX_ROW_BOTTOM_Y (first_unchanged_at_end_row)
9927 >= it.last_visible_y))
9928 first_unchanged_at_end_row = NULL;
9929 else
9930 {
9931 stop_pos = (MATRIX_ROW_START_CHARPOS (first_unchanged_at_end_row)
9932 + delta);
9933 first_unchanged_at_end_vpos
9934 = MATRIX_ROW_VPOS (first_unchanged_at_end_row, current_matrix);
9142dd5b 9935 xassert (stop_pos >= Z - END_UNCHANGED);
5f5c8ee5
GM
9936 }
9937 }
9938 else if (last_unchanged_at_beg_row == NULL)
9939 return 0;
9940
9941
9942#if GLYPH_DEBUG
9943
9944 /* Either there is no unchanged row at the end, or the one we have
9945 now displays text. This is a necessary condition for the window
9946 end pos calculation at the end of this function. */
9947 xassert (first_unchanged_at_end_row == NULL
9948 || MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row));
9949
9950 debug_last_unchanged_at_beg_vpos
9951 = (last_unchanged_at_beg_row
9952 ? MATRIX_ROW_VPOS (last_unchanged_at_beg_row, current_matrix)
9953 : -1);
9954 debug_first_unchanged_at_end_vpos = first_unchanged_at_end_vpos;
9955
9956#endif /* GLYPH_DEBUG != 0 */
9957
9958
9959 /* Display new lines. Set last_text_row to the last new line
9960 displayed which has text on it, i.e. might end up as being the
9961 line where the window_end_vpos is. */
9962 w->cursor.vpos = -1;
9963 last_text_row = NULL;
9964 overlay_arrow_seen = 0;
9965 while (it.current_y < it.last_visible_y
9966 && !fonts_changed_p
9967 && (first_unchanged_at_end_row == NULL
9968 || IT_CHARPOS (it) < stop_pos))
9969 {
9970 if (display_line (&it))
9971 last_text_row = it.glyph_row - 1;
9972 }
9973
9974 if (fonts_changed_p)
9975 return -1;
9976
9977
9978 /* Compute differences in buffer positions, y-positions etc. for
9979 lines reused at the bottom of the window. Compute what we can
9980 scroll. */
ca42b2e8
GM
9981 if (first_unchanged_at_end_row
9982 /* No lines reused because we displayed everything up to the
9983 bottom of the window. */
9984 && it.current_y < it.last_visible_y)
5f5c8ee5
GM
9985 {
9986 dvpos = (it.vpos
9987 - MATRIX_ROW_VPOS (first_unchanged_at_end_row,
9988 current_matrix));
9989 dy = it.current_y - first_unchanged_at_end_row->y;
9990 run.current_y = first_unchanged_at_end_row->y;
9991 run.desired_y = run.current_y + dy;
9992 run.height = it.last_visible_y - max (run.current_y, run.desired_y);
9993 }
9994 else
ca42b2e8
GM
9995 {
9996 delta = dvpos = dy = run.current_y = run.desired_y = run.height = 0;
9997 first_unchanged_at_end_row = NULL;
9998 }
5f5c8ee5
GM
9999 IF_DEBUG (debug_dvpos = dvpos; debug_dy = dy);
10000
8f8ba186 10001
5f5c8ee5
GM
10002 /* Find the cursor if not already found. We have to decide whether
10003 PT will appear on this window (it sometimes doesn't, but this is
10004 not a very frequent case.) This decision has to be made before
10005 the current matrix is altered. A value of cursor.vpos < 0 means
10006 that PT is either in one of the lines beginning at
10007 first_unchanged_at_end_row or below the window. Don't care for
10008 lines that might be displayed later at the window end; as
10009 mentioned, this is not a frequent case. */
10010 if (w->cursor.vpos < 0)
10011 {
5f5c8ee5
GM
10012 /* Cursor in unchanged rows at the top? */
10013 if (PT < CHARPOS (start_pos)
10014 && last_unchanged_at_beg_row)
10015 {
e037b9ec
GM
10016 row = row_containing_pos (w, PT,
10017 MATRIX_FIRST_TEXT_ROW (w->current_matrix),
10018 last_unchanged_at_beg_row + 1);
10019 xassert (row && row <= last_unchanged_at_beg_row);
5f5c8ee5
GM
10020 set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0);
10021 }
10022
10023 /* Start from first_unchanged_at_end_row looking for PT. */
10024 else if (first_unchanged_at_end_row)
10025 {
e037b9ec
GM
10026 row = row_containing_pos (w, PT - delta,
10027 first_unchanged_at_end_row, NULL);
10028 if (row)
468155d7
GM
10029 set_cursor_from_row (w, row, w->current_matrix, delta,
10030 delta_bytes, dy, dvpos);
5f5c8ee5
GM
10031 }
10032
10033 /* Give up if cursor was not found. */
10034 if (w->cursor.vpos < 0)
10035 {
10036 clear_glyph_matrix (w->desired_matrix);
10037 return -1;
10038 }
10039 }
10040
10041 /* Don't let the cursor end in the scroll margins. */
10042 {
10043 int this_scroll_margin, cursor_height;
10044
10045 this_scroll_margin = max (0, scroll_margin);
10046 this_scroll_margin = min (this_scroll_margin,
10047 XFASTINT (w->height) / 4);
10048 this_scroll_margin *= CANON_Y_UNIT (it.f);
10049 cursor_height = MATRIX_ROW (w->desired_matrix, w->cursor.vpos)->height;
10050
10051 if ((w->cursor.y < this_scroll_margin
10052 && CHARPOS (start) > BEGV)
10053 /* Don't take scroll margin into account at the bottom because
10054 old redisplay didn't do it either. */
10055 || w->cursor.y + cursor_height > it.last_visible_y)
10056 {
10057 w->cursor.vpos = -1;
10058 clear_glyph_matrix (w->desired_matrix);
10059 return -1;
10060 }
10061 }
10062
10063 /* Scroll the display. Do it before changing the current matrix so
10064 that xterm.c doesn't get confused about where the cursor glyph is
10065 found. */
10066 if (dy)
10067 {
10068 update_begin (f);
10069
10070 if (FRAME_WINDOW_P (f))
10071 {
10072 rif->update_window_begin_hook (w);
10073 rif->scroll_run_hook (w, &run);
10074 rif->update_window_end_hook (w, 0);
10075 }
10076 else
10077 {
10078 /* Terminal frame. In this case, dvpos gives the number of
10079 lines to scroll by; dvpos < 0 means scroll up. */
10080 int first_unchanged_at_end_vpos
10081 = MATRIX_ROW_VPOS (first_unchanged_at_end_row, w->current_matrix);
10082 int from = XFASTINT (w->top) + first_unchanged_at_end_vpos;
10083 int end = XFASTINT (w->top) + window_internal_height (w);
10084
10085 /* Perform the operation on the screen. */
10086 if (dvpos > 0)
10087 {
10088 /* Scroll last_unchanged_at_beg_row to the end of the
10089 window down dvpos lines. */
10090 set_terminal_window (end);
10091
10092 /* On dumb terminals delete dvpos lines at the end
10093 before inserting dvpos empty lines. */
10094 if (!scroll_region_ok)
10095 ins_del_lines (end - dvpos, -dvpos);
10096
10097 /* Insert dvpos empty lines in front of
10098 last_unchanged_at_beg_row. */
10099 ins_del_lines (from, dvpos);
10100 }
10101 else if (dvpos < 0)
10102 {
10103 /* Scroll up last_unchanged_at_beg_vpos to the end of
10104 the window to last_unchanged_at_beg_vpos - |dvpos|. */
10105 set_terminal_window (end);
10106
10107 /* Delete dvpos lines in front of
10108 last_unchanged_at_beg_vpos. ins_del_lines will set
10109 the cursor to the given vpos and emit |dvpos| delete
10110 line sequences. */
10111 ins_del_lines (from + dvpos, dvpos);
10112
10113 /* On a dumb terminal insert dvpos empty lines at the
10114 end. */
10115 if (!scroll_region_ok)
10116 ins_del_lines (end + dvpos, -dvpos);
10117 }
10118
10119 set_terminal_window (0);
10120 }
10121
10122 update_end (f);
10123 }
10124
ca42b2e8
GM
10125 /* Shift reused rows of the current matrix to the right position.
10126 BOTTOM_ROW is the last + 1 row in the current matrix reserved for
10127 text. */
10128 bottom_row = MATRIX_BOTTOM_TEXT_ROW (current_matrix, w);
10129 bottom_vpos = MATRIX_ROW_VPOS (bottom_row, current_matrix);
5f5c8ee5
GM
10130 if (dvpos < 0)
10131 {
10132 rotate_matrix (current_matrix, first_unchanged_at_end_vpos + dvpos,
10133 bottom_vpos, dvpos);
10134 enable_glyph_matrix_rows (current_matrix, bottom_vpos + dvpos,
10135 bottom_vpos, 0);
10136 }
10137 else if (dvpos > 0)
10138 {
10139 rotate_matrix (current_matrix, first_unchanged_at_end_vpos,
10140 bottom_vpos, dvpos);
10141 enable_glyph_matrix_rows (current_matrix, first_unchanged_at_end_vpos,
10142 first_unchanged_at_end_vpos + dvpos, 0);
10143 }
10144
10145 /* For frame-based redisplay, make sure that current frame and window
10146 matrix are in sync with respect to glyph memory. */
10147 if (!FRAME_WINDOW_P (f))
10148 sync_frame_with_window_matrix_rows (w);
10149
10150 /* Adjust buffer positions in reused rows. */
10151 if (delta)
10152 increment_glyph_matrix_buffer_positions (current_matrix,
10153 first_unchanged_at_end_vpos + dvpos,
10154 bottom_vpos, delta, delta_bytes);
10155
10156 /* Adjust Y positions. */
10157 if (dy)
10158 shift_glyph_matrix (w, current_matrix,
10159 first_unchanged_at_end_vpos + dvpos,
10160 bottom_vpos, dy);
10161
10162 if (first_unchanged_at_end_row)
10163 first_unchanged_at_end_row += dvpos;
10164
10165 /* If scrolling up, there may be some lines to display at the end of
10166 the window. */
10167 last_text_row_at_end = NULL;
10168 if (dy < 0)
10169 {
10170 /* Set last_row to the glyph row in the current matrix where the
10171 window end line is found. It has been moved up or down in
10172 the matrix by dvpos. */
10173 int last_vpos = XFASTINT (w->window_end_vpos) + dvpos;
10174 struct glyph_row *last_row = MATRIX_ROW (current_matrix, last_vpos);
10175
10176 /* If last_row is the window end line, it should display text. */
10177 xassert (last_row->displays_text_p);
10178
10179 /* If window end line was partially visible before, begin
10180 displaying at that line. Otherwise begin displaying with the
10181 line following it. */
10182 if (MATRIX_ROW_BOTTOM_Y (last_row) - dy >= it.last_visible_y)
10183 {
10184 init_to_row_start (&it, w, last_row);
10185 it.vpos = last_vpos;
10186 it.current_y = last_row->y;
10187 }
10188 else
10189 {
10190 init_to_row_end (&it, w, last_row);
10191 it.vpos = 1 + last_vpos;
10192 it.current_y = MATRIX_ROW_BOTTOM_Y (last_row);
10193 ++last_row;
10194 }
12adba34 10195
5f5c8ee5
GM
10196 /* We may start in a continuation line. If so, we have to get
10197 the right continuation_lines_width and current_x. */
10198 it.continuation_lines_width = last_row->continuation_lines_width;
10199 it.hpos = it.current_x = 0;
10200
10201 /* Display the rest of the lines at the window end. */
10202 it.glyph_row = MATRIX_ROW (desired_matrix, it.vpos);
10203 while (it.current_y < it.last_visible_y
10204 && !fonts_changed_p)
10205 {
10206 /* Is it always sure that the display agrees with lines in
10207 the current matrix? I don't think so, so we mark rows
10208 displayed invalid in the current matrix by setting their
10209 enabled_p flag to zero. */
10210 MATRIX_ROW (w->current_matrix, it.vpos)->enabled_p = 0;
10211 if (display_line (&it))
10212 last_text_row_at_end = it.glyph_row - 1;
10213 }
10214 }
12adba34 10215
5f5c8ee5
GM
10216 /* Update window_end_pos and window_end_vpos. */
10217 if (first_unchanged_at_end_row
10218 && first_unchanged_at_end_row->y < it.last_visible_y
10219 && !last_text_row_at_end)
10220 {
10221 /* Window end line if one of the preserved rows from the current
10222 matrix. Set row to the last row displaying text in current
10223 matrix starting at first_unchanged_at_end_row, after
10224 scrolling. */
10225 xassert (first_unchanged_at_end_row->displays_text_p);
10226 row = find_last_row_displaying_text (w->current_matrix, &it,
10227 first_unchanged_at_end_row);
10228 xassert (row && MATRIX_ROW_DISPLAYS_TEXT_P (row));
10229
10230 XSETFASTINT (w->window_end_pos, Z - MATRIX_ROW_END_CHARPOS (row));
10231 w->window_end_bytepos = Z_BYTE - MATRIX_ROW_END_BYTEPOS (row);
10232 XSETFASTINT (w->window_end_vpos,
10233 MATRIX_ROW_VPOS (row, w->current_matrix));
10234 }
10235 else if (last_text_row_at_end)
10236 {
10237 XSETFASTINT (w->window_end_pos,
10238 Z - MATRIX_ROW_END_CHARPOS (last_text_row_at_end));
10239 w->window_end_bytepos
10240 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_text_row_at_end);
10241 XSETFASTINT (w->window_end_vpos,
10242 MATRIX_ROW_VPOS (last_text_row_at_end, desired_matrix));
10243 }
10244 else if (last_text_row)
10245 {
10246 /* We have displayed either to the end of the window or at the
10247 end of the window, i.e. the last row with text is to be found
10248 in the desired matrix. */
10249 XSETFASTINT (w->window_end_pos,
10250 Z - MATRIX_ROW_END_CHARPOS (last_text_row));
10251 w->window_end_bytepos
10252 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_text_row);
10253 XSETFASTINT (w->window_end_vpos,
10254 MATRIX_ROW_VPOS (last_text_row, desired_matrix));
10255 }
10256 else if (first_unchanged_at_end_row == NULL
10257 && last_text_row == NULL
10258 && last_text_row_at_end == NULL)
10259 {
10260 /* Displayed to end of window, but no line containing text was
10261 displayed. Lines were deleted at the end of the window. */
10262 int vpos;
045dee35 10263 int header_line_p = WINDOW_WANTS_HEADER_LINE_P (w) ? 1 : 0;
5f5c8ee5
GM
10264
10265 for (vpos = XFASTINT (w->window_end_vpos); vpos > 0; --vpos)
045dee35
GM
10266 if ((w->desired_matrix->rows[vpos + header_line_p].enabled_p
10267 && w->desired_matrix->rows[vpos + header_line_p].displays_text_p)
10268 || (!w->desired_matrix->rows[vpos + header_line_p].enabled_p
10269 && w->current_matrix->rows[vpos + header_line_p].displays_text_p))
5f5c8ee5 10270 break;
12adba34 10271
5f5c8ee5
GM
10272 w->window_end_vpos = make_number (vpos);
10273 }
10274 else
10275 abort ();
10276
10277 IF_DEBUG (debug_end_pos = XFASTINT (w->window_end_pos);
10278 debug_end_vpos = XFASTINT (w->window_end_vpos));
12adba34 10279
5f5c8ee5
GM
10280 /* Record that display has not been completed. */
10281 w->window_end_valid = Qnil;
10282 w->desired_matrix->no_scrolling_p = 1;
10283 return 1;
12adba34 10284}
0f9c0ff0 10285
a2889657 10286
5f5c8ee5
GM
10287\f
10288/***********************************************************************
10289 More debugging support
10290 ***********************************************************************/
a2889657 10291
5f5c8ee5 10292#if GLYPH_DEBUG
a2889657 10293
5f5c8ee5
GM
10294 void dump_glyph_row P_ ((struct glyph_matrix *, int, int));
10295static void dump_glyph_matrix P_ ((struct glyph_matrix *, int));
1c9241f5 10296
31b24551 10297
5f5c8ee5
GM
10298/* Dump the contents of glyph matrix MATRIX on stderr. If
10299 WITH_GLYPHS_P is non-zero, dump glyph contents as well. */
ca26e1c8 10300
5f5c8ee5
GM
10301void
10302dump_glyph_matrix (matrix, with_glyphs_p)
10303 struct glyph_matrix *matrix;
10304 int with_glyphs_p;
10305{
efc63ef0 10306 int i;
5f5c8ee5
GM
10307 for (i = 0; i < matrix->nrows; ++i)
10308 dump_glyph_row (matrix, i, with_glyphs_p);
10309}
31b24551 10310
68a37fa8 10311
5f5c8ee5
GM
10312/* Dump the contents of glyph row at VPOS in MATRIX to stderr.
10313 WITH_GLYPH_SP non-zero means dump glyph contents, too. */
a2889657 10314
5f5c8ee5
GM
10315void
10316dump_glyph_row (matrix, vpos, with_glyphs_p)
10317 struct glyph_matrix *matrix;
10318 int vpos, with_glyphs_p;
10319{
10320 struct glyph_row *row;
10321
10322 if (vpos < 0 || vpos >= matrix->nrows)
10323 return;
10324
10325 row = MATRIX_ROW (matrix, vpos);
10326
10327 fprintf (stderr, "Row Start End Used oEI><O\\CTZF X Y W\n");
10328 fprintf (stderr, "=============================================\n");
10329
10330 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",
10331 row - matrix->rows,
10332 MATRIX_ROW_START_CHARPOS (row),
10333 MATRIX_ROW_END_CHARPOS (row),
10334 row->used[TEXT_AREA],
10335 row->contains_overlapping_glyphs_p,
10336 row->enabled_p,
10337 row->inverse_p,
10338 row->truncated_on_left_p,
10339 row->truncated_on_right_p,
10340 row->overlay_arrow_p,
10341 row->continued_p,
10342 MATRIX_ROW_CONTINUATION_LINE_P (row),
10343 row->displays_text_p,
10344 row->ends_at_zv_p,
10345 row->fill_line_p,
10346 row->x,
10347 row->y,
10348 row->pixel_width);
10349 fprintf (stderr, "%9d %5d\n", row->start.overlay_string_index,
10350 row->end.overlay_string_index);
10351 fprintf (stderr, "%9d %5d\n",
10352 CHARPOS (row->start.string_pos),
10353 CHARPOS (row->end.string_pos));
10354 fprintf (stderr, "%9d %5d\n", row->start.dpvec_index,
10355 row->end.dpvec_index);
10356
10357 if (with_glyphs_p)
bd66d1ba 10358 {
5f5c8ee5
GM
10359 struct glyph *glyph, *glyph_end;
10360 int prev_had_glyphs_p;
10361
10362 glyph = row->glyphs[TEXT_AREA];
10363 glyph_end = glyph + row->used[TEXT_AREA];
10364
10365 /* Glyph for a line end in text. */
10366 if (glyph == glyph_end && glyph->charpos > 0)
10367 ++glyph_end;
10368
10369 if (glyph < glyph_end)
bd66d1ba 10370 {
5f5c8ee5
GM
10371 fprintf (stderr, " Glyph Type Pos W Code C Face LR\n");
10372 prev_had_glyphs_p = 1;
bd66d1ba
RS
10373 }
10374 else
5f5c8ee5
GM
10375 prev_had_glyphs_p = 0;
10376
10377 while (glyph < glyph_end)
f7b4b63a 10378 {
5f5c8ee5
GM
10379 if (glyph->type == CHAR_GLYPH)
10380 {
10381 fprintf (stderr,
10382 " %5d %4c %6d %3d 0x%05x %c %4d %1.1d%1.1d\n",
10383 glyph - row->glyphs[TEXT_AREA],
10384 'C',
10385 glyph->charpos,
10386 glyph->pixel_width,
10387 glyph->u.ch.code,
10388 (glyph->u.ch.code < 0x80 && glyph->u.ch.code >= ' '
10389 ? glyph->u.ch.code
10390 : '.'),
10391 glyph->u.ch.face_id,
10392 glyph->left_box_line_p,
10393 glyph->right_box_line_p);
10394 }
10395 else if (glyph->type == STRETCH_GLYPH)
10396 {
10397 fprintf (stderr,
10398 " %5d %4c %6d %3d 0x%05x %c %4d %1.1d%1.1d\n",
10399 glyph - row->glyphs[TEXT_AREA],
10400 'S',
10401 glyph->charpos,
10402 glyph->pixel_width,
10403 0,
10404 '.',
10405 glyph->u.stretch.face_id,
10406 glyph->left_box_line_p,
10407 glyph->right_box_line_p);
10408 }
10409 else if (glyph->type == IMAGE_GLYPH)
10410 {
10411 fprintf (stderr,
10412 " %5d %4c %6d %3d 0x%05x %c %4d %1.1d%1.1d\n",
10413 glyph - row->glyphs[TEXT_AREA],
10414 'I',
10415 glyph->charpos,
10416 glyph->pixel_width,
10417 glyph->u.img.id,
10418 '.',
10419 glyph->u.img.face_id,
10420 glyph->left_box_line_p,
10421 glyph->right_box_line_p);
10422 }
10423 ++glyph;
f7b4b63a 10424 }
f4faa47c 10425 }
5f5c8ee5 10426}
f4faa47c 10427
a2889657 10428
5f5c8ee5
GM
10429DEFUN ("dump-glyph-matrix", Fdump_glyph_matrix,
10430 Sdump_glyph_matrix, 0, 1, "p",
10431 "Dump the current matrix of the selected window to stderr.\n\
10432Shows contents of glyph row structures. With non-nil optional\n\
10433parameter WITH-GLYPHS-P, dump glyphs as well.")
10434 (with_glyphs_p)
10435{
10436 struct window *w = XWINDOW (selected_window);
10437 struct buffer *buffer = XBUFFER (w->buffer);
10438
10439 fprintf (stderr, "PT = %d, BEGV = %d. ZV = %d\n",
10440 BUF_PT (buffer), BUF_BEGV (buffer), BUF_ZV (buffer));
10441 fprintf (stderr, "Cursor x = %d, y = %d, hpos = %d, vpos = %d\n",
10442 w->cursor.x, w->cursor.y, w->cursor.hpos, w->cursor.vpos);
10443 fprintf (stderr, "=============================================\n");
10444 dump_glyph_matrix (w->current_matrix, !NILP (with_glyphs_p));
10445 return Qnil;
10446}
1c2250c2 10447
1fca3fae 10448
5f5c8ee5
GM
10449DEFUN ("dump-glyph-row", Fdump_glyph_row, Sdump_glyph_row, 1, 1, "",
10450 "Dump glyph row ROW to stderr.")
10451 (row)
10452 Lisp_Object row;
10453{
10454 CHECK_NUMBER (row, 0);
10455 dump_glyph_row (XWINDOW (selected_window)->current_matrix, XINT (row), 1);
10456 return Qnil;
10457}
1fca3fae 10458
67481ae5 10459
e037b9ec 10460DEFUN ("dump-tool-bar-row", Fdump_tool_bar_row, Sdump_tool_bar_row,
5f5c8ee5
GM
10461 0, 0, "", "")
10462 ()
10463{
886bd6f2
GM
10464 struct frame *sf = SELECTED_FRAME ();
10465 struct glyph_matrix *m = (XWINDOW (sf->tool_bar_window)
5f5c8ee5
GM
10466 ->current_matrix);
10467 dump_glyph_row (m, 0, 1);
10468 return Qnil;
10469}
ca26e1c8 10470
0f9c0ff0 10471
5f5c8ee5
GM
10472DEFUN ("trace-redisplay-toggle", Ftrace_redisplay_toggle,
10473 Strace_redisplay_toggle, 0, 0, "",
10474 "Toggle tracing of redisplay.")
10475 ()
10476{
10477 trace_redisplay_p = !trace_redisplay_p;
10478 return Qnil;
10479}
10480
10481
10482#endif /* GLYPH_DEBUG */
ca26e1c8 10483
ca26e1c8 10484
5f5c8ee5
GM
10485\f
10486/***********************************************************************
10487 Building Desired Matrix Rows
10488 ***********************************************************************/
a2889657 10489
5f5c8ee5
GM
10490/* Return a temporary glyph row holding the glyphs of an overlay
10491 arrow. Only used for non-window-redisplay windows. */
ca26e1c8 10492
5f5c8ee5
GM
10493static struct glyph_row *
10494get_overlay_arrow_glyph_row (w)
10495 struct window *w;
10496{
10497 struct frame *f = XFRAME (WINDOW_FRAME (w));
10498 struct buffer *buffer = XBUFFER (w->buffer);
10499 struct buffer *old = current_buffer;
10500 unsigned char *arrow_string = XSTRING (Voverlay_arrow_string)->data;
10501 int arrow_len = XSTRING (Voverlay_arrow_string)->size;
10502 unsigned char *arrow_end = arrow_string + arrow_len;
10503 unsigned char *p;
10504 struct it it;
10505 int multibyte_p;
10506 int n_glyphs_before;
10507
10508 set_buffer_temp (buffer);
10509 init_iterator (&it, w, -1, -1, &scratch_glyph_row, DEFAULT_FACE_ID);
10510 it.glyph_row->used[TEXT_AREA] = 0;
10511 SET_TEXT_POS (it.position, 0, 0);
10512
10513 multibyte_p = !NILP (buffer->enable_multibyte_characters);
10514 p = arrow_string;
10515 while (p < arrow_end)
10516 {
10517 Lisp_Object face, ilisp;
10518
10519 /* Get the next character. */
10520 if (multibyte_p)
4fdb80f2 10521 it.c = string_char_and_length (p, arrow_len, &it.len);
5f5c8ee5
GM
10522 else
10523 it.c = *p, it.len = 1;
10524 p += it.len;
10525
10526 /* Get its face. */
10527 XSETFASTINT (ilisp, p - arrow_string);
10528 face = Fget_text_property (ilisp, Qface, Voverlay_arrow_string);
10529 it.face_id = compute_char_face (f, it.c, face);
10530
10531 /* Compute its width, get its glyphs. */
10532 n_glyphs_before = it.glyph_row->used[TEXT_AREA];
337042a9 10533 SET_TEXT_POS (it.position, -1, -1);
5f5c8ee5
GM
10534 PRODUCE_GLYPHS (&it);
10535
10536 /* If this character doesn't fit any more in the line, we have
10537 to remove some glyphs. */
10538 if (it.current_x > it.last_visible_x)
10539 {
10540 it.glyph_row->used[TEXT_AREA] = n_glyphs_before;
10541 break;
10542 }
10543 }
10544
10545 set_buffer_temp (old);
10546 return it.glyph_row;
10547}
ca26e1c8 10548
b0a0fbda 10549
5f5c8ee5
GM
10550/* Insert truncation glyphs at the start of IT->glyph_row. Truncation
10551 glyphs are only inserted for terminal frames since we can't really
10552 win with truncation glyphs when partially visible glyphs are
10553 involved. Which glyphs to insert is determined by
10554 produce_special_glyphs. */
67481ae5 10555
5f5c8ee5
GM
10556static void
10557insert_left_trunc_glyphs (it)
10558 struct it *it;
10559{
10560 struct it truncate_it;
10561 struct glyph *from, *end, *to, *toend;
10562
10563 xassert (!FRAME_WINDOW_P (it->f));
10564
10565 /* Get the truncation glyphs. */
10566 truncate_it = *it;
10567 truncate_it.charset = -1;
10568 truncate_it.current_x = 0;
10569 truncate_it.face_id = DEFAULT_FACE_ID;
10570 truncate_it.glyph_row = &scratch_glyph_row;
10571 truncate_it.glyph_row->used[TEXT_AREA] = 0;
10572 CHARPOS (truncate_it.position) = BYTEPOS (truncate_it.position) = -1;
10573 truncate_it.object = 0;
10574 produce_special_glyphs (&truncate_it, IT_TRUNCATION);
10575
10576 /* Overwrite glyphs from IT with truncation glyphs. */
10577 from = truncate_it.glyph_row->glyphs[TEXT_AREA];
10578 end = from + truncate_it.glyph_row->used[TEXT_AREA];
10579 to = it->glyph_row->glyphs[TEXT_AREA];
10580 toend = to + it->glyph_row->used[TEXT_AREA];
10581
10582 while (from < end)
10583 *to++ = *from++;
10584
10585 /* There may be padding glyphs left over. Remove them. */
10586 from = to;
10587 while (from < toend && CHAR_GLYPH_PADDING_P (*from))
10588 ++from;
10589 while (from < toend)
10590 *to++ = *from++;
10591
10592 it->glyph_row->used[TEXT_AREA] = to - it->glyph_row->glyphs[TEXT_AREA];
10593}
e0bfbde6 10594
e0bfbde6 10595
5f5c8ee5 10596/* Compute the pixel height and width of IT->glyph_row.
9c49d3d7 10597
5f5c8ee5
GM
10598 Most of the time, ascent and height of a display line will be equal
10599 to the max_ascent and max_height values of the display iterator
10600 structure. This is not the case if
67481ae5 10601
5f5c8ee5
GM
10602 1. We hit ZV without displaying anything. In this case, max_ascent
10603 and max_height will be zero.
1c9241f5 10604
5f5c8ee5
GM
10605 2. We have some glyphs that don't contribute to the line height.
10606 (The glyph row flag contributes_to_line_height_p is for future
10607 pixmap extensions).
f6fd109b 10608
5f5c8ee5
GM
10609 The first case is easily covered by using default values because in
10610 these cases, the line height does not really matter, except that it
10611 must not be zero. */
67481ae5 10612
5f5c8ee5
GM
10613static void
10614compute_line_metrics (it)
10615 struct it *it;
10616{
10617 struct glyph_row *row = it->glyph_row;
10618 int area, i;
1c2250c2 10619
5f5c8ee5
GM
10620 if (FRAME_WINDOW_P (it->f))
10621 {
045dee35 10622 int i, header_line_height;
1c2250c2 10623
5f5c8ee5
GM
10624 /* The line may consist of one space only, that was added to
10625 place the cursor on it. If so, the row's height hasn't been
10626 computed yet. */
10627 if (row->height == 0)
10628 {
10629 if (it->max_ascent + it->max_descent == 0)
312246d1 10630 it->max_descent = it->max_phys_descent = CANON_Y_UNIT (it->f);
5f5c8ee5
GM
10631 row->ascent = it->max_ascent;
10632 row->height = it->max_ascent + it->max_descent;
312246d1
GM
10633 row->phys_ascent = it->max_phys_ascent;
10634 row->phys_height = it->max_phys_ascent + it->max_phys_descent;
5f5c8ee5
GM
10635 }
10636
10637 /* Compute the width of this line. */
10638 row->pixel_width = row->x;
10639 for (i = 0; i < row->used[TEXT_AREA]; ++i)
10640 row->pixel_width += row->glyphs[TEXT_AREA][i].pixel_width;
10641
10642 xassert (row->pixel_width >= 0);
10643 xassert (row->ascent >= 0 && row->height > 0);
10644
312246d1
GM
10645 row->overlapping_p = (MATRIX_ROW_OVERLAPS_SUCC_P (row)
10646 || MATRIX_ROW_OVERLAPS_PRED_P (row));
10647
10648 /* If first line's physical ascent is larger than its logical
10649 ascent, use the physical ascent, and make the row taller.
10650 This makes accented characters fully visible. */
10651 if (row == it->w->desired_matrix->rows
10652 && row->phys_ascent > row->ascent)
10653 {
10654 row->height += row->phys_ascent - row->ascent;
10655 row->ascent = row->phys_ascent;
10656 }
10657
5f5c8ee5
GM
10658 /* Compute how much of the line is visible. */
10659 row->visible_height = row->height;
10660
045dee35
GM
10661 header_line_height = WINDOW_DISPLAY_HEADER_LINE_HEIGHT (it->w);
10662 if (row->y < header_line_height)
10663 row->visible_height -= header_line_height - row->y;
5f5c8ee5
GM
10664 else
10665 {
10666 int max_y = WINDOW_DISPLAY_HEIGHT_NO_MODE_LINE (it->w);
10667 if (row->y + row->height > max_y)
10668 row->visible_height -= row->y + row->height - max_y;
10669 }
10670 }
10671 else
10672 {
10673 row->pixel_width = row->used[TEXT_AREA];
312246d1
GM
10674 row->ascent = row->phys_ascent = 0;
10675 row->height = row->phys_height = row->visible_height = 1;
5f5c8ee5 10676 }
67481ae5 10677
5f5c8ee5
GM
10678 /* Compute a hash code for this row. */
10679 row->hash = 0;
10680 for (area = LEFT_MARGIN_AREA; area < LAST_AREA; ++area)
10681 for (i = 0; i < row->used[area]; ++i)
10682 row->hash = ((((row->hash << 4) + (row->hash >> 24)) & 0x0fffffff)
10683 + row->glyphs[area][i].u.val
10684 + (row->glyphs[area][i].type << 2));
a2889657 10685
5f5c8ee5 10686 it->max_ascent = it->max_descent = 0;
312246d1 10687 it->max_phys_ascent = it->max_phys_descent = 0;
5f5c8ee5 10688}
12adba34 10689
ca26e1c8 10690
5f5c8ee5
GM
10691/* Append one space to the glyph row of iterator IT if doing a
10692 window-based redisplay. DEFAULT_FACE_P non-zero means let the
10693 space have the default face, otherwise let it have the same face as
c6e89d6c
GM
10694 IT->face_id.
10695
10696 This function is called to make sure that there is always one glyph
10697 at the end of a glyph row that the cursor can be set on under
10698 window-systems. (If there weren't such a glyph we would not know
10699 how wide and tall a box cursor should be displayed).
10700
10701 At the same time this space let's a nicely handle clearing to the
10702 end of the line if the row ends in italic text. */
ca26e1c8 10703
5f5c8ee5
GM
10704static void
10705append_space (it, default_face_p)
10706 struct it *it;
10707 int default_face_p;
10708{
10709 if (FRAME_WINDOW_P (it->f))
10710 {
10711 int n = it->glyph_row->used[TEXT_AREA];
ca26e1c8 10712
5f5c8ee5
GM
10713 if (it->glyph_row->glyphs[TEXT_AREA] + n
10714 < it->glyph_row->glyphs[1 + TEXT_AREA])
a2889657 10715 {
5f5c8ee5
GM
10716 /* Save some values that must not be changed. */
10717 int saved_x = it->current_x;
10718 struct text_pos saved_pos;
10719 int saved_what = it->what;
10720 int saved_face_id = it->face_id;
10721 int saved_charset = it->charset;
10722 Lisp_Object saved_object;
10723
10724 saved_object = it->object;
10725 saved_pos = it->position;
10726
10727 it->what = IT_CHARACTER;
10728 bzero (&it->position, sizeof it->position);
10729 it->object = 0;
10730 it->c = ' ';
10731 it->len = 1;
10732 it->charset = CHARSET_ASCII;
10733
10734 if (default_face_p)
10735 it->face_id = DEFAULT_FACE_ID;
10736 if (it->multibyte_p)
10737 it->face_id = FACE_FOR_CHARSET (it->f, it->face_id, CHARSET_ASCII);
10738 else
10739 it->face_id = FACE_FOR_CHARSET (it->f, it->face_id, -1);
1842fc1a 10740
5f5c8ee5
GM
10741 PRODUCE_GLYPHS (it);
10742
10743 it->current_x = saved_x;
10744 it->object = saved_object;
10745 it->position = saved_pos;
10746 it->what = saved_what;
10747 it->face_id = saved_face_id;
10748 it->charset = saved_charset;
10749 }
10750 }
10751}
12adba34 10752
1842fc1a 10753
5f5c8ee5
GM
10754/* Extend the face of the last glyph in the text area of IT->glyph_row
10755 to the end of the display line. Called from display_line.
10756 If the glyph row is empty, add a space glyph to it so that we
10757 know the face to draw. Set the glyph row flag fill_line_p. */
10758
10759static void
10760extend_face_to_end_of_line (it)
10761 struct it *it;
10762{
10763 struct face *face;
10764 struct frame *f = it->f;
1842fc1a 10765
5f5c8ee5
GM
10766 /* If line is already filled, do nothing. */
10767 if (it->current_x >= it->last_visible_x)
10768 return;
10769
10770 /* Face extension extends the background and box of IT->face_id
10771 to the end of the line. If the background equals the background
10772 of the frame, we haven't to do anything. */
10773 face = FACE_FROM_ID (f, it->face_id);
10774 if (FRAME_WINDOW_P (f)
10775 && face->box == FACE_NO_BOX
10776 && face->background == FRAME_BACKGROUND_PIXEL (f)
10777 && !face->stipple)
10778 return;
1842fc1a 10779
5f5c8ee5
GM
10780 /* Set the glyph row flag indicating that the face of the last glyph
10781 in the text area has to be drawn to the end of the text area. */
10782 it->glyph_row->fill_line_p = 1;
545e04f6 10783
5f5c8ee5
GM
10784 /* If current charset of IT is not ASCII, make sure we have the
10785 ASCII face. This will be automatically undone the next time
10786 get_next_display_element returns a character from a different
10787 charset. Note that the charset will always be ASCII in unibyte
10788 text. */
10789 if (it->charset != CHARSET_ASCII)
10790 {
10791 it->charset = CHARSET_ASCII;
10792 it->face_id = FACE_FOR_CHARSET (f, it->face_id, CHARSET_ASCII);
10793 }
545e04f6 10794
5f5c8ee5
GM
10795 if (FRAME_WINDOW_P (f))
10796 {
10797 /* If the row is empty, add a space with the current face of IT,
10798 so that we know which face to draw. */
10799 if (it->glyph_row->used[TEXT_AREA] == 0)
a2889657 10800 {
5f5c8ee5
GM
10801 it->glyph_row->glyphs[TEXT_AREA][0] = space_glyph;
10802 it->glyph_row->glyphs[TEXT_AREA][0].u.ch.face_id = it->face_id;
10803 it->glyph_row->used[TEXT_AREA] = 1;
a2889657 10804 }
5f5c8ee5
GM
10805 }
10806 else
10807 {
10808 /* Save some values that must not be changed. */
10809 int saved_x = it->current_x;
10810 struct text_pos saved_pos;
10811 Lisp_Object saved_object;
10812 int saved_what = it->what;
10813
10814 saved_object = it->object;
10815 saved_pos = it->position;
10816
10817 it->what = IT_CHARACTER;
10818 bzero (&it->position, sizeof it->position);
10819 it->object = 0;
10820 it->c = ' ';
10821 it->len = 1;
10822
10823 PRODUCE_GLYPHS (it);
10824
10825 while (it->current_x <= it->last_visible_x)
10826 PRODUCE_GLYPHS (it);
10827
10828 /* Don't count these blanks really. It would let us insert a left
10829 truncation glyph below and make us set the cursor on them, maybe. */
10830 it->current_x = saved_x;
10831 it->object = saved_object;
10832 it->position = saved_pos;
10833 it->what = saved_what;
10834 }
10835}
12adba34 10836
545e04f6 10837
5f5c8ee5
GM
10838/* Value is non-zero if text starting at CHARPOS in current_buffer is
10839 trailing whitespace. */
1c9241f5 10840
5f5c8ee5
GM
10841static int
10842trailing_whitespace_p (charpos)
10843 int charpos;
10844{
10845 int bytepos = CHAR_TO_BYTE (charpos);
10846 int c = 0;
7bbe686f 10847
5f5c8ee5
GM
10848 while (bytepos < ZV_BYTE
10849 && (c = FETCH_CHAR (bytepos),
10850 c == ' ' || c == '\t'))
10851 ++bytepos;
0d09d1e6 10852
8f897821
GM
10853 if (bytepos >= ZV_BYTE || c == '\n' || c == '\r')
10854 {
10855 if (bytepos != PT_BYTE)
10856 return 1;
10857 }
10858 return 0;
5f5c8ee5 10859}
31b24551 10860
545e04f6 10861
5f5c8ee5 10862/* Highlight trailing whitespace, if any, in ROW. */
545e04f6 10863
5f5c8ee5
GM
10864void
10865highlight_trailing_whitespace (f, row)
10866 struct frame *f;
10867 struct glyph_row *row;
10868{
10869 int used = row->used[TEXT_AREA];
10870
10871 if (used)
10872 {
10873 struct glyph *start = row->glyphs[TEXT_AREA];
10874 struct glyph *glyph = start + used - 1;
10875
10876 /* Skip over the space glyph inserted to display the
10877 cursor at the end of a line. */
10878 if (glyph->type == CHAR_GLYPH
10879 && glyph->u.ch.code == ' '
10880 && glyph->object == 0)
10881 --glyph;
10882
10883 /* If last glyph is a space or stretch, and it's trailing
10884 whitespace, set the face of all trailing whitespace glyphs in
10885 IT->glyph_row to `trailing-whitespace'. */
10886 if (glyph >= start
10887 && BUFFERP (glyph->object)
10888 && (glyph->type == STRETCH_GLYPH
10889 || (glyph->type == CHAR_GLYPH
10890 && glyph->u.ch.code == ' '))
10891 && trailing_whitespace_p (glyph->charpos))
545e04f6 10892 {
5f5c8ee5
GM
10893 int face_id = lookup_named_face (f, Qtrailing_whitespace,
10894 CHARSET_ASCII);
10895
10896 while (glyph >= start
10897 && BUFFERP (glyph->object)
10898 && (glyph->type == STRETCH_GLYPH
10899 || (glyph->type == CHAR_GLYPH
10900 && glyph->u.ch.code == ' ')))
545e04f6 10901 {
5f5c8ee5
GM
10902 if (glyph->type == STRETCH_GLYPH)
10903 glyph->u.stretch.face_id = face_id;
10904 else
10905 glyph->u.ch.face_id = face_id;
10906 --glyph;
545e04f6
KH
10907 }
10908 }
a2889657 10909 }
5f5c8ee5 10910}
a2889657 10911
5fcbb24d 10912
5f5c8ee5
GM
10913/* Construct the glyph row IT->glyph_row in the desired matrix of
10914 IT->w from text at the current position of IT. See dispextern.h
10915 for an overview of struct it. Value is non-zero if
10916 IT->glyph_row displays text, as opposed to a line displaying ZV
10917 only. */
10918
10919static int
10920display_line (it)
10921 struct it *it;
10922{
10923 struct glyph_row *row = it->glyph_row;
10924
10925 /* We always start displaying at hpos zero even if hscrolled. */
10926 xassert (it->hpos == 0 && it->current_x == 0);
a2889657 10927
5f5c8ee5
GM
10928 /* We must not display in a row that's not a text row. */
10929 xassert (MATRIX_ROW_VPOS (row, it->w->desired_matrix)
10930 < it->w->desired_matrix->nrows);
12adba34 10931
5f5c8ee5
GM
10932 /* Is IT->w showing the region? */
10933 it->w->region_showing = it->region_beg_charpos > 0 ? Qt : Qnil;
12adba34 10934
5f5c8ee5
GM
10935 /* Clear the result glyph row and enable it. */
10936 prepare_desired_row (row);
12adba34 10937
5f5c8ee5
GM
10938 row->y = it->current_y;
10939 row->start = it->current;
10940 row->continuation_lines_width = it->continuation_lines_width;
10941 row->displays_text_p = 1;
10942
10943 /* Arrange the overlays nicely for our purposes. Usually, we call
10944 display_line on only one line at a time, in which case this
10945 can't really hurt too much, or we call it on lines which appear
10946 one after another in the buffer, in which case all calls to
10947 recenter_overlay_lists but the first will be pretty cheap. */
10948 recenter_overlay_lists (current_buffer, IT_CHARPOS (*it));
10949
5f5c8ee5
GM
10950 /* Move over display elements that are not visible because we are
10951 hscrolled. This may stop at an x-position < IT->first_visible_x
10952 if the first glyph is partially visible or if we hit a line end. */
10953 if (it->current_x < it->first_visible_x)
10954 move_it_in_display_line_to (it, ZV, it->first_visible_x,
10955 MOVE_TO_POS | MOVE_TO_X);
10956
10957 /* Get the initial row height. This is either the height of the
10958 text hscrolled, if there is any, or zero. */
10959 row->ascent = it->max_ascent;
10960 row->height = it->max_ascent + it->max_descent;
312246d1
GM
10961 row->phys_ascent = it->max_phys_ascent;
10962 row->phys_height = it->max_phys_ascent + it->max_phys_descent;
5f5c8ee5
GM
10963
10964 /* Loop generating characters. The loop is left with IT on the next
10965 character to display. */
10966 while (1)
10967 {
10968 int n_glyphs_before, hpos_before, x_before;
10969 int x, i, nglyphs;
10970
10971 /* Retrieve the next thing to display. Value is zero if end of
10972 buffer reached. */
10973 if (!get_next_display_element (it))
10974 {
10975 /* Maybe add a space at the end of this line that is used to
10976 display the cursor there under X. */
10977 append_space (it, 1);
10978
10979 /* The position -1 below indicates a blank line not
10980 corresponding to any text, as opposed to an empty line
10981 corresponding to a line end. */
10982 if (row->used[TEXT_AREA] <= 1)
a2889657 10983 {
5f5c8ee5
GM
10984 row->glyphs[TEXT_AREA]->charpos = -1;
10985 row->displays_text_p = 0;
10986
10987 if (!NILP (XBUFFER (it->w->buffer)->indicate_empty_lines))
10988 row->indicate_empty_line_p = 1;
a2889657 10989 }
5f5c8ee5
GM
10990
10991 it->continuation_lines_width = 0;
10992 row->ends_at_zv_p = 1;
10993 break;
a2889657 10994 }
a2889657 10995
5f5c8ee5
GM
10996 /* Now, get the metrics of what we want to display. This also
10997 generates glyphs in `row' (which is IT->glyph_row). */
10998 n_glyphs_before = row->used[TEXT_AREA];
10999 x = it->current_x;
11000 PRODUCE_GLYPHS (it);
a2889657 11001
5f5c8ee5
GM
11002 /* If this display element was in marginal areas, continue with
11003 the next one. */
11004 if (it->area != TEXT_AREA)
a2889657 11005 {
5f5c8ee5
GM
11006 row->ascent = max (row->ascent, it->max_ascent);
11007 row->height = max (row->height, it->max_ascent + it->max_descent);
312246d1
GM
11008 row->phys_ascent = max (row->phys_ascent, it->max_phys_ascent);
11009 row->phys_height = max (row->phys_height,
11010 it->max_phys_ascent + it->max_phys_descent);
5f5c8ee5
GM
11011 set_iterator_to_next (it);
11012 continue;
11013 }
5936754e 11014
5f5c8ee5
GM
11015 /* Does the display element fit on the line? If we truncate
11016 lines, we should draw past the right edge of the window. If
11017 we don't truncate, we want to stop so that we can display the
11018 continuation glyph before the right margin. If lines are
11019 continued, there are two possible strategies for characters
11020 resulting in more than 1 glyph (e.g. tabs): Display as many
11021 glyphs as possible in this line and leave the rest for the
11022 continuation line, or display the whole element in the next
11023 line. Original redisplay did the former, so we do it also. */
11024 nglyphs = row->used[TEXT_AREA] - n_glyphs_before;
11025 hpos_before = it->hpos;
11026 x_before = x;
11027
11028 if (nglyphs == 1
11029 && it->current_x < it->last_visible_x)
11030 {
11031 ++it->hpos;
11032 row->ascent = max (row->ascent, it->max_ascent);
11033 row->height = max (row->height, it->max_ascent + it->max_descent);
312246d1
GM
11034 row->phys_ascent = max (row->phys_ascent, it->max_phys_ascent);
11035 row->phys_height = max (row->phys_height,
11036 it->max_phys_ascent + it->max_phys_descent);
5f5c8ee5
GM
11037 if (it->current_x - it->pixel_width < it->first_visible_x)
11038 row->x = x - it->first_visible_x;
11039 }
11040 else
11041 {
11042 int new_x;
11043 struct glyph *glyph;
11044
11045 for (i = 0; i < nglyphs; ++i, x = new_x)
b5bbc9a5 11046 {
5f5c8ee5
GM
11047 glyph = row->glyphs[TEXT_AREA] + n_glyphs_before + i;
11048 new_x = x + glyph->pixel_width;
11049
11050 if (/* Lines are continued. */
11051 !it->truncate_lines_p
11052 && (/* Glyph doesn't fit on the line. */
11053 new_x > it->last_visible_x
11054 /* Or it fits exactly on a window system frame. */
11055 || (new_x == it->last_visible_x
11056 && FRAME_WINDOW_P (it->f))))
a2889657 11057 {
5f5c8ee5
GM
11058 /* End of a continued line. */
11059
11060 if (it->hpos == 0
11061 || (new_x == it->last_visible_x
11062 && FRAME_WINDOW_P (it->f)))
11063 {
11064 /* Current glyph fits exactly on the line. We
11065 must continue the line because we can't draw
11066 the cursor after the glyph. */
11067 row->continued_p = 1;
11068 it->current_x = new_x;
11069 it->continuation_lines_width += new_x;
11070 ++it->hpos;
11071 if (i == nglyphs - 1)
11072 set_iterator_to_next (it);
11073 }
11074 else
5936754e 11075 {
5f5c8ee5
GM
11076 /* Display element draws past the right edge of
11077 the window. Restore positions to values
11078 before the element. The next line starts
11079 with current_x before the glyph that could
11080 not be displayed, so that TAB works right. */
11081 row->used[TEXT_AREA] = n_glyphs_before + i;
11082
11083 /* Display continuation glyphs. */
11084 if (!FRAME_WINDOW_P (it->f))
11085 produce_special_glyphs (it, IT_CONTINUATION);
11086 row->continued_p = 1;
11087
11088 it->current_x = x;
11089 it->continuation_lines_width += x;
5936754e 11090 }
5f5c8ee5
GM
11091 break;
11092 }
11093 else if (new_x > it->first_visible_x)
11094 {
11095 /* Increment number of glyphs actually displayed. */
11096 ++it->hpos;
11097
11098 if (x < it->first_visible_x)
11099 /* Glyph is partially visible, i.e. row starts at
11100 negative X position. */
11101 row->x = x - it->first_visible_x;
11102 }
11103 else
11104 {
11105 /* Glyph is completely off the left margin of the
11106 window. This should not happen because of the
11107 move_it_in_display_line at the start of
11108 this function. */
11109 abort ();
a2889657 11110 }
a2889657 11111 }
5f5c8ee5
GM
11112
11113 row->ascent = max (row->ascent, it->max_ascent);
11114 row->height = max (row->height, it->max_ascent + it->max_descent);
312246d1
GM
11115 row->phys_ascent = max (row->phys_ascent, it->max_phys_ascent);
11116 row->phys_height = max (row->phys_height,
11117 it->max_phys_ascent + it->max_phys_descent);
5f5c8ee5
GM
11118
11119 /* End of this display line if row is continued. */
11120 if (row->continued_p)
11121 break;
a2889657 11122 }
a2889657 11123
5f5c8ee5
GM
11124 /* Is this a line end? If yes, we're also done, after making
11125 sure that a non-default face is extended up to the right
11126 margin of the window. */
11127 if (ITERATOR_AT_END_OF_LINE_P (it))
1c9241f5 11128 {
5f5c8ee5
GM
11129 int used_before = row->used[TEXT_AREA];
11130
11131 /* Add a space at the end of the line that is used to
11132 display the cursor there. */
11133 append_space (it, 0);
11134
11135 /* Extend the face to the end of the line. */
11136 extend_face_to_end_of_line (it);
11137
11138 /* Make sure we have the position. */
11139 if (used_before == 0)
11140 row->glyphs[TEXT_AREA]->charpos = CHARPOS (it->position);
11141
11142 /* Consume the line end. This skips over invisible lines. */
11143 set_iterator_to_next (it);
11144 it->continuation_lines_width = 0;
11145 break;
1c9241f5 11146 }
a2889657 11147
5f5c8ee5
GM
11148 /* Proceed with next display element. Note that this skips
11149 over lines invisible because of selective display. */
11150 set_iterator_to_next (it);
b1d1124b 11151
5f5c8ee5
GM
11152 /* If we truncate lines, we are done when the last displayed
11153 glyphs reach past the right margin of the window. */
11154 if (it->truncate_lines_p
11155 && (FRAME_WINDOW_P (it->f)
11156 ? (it->current_x >= it->last_visible_x)
11157 : (it->current_x > it->last_visible_x)))
75d13c64 11158 {
5f5c8ee5
GM
11159 /* Maybe add truncation glyphs. */
11160 if (!FRAME_WINDOW_P (it->f))
11161 {
11162 --it->glyph_row->used[TEXT_AREA];
11163 produce_special_glyphs (it, IT_TRUNCATION);
11164 }
11165
11166 row->truncated_on_right_p = 1;
11167 it->continuation_lines_width = 0;
312246d1 11168 reseat_at_next_visible_line_start (it, 0);
5f5c8ee5
GM
11169 row->ends_at_zv_p = FETCH_BYTE (IT_BYTEPOS (*it) - 1) != '\n';
11170 it->hpos = hpos_before;
11171 it->current_x = x_before;
11172 break;
75d13c64 11173 }
a2889657 11174 }
a2889657 11175
5f5c8ee5
GM
11176 /* If line is not empty and hscrolled, maybe insert truncation glyphs
11177 at the left window margin. */
11178 if (it->first_visible_x
11179 && IT_CHARPOS (*it) != MATRIX_ROW_START_CHARPOS (row))
11180 {
11181 if (!FRAME_WINDOW_P (it->f))
11182 insert_left_trunc_glyphs (it);
11183 row->truncated_on_left_p = 1;
11184 }
a2889657 11185
5f5c8ee5
GM
11186 /* If the start of this line is the overlay arrow-position, then
11187 mark this glyph row as the one containing the overlay arrow.
11188 This is clearly a mess with variable size fonts. It would be
11189 better to let it be displayed like cursors under X. */
e24c997d 11190 if (MARKERP (Voverlay_arrow_position)
a2889657 11191 && current_buffer == XMARKER (Voverlay_arrow_position)->buffer
5f5c8ee5
GM
11192 && (MATRIX_ROW_START_CHARPOS (row)
11193 == marker_position (Voverlay_arrow_position))
e24c997d 11194 && STRINGP (Voverlay_arrow_string)
a2889657
JB
11195 && ! overlay_arrow_seen)
11196 {
5f5c8ee5
GM
11197 /* Overlay arrow in window redisplay is a bitmap. */
11198 if (!FRAME_WINDOW_P (it->f))
c4628384 11199 {
5f5c8ee5
GM
11200 struct glyph_row *arrow_row = get_overlay_arrow_glyph_row (it->w);
11201 struct glyph *glyph = arrow_row->glyphs[TEXT_AREA];
11202 struct glyph *arrow_end = glyph + arrow_row->used[TEXT_AREA];
11203 struct glyph *p = row->glyphs[TEXT_AREA];
11204 struct glyph *p2, *end;
11205
11206 /* Copy the arrow glyphs. */
11207 while (glyph < arrow_end)
11208 *p++ = *glyph++;
11209
11210 /* Throw away padding glyphs. */
11211 p2 = p;
11212 end = row->glyphs[TEXT_AREA] + row->used[TEXT_AREA];
11213 while (p2 < end && CHAR_GLYPH_PADDING_P (*p2))
11214 ++p2;
11215 if (p2 > p)
212e4f87 11216 {
5f5c8ee5
GM
11217 while (p2 < end)
11218 *p++ = *p2++;
11219 row->used[TEXT_AREA] = p2 - row->glyphs[TEXT_AREA];
c4628384 11220 }
c4628384 11221 }
5f5c8ee5 11222
a2889657 11223 overlay_arrow_seen = 1;
5f5c8ee5 11224 row->overlay_arrow_p = 1;
a2889657
JB
11225 }
11226
5f5c8ee5
GM
11227 /* Compute pixel dimensions of this line. */
11228 compute_line_metrics (it);
11229
11230 /* Remember the position at which this line ends. */
11231 row->end = it->current;
11232
11233 /* Maybe set the cursor. If you change this, it's probably a good
11234 idea to also change the code in redisplay_window for cursor
11235 movement in an unchanged window. */
11236 if (it->w->cursor.vpos < 0
11237 && PT >= MATRIX_ROW_START_CHARPOS (row)
11238 && MATRIX_ROW_END_CHARPOS (row) >= PT
11239 && !(MATRIX_ROW_END_CHARPOS (row) == PT
11240 && (MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row)
11241 || !row->ends_at_zv_p)))
11242 set_cursor_from_row (it->w, row, it->w->desired_matrix, 0, 0, 0, 0);
11243
11244 /* Highlight trailing whitespace. */
8f897821 11245 if (!NILP (Vshow_trailing_whitespace))
5f5c8ee5
GM
11246 highlight_trailing_whitespace (it->f, it->glyph_row);
11247
11248 /* Prepare for the next line. This line starts horizontally at (X
11249 HPOS) = (0 0). Vertical positions are incremented. As a
11250 convenience for the caller, IT->glyph_row is set to the next
11251 row to be used. */
11252 it->current_x = it->hpos = 0;
11253 it->current_y += row->height;
11254 ++it->vpos;
11255 ++it->glyph_row;
11256 return row->displays_text_p;
a2889657 11257}
5f5c8ee5
GM
11258
11259
a2889657 11260\f
5f5c8ee5
GM
11261/***********************************************************************
11262 Menu Bar
11263 ***********************************************************************/
11264
11265/* Redisplay the menu bar in the frame for window W.
11266
11267 The menu bar of X frames that don't have X toolkit support is
11268 displayed in a special window W->frame->menu_bar_window.
11269
11270 The menu bar of terminal frames is treated specially as far as
11271 glyph matrices are concerned. Menu bar lines are not part of
11272 windows, so the update is done directly on the frame matrix rows
11273 for the menu bar. */
7ce2c095
RS
11274
11275static void
11276display_menu_bar (w)
11277 struct window *w;
11278{
5f5c8ee5
GM
11279 struct frame *f = XFRAME (WINDOW_FRAME (w));
11280 struct it it;
11281 Lisp_Object items;
8351baf2 11282 int i;
7ce2c095 11283
5f5c8ee5 11284 /* Don't do all this for graphical frames. */
dc937613 11285#ifdef HAVE_NTGUI
d129c4c2
KH
11286 if (!NILP (Vwindow_system))
11287 return;
dc937613 11288#endif
dc937613 11289#ifdef USE_X_TOOLKIT
d3413a53 11290 if (FRAME_X_P (f))
7ce2c095 11291 return;
5f5c8ee5
GM
11292#endif
11293
11294#ifdef USE_X_TOOLKIT
11295 xassert (!FRAME_WINDOW_P (f));
11296 init_iterator (&it, w, -1, -1, f->desired_matrix->rows, MODE_LINE_FACE_ID);
11297 it.first_visible_x = 0;
11298 it.last_visible_x = FRAME_WINDOW_WIDTH (f) * CANON_X_UNIT (f);
11299#else /* not USE_X_TOOLKIT */
11300 if (FRAME_WINDOW_P (f))
11301 {
11302 /* Menu bar lines are displayed in the desired matrix of the
11303 dummy window menu_bar_window. */
11304 struct window *menu_w;
11305 xassert (WINDOWP (f->menu_bar_window));
11306 menu_w = XWINDOW (f->menu_bar_window);
11307 init_iterator (&it, menu_w, -1, -1, menu_w->desired_matrix->rows,
11308 MODE_LINE_FACE_ID);
11309 it.first_visible_x = 0;
11310 it.last_visible_x = FRAME_WINDOW_WIDTH (f) * CANON_X_UNIT (f);
11311 }
11312 else
11313 {
11314 /* This is a TTY frame, i.e. character hpos/vpos are used as
11315 pixel x/y. */
11316 init_iterator (&it, w, -1, -1, f->desired_matrix->rows,
11317 MODE_LINE_FACE_ID);
11318 it.first_visible_x = 0;
11319 it.last_visible_x = FRAME_WIDTH (f);
11320 }
11321#endif /* not USE_X_TOOLKIT */
11322
11323 /* Clear all rows of the menu bar. */
11324 for (i = 0; i < FRAME_MENU_BAR_LINES (f); ++i)
11325 {
11326 struct glyph_row *row = it.glyph_row + i;
11327 clear_glyph_row (row);
11328 row->enabled_p = 1;
11329 row->full_width_p = 1;
11330 }
7ce2c095 11331
5f5c8ee5
GM
11332 /* Make the first line of the menu bar appear in reverse video. */
11333 it.glyph_row->inverse_p = mode_line_inverse_video != 0;
7ce2c095 11334
5f5c8ee5
GM
11335 /* Display all items of the menu bar. */
11336 items = FRAME_MENU_BAR_ITEMS (it.f);
469937ac 11337 for (i = 0; i < XVECTOR (items)->size; i += 4)
7ce2c095 11338 {
5f5c8ee5
GM
11339 Lisp_Object string;
11340
11341 /* Stop at nil string. */
8351baf2
RS
11342 string = XVECTOR (items)->contents[i + 1];
11343 if (NILP (string))
11344 break;
2d66ad19 11345
5f5c8ee5
GM
11346 /* Remember where item was displayed. */
11347 XSETFASTINT (XVECTOR (items)->contents[i + 3], it.hpos);
7ce2c095 11348
5f5c8ee5
GM
11349 /* Display the item, pad with one space. */
11350 if (it.current_x < it.last_visible_x)
11351 display_string (NULL, string, Qnil, 0, 0, &it,
11352 XSTRING (string)->size + 1, 0, 0, -1);
7ce2c095
RS
11353 }
11354
2d66ad19 11355 /* Fill out the line with spaces. */
5f5c8ee5
GM
11356 if (it.current_x < it.last_visible_x)
11357 display_string ("", Qnil, Qnil, 0, 0, &it, -1, 0, 0, -1);
db6f348c 11358
5f5c8ee5
GM
11359 /* Compute the total height of the lines. */
11360 compute_line_metrics (&it);
7ce2c095 11361}
5f5c8ee5
GM
11362
11363
7ce2c095 11364\f
5f5c8ee5
GM
11365/***********************************************************************
11366 Mode Line
11367 ***********************************************************************/
11368
11369/* Display the mode and/or top line of window W. */
a2889657
JB
11370
11371static void
5f5c8ee5 11372display_mode_lines (w)
a2889657
JB
11373 struct window *w;
11374{
5f5c8ee5 11375 /* These will be set while the mode line specs are processed. */
aa6d10fa 11376 line_number_displayed = 0;
155ef550 11377 w->column_number_displayed = Qnil;
aa6d10fa 11378
5f5c8ee5 11379 if (WINDOW_WANTS_MODELINE_P (w))
045dee35
GM
11380 display_mode_line (w, MODE_LINE_FACE_ID,
11381 current_buffer->mode_line_format);
5f5c8ee5 11382
045dee35
GM
11383 if (WINDOW_WANTS_HEADER_LINE_P (w))
11384 display_mode_line (w, HEADER_LINE_FACE_ID,
11385 current_buffer->header_line_format);
5f5c8ee5 11386}
03b294dc 11387
03b294dc 11388
5f5c8ee5 11389/* Display mode or top line of window W. FACE_ID specifies which line
045dee35 11390 to display; it is either MODE_LINE_FACE_ID or HEADER_LINE_FACE_ID.
5f5c8ee5 11391 FORMAT is the mode line format to display. */
03b294dc 11392
5f5c8ee5
GM
11393static void
11394display_mode_line (w, face_id, format)
11395 struct window *w;
11396 enum face_id face_id;
11397 Lisp_Object format;
11398{
11399 struct it it;
11400 struct face *face;
03b294dc 11401
5f5c8ee5
GM
11402 init_iterator (&it, w, -1, -1, NULL, face_id);
11403 prepare_desired_row (it.glyph_row);
11404
11405 /* Temporarily make frame's keyboard the current kboard so that
11406 kboard-local variables in the mode_line_format will get the right
11407 values. */
11408 push_frame_kboard (it.f);
11409 display_mode_element (&it, 0, 0, 0, format);
11410 pop_frame_kboard ();
a2889657 11411
5f5c8ee5
GM
11412 /* Fill up with spaces. */
11413 display_string (" ", Qnil, Qnil, 0, 0, &it, 10000, -1, -1, 0);
11414
11415 compute_line_metrics (&it);
11416 it.glyph_row->full_width_p = 1;
11417 it.glyph_row->mode_line_p = 1;
11418 it.glyph_row->inverse_p = mode_line_inverse_video != 0;
11419 it.glyph_row->continued_p = 0;
11420 it.glyph_row->truncated_on_left_p = 0;
11421 it.glyph_row->truncated_on_right_p = 0;
11422
11423 /* Make a 3D mode-line have a shadow at its right end. */
11424 face = FACE_FROM_ID (it.f, face_id);
11425 extend_face_to_end_of_line (&it);
11426 if (face->box != FACE_NO_BOX)
d7eb09a0 11427 {
5f5c8ee5
GM
11428 struct glyph *last = (it.glyph_row->glyphs[TEXT_AREA]
11429 + it.glyph_row->used[TEXT_AREA] - 1);
11430 last->right_box_line_p = 1;
d7eb09a0 11431 }
a2889657
JB
11432}
11433
a2889657 11434
5f5c8ee5
GM
11435/* Contribute ELT to the mode line for window IT->w. How it
11436 translates into text depends on its data type.
a2889657 11437
5f5c8ee5 11438 IT describes the display environment in which we display, as usual.
a2889657
JB
11439
11440 DEPTH is the depth in recursion. It is used to prevent
11441 infinite recursion here.
11442
5f5c8ee5
GM
11443 FIELD_WIDTH is the number of characters the display of ELT should
11444 occupy in the mode line, and PRECISION is the maximum number of
11445 characters to display from ELT's representation. See
11446 display_string for details. *
a2889657 11447
5f5c8ee5 11448 Returns the hpos of the end of the text generated by ELT. */
a2889657
JB
11449
11450static int
5f5c8ee5
GM
11451display_mode_element (it, depth, field_width, precision, elt)
11452 struct it *it;
a2889657 11453 int depth;
5f5c8ee5
GM
11454 int field_width, precision;
11455 Lisp_Object elt;
a2889657 11456{
5f5c8ee5
GM
11457 int n = 0, field, prec;
11458
a2889657
JB
11459 tail_recurse:
11460 if (depth > 10)
11461 goto invalid;
11462
11463 depth++;
11464
0220c518 11465 switch (SWITCH_ENUM_CAST (XTYPE (elt)))
a2889657
JB
11466 {
11467 case Lisp_String:
11468 {
11469 /* A string: output it and check for %-constructs within it. */
5f5c8ee5
GM
11470 unsigned char c;
11471 unsigned char *this = XSTRING (elt)->data;
11472 unsigned char *lisp_string = this;
11473
11474 while ((precision <= 0 || n < precision)
11475 && *this
11476 && (frame_title_ptr
11477 || it->current_x < it->last_visible_x))
a2889657
JB
11478 {
11479 unsigned char *last = this;
5f5c8ee5
GM
11480
11481 /* Advance to end of string or next format specifier. */
a2889657
JB
11482 while ((c = *this++) != '\0' && c != '%')
11483 ;
5f5c8ee5 11484
a2889657
JB
11485 if (this - 1 != last)
11486 {
5f5c8ee5
GM
11487 /* Output to end of string or up to '%'. Field width
11488 is length of string. Don't output more than
11489 PRECISION allows us. */
11490 prec = --this - last;
11491 if (precision > 0 && prec > precision - n)
11492 prec = precision - n;
11493
d39b6696 11494 if (frame_title_ptr)
5f5c8ee5 11495 n += store_frame_title (last, prec, prec);
d39b6696 11496 else
5f5c8ee5
GM
11497 n += display_string (NULL, elt, Qnil, 0, last - lisp_string,
11498 it, 0, prec, 0, -1);
a2889657
JB
11499 }
11500 else /* c == '%' */
11501 {
5f5c8ee5
GM
11502 unsigned char *percent_position = this;
11503
11504 /* Get the specified minimum width. Zero means
11505 don't pad. */
11506 field = 0;
a2889657 11507 while ((c = *this++) >= '0' && c <= '9')
5f5c8ee5 11508 field = field * 10 + c - '0';
a2889657 11509
5f5c8ee5
GM
11510 /* Don't pad beyond the total padding allowed. */
11511 if (field_width - n > 0 && field > field_width - n)
11512 field = field_width - n;
a2889657 11513
5f5c8ee5
GM
11514 /* Note that either PRECISION <= 0 or N < PRECISION. */
11515 prec = precision - n;
11516
a2889657 11517 if (c == 'M')
5f5c8ee5
GM
11518 n += display_mode_element (it, depth, field, prec,
11519 Vglobal_mode_string);
a2889657 11520 else if (c != 0)
d39b6696 11521 {
5f5c8ee5
GM
11522 unsigned char *spec
11523 = decode_mode_spec (it->w, c, field, prec);
11524
d39b6696 11525 if (frame_title_ptr)
5f5c8ee5 11526 n += store_frame_title (spec, field, prec);
d39b6696 11527 else
5f5c8ee5
GM
11528 {
11529 int nglyphs_before
11530 = it->glyph_row->used[TEXT_AREA];
11531 int charpos
11532 = percent_position - XSTRING (elt)->data;
11533 int nwritten
11534 = display_string (spec, Qnil, elt, charpos, 0, it,
11535 field, prec, 0, -1);
11536
11537 /* Assign to the glyphs written above the
11538 string where the `%x' came from, position
11539 of the `%'. */
11540 if (nwritten > 0)
11541 {
11542 struct glyph *glyph
11543 = (it->glyph_row->glyphs[TEXT_AREA]
11544 + nglyphs_before);
11545 int i;
11546
11547 for (i = 0; i < nwritten; ++i)
11548 {
11549 glyph[i].object = elt;
11550 glyph[i].charpos = charpos;
11551 }
11552
11553 n += nwritten;
11554 }
11555 }
d39b6696 11556 }
a2889657
JB
11557 }
11558 }
11559 }
11560 break;
11561
11562 case Lisp_Symbol:
11563 /* A symbol: process the value of the symbol recursively
11564 as if it appeared here directly. Avoid error if symbol void.
11565 Special case: if value of symbol is a string, output the string
11566 literally. */
11567 {
11568 register Lisp_Object tem;
11569 tem = Fboundp (elt);
265a9e55 11570 if (!NILP (tem))
a2889657
JB
11571 {
11572 tem = Fsymbol_value (elt);
11573 /* If value is a string, output that string literally:
11574 don't check for % within it. */
e24c997d 11575 if (STRINGP (tem))
d39b6696 11576 {
5f5c8ee5
GM
11577 prec = XSTRING (tem)->size;
11578 if (precision > 0 && prec > precision - n)
11579 prec = precision - n;
d39b6696 11580 if (frame_title_ptr)
5f5c8ee5 11581 n += store_frame_title (XSTRING (tem)->data, -1, prec);
d39b6696 11582 else
5f5c8ee5
GM
11583 n += display_string (NULL, tem, Qnil, 0, 0, it,
11584 0, prec, 0, -1);
d39b6696 11585 }
a2889657 11586 else if (!EQ (tem, elt))
5f5c8ee5
GM
11587 {
11588 /* Give up right away for nil or t. */
11589 elt = tem;
11590 goto tail_recurse;
11591 }
a2889657
JB
11592 }
11593 }
11594 break;
11595
11596 case Lisp_Cons:
11597 {
11598 register Lisp_Object car, tem;
11599
11600 /* A cons cell: three distinct cases.
11601 If first element is a string or a cons, process all the elements
11602 and effectively concatenate them.
11603 If first element is a negative number, truncate displaying cdr to
11604 at most that many characters. If positive, pad (with spaces)
11605 to at least that many characters.
11606 If first element is a symbol, process the cadr or caddr recursively
11607 according to whether the symbol's value is non-nil or nil. */
9472f927 11608 car = XCAR (elt);
5f5c8ee5
GM
11609 if (EQ (car, QCeval) && CONSP (XCDR (elt)))
11610 {
11611 /* An element of the form (:eval FORM) means evaluate FORM
11612 and use the result as mode line elements. */
11613 struct gcpro gcpro1;
11614 Lisp_Object spec;
11615
11616 spec = eval_form (XCAR (XCDR (elt)));
11617 GCPRO1 (spec);
11618 n += display_mode_element (it, depth, field_width - n,
11619 precision - n, spec);
11620 UNGCPRO;
11621 }
11622 else if (SYMBOLP (car))
a2889657
JB
11623 {
11624 tem = Fboundp (car);
9472f927 11625 elt = XCDR (elt);
e24c997d 11626 if (!CONSP (elt))
a2889657
JB
11627 goto invalid;
11628 /* elt is now the cdr, and we know it is a cons cell.
11629 Use its car if CAR has a non-nil value. */
265a9e55 11630 if (!NILP (tem))
a2889657
JB
11631 {
11632 tem = Fsymbol_value (car);
265a9e55 11633 if (!NILP (tem))
9472f927
GM
11634 {
11635 elt = XCAR (elt);
11636 goto tail_recurse;
11637 }
a2889657
JB
11638 }
11639 /* Symbol's value is nil (or symbol is unbound)
11640 Get the cddr of the original list
11641 and if possible find the caddr and use that. */
9472f927 11642 elt = XCDR (elt);
265a9e55 11643 if (NILP (elt))
a2889657 11644 break;
e24c997d 11645 else if (!CONSP (elt))
a2889657 11646 goto invalid;
9472f927 11647 elt = XCAR (elt);
a2889657
JB
11648 goto tail_recurse;
11649 }
e24c997d 11650 else if (INTEGERP (car))
a2889657
JB
11651 {
11652 register int lim = XINT (car);
9472f927 11653 elt = XCDR (elt);
a2889657 11654 if (lim < 0)
5f5c8ee5
GM
11655 {
11656 /* Negative int means reduce maximum width. */
11657 if (precision <= 0)
11658 precision = -lim;
11659 else
11660 precision = min (precision, -lim);
11661 }
a2889657
JB
11662 else if (lim > 0)
11663 {
11664 /* Padding specified. Don't let it be more than
11665 current maximum. */
5f5c8ee5
GM
11666 if (precision > 0)
11667 lim = min (precision, lim);
11668
a2889657
JB
11669 /* If that's more padding than already wanted, queue it.
11670 But don't reduce padding already specified even if
11671 that is beyond the current truncation point. */
5f5c8ee5 11672 field_width = max (lim, field_width);
a2889657
JB
11673 }
11674 goto tail_recurse;
11675 }
e24c997d 11676 else if (STRINGP (car) || CONSP (car))
a2889657
JB
11677 {
11678 register int limit = 50;
5f5c8ee5
GM
11679 /* Limit is to protect against circular lists. */
11680 while (CONSP (elt)
11681 && --limit > 0
11682 && (precision <= 0 || n < precision))
a2889657 11683 {
5f5c8ee5 11684 n += display_mode_element (it, depth, field_width - n,
9472f927
GM
11685 precision - n, XCAR (elt));
11686 elt = XCDR (elt);
a2889657
JB
11687 }
11688 }
11689 }
11690 break;
11691
11692 default:
11693 invalid:
d39b6696 11694 if (frame_title_ptr)
5f5c8ee5 11695 n += store_frame_title ("*invalid*", 0, precision - n);
d39b6696 11696 else
5f5c8ee5
GM
11697 n += display_string ("*invalid*", Qnil, Qnil, 0, 0, it, 0,
11698 precision - n, 0, 0);
11699 return n;
a2889657
JB
11700 }
11701
5f5c8ee5
GM
11702 /* Pad to FIELD_WIDTH. */
11703 if (field_width > 0 && n < field_width)
11704 {
11705 if (frame_title_ptr)
11706 n += store_frame_title ("", field_width - n, 0);
11707 else
11708 n += display_string ("", Qnil, Qnil, 0, 0, it, field_width - n,
11709 0, 0, 0);
11710 }
11711
11712 return n;
a2889657 11713}
5f5c8ee5
GM
11714
11715
766525bc
RS
11716/* Write a null-terminated, right justified decimal representation of
11717 the positive integer D to BUF using a minimal field width WIDTH. */
11718
11719static void
11720pint2str (buf, width, d)
11721 register char *buf;
11722 register int width;
11723 register int d;
11724{
11725 register char *p = buf;
11726
11727 if (d <= 0)
5f5c8ee5 11728 *p++ = '0';
766525bc 11729 else
5f5c8ee5 11730 {
766525bc 11731 while (d > 0)
5f5c8ee5 11732 {
766525bc
RS
11733 *p++ = d % 10 + '0';
11734 d /= 10;
5f5c8ee5
GM
11735 }
11736 }
11737
11738 for (width -= (int) (p - buf); width > 0; --width)
11739 *p++ = ' ';
766525bc
RS
11740 *p-- = '\0';
11741 while (p > buf)
5f5c8ee5 11742 {
766525bc
RS
11743 d = *buf;
11744 *buf++ = *p;
11745 *p-- = d;
5f5c8ee5 11746 }
766525bc
RS
11747}
11748
5f5c8ee5 11749/* Set a mnemonic character for coding_system (Lisp symbol) in BUF.
1c9241f5
KH
11750 If EOL_FLAG is 1, set also a mnemonic character for end-of-line
11751 type of CODING_SYSTEM. Return updated pointer into BUF. */
11752
6693a99a 11753static unsigned char invalid_eol_type[] = "(*invalid*)";
d24715e8 11754
1c9241f5
KH
11755static char *
11756decode_mode_spec_coding (coding_system, buf, eol_flag)
11757 Lisp_Object coding_system;
11758 register char *buf;
11759 int eol_flag;
11760{
1e1078d6 11761 Lisp_Object val;
916848d8 11762 int multibyte = !NILP (current_buffer->enable_multibyte_characters);
302f2b38
EZ
11763 unsigned char *eol_str;
11764 int eol_str_len;
11765 /* The EOL conversion we are using. */
11766 Lisp_Object eoltype;
1e1078d6
RS
11767
11768 val = coding_system;
1c9241f5
KH
11769
11770 if (NILP (val)) /* Not yet decided. */
11771 {
916848d8
RS
11772 if (multibyte)
11773 *buf++ = '-';
21e989e3 11774 if (eol_flag)
302f2b38 11775 eoltype = eol_mnemonic_undecided;
1e1078d6 11776 /* Don't mention EOL conversion if it isn't decided. */
1c9241f5
KH
11777 }
11778 else
11779 {
1e1078d6
RS
11780 Lisp_Object eolvalue;
11781
11782 eolvalue = Fget (coding_system, Qeol_type);
11783
1c9241f5 11784 while (!NILP (val) && SYMBOLP (val))
1e1078d6
RS
11785 {
11786 val = Fget (val, Qcoding_system);
11787 if (NILP (eolvalue))
b070c1d7 11788 eolvalue = Fget (val, Qeol_type);
1e1078d6
RS
11789 }
11790
916848d8
RS
11791 if (multibyte)
11792 *buf++ = XFASTINT (XVECTOR (val)->contents[1]);
11793
1c9241f5
KH
11794 if (eol_flag)
11795 {
1e1078d6
RS
11796 /* The EOL conversion that is normal on this system. */
11797
11798 if (NILP (eolvalue)) /* Not yet decided. */
11799 eoltype = eol_mnemonic_undecided;
11800 else if (VECTORP (eolvalue)) /* Not yet decided. */
11801 eoltype = eol_mnemonic_undecided;
11802 else /* INTEGERP (eolvalue) -- 0:LF, 1:CRLF, 2:CR */
11803 eoltype = (XFASTINT (eolvalue) == 0
11804 ? eol_mnemonic_unix
11805 : (XFASTINT (eolvalue) == 1
11806 ? eol_mnemonic_dos : eol_mnemonic_mac));
302f2b38
EZ
11807 }
11808 }
5f5c8ee5 11809
302f2b38
EZ
11810 if (eol_flag)
11811 {
11812 /* Mention the EOL conversion if it is not the usual one. */
11813 if (STRINGP (eoltype))
11814 {
11815 eol_str = XSTRING (eoltype)->data;
11816 eol_str_len = XSTRING (eoltype)->size;
11817 }
f30b3499
KH
11818 else if (INTEGERP (eoltype)
11819 && CHAR_VALID_P (XINT (eoltype), 0))
11820 {
f30b3499
KH
11821 unsigned char work[4];
11822
11823 eol_str_len = CHAR_STRING (XINT (eoltype), work, eol_str);
11824 }
302f2b38
EZ
11825 else
11826 {
11827 eol_str = invalid_eol_type;
11828 eol_str_len = sizeof (invalid_eol_type) - 1;
1c9241f5 11829 }
f30b3499 11830 bcopy (eol_str, buf, eol_str_len);
302f2b38 11831 buf += eol_str_len;
1c9241f5 11832 }
302f2b38 11833
1c9241f5
KH
11834 return buf;
11835}
11836
a2889657 11837/* Return a string for the output of a mode line %-spec for window W,
5f5c8ee5
GM
11838 generated by character C. PRECISION >= 0 means don't return a
11839 string longer than that value. FIELD_WIDTH > 0 means pad the
11840 string returned with spaces to that value. */
a2889657 11841
11e82b76
JB
11842static char lots_of_dashes[] = "--------------------------------------------------------------------------------------------------------------------------------------------";
11843
a2889657 11844static char *
5f5c8ee5 11845decode_mode_spec (w, c, field_width, precision)
a2889657
JB
11846 struct window *w;
11847 register char c;
5f5c8ee5 11848 int field_width, precision;
a2889657 11849{
0b67772d 11850 Lisp_Object obj;
5f5c8ee5
GM
11851 struct frame *f = XFRAME (WINDOW_FRAME (w));
11852 char *decode_mode_spec_buf = f->decode_mode_spec_buffer;
d39b6696 11853 struct buffer *b = XBUFFER (w->buffer);
a2889657 11854
0b67772d 11855 obj = Qnil;
a2889657
JB
11856
11857 switch (c)
11858 {
1af9f229
RS
11859 case '*':
11860 if (!NILP (b->read_only))
11861 return "%";
11862 if (BUF_MODIFF (b) > BUF_SAVE_MODIFF (b))
11863 return "*";
11864 return "-";
11865
11866 case '+':
11867 /* This differs from %* only for a modified read-only buffer. */
11868 if (BUF_MODIFF (b) > BUF_SAVE_MODIFF (b))
11869 return "*";
11870 if (!NILP (b->read_only))
11871 return "%";
11872 return "-";
11873
11874 case '&':
11875 /* This differs from %* in ignoring read-only-ness. */
11876 if (BUF_MODIFF (b) > BUF_SAVE_MODIFF (b))
11877 return "*";
11878 return "-";
11879
11880 case '%':
11881 return "%";
11882
11883 case '[':
11884 {
11885 int i;
11886 char *p;
11887
11888 if (command_loop_level > 5)
11889 return "[[[... ";
11890 p = decode_mode_spec_buf;
11891 for (i = 0; i < command_loop_level; i++)
11892 *p++ = '[';
11893 *p = 0;
11894 return decode_mode_spec_buf;
11895 }
11896
11897 case ']':
11898 {
11899 int i;
11900 char *p;
11901
11902 if (command_loop_level > 5)
11903 return " ...]]]";
11904 p = decode_mode_spec_buf;
11905 for (i = 0; i < command_loop_level; i++)
11906 *p++ = ']';
11907 *p = 0;
11908 return decode_mode_spec_buf;
11909 }
11910
11911 case '-':
11912 {
1af9f229 11913 register int i;
5f5c8ee5
GM
11914
11915 /* Let lots_of_dashes be a string of infinite length. */
11916 if (field_width <= 0
11917 || field_width > sizeof (lots_of_dashes))
1af9f229 11918 {
5f5c8ee5
GM
11919 for (i = 0; i < FRAME_MESSAGE_BUF_SIZE (f) - 1; ++i)
11920 decode_mode_spec_buf[i] = '-';
11921 decode_mode_spec_buf[i] = '\0';
11922 return decode_mode_spec_buf;
1af9f229 11923 }
5f5c8ee5
GM
11924 else
11925 return lots_of_dashes;
1af9f229
RS
11926 }
11927
a2889657 11928 case 'b':
d39b6696 11929 obj = b->name;
a2889657
JB
11930 break;
11931
1af9f229
RS
11932 case 'c':
11933 {
11934 int col = current_column ();
11935 XSETFASTINT (w->column_number_displayed, col);
5f5c8ee5 11936 pint2str (decode_mode_spec_buf, field_width, col);
1af9f229
RS
11937 return decode_mode_spec_buf;
11938 }
11939
11940 case 'F':
11941 /* %F displays the frame name. */
5f5c8ee5 11942 if (!NILP (f->title))
95184b48 11943 return (char *) XSTRING (f->title)->data;
fd8ff63d 11944 if (f->explicit_name || ! FRAME_WINDOW_P (f))
95184b48 11945 return (char *) XSTRING (f->name)->data;
9c6da96f 11946 return "Emacs";
1af9f229 11947
a2889657 11948 case 'f':
d39b6696 11949 obj = b->filename;
a2889657
JB
11950 break;
11951
aa6d10fa
RS
11952 case 'l':
11953 {
12adba34
RS
11954 int startpos = XMARKER (w->start)->charpos;
11955 int startpos_byte = marker_byte_position (w->start);
11956 int line, linepos, linepos_byte, topline;
aa6d10fa 11957 int nlines, junk;
aa6d10fa
RS
11958 int height = XFASTINT (w->height);
11959
11960 /* If we decided that this buffer isn't suitable for line numbers,
11961 don't forget that too fast. */
11962 if (EQ (w->base_line_pos, w->buffer))
766525bc 11963 goto no_value;
5300fd39
RS
11964 /* But do forget it, if the window shows a different buffer now. */
11965 else if (BUFFERP (w->base_line_pos))
11966 w->base_line_pos = Qnil;
aa6d10fa
RS
11967
11968 /* If the buffer is very big, don't waste time. */
d39b6696 11969 if (BUF_ZV (b) - BUF_BEGV (b) > line_number_display_limit)
aa6d10fa
RS
11970 {
11971 w->base_line_pos = Qnil;
11972 w->base_line_number = Qnil;
766525bc 11973 goto no_value;
aa6d10fa
RS
11974 }
11975
11976 if (!NILP (w->base_line_number)
11977 && !NILP (w->base_line_pos)
12adba34 11978 && XFASTINT (w->base_line_pos) <= startpos)
aa6d10fa
RS
11979 {
11980 line = XFASTINT (w->base_line_number);
11981 linepos = XFASTINT (w->base_line_pos);
12adba34 11982 linepos_byte = buf_charpos_to_bytepos (b, linepos);
aa6d10fa
RS
11983 }
11984 else
11985 {
11986 line = 1;
d39b6696 11987 linepos = BUF_BEGV (b);
12adba34 11988 linepos_byte = BUF_BEGV_BYTE (b);
aa6d10fa
RS
11989 }
11990
11991 /* Count lines from base line to window start position. */
12adba34
RS
11992 nlines = display_count_lines (linepos, linepos_byte,
11993 startpos_byte,
11994 startpos, &junk);
aa6d10fa
RS
11995
11996 topline = nlines + line;
11997
11998 /* Determine a new base line, if the old one is too close
11999 or too far away, or if we did not have one.
12000 "Too close" means it's plausible a scroll-down would
12001 go back past it. */
d39b6696 12002 if (startpos == BUF_BEGV (b))
aa6d10fa 12003 {
c2213350
KH
12004 XSETFASTINT (w->base_line_number, topline);
12005 XSETFASTINT (w->base_line_pos, BUF_BEGV (b));
aa6d10fa
RS
12006 }
12007 else if (nlines < height + 25 || nlines > height * 3 + 50
d39b6696 12008 || linepos == BUF_BEGV (b))
aa6d10fa 12009 {
d39b6696 12010 int limit = BUF_BEGV (b);
12adba34 12011 int limit_byte = BUF_BEGV_BYTE (b);
aa6d10fa 12012 int position;
5d121aec 12013 int distance = (height * 2 + 30) * line_number_display_limit_width;
aa6d10fa
RS
12014
12015 if (startpos - distance > limit)
12adba34
RS
12016 {
12017 limit = startpos - distance;
12018 limit_byte = CHAR_TO_BYTE (limit);
12019 }
aa6d10fa 12020
12adba34
RS
12021 nlines = display_count_lines (startpos, startpos_byte,
12022 limit_byte,
12023 - (height * 2 + 30),
aa6d10fa
RS
12024 &position);
12025 /* If we couldn't find the lines we wanted within
5d121aec 12026 line_number_display_limit_width chars per line,
aa6d10fa 12027 give up on line numbers for this window. */
12adba34 12028 if (position == limit_byte && limit == startpos - distance)
aa6d10fa
RS
12029 {
12030 w->base_line_pos = w->buffer;
12031 w->base_line_number = Qnil;
766525bc 12032 goto no_value;
aa6d10fa
RS
12033 }
12034
c2213350 12035 XSETFASTINT (w->base_line_number, topline - nlines);
12adba34 12036 XSETFASTINT (w->base_line_pos, BYTE_TO_CHAR (position));
aa6d10fa
RS
12037 }
12038
12039 /* Now count lines from the start pos to point. */
12adba34
RS
12040 nlines = display_count_lines (startpos, startpos_byte,
12041 PT_BYTE, PT, &junk);
aa6d10fa
RS
12042
12043 /* Record that we did display the line number. */
12044 line_number_displayed = 1;
12045
12046 /* Make the string to show. */
5f5c8ee5 12047 pint2str (decode_mode_spec_buf, field_width, topline + nlines);
aa6d10fa 12048 return decode_mode_spec_buf;
766525bc
RS
12049 no_value:
12050 {
12051 char* p = decode_mode_spec_buf;
5f5c8ee5
GM
12052 int pad = field_width - 2;
12053 while (pad-- > 0)
12054 *p++ = ' ';
12055 *p++ = '?';
12056 *p = '?';
766525bc
RS
12057 return decode_mode_spec_buf;
12058 }
aa6d10fa
RS
12059 }
12060 break;
12061
a2889657 12062 case 'm':
d39b6696 12063 obj = b->mode_name;
a2889657
JB
12064 break;
12065
12066 case 'n':
d39b6696 12067 if (BUF_BEGV (b) > BUF_BEG (b) || BUF_ZV (b) < BUF_Z (b))
a2889657
JB
12068 return " Narrow";
12069 break;
12070
a2889657
JB
12071 case 'p':
12072 {
12073 int pos = marker_position (w->start);
d39b6696 12074 int total = BUF_ZV (b) - BUF_BEGV (b);
a2889657 12075
d39b6696 12076 if (XFASTINT (w->window_end_pos) <= BUF_Z (b) - BUF_ZV (b))
a2889657 12077 {
d39b6696 12078 if (pos <= BUF_BEGV (b))
a2889657
JB
12079 return "All";
12080 else
12081 return "Bottom";
12082 }
d39b6696 12083 else if (pos <= BUF_BEGV (b))
a2889657
JB
12084 return "Top";
12085 else
12086 {
3c7d31b9
RS
12087 if (total > 1000000)
12088 /* Do it differently for a large value, to avoid overflow. */
12089 total = ((pos - BUF_BEGV (b)) + (total / 100) - 1) / (total / 100);
12090 else
12091 total = ((pos - BUF_BEGV (b)) * 100 + total - 1) / total;
a2889657
JB
12092 /* We can't normally display a 3-digit number,
12093 so get us a 2-digit number that is close. */
12094 if (total == 100)
12095 total = 99;
12096 sprintf (decode_mode_spec_buf, "%2d%%", total);
12097 return decode_mode_spec_buf;
12098 }
12099 }
12100
8ffcb79f
RS
12101 /* Display percentage of size above the bottom of the screen. */
12102 case 'P':
12103 {
12104 int toppos = marker_position (w->start);
d39b6696
KH
12105 int botpos = BUF_Z (b) - XFASTINT (w->window_end_pos);
12106 int total = BUF_ZV (b) - BUF_BEGV (b);
8ffcb79f 12107
d39b6696 12108 if (botpos >= BUF_ZV (b))
8ffcb79f 12109 {
d39b6696 12110 if (toppos <= BUF_BEGV (b))
8ffcb79f
RS
12111 return "All";
12112 else
12113 return "Bottom";
12114 }
12115 else
12116 {
3c7d31b9
RS
12117 if (total > 1000000)
12118 /* Do it differently for a large value, to avoid overflow. */
12119 total = ((botpos - BUF_BEGV (b)) + (total / 100) - 1) / (total / 100);
12120 else
12121 total = ((botpos - BUF_BEGV (b)) * 100 + total - 1) / total;
8ffcb79f
RS
12122 /* We can't normally display a 3-digit number,
12123 so get us a 2-digit number that is close. */
12124 if (total == 100)
12125 total = 99;
d39b6696 12126 if (toppos <= BUF_BEGV (b))
8ffcb79f
RS
12127 sprintf (decode_mode_spec_buf, "Top%2d%%", total);
12128 else
12129 sprintf (decode_mode_spec_buf, "%2d%%", total);
12130 return decode_mode_spec_buf;
12131 }
12132 }
12133
1af9f229
RS
12134 case 's':
12135 /* status of process */
12136 obj = Fget_buffer_process (w->buffer);
12137 if (NILP (obj))
12138 return "no process";
12139#ifdef subprocesses
12140 obj = Fsymbol_name (Fprocess_status (obj));
12141#endif
12142 break;
d39b6696 12143
1af9f229
RS
12144 case 't': /* indicate TEXT or BINARY */
12145#ifdef MODE_LINE_BINARY_TEXT
12146 return MODE_LINE_BINARY_TEXT (b);
12147#else
12148 return "T";
12149#endif
1c9241f5
KH
12150
12151 case 'z':
12152 /* coding-system (not including end-of-line format) */
12153 case 'Z':
12154 /* coding-system (including end-of-line type) */
12155 {
12156 int eol_flag = (c == 'Z');
539b4d41 12157 char *p = decode_mode_spec_buf;
1c9241f5 12158
d30e754b 12159 if (! FRAME_WINDOW_P (f))
1c9241f5 12160 {
11c52c4f
RS
12161 /* No need to mention EOL here--the terminal never needs
12162 to do EOL conversion. */
12163 p = decode_mode_spec_coding (keyboard_coding.symbol, p, 0);
12164 p = decode_mode_spec_coding (terminal_coding.symbol, p, 0);
1c9241f5 12165 }
f13c925f 12166 p = decode_mode_spec_coding (b->buffer_file_coding_system,
539b4d41 12167 p, eol_flag);
f13c925f 12168
11c52c4f 12169#if 0 /* This proves to be annoying; I think we can do without. -- rms. */
1c9241f5
KH
12170#ifdef subprocesses
12171 obj = Fget_buffer_process (Fcurrent_buffer ());
12172 if (PROCESSP (obj))
12173 {
12174 p = decode_mode_spec_coding (XPROCESS (obj)->decode_coding_system,
12175 p, eol_flag);
12176 p = decode_mode_spec_coding (XPROCESS (obj)->encode_coding_system,
12177 p, eol_flag);
12178 }
12179#endif /* subprocesses */
11c52c4f 12180#endif /* 0 */
1c9241f5
KH
12181 *p = 0;
12182 return decode_mode_spec_buf;
12183 }
a2889657 12184 }
d39b6696 12185
e24c997d 12186 if (STRINGP (obj))
a2889657
JB
12187 return (char *) XSTRING (obj)->data;
12188 else
12189 return "";
12190}
5f5c8ee5
GM
12191
12192
12adba34
RS
12193/* Count up to COUNT lines starting from START / START_BYTE.
12194 But don't go beyond LIMIT_BYTE.
12195 Return the number of lines thus found (always nonnegative).
59b49f63 12196
12adba34 12197 Set *BYTE_POS_PTR to 1 if we found COUNT lines, 0 if we hit LIMIT. */
59b49f63
RS
12198
12199static int
12adba34
RS
12200display_count_lines (start, start_byte, limit_byte, count, byte_pos_ptr)
12201 int start, start_byte, limit_byte, count;
12202 int *byte_pos_ptr;
59b49f63 12203{
59b49f63
RS
12204 register unsigned char *cursor;
12205 unsigned char *base;
12206
12207 register int ceiling;
12208 register unsigned char *ceiling_addr;
12adba34 12209 int orig_count = count;
59b49f63
RS
12210
12211 /* If we are not in selective display mode,
12212 check only for newlines. */
12adba34
RS
12213 int selective_display = (!NILP (current_buffer->selective_display)
12214 && !INTEGERP (current_buffer->selective_display));
59b49f63
RS
12215
12216 if (count > 0)
12adba34
RS
12217 {
12218 while (start_byte < limit_byte)
12219 {
12220 ceiling = BUFFER_CEILING_OF (start_byte);
12221 ceiling = min (limit_byte - 1, ceiling);
12222 ceiling_addr = BYTE_POS_ADDR (ceiling) + 1;
12223 base = (cursor = BYTE_POS_ADDR (start_byte));
12224 while (1)
12225 {
12226 if (selective_display)
12227 while (*cursor != '\n' && *cursor != 015 && ++cursor != ceiling_addr)
12228 ;
12229 else
12230 while (*cursor != '\n' && ++cursor != ceiling_addr)
12231 ;
12232
12233 if (cursor != ceiling_addr)
12234 {
12235 if (--count == 0)
12236 {
12237 start_byte += cursor - base + 1;
12238 *byte_pos_ptr = start_byte;
12239 return orig_count;
12240 }
12241 else
12242 if (++cursor == ceiling_addr)
12243 break;
12244 }
12245 else
12246 break;
12247 }
12248 start_byte += cursor - base;
12249 }
12250 }
59b49f63
RS
12251 else
12252 {
12adba34
RS
12253 while (start_byte > limit_byte)
12254 {
12255 ceiling = BUFFER_FLOOR_OF (start_byte - 1);
12256 ceiling = max (limit_byte, ceiling);
12257 ceiling_addr = BYTE_POS_ADDR (ceiling) - 1;
12258 base = (cursor = BYTE_POS_ADDR (start_byte - 1) + 1);
59b49f63
RS
12259 while (1)
12260 {
12adba34
RS
12261 if (selective_display)
12262 while (--cursor != ceiling_addr
12263 && *cursor != '\n' && *cursor != 015)
12264 ;
12265 else
12266 while (--cursor != ceiling_addr && *cursor != '\n')
12267 ;
12268
59b49f63
RS
12269 if (cursor != ceiling_addr)
12270 {
12271 if (++count == 0)
12272 {
12adba34
RS
12273 start_byte += cursor - base + 1;
12274 *byte_pos_ptr = start_byte;
12275 /* When scanning backwards, we should
12276 not count the newline posterior to which we stop. */
12277 return - orig_count - 1;
59b49f63
RS
12278 }
12279 }
12280 else
12281 break;
12282 }
12adba34
RS
12283 /* Here we add 1 to compensate for the last decrement
12284 of CURSOR, which took it past the valid range. */
12285 start_byte += cursor - base + 1;
59b49f63
RS
12286 }
12287 }
12288
12adba34 12289 *byte_pos_ptr = limit_byte;
aa6d10fa 12290
12adba34
RS
12291 if (count < 0)
12292 return - orig_count + count;
12293 return orig_count - count;
aa6d10fa 12294
12adba34 12295}
a2889657 12296
a2889657 12297
5f5c8ee5
GM
12298\f
12299/***********************************************************************
12300 Displaying strings
12301 ***********************************************************************/
278feba9 12302
5f5c8ee5 12303/* Display a NUL-terminated string, starting with index START.
a3788d53 12304
5f5c8ee5
GM
12305 If STRING is non-null, display that C string. Otherwise, the Lisp
12306 string LISP_STRING is displayed.
a2889657 12307
5f5c8ee5
GM
12308 If FACE_STRING is not nil, FACE_STRING_POS is a position in
12309 FACE_STRING. Display STRING or LISP_STRING with the face at
12310 FACE_STRING_POS in FACE_STRING:
a2889657 12311
5f5c8ee5
GM
12312 Display the string in the environment given by IT, but use the
12313 standard display table, temporarily.
a3788d53 12314
5f5c8ee5
GM
12315 FIELD_WIDTH is the minimum number of output glyphs to produce.
12316 If STRING has fewer characters than FIELD_WIDTH, pad to the right
12317 with spaces. If STRING has more characters, more than FIELD_WIDTH
12318 glyphs will be produced. FIELD_WIDTH <= 0 means don't pad.
12319
12320 PRECISION is the maximum number of characters to output from
12321 STRING. PRECISION < 0 means don't truncate the string.
a2889657 12322
5f5c8ee5 12323 This is roughly equivalent to printf format specifiers:
a2889657 12324
5f5c8ee5
GM
12325 FIELD_WIDTH PRECISION PRINTF
12326 ----------------------------------------
12327 -1 -1 %s
12328 -1 10 %.10s
12329 10 -1 %10s
12330 20 10 %20.10s
a2889657 12331
5f5c8ee5
GM
12332 MULTIBYTE zero means do not display multibyte chars, > 0 means do
12333 display them, and < 0 means obey the current buffer's value of
12334 enable_multibyte_characters.
278feba9 12335
5f5c8ee5 12336 Value is the number of glyphs produced. */
b1d1124b 12337
5f5c8ee5
GM
12338static int
12339display_string (string, lisp_string, face_string, face_string_pos,
12340 start, it, field_width, precision, max_x, multibyte)
12341 unsigned char *string;
12342 Lisp_Object lisp_string;
12343 int start;
12344 struct it *it;
12345 int field_width, precision, max_x;
12346 int multibyte;
12347{
12348 int hpos_at_start = it->hpos;
12349 int saved_face_id = it->face_id;
12350 struct glyph_row *row = it->glyph_row;
12351
12352 /* Initialize the iterator IT for iteration over STRING beginning
12353 with index START. We assume that IT may be modified here (which
12354 means that display_line has to do something when displaying a
12355 mini-buffer prompt, which it does). */
12356 reseat_to_string (it, string, lisp_string, start,
12357 precision, field_width, multibyte);
12358
12359 /* If displaying STRING, set up the face of the iterator
12360 from LISP_STRING, if that's given. */
12361 if (STRINGP (face_string))
12362 {
12363 int endptr;
12364 struct face *face;
12365
12366 it->face_id
12367 = face_at_string_position (it->w, face_string, face_string_pos,
12368 0, it->region_beg_charpos,
12369 it->region_end_charpos,
12370 &endptr, it->base_face_id);
12371 face = FACE_FROM_ID (it->f, it->face_id);
12372 it->face_box_p = face->box != FACE_NO_BOX;
b1d1124b 12373 }
a2889657 12374
5f5c8ee5
GM
12375 /* Set max_x to the maximum allowed X position. Don't let it go
12376 beyond the right edge of the window. */
12377 if (max_x <= 0)
12378 max_x = it->last_visible_x;
12379 else
12380 max_x = min (max_x, it->last_visible_x);
efc63ef0 12381
5f5c8ee5
GM
12382 /* Skip over display elements that are not visible. because IT->w is
12383 hscrolled. */
12384 if (it->current_x < it->first_visible_x)
12385 move_it_in_display_line_to (it, 100000, it->first_visible_x,
12386 MOVE_TO_POS | MOVE_TO_X);
a2889657 12387
5f5c8ee5
GM
12388 row->ascent = it->max_ascent;
12389 row->height = it->max_ascent + it->max_descent;
312246d1
GM
12390 row->phys_ascent = it->max_phys_ascent;
12391 row->phys_height = it->max_phys_ascent + it->max_phys_descent;
1c9241f5 12392
5f5c8ee5
GM
12393 /* This condition is for the case that we are called with current_x
12394 past last_visible_x. */
12395 while (it->current_x < max_x)
a2889657 12396 {
5f5c8ee5 12397 int x_before, x, n_glyphs_before, i, nglyphs;
1c9241f5 12398
5f5c8ee5
GM
12399 /* Get the next display element. */
12400 if (!get_next_display_element (it))
90adcf20 12401 break;
1c9241f5 12402
5f5c8ee5
GM
12403 /* Produce glyphs. */
12404 x_before = it->current_x;
12405 n_glyphs_before = it->glyph_row->used[TEXT_AREA];
12406 PRODUCE_GLYPHS (it);
90adcf20 12407
5f5c8ee5
GM
12408 nglyphs = it->glyph_row->used[TEXT_AREA] - n_glyphs_before;
12409 i = 0;
12410 x = x_before;
12411 while (i < nglyphs)
a2889657 12412 {
5f5c8ee5
GM
12413 struct glyph *glyph = row->glyphs[TEXT_AREA] + n_glyphs_before + i;
12414
12415 if (!it->truncate_lines_p
12416 && x + glyph->pixel_width > max_x)
12417 {
12418 /* End of continued line or max_x reached. */
12419 it->glyph_row->used[TEXT_AREA] = n_glyphs_before + i;
12420 it->current_x = x;
12421 break;
12422 }
12423 else if (x + glyph->pixel_width > it->first_visible_x)
12424 {
12425 /* Glyph is at least partially visible. */
12426 ++it->hpos;
12427 if (x < it->first_visible_x)
12428 it->glyph_row->x = x - it->first_visible_x;
12429 }
12430 else
a2889657 12431 {
5f5c8ee5
GM
12432 /* Glyph is off the left margin of the display area.
12433 Should not happen. */
12434 abort ();
a2889657 12435 }
5f5c8ee5
GM
12436
12437 row->ascent = max (row->ascent, it->max_ascent);
12438 row->height = max (row->height, it->max_ascent + it->max_descent);
312246d1
GM
12439 row->phys_ascent = max (row->phys_ascent, it->max_phys_ascent);
12440 row->phys_height = max (row->phys_height,
12441 it->max_phys_ascent + it->max_phys_descent);
5f5c8ee5
GM
12442 x += glyph->pixel_width;
12443 ++i;
a2889657 12444 }
5f5c8ee5
GM
12445
12446 /* Stop if max_x reached. */
12447 if (i < nglyphs)
12448 break;
12449
12450 /* Stop at line ends. */
12451 if (ITERATOR_AT_END_OF_LINE_P (it))
a2889657 12452 {
5f5c8ee5
GM
12453 it->continuation_lines_width = 0;
12454 break;
a2889657 12455 }
1c9241f5 12456
5f5c8ee5 12457 set_iterator_to_next (it);
a688bb24 12458
5f5c8ee5
GM
12459 /* Stop if truncating at the right edge. */
12460 if (it->truncate_lines_p
12461 && it->current_x >= it->last_visible_x)
12462 {
12463 /* Add truncation mark, but don't do it if the line is
12464 truncated at a padding space. */
12465 if (IT_CHARPOS (*it) < it->string_nchars)
1c9241f5 12466 {
5f5c8ee5
GM
12467 if (!FRAME_WINDOW_P (it->f))
12468 produce_special_glyphs (it, IT_TRUNCATION);
12469 it->glyph_row->truncated_on_right_p = 1;
1c9241f5 12470 }
5f5c8ee5 12471 break;
1c9241f5 12472 }
a2889657
JB
12473 }
12474
5f5c8ee5
GM
12475 /* Maybe insert a truncation at the left. */
12476 if (it->first_visible_x
12477 && IT_CHARPOS (*it) > 0)
a2889657 12478 {
5f5c8ee5
GM
12479 if (!FRAME_WINDOW_P (it->f))
12480 insert_left_trunc_glyphs (it);
12481 it->glyph_row->truncated_on_left_p = 1;
a2889657
JB
12482 }
12483
5f5c8ee5
GM
12484 it->face_id = saved_face_id;
12485
12486 /* Value is number of columns displayed. */
12487 return it->hpos - hpos_at_start;
12488}
a2889657 12489
a2889657 12490
a2889657 12491\f
5f5c8ee5
GM
12492/* This is like a combination of memq and assq. Return 1 if PROPVAL
12493 appears as an element of LIST or as the car of an element of LIST.
12494 If PROPVAL is a list, compare each element against LIST in that
12495 way, and return 1 if any element of PROPVAL is found in LIST.
12496 Otherwise return 0. This function cannot quit. */
642eefc6
RS
12497
12498int
12499invisible_p (propval, list)
12500 register Lisp_Object propval;
12501 Lisp_Object list;
12502{
af460d46 12503 register Lisp_Object tail, proptail;
9472f927 12504 for (tail = list; CONSP (tail); tail = XCDR (tail))
642eefc6
RS
12505 {
12506 register Lisp_Object tem;
9472f927 12507 tem = XCAR (tail);
642eefc6
RS
12508 if (EQ (propval, tem))
12509 return 1;
9472f927 12510 if (CONSP (tem) && EQ (propval, XCAR (tem)))
642eefc6
RS
12511 return 1;
12512 }
af460d46
RS
12513 if (CONSP (propval))
12514 for (proptail = propval; CONSP (proptail);
9472f927 12515 proptail = XCDR (proptail))
af460d46
RS
12516 {
12517 Lisp_Object propelt;
9472f927
GM
12518 propelt = XCAR (proptail);
12519 for (tail = list; CONSP (tail); tail = XCDR (tail))
af460d46
RS
12520 {
12521 register Lisp_Object tem;
9472f927 12522 tem = XCAR (tail);
af460d46
RS
12523 if (EQ (propelt, tem))
12524 return 1;
9472f927 12525 if (CONSP (tem) && EQ (propelt, XCAR (tem)))
af460d46
RS
12526 return 1;
12527 }
12528 }
642eefc6
RS
12529 return 0;
12530}
12531
5f5c8ee5
GM
12532
12533/* Return 1 if PROPVAL appears as the car of an element of LIST and
12534 the cdr of that element is non-nil. If PROPVAL is a list, check
12535 each element of PROPVAL in that way, and the first time some
12536 element is found, return 1 if the cdr of that element is non-nil.
12537 Otherwise return 0. This function cannot quit. */
642eefc6
RS
12538
12539int
12540invisible_ellipsis_p (propval, list)
12541 register Lisp_Object propval;
12542 Lisp_Object list;
12543{
af460d46 12544 register Lisp_Object tail, proptail;
9472f927
GM
12545
12546 for (tail = list; CONSP (tail); tail = XCDR (tail))
642eefc6
RS
12547 {
12548 register Lisp_Object tem;
9472f927
GM
12549 tem = XCAR (tail);
12550 if (CONSP (tem) && EQ (propval, XCAR (tem)))
12551 return ! NILP (XCDR (tem));
642eefc6 12552 }
9472f927 12553
af460d46 12554 if (CONSP (propval))
9472f927 12555 for (proptail = propval; CONSP (proptail); proptail = XCDR (proptail))
af460d46
RS
12556 {
12557 Lisp_Object propelt;
9472f927
GM
12558 propelt = XCAR (proptail);
12559 for (tail = list; CONSP (tail); tail = XCDR (tail))
af460d46
RS
12560 {
12561 register Lisp_Object tem;
9472f927
GM
12562 tem = XCAR (tail);
12563 if (CONSP (tem) && EQ (propelt, XCAR (tem)))
12564 return ! NILP (XCDR (tem));
af460d46
RS
12565 }
12566 }
9472f927 12567
642eefc6
RS
12568 return 0;
12569}
5f5c8ee5
GM
12570
12571
642eefc6 12572\f
5f5c8ee5
GM
12573/***********************************************************************
12574 Initialization
12575 ***********************************************************************/
12576
a2889657
JB
12577void
12578syms_of_xdisp ()
12579{
c6e89d6c
GM
12580 Vwith_echo_area_save_vector = Qnil;
12581 staticpro (&Vwith_echo_area_save_vector);
5f5c8ee5 12582
c6e89d6c
GM
12583 Vmessage_stack = Qnil;
12584 staticpro (&Vmessage_stack);
12585
735c094c 12586 Qinhibit_redisplay = intern ("inhibit-redisplay");
c6e89d6c 12587 staticpro (&Qinhibit_redisplay);
735c094c 12588
5f5c8ee5
GM
12589#if GLYPH_DEBUG
12590 defsubr (&Sdump_glyph_matrix);
12591 defsubr (&Sdump_glyph_row);
e037b9ec 12592 defsubr (&Sdump_tool_bar_row);
5f5c8ee5
GM
12593 defsubr (&Strace_redisplay_toggle);
12594#endif
12595
cf074754
RS
12596 staticpro (&Qmenu_bar_update_hook);
12597 Qmenu_bar_update_hook = intern ("menu-bar-update-hook");
12598
d46fb96a 12599 staticpro (&Qoverriding_terminal_local_map);
7079aefa 12600 Qoverriding_terminal_local_map = intern ("overriding-terminal-local-map");
d46fb96a 12601
399164b4
KH
12602 staticpro (&Qoverriding_local_map);
12603 Qoverriding_local_map = intern ("overriding-local-map");
12604
75c43375
RS
12605 staticpro (&Qwindow_scroll_functions);
12606 Qwindow_scroll_functions = intern ("window-scroll-functions");
12607
e0bfbde6
RS
12608 staticpro (&Qredisplay_end_trigger_functions);
12609 Qredisplay_end_trigger_functions = intern ("redisplay-end-trigger-functions");
5f5c8ee5 12610
2e54982e
RS
12611 staticpro (&Qinhibit_point_motion_hooks);
12612 Qinhibit_point_motion_hooks = intern ("inhibit-point-motion-hooks");
12613
5f5c8ee5
GM
12614 staticpro (&Qdisplay);
12615 Qdisplay = intern ("display");
12616 staticpro (&Qleft_margin);
12617 Qspace_width = intern ("space-width");
12618 staticpro (&Qspace_width);
12619 Qheight = intern ("height");
12620 staticpro (&Qheight);
12621 Qraise = intern ("raise");
12622 staticpro (&Qraise);
12623 Qspace = intern ("space");
12624 staticpro (&Qspace);
12625 Qleft_margin = intern ("left-margin");
12626 staticpro (&Qright_margin);
12627 Qright_margin = intern ("right-margin");
12628 Qalign_to = intern ("align-to");
12629 staticpro (&Qalign_to);
12630 QCalign_to = intern (":align-to");
12631 staticpro (&QCalign_to);
12632 Qwidth = intern ("width");
12633 staticpro (&Qwidth);
12634 Qrelative_width = intern ("relative-width");
12635 staticpro (&Qrelative_width);
12636 QCrelative_width = intern (":relative-width");
12637 staticpro (&QCrelative_width);
12638 QCrelative_height = intern (":relative-height");
12639 staticpro (&QCrelative_height);
12640 QCeval = intern (":eval");
12641 staticpro (&QCeval);
d3acf96b 12642 Qwhen = intern ("when");
886bd6f2
GM
12643 QCfile = intern (":file");
12644 staticpro (&QCfile);
d3acf96b 12645 staticpro (&Qwhen);
5f5c8ee5
GM
12646 Qfontified = intern ("fontified");
12647 staticpro (&Qfontified);
12648 Qfontification_functions = intern ("fontification-functions");
12649 staticpro (&Qfontification_functions);
5f5c8ee5
GM
12650 Qtrailing_whitespace = intern ("trailing-whitespace");
12651 staticpro (&Qtrailing_whitespace);
12652 Qimage = intern ("image");
12653 staticpro (&Qimage);
12654
a2889657
JB
12655 staticpro (&last_arrow_position);
12656 staticpro (&last_arrow_string);
12657 last_arrow_position = Qnil;
12658 last_arrow_string = Qnil;
c6e89d6c
GM
12659
12660 echo_buffer[0] = echo_buffer[1] = Qnil;
12661 staticpro (&echo_buffer[0]);
12662 staticpro (&echo_buffer[1]);
12663
12664 echo_area_buffer[0] = echo_area_buffer[1] = Qnil;
12665 staticpro (&echo_area_buffer[0]);
12666 staticpro (&echo_area_buffer[1]);
a2889657 12667
8f897821
GM
12668 DEFVAR_LISP ("show-trailing-whitespace", &Vshow_trailing_whitespace,
12669 "Non-nil means highlight trailing whitespace.\n\
12670The face used for trailing whitespace is `trailing-whitespace'.");
12671 Vshow_trailing_whitespace = Qnil;
12672
735c094c
KH
12673 DEFVAR_LISP ("inhibit-redisplay", &Vinhibit_redisplay,
12674 "Non-nil means don't actually do any redisplay.\n\
12675This is used for internal purposes.");
12676 Vinhibit_redisplay = Qnil;
12677
a2889657 12678 DEFVAR_LISP ("global-mode-string", &Vglobal_mode_string,
8c45d522 12679 "String (or mode line construct) included (normally) in `mode-line-format'.");
a2889657
JB
12680 Vglobal_mode_string = Qnil;
12681
12682 DEFVAR_LISP ("overlay-arrow-position", &Voverlay_arrow_position,
12683 "Marker for where to display an arrow on top of the buffer text.\n\
12684This must be the beginning of a line in order to work.\n\
12685See also `overlay-arrow-string'.");
12686 Voverlay_arrow_position = Qnil;
12687
12688 DEFVAR_LISP ("overlay-arrow-string", &Voverlay_arrow_string,
12689 "String to display as an arrow. See also `overlay-arrow-position'.");
12690 Voverlay_arrow_string = Qnil;
12691
12692 DEFVAR_INT ("scroll-step", &scroll_step,
12693 "*The number of lines to try scrolling a window by when point moves out.\n\
44fa5b1e
JB
12694If that fails to bring point back on frame, point is centered instead.\n\
12695If this is zero, point is always centered after it moves off frame.");
a2889657 12696
0789adb2
RS
12697 DEFVAR_INT ("scroll-conservatively", &scroll_conservatively,
12698 "*Scroll up to this many lines, to bring point back on screen.");
12699 scroll_conservatively = 0;
12700
9afd2168
RS
12701 DEFVAR_INT ("scroll-margin", &scroll_margin,
12702 "*Number of lines of margin at the top and bottom of a window.\n\
12703Recenter the window whenever point gets within this many lines\n\
12704of the top or bottom of the window.");
12705 scroll_margin = 0;
12706
5f5c8ee5 12707#if GLYPH_DEBUG
a2889657 12708 DEFVAR_INT ("debug-end-pos", &debug_end_pos, "Don't ask");
5f5c8ee5 12709#endif
a2889657
JB
12710
12711 DEFVAR_BOOL ("truncate-partial-width-windows",
12712 &truncate_partial_width_windows,
44fa5b1e 12713 "*Non-nil means truncate lines in all windows less than full frame wide.");
a2889657
JB
12714 truncate_partial_width_windows = 1;
12715
12716 DEFVAR_BOOL ("mode-line-inverse-video", &mode_line_inverse_video,
12717 "*Non-nil means use inverse video for the mode line.");
12718 mode_line_inverse_video = 1;
aa6d10fa
RS
12719
12720 DEFVAR_INT ("line-number-display-limit", &line_number_display_limit,
5f5c8ee5 12721 "*Maximum buffer size for which line number should be displayed.\n\
db4f2bfa 12722If the buffer is bigger than this, the line number does not appear\n\
9f027393 12723in the mode line.");
aa6d10fa 12724 line_number_display_limit = 1000000;
fba9ce76 12725
5d121aec
KH
12726 DEFVAR_INT ("line-number-display-limit-width", &line_number_display_limit_width,
12727 "*Maximum line width (in characters) for line number display.\n\
12728If the average length of the lines near point is bigger than this, then the\n\
12729line number may be omitted from the mode line.");
12730 line_number_display_limit_width = 200;
12731
fba9ce76
RS
12732 DEFVAR_BOOL ("highlight-nonselected-windows", &highlight_nonselected_windows,
12733 "*Non-nil means highlight region even in nonselected windows.");
293a54ce 12734 highlight_nonselected_windows = 0;
d39b6696
KH
12735
12736 DEFVAR_BOOL ("multiple-frames", &multiple_frames,
3450d04c
KH
12737 "Non-nil if more than one frame is visible on this display.\n\
12738Minibuffer-only frames don't count, but iconified frames do.\n\
4c2eb242
RS
12739This variable is not guaranteed to be accurate except while processing\n\
12740`frame-title-format' and `icon-title-format'.");
d39b6696
KH
12741
12742 DEFVAR_LISP ("frame-title-format", &Vframe_title_format,
5f5c8ee5 12743 "Template for displaying the title bar of visible frames.\n\
d39b6696
KH
12744\(Assuming the window manager supports this feature.)\n\
12745This variable has the same structure as `mode-line-format' (which see),\n\
12746and is used only on frames for which no explicit name has been set\n\
12747\(see `modify-frame-parameters').");
12748 DEFVAR_LISP ("icon-title-format", &Vicon_title_format,
5f5c8ee5 12749 "Template for displaying the title bar of an iconified frame.\n\
d39b6696
KH
12750\(Assuming the window manager supports this feature.)\n\
12751This variable has the same structure as `mode-line-format' (which see),\n\
12752and is used only on frames for which no explicit name has been set\n\
12753\(see `modify-frame-parameters').");
12754 Vicon_title_format
12755 = Vframe_title_format
12756 = Fcons (intern ("multiple-frames"),
12757 Fcons (build_string ("%b"),
12758 Fcons (Fcons (build_string (""),
12759 Fcons (intern ("invocation-name"),
12760 Fcons (build_string ("@"),
12761 Fcons (intern ("system-name"),
12762 Qnil)))),
12763 Qnil)));
5992c4f7
KH
12764
12765 DEFVAR_LISP ("message-log-max", &Vmessage_log_max,
12766 "Maximum number of lines to keep in the message log buffer.\n\
12767If nil, disable message logging. If t, log messages but don't truncate\n\
12768the buffer when it becomes large.");
12769 XSETFASTINT (Vmessage_log_max, 50);
08b610e4
RS
12770
12771 DEFVAR_LISP ("window-size-change-functions", &Vwindow_size_change_functions,
12772 "Functions called before redisplay, if window sizes have changed.\n\
12773The value should be a list of functions that take one argument.\n\
12774Just before redisplay, for each frame, if any of its windows have changed\n\
12775size since the last redisplay, or have been split or deleted,\n\
12776all the functions in the list are called, with the frame as argument.");
12777 Vwindow_size_change_functions = Qnil;
75c43375
RS
12778
12779 DEFVAR_LISP ("window-scroll-functions", &Vwindow_scroll_functions,
5f5c8ee5 12780 "List of Functions to call before redisplaying a window with scrolling.\n\
75c43375 12781Each function is called with two arguments, the window\n\
8d9583b0
RS
12782and its new display-start position. Note that the value of `window-end'\n\
12783is not valid when these functions are called.");
75c43375 12784 Vwindow_scroll_functions = Qnil;
5f5c8ee5 12785
e037b9ec
GM
12786 DEFVAR_BOOL ("auto-resize-tool-bars", &auto_resize_tool_bars_p,
12787 "*Non-nil means automatically resize tool-bars.\n\
12788This increases a tool-bar's height if not all tool-bar items are visible.\n\
12789It decreases a tool-bar's height when it would display blank lines\n\
5f5c8ee5 12790otherwise.");
e037b9ec 12791 auto_resize_tool_bars_p = 1;
5f5c8ee5 12792
e037b9ec
GM
12793 DEFVAR_BOOL ("auto-raise-tool-bar-buttons", &auto_raise_tool_bar_buttons_p,
12794 "*Non-nil means raise tool-bar buttons when the mouse moves over them.");
12795 auto_raise_tool_bar_buttons_p = 1;
5f5c8ee5 12796
e037b9ec
GM
12797 DEFVAR_INT ("tool-bar-button-margin", &tool_bar_button_margin,
12798 "*Margin around tool-bar buttons in pixels.");
12799 tool_bar_button_margin = 1;
5f5c8ee5 12800
e037b9ec
GM
12801 DEFVAR_INT ("tool-bar-button-relief", &tool_bar_button_relief,
12802 "Relief thickness of tool-bar buttons.");
12803 tool_bar_button_relief = 3;
5f5c8ee5
GM
12804
12805 DEFVAR_LISP ("fontification-functions", &Vfontification_functions,
12806 "List of functions to call to fontify regions of text.\n\
12807Each function is called with one argument POS. Functions must\n\
12808fontify a region starting at POS in the current buffer, and give\n\
12809fontified regions the property `fontified'.\n\
12810This variable automatically becomes buffer-local when set.");
12811 Vfontification_functions = Qnil;
12812 Fmake_local_variable (Qfontification_functions);
7bbe686f
AI
12813
12814 DEFVAR_BOOL ("unibyte-display-via-language-environment",
5f5c8ee5
GM
12815 &unibyte_display_via_language_environment,
12816 "*Non-nil means display unibyte text according to language environment.\n\
7bbe686f
AI
12817Specifically this means that unibyte non-ASCII characters\n\
12818are displayed by converting them to the equivalent multibyte characters\n\
12819according to the current language environment. As a result, they are\n\
12820displayed according to the current fontset.");
12821 unibyte_display_via_language_environment = 0;
c6e89d6c
GM
12822
12823 DEFVAR_LISP ("max-mini-window-height", &Vmax_mini_window_height,
12824 "*Maximum height for resizing mini-windows.\n\
12825If a float, it specifies a fraction of the mini-window frame's height.\n\
97cafc0f
GM
12826If an integer, it specifies a number of lines.\n\
12827If nil, don't resize.");
c6e89d6c 12828 Vmax_mini_window_height = make_float (0.25);
a2889657
JB
12829}
12830
5f5c8ee5
GM
12831
12832/* Initialize this module when Emacs starts. */
12833
dfcf069d 12834void
a2889657
JB
12835init_xdisp ()
12836{
12837 Lisp_Object root_window;
5f5c8ee5 12838 struct window *mini_w;
a2889657 12839
5f5c8ee5 12840 CHARPOS (this_line_start_pos) = 0;
a2889657
JB
12841
12842 mini_w = XWINDOW (minibuf_window);
11e82b76 12843 root_window = FRAME_ROOT_WINDOW (XFRAME (WINDOW_FRAME (mini_w)));
a2889657 12844
a2889657
JB
12845 if (!noninteractive)
12846 {
5f5c8ee5
GM
12847 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (root_window)));
12848 int i;
12849
12850 XSETFASTINT (XWINDOW (root_window)->top, FRAME_TOP_MARGIN (f));
12c226c5 12851 set_window_height (root_window,
5f5c8ee5 12852 FRAME_HEIGHT (f) - 1 - FRAME_TOP_MARGIN (f),
12c226c5 12853 0);
c2213350 12854 XSETFASTINT (mini_w->top, FRAME_HEIGHT (f) - 1);
a2889657
JB
12855 set_window_height (minibuf_window, 1, 0);
12856
c2213350
KH
12857 XSETFASTINT (XWINDOW (root_window)->width, FRAME_WIDTH (f));
12858 XSETFASTINT (mini_w->width, FRAME_WIDTH (f));
5f5c8ee5
GM
12859
12860 scratch_glyph_row.glyphs[TEXT_AREA] = scratch_glyphs;
12861 scratch_glyph_row.glyphs[TEXT_AREA + 1]
12862 = scratch_glyphs + MAX_SCRATCH_GLYPHS;
12863
12864 /* The default ellipsis glyphs `...'. */
12865 for (i = 0; i < 3; ++i)
12866 XSETFASTINT (default_invis_vector[i], '.');
a2889657 12867 }
5f5c8ee5
GM
12868
12869#ifdef HAVE_WINDOW_SYSTEM
12870 {
12871 /* Allocate the buffer for frame titles. */
12872 int size = 100;
12873 frame_title_buf = (char *) xmalloc (size);
12874 frame_title_buf_end = frame_title_buf + size;
12875 frame_title_ptr = NULL;
12876 }
12877#endif /* HAVE_WINDOW_SYSTEM */
a2889657 12878}
5f5c8ee5
GM
12879
12880