Mercurial > emacs
annotate src/xdisp.c @ 35264:689589ab80b3
(function): Add :match-alternatives.
(widget-color-action): Doc fix.
author | Dave Love <fx@gnu.org> |
---|---|
date | Fri, 12 Jan 2001 12:54:42 +0000 |
parents | 4e6bbe9c1780 |
children | 5695de532559 |
rev | line source |
---|---|
277 | 1 /* Display generation from window structure and buffer text. |
35174
96c7c0a356aa
(push_message_unwind): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
35029
diff
changeset
|
2 Copyright (C) 1985, 86, 87, 88, 93, 94, 95, 97, 98, 99, 2000, 2001 |
25012 | 3 Free Software Foundation, Inc. |
277 | 4 |
5 This file is part of GNU Emacs. | |
6 | |
7 GNU Emacs is free software; you can redistribute it and/or modify | |
8 it under the terms of the GNU General Public License as published by | |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
9 the Free Software Foundation; either version 2, or (at your option) |
277 | 10 any later version. |
11 | |
12 GNU Emacs is distributed in the hope that it will be useful, | |
13 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 GNU General Public License for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
18 along with GNU Emacs; see the file COPYING. If not, write to | |
14186
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
14178
diff
changeset
|
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
14178
diff
changeset
|
20 Boston, MA 02111-1307, USA. */ |
277 | 21 |
25012 | 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. */ | |
277 | 169 |
4696
1fc792473491
Include <config.h> instead of "config.h".
Roland McGrath <roland@gnu.org>
parents:
4423
diff
changeset
|
170 #include <config.h> |
277 | 171 #include <stdio.h> |
172 #include "lisp.h" | |
31118
37c389d61cee
Include keyboard.h before frame.h.
Andrew Innes <andrewi@gnu.org>
parents:
30942
diff
changeset
|
173 #include "keyboard.h" |
769 | 174 #include "frame.h" |
277 | 175 #include "window.h" |
176 #include "termchar.h" | |
177 #include "dispextern.h" | |
178 #include "buffer.h" | |
17017
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
179 #include "charset.h" |
277 | 180 #include "indent.h" |
181 #include "commands.h" | |
182 #include "macros.h" | |
183 #include "disptab.h" | |
1718
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
184 #include "termhooks.h" |
4386
abd79e187610
(try_window): Handle invisible newline at end of buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3937
diff
changeset
|
185 #include "intervals.h" |
17017
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
186 #include "coding.h" |
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
187 #include "process.h" |
21514 | 188 #include "region-cache.h" |
29433 | 189 #include "fontset.h" |
21514 | 190 |
21825
697991d2a2c4
Conditionally include xterm.h using HAVE_X_WINDOWS.
Geoff Voelker <voelker@cs.washington.edu>
parents:
21748
diff
changeset
|
191 #ifdef HAVE_X_WINDOWS |
21514 | 192 #include "xterm.h" |
193 #endif | |
27634
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27540
diff
changeset
|
194 #ifdef WINDOWSNT |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27540
diff
changeset
|
195 #include "w32term.h" |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27540
diff
changeset
|
196 #endif |
32752
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32592
diff
changeset
|
197 #ifdef macintosh |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32592
diff
changeset
|
198 #include "macterm.h" |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32592
diff
changeset
|
199 #endif |
277 | 200 |
25012 | 201 #define min(a, b) ((a) < (b) ? (a) : (b)) |
202 #define max(a, b) ((a) > (b) ? (a) : (b)) | |
203 | |
204 #define INFINITY 10000000 | |
205 | |
32752
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32592
diff
changeset
|
206 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined (macintosh) |
30320
a1f02a10e391
(with_echo_area_buffer): Call FN with more arguments.
Gerd Moellmann <gerd@gnu.org>
parents:
30243
diff
changeset
|
207 extern void set_frame_menubar P_ ((struct frame *f, int, int)); |
15813
c52454296042
(prepare_menu_bars): Conditionalize previous change.
Richard M. Stallman <rms@gnu.org>
parents:
15543
diff
changeset
|
208 extern int pending_menu_activation; |
5658
4e3a6baa4750
(display_menu_bar): Add USE_X_TOOLKIT conditional.
Richard M. Stallman <rms@gnu.org>
parents:
5340
diff
changeset
|
209 #endif |
4e3a6baa4750
(display_menu_bar): Add USE_X_TOOLKIT conditional.
Richard M. Stallman <rms@gnu.org>
parents:
5340
diff
changeset
|
210 |
277 | 211 extern int interrupt_input; |
212 extern int command_loop_level; | |
213 | |
16660
16f2e24baf42
(message2_nolog): Handle minibuffer_auto_raise.
Richard M. Stallman <rms@gnu.org>
parents:
16570
diff
changeset
|
214 extern int minibuffer_auto_raise; |
16f2e24baf42
(message2_nolog): Handle minibuffer_auto_raise.
Richard M. Stallman <rms@gnu.org>
parents:
16570
diff
changeset
|
215 |
8471
64c299dd51b8
(display_text_line): Use the face properties of the overlay arrow, if any.
Richard M. Stallman <rms@gnu.org>
parents:
8417
diff
changeset
|
216 extern Lisp_Object Qface; |
64c299dd51b8
(display_text_line): Use the face properties of the overlay arrow, if any.
Richard M. Stallman <rms@gnu.org>
parents:
8417
diff
changeset
|
217 |
12171
1d5d8a256d88
(update_menu_bar): Use set_buffer_internal_1 to switch bufs.
Karl Heuer <kwzh@gnu.org>
parents:
12141
diff
changeset
|
218 extern Lisp_Object Voverriding_local_map; |
1d5d8a256d88
(update_menu_bar): Use set_buffer_internal_1 to switch bufs.
Karl Heuer <kwzh@gnu.org>
parents:
12141
diff
changeset
|
219 extern Lisp_Object Voverriding_local_map_menu_flag; |
25012 | 220 extern Lisp_Object Qmenu_item; |
12171
1d5d8a256d88
(update_menu_bar): Use set_buffer_internal_1 to switch bufs.
Karl Heuer <kwzh@gnu.org>
parents:
12141
diff
changeset
|
221 |
12263
6ceecf7d1ec3
(Qoverriding_terminal_local_map): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
12171
diff
changeset
|
222 Lisp_Object Qoverriding_local_map, Qoverriding_terminal_local_map; |
13104
ea64c261c72a
(Qwindow_scroll_functions, Vwindow_scroll_functions): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
12921
diff
changeset
|
223 Lisp_Object Qwindow_scroll_functions, Vwindow_scroll_functions; |
13584
3daf8244546e
(Qredisplay_end_trigger_functions): Renamed from ..._hook.
Richard M. Stallman <rms@gnu.org>
parents:
13519
diff
changeset
|
224 Lisp_Object Qredisplay_end_trigger_functions; |
21748
c423e8929f69
(Qinhibit_point_motion_hooks): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
21534
diff
changeset
|
225 Lisp_Object Qinhibit_point_motion_hooks; |
28002
694ac11a3e1c
(QCdata): Moved here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
27990
diff
changeset
|
226 Lisp_Object QCeval, Qwhen, QCfile, QCdata; |
25012 | 227 Lisp_Object Qfontified; |
33314
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
228 Lisp_Object Qgrow_only; |
25012 | 229 |
230 /* Functions called to fontify regions of text. */ | |
231 | |
232 Lisp_Object Vfontification_functions; | |
233 Lisp_Object Qfontification_functions; | |
234 | |
25543 | 235 /* Non-zero means draw tool bar buttons raised when the mouse moves |
25012 | 236 over them. */ |
237 | |
25543 | 238 int auto_raise_tool_bar_buttons_p; |
239 | |
240 /* Margin around tool bar buttons in pixels. */ | |
241 | |
242 int tool_bar_button_margin; | |
243 | |
244 /* Thickness of shadow to draw around tool bar buttons. */ | |
245 | |
246 int tool_bar_button_relief; | |
247 | |
248 /* Non-zero means automatically resize tool-bars so that all tool-bar | |
25012 | 249 items are visible, and no blank lines remain. */ |
250 | |
25543 | 251 int auto_resize_tool_bars_p; |
12171
1d5d8a256d88
(update_menu_bar): Use set_buffer_internal_1 to switch bufs.
Karl Heuer <kwzh@gnu.org>
parents:
12141
diff
changeset
|
252 |
22543
32cfe5058f27
(Vinhibit_redisplay, Qinhibit_redisplay): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
22529
diff
changeset
|
253 /* Non-nil means don't actually do any redisplay. */ |
32cfe5058f27
(Vinhibit_redisplay, Qinhibit_redisplay): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
22529
diff
changeset
|
254 |
32cfe5058f27
(Vinhibit_redisplay, Qinhibit_redisplay): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
22529
diff
changeset
|
255 Lisp_Object Vinhibit_redisplay, Qinhibit_redisplay; |
32cfe5058f27
(Vinhibit_redisplay, Qinhibit_redisplay): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
22529
diff
changeset
|
256 |
25012 | 257 /* Names of text properties relevant for redisplay. */ |
258 | |
26570
133c30f0647c
Don't duplicate Qheight, Qwidth definitions done elsewhere.
Dave Love <fx@gnu.org>
parents:
26447
diff
changeset
|
259 Lisp_Object Qdisplay, Qrelative_width, Qalign_to; |
133c30f0647c
Don't duplicate Qheight, Qwidth definitions done elsewhere.
Dave Love <fx@gnu.org>
parents:
26447
diff
changeset
|
260 extern Lisp_Object Qface, Qinvisible, Qimage, Qwidth; |
25012 | 261 |
262 /* Symbols used in text property values. */ | |
263 | |
264 Lisp_Object Qspace, QCalign_to, QCrelative_width, QCrelative_height; | |
26570
133c30f0647c
Don't duplicate Qheight, Qwidth definitions done elsewhere.
Dave Love <fx@gnu.org>
parents:
26447
diff
changeset
|
265 Lisp_Object Qleft_margin, Qright_margin, Qspace_width, Qraise; |
25777
dabc57e3628f
(compute_window_start_on_continuation_line): Handle case
Gerd Moellmann <gerd@gnu.org>
parents:
25755
diff
changeset
|
266 Lisp_Object Qmargin; |
26570
133c30f0647c
Don't duplicate Qheight, Qwidth definitions done elsewhere.
Dave Love <fx@gnu.org>
parents:
26447
diff
changeset
|
267 extern Lisp_Object Qheight; |
25012 | 268 |
25305
273b3c17ce68
(Qshow_trailing_whitespace): Removed.
Gerd Moellmann <gerd@gnu.org>
parents:
25258
diff
changeset
|
269 /* Non-nil means highlight trailing whitespace. */ |
273b3c17ce68
(Qshow_trailing_whitespace): Removed.
Gerd Moellmann <gerd@gnu.org>
parents:
25258
diff
changeset
|
270 |
273b3c17ce68
(Qshow_trailing_whitespace): Removed.
Gerd Moellmann <gerd@gnu.org>
parents:
25258
diff
changeset
|
271 Lisp_Object Vshow_trailing_whitespace; |
25012 | 272 |
273 /* Name of the face used to highlight trailing whitespace. */ | |
274 | |
275 Lisp_Object Qtrailing_whitespace; | |
276 | |
277 /* The symbol `image' which is the car of the lists used to represent | |
278 images in Lisp. */ | |
279 | |
280 Lisp_Object Qimage; | |
281 | |
282 /* Non-zero means print newline to stdout before next mini-buffer | |
283 message. */ | |
277 | 284 |
285 int noninteractive_need_newline; | |
286 | |
25012 | 287 /* Non-zero means print newline to message log before next message. */ |
10416
51c4308d74c9
(message_log_need_newline): New var.
Karl Heuer <kwzh@gnu.org>
parents:
10394
diff
changeset
|
288 |
10567
65c5552c16cb
(message_log_need_newline): This var is now static.
Karl Heuer <kwzh@gnu.org>
parents:
10457
diff
changeset
|
289 static int message_log_need_newline; |
10416
51c4308d74c9
(message_log_need_newline): New var.
Karl Heuer <kwzh@gnu.org>
parents:
10394
diff
changeset
|
290 |
25012 | 291 |
292 /* The buffer position of the first character appearing entirely or | |
293 partially on the line of the selected window which contains the | |
294 cursor; <= 0 if not known. Set by set_cursor_from_row, used for | |
295 redisplay optimization in redisplay_internal. */ | |
296 | |
297 static struct text_pos this_line_start_pos; | |
298 | |
299 /* Number of characters past the end of the line above, including the | |
300 terminating newline. */ | |
301 | |
302 static struct text_pos this_line_end_pos; | |
303 | |
304 /* The vertical positions and the height of this line. */ | |
305 | |
277 | 306 static int this_line_vpos; |
25012 | 307 static int this_line_y; |
308 static int this_line_pixel_height; | |
309 | |
310 /* X position at which this display line starts. Usually zero; | |
311 negative if first character is partially visible. */ | |
312 | |
313 static int this_line_start_x; | |
314 | |
315 /* Buffer that this_line_.* variables are referring to. */ | |
316 | |
277 | 317 static struct buffer *this_line_buffer; |
318 | |
25012 | 319 /* Nonzero means truncate lines in all windows less wide than the |
320 frame. */ | |
321 | |
277 | 322 int truncate_partial_width_windows; |
323 | |
24676
ba5632c9721a
(display_text_line): Convert unibyte char to multibyte
Andrew Innes <andrewi@gnu.org>
parents:
24557
diff
changeset
|
324 /* A flag to control how to display unibyte 8-bit character. */ |
25012 | 325 |
24676
ba5632c9721a
(display_text_line): Convert unibyte char to multibyte
Andrew Innes <andrewi@gnu.org>
parents:
24557
diff
changeset
|
326 int unibyte_display_via_language_environment; |
25012 | 327 |
328 /* Nonzero means we have more than one non-mini-buffer-only frame. | |
329 Not guaranteed to be accurate except while parsing | |
330 frame-title-format. */ | |
331 | |
8772
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
332 int multiple_frames; |
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
333 |
277 | 334 Lisp_Object Vglobal_mode_string; |
335 | |
336 /* Marker for where to display an arrow on top of the buffer text. */ | |
25012 | 337 |
277 | 338 Lisp_Object Voverlay_arrow_position; |
339 | |
25012 | 340 /* String to display for the arrow. Only used on terminal frames. */ |
341 | |
277 | 342 Lisp_Object Voverlay_arrow_string; |
343 | |
25012 | 344 /* Values of those variables at last redisplay. However, if |
345 Voverlay_arrow_position is a marker, last_arrow_position is its | |
346 numerical position. */ | |
347 | |
19205
7448901d6449
(COERCE_MARKER): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19197
diff
changeset
|
348 static Lisp_Object last_arrow_position, last_arrow_string; |
7448901d6449
(COERCE_MARKER): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19197
diff
changeset
|
349 |
25012 | 350 /* Like mode-line-format, but for the title bar on a visible frame. */ |
351 | |
8772
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
352 Lisp_Object Vframe_title_format; |
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
353 |
25012 | 354 /* Like mode-line-format, but for the title bar on an iconified frame. */ |
355 | |
8772
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
356 Lisp_Object Vicon_title_format; |
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
357 |
10667
bacef13bc2ca
(Vwindow_size_change_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10641
diff
changeset
|
358 /* List of functions to call when a window's size changes. These |
bacef13bc2ca
(Vwindow_size_change_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10641
diff
changeset
|
359 functions get one arg, a frame on which one or more windows' sizes |
bacef13bc2ca
(Vwindow_size_change_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10641
diff
changeset
|
360 have changed. */ |
25012 | 361 |
10667
bacef13bc2ca
(Vwindow_size_change_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10641
diff
changeset
|
362 static Lisp_Object Vwindow_size_change_functions; |
bacef13bc2ca
(Vwindow_size_change_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10641
diff
changeset
|
363 |
31845
4bdcc0f0232f
(syms_of_xdisp): Defvar Vmenu_bar_update_hook to provide
Dave Love <fx@gnu.org>
parents:
31826
diff
changeset
|
364 Lisp_Object Qmenu_bar_update_hook, Vmenu_bar_update_hook; |
7096
a3bf30f1a408
(syms_of_xdisp): Set up Qmenu_bar_update_hook.
Richard M. Stallman <rms@gnu.org>
parents:
6896
diff
changeset
|
365 |
277 | 366 /* Nonzero if overlay arrow has been displayed once in this window. */ |
25012 | 367 |
277 | 368 static int overlay_arrow_seen; |
369 | |
3265
80f57ae8d44e
(syms_of_xdisp): Make highlight-nonselected-windows Lisp var.
Richard M. Stallman <rms@gnu.org>
parents:
3165
diff
changeset
|
370 /* Nonzero means highlight the region even in nonselected windows. */ |
25012 | 371 |
372 int highlight_nonselected_windows; | |
373 | |
374 /* If cursor motion alone moves point off frame, try scrolling this | |
375 many lines up or down if that will bring it back. */ | |
376 | |
11719
9238e21a6f09
(prepare_menu_bars): Clear size-change flag before running
Richard M. Stallman <rms@gnu.org>
parents:
11649
diff
changeset
|
377 static int scroll_step; |
277 | 378 |
25012 | 379 /* Non-0 means scroll just far enough to bring point back on the |
380 screen, when appropriate. */ | |
381 | |
16527
2337ed73b33e
(scroll_conservatively): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16463
diff
changeset
|
382 static int scroll_conservatively; |
2337ed73b33e
(scroll_conservatively): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16463
diff
changeset
|
383 |
25012 | 384 /* Recenter the window whenever point gets within this many lines of |
385 the top or bottom of the window. This value is translated into a | |
386 pixel value by multiplying it with CANON_Y_UNIT, which means that | |
387 there is really a fixed pixel height scroll margin. */ | |
388 | |
16560
8b1dd6f2222d
(scroll_margin): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16554
diff
changeset
|
389 int scroll_margin; |
8b1dd6f2222d
(scroll_margin): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16554
diff
changeset
|
390 |
25012 | 391 /* Number of windows showing the buffer of the selected window (or |
392 another buffer with the same base buffer). keyboard.c refers to | |
393 this. */ | |
394 | |
277 | 395 int buffer_shared; |
396 | |
25012 | 397 /* Vector containing glyphs for an ellipsis `...'. */ |
398 | |
399 static Lisp_Object default_invis_vector[3]; | |
400 | |
33840
e8b1a1d28ff4
(display_menu_bar, display_mode_line): Change the way we
Miles Bader <miles@gnu.org>
parents:
33824
diff
changeset
|
401 /* Zero means display the mode-line/header-line/menu-bar in the default face |
e8b1a1d28ff4
(display_menu_bar, display_mode_line): Change the way we
Miles Bader <miles@gnu.org>
parents:
33824
diff
changeset
|
402 (this slightly odd definition is for compatibility with previous versions |
e8b1a1d28ff4
(display_menu_bar, display_mode_line): Change the way we
Miles Bader <miles@gnu.org>
parents:
33824
diff
changeset
|
403 of emacs), non-zero means display them using their respective faces. |
e8b1a1d28ff4
(display_menu_bar, display_mode_line): Change the way we
Miles Bader <miles@gnu.org>
parents:
33824
diff
changeset
|
404 |
e8b1a1d28ff4
(display_menu_bar, display_mode_line): Change the way we
Miles Bader <miles@gnu.org>
parents:
33824
diff
changeset
|
405 This variable is deprecated. */ |
25012 | 406 |
277 | 407 int mode_line_inverse_video; |
408 | |
25012 | 409 /* Prompt to display in front of the mini-buffer contents. */ |
410 | |
7951
e609577aa2f3
minibuf_prompt is now a Lisp_Object.
Karl Heuer <kwzh@gnu.org>
parents:
7933
diff
changeset
|
411 Lisp_Object minibuf_prompt; |
277 | 412 |
25012 | 413 /* Width of current mini-buffer prompt. Only set after display_line |
414 of the line that contains the prompt. */ | |
415 | |
277 | 416 int minibuf_prompt_width; |
25012 | 417 int minibuf_prompt_pixel_width; |
418 | |
419 /* This is the window where the echo area message was displayed. It | |
420 is always a mini-buffer window, but it may not be the same window | |
421 currently active as a mini-buffer. */ | |
422 | |
12629
55241c80f448
(echo_area_display): Use selected frame's minibuf window
Richard M. Stallman <rms@gnu.org>
parents:
12598
diff
changeset
|
423 Lisp_Object echo_area_window; |
55241c80f448
(echo_area_display): Use selected frame's minibuf window
Richard M. Stallman <rms@gnu.org>
parents:
12598
diff
changeset
|
424 |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
425 /* List of pairs (MESSAGE . MULTIBYTE). The function save_message |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
426 pushes the current message and the value of |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
427 message_enable_multibyte on the stack, the function restore_message |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
428 pops the stack and displays MESSAGE again. */ |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
429 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
430 Lisp_Object Vmessage_stack; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
431 |
19915
0ee6d171e8af
When redisplaying the echo area, use the value
Richard M. Stallman <rms@gnu.org>
parents:
19789
diff
changeset
|
432 /* Nonzero means multibyte characters were enabled when the echo area |
0ee6d171e8af
When redisplaying the echo area, use the value
Richard M. Stallman <rms@gnu.org>
parents:
19789
diff
changeset
|
433 message was specified. */ |
25012 | 434 |
19915
0ee6d171e8af
When redisplaying the echo area, use the value
Richard M. Stallman <rms@gnu.org>
parents:
19789
diff
changeset
|
435 int message_enable_multibyte; |
0ee6d171e8af
When redisplaying the echo area, use the value
Richard M. Stallman <rms@gnu.org>
parents:
19789
diff
changeset
|
436 |
25012 | 437 /* True if we should redraw the mode lines on the next redisplay. */ |
438 | |
277 | 439 int update_mode_lines; |
440 | |
25012 | 441 /* Nonzero if window sizes or contents have changed since last |
442 redisplay that finished */ | |
443 | |
277 | 444 int windows_or_buffers_changed; |
445 | |
25012 | 446 /* Nonzero after display_mode_line if %l was used and it displayed a |
447 line number. */ | |
448 | |
2303
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
449 int line_number_displayed; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
450 |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
451 /* Maximum buffer size for which to display line numbers. */ |
25012 | 452 |
29632
96d83d5a48b3
(Vline_number_display_limit): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
29515
diff
changeset
|
453 Lisp_Object Vline_number_display_limit; |
10393 | 454 |
25258
8eefac3ecebf
(line_number_display_limit_width): New var.
Karl Heuer <kwzh@gnu.org>
parents:
25243
diff
changeset
|
455 /* line width to consider when repostioning for line number display */ |
8eefac3ecebf
(line_number_display_limit_width): New var.
Karl Heuer <kwzh@gnu.org>
parents:
25243
diff
changeset
|
456 |
8eefac3ecebf
(line_number_display_limit_width): New var.
Karl Heuer <kwzh@gnu.org>
parents:
25243
diff
changeset
|
457 static int line_number_display_limit_width; |
8eefac3ecebf
(line_number_display_limit_width): New var.
Karl Heuer <kwzh@gnu.org>
parents:
25243
diff
changeset
|
458 |
25012 | 459 /* Number of lines to keep in the message log buffer. t means |
460 infinite. nil means don't log at all. */ | |
461 | |
10393 | 462 Lisp_Object Vmessage_log_max; |
19205
7448901d6449
(COERCE_MARKER): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19197
diff
changeset
|
463 |
30728
a87e28789082
(Vmessages_buffer_name): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30721
diff
changeset
|
464 /* The name of the *Messages* buffer, a string. */ |
a87e28789082
(Vmessages_buffer_name): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30721
diff
changeset
|
465 |
a87e28789082
(Vmessages_buffer_name): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30721
diff
changeset
|
466 static Lisp_Object Vmessages_buffer_name; |
a87e28789082
(Vmessages_buffer_name): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30721
diff
changeset
|
467 |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
468 /* Current, index 0, and last displayed echo area message. Either |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
469 buffers from echo_buffers, or nil to indicate no message. */ |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
470 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
471 Lisp_Object echo_area_buffer[2]; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
472 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
473 /* The buffers referenced from echo_area_buffer. */ |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
474 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
475 static Lisp_Object echo_buffer[2]; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
476 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
477 /* A vector saved used in with_area_buffer to reduce consing. */ |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
478 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
479 static Lisp_Object Vwith_echo_area_save_vector; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
480 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
481 /* Non-zero means display_echo_area should display the last echo area |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
482 message again. Set by redisplay_preserve_echo_area. */ |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
483 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
484 static int display_last_displayed_message_p; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
485 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
486 /* Nonzero if echo area is being used by print; zero if being used by |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
487 message. */ |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
488 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
489 int message_buf_print; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
490 |
25377
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
491 /* Maximum height for resizing mini-windows. Either a float |
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
492 specifying a fraction of the available height, or an integer |
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
493 specifying a number of lines. */ |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
494 |
29634
ac38155fbce6
(message_truncate_lines, Qmessage_truncate_lines): New
Gerd Moellmann <gerd@gnu.org>
parents:
29632
diff
changeset
|
495 Lisp_Object Vmax_mini_window_height; |
ac38155fbce6
(message_truncate_lines, Qmessage_truncate_lines): New
Gerd Moellmann <gerd@gnu.org>
parents:
29632
diff
changeset
|
496 |
ac38155fbce6
(message_truncate_lines, Qmessage_truncate_lines): New
Gerd Moellmann <gerd@gnu.org>
parents:
29632
diff
changeset
|
497 /* Non-zero means messages should be displayed with truncated |
ac38155fbce6
(message_truncate_lines, Qmessage_truncate_lines): New
Gerd Moellmann <gerd@gnu.org>
parents:
29632
diff
changeset
|
498 lines instead of being continued. */ |
ac38155fbce6
(message_truncate_lines, Qmessage_truncate_lines): New
Gerd Moellmann <gerd@gnu.org>
parents:
29632
diff
changeset
|
499 |
ac38155fbce6
(message_truncate_lines, Qmessage_truncate_lines): New
Gerd Moellmann <gerd@gnu.org>
parents:
29632
diff
changeset
|
500 int message_truncate_lines; |
ac38155fbce6
(message_truncate_lines, Qmessage_truncate_lines): New
Gerd Moellmann <gerd@gnu.org>
parents:
29632
diff
changeset
|
501 Lisp_Object Qmessage_truncate_lines; |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
502 |
27843
d401b5066063
(cursor_in_non_selected_windows): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
27721
diff
changeset
|
503 /* Non-zero means we want a hollow cursor in windows that are not |
d401b5066063
(cursor_in_non_selected_windows): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
27721
diff
changeset
|
504 selected. Zero means there's no cursor in such windows. */ |
d401b5066063
(cursor_in_non_selected_windows): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
27721
diff
changeset
|
505 |
d401b5066063
(cursor_in_non_selected_windows): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
27721
diff
changeset
|
506 int cursor_in_non_selected_windows; |
d401b5066063
(cursor_in_non_selected_windows): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
27721
diff
changeset
|
507 |
25012 | 508 /* A scratch glyph row with contents used for generating truncation |
509 glyphs. Also used in direct_output_for_insert. */ | |
510 | |
511 #define MAX_SCRATCH_GLYPHS 100 | |
512 struct glyph_row scratch_glyph_row; | |
513 static struct glyph scratch_glyphs[MAX_SCRATCH_GLYPHS]; | |
514 | |
515 /* Ascent and height of the last line processed by move_it_to. */ | |
516 | |
517 static int last_max_ascent, last_height; | |
518 | |
31876
de16d989722a
(help_echo_showing_p): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31849
diff
changeset
|
519 /* Non-zero if there's a help-echo in the echo area. */ |
de16d989722a
(help_echo_showing_p): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31849
diff
changeset
|
520 |
de16d989722a
(help_echo_showing_p): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31849
diff
changeset
|
521 int help_echo_showing_p; |
de16d989722a
(help_echo_showing_p): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31849
diff
changeset
|
522 |
33462
d8cd8e1bc659
(current_mode_line_height, current_header_line_height):
Gerd Moellmann <gerd@gnu.org>
parents:
33453
diff
changeset
|
523 /* If >= 0, computed, exact values of mode-line and header-line height |
d8cd8e1bc659
(current_mode_line_height, current_header_line_height):
Gerd Moellmann <gerd@gnu.org>
parents:
33453
diff
changeset
|
524 to use in the macros CURRENT_MODE_LINE_HEIGHT and |
d8cd8e1bc659
(current_mode_line_height, current_header_line_height):
Gerd Moellmann <gerd@gnu.org>
parents:
33453
diff
changeset
|
525 CURRENT_HEADER_LINE_HEIGHT. */ |
d8cd8e1bc659
(current_mode_line_height, current_header_line_height):
Gerd Moellmann <gerd@gnu.org>
parents:
33453
diff
changeset
|
526 |
d8cd8e1bc659
(current_mode_line_height, current_header_line_height):
Gerd Moellmann <gerd@gnu.org>
parents:
33453
diff
changeset
|
527 int current_mode_line_height, current_header_line_height; |
d8cd8e1bc659
(current_mode_line_height, current_header_line_height):
Gerd Moellmann <gerd@gnu.org>
parents:
33453
diff
changeset
|
528 |
25012 | 529 /* The maximum distance to look ahead for text properties. Values |
530 that are too small let us call compute_char_face and similar | |
531 functions too often which is expensive. Values that are too large | |
532 let us call compute_char_face and alike too often because we | |
533 might not be interested in text properties that far away. */ | |
534 | |
535 #define TEXT_PROP_DISTANCE_LIMIT 100 | |
536 | |
30744
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
537 #if GLYPH_DEBUG |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
538 |
25012 | 539 /* Non-zero means print traces of redisplay if compiled with |
540 GLYPH_DEBUG != 0. */ | |
541 | |
542 int trace_redisplay_p; | |
30744
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
543 |
31118
37c389d61cee
Include keyboard.h before frame.h.
Andrew Innes <andrewi@gnu.org>
parents:
30942
diff
changeset
|
544 #endif /* GLYPH_DEBUG */ |
30744
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
545 |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
546 #ifdef DEBUG_TRACE_MOVE |
31118
37c389d61cee
Include keyboard.h before frame.h.
Andrew Innes <andrewi@gnu.org>
parents:
30942
diff
changeset
|
547 /* Non-zero means trace with TRACE_MOVE to stderr. */ |
37c389d61cee
Include keyboard.h before frame.h.
Andrew Innes <andrewi@gnu.org>
parents:
30942
diff
changeset
|
548 int trace_move; |
37c389d61cee
Include keyboard.h before frame.h.
Andrew Innes <andrewi@gnu.org>
parents:
30942
diff
changeset
|
549 |
30744
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
550 #define TRACE_MOVE(x) if (trace_move) fprintf x; else (void) 0 |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
551 #else |
30747
6c7afd50ec6a
(TRACE_MOVE) [GLYPH_DEBUG]: Delete the last semicolon.
Kenichi Handa <handa@m17n.org>
parents:
30744
diff
changeset
|
552 #define TRACE_MOVE(x) (void) 0 |
25012 | 553 #endif |
31118
37c389d61cee
Include keyboard.h before frame.h.
Andrew Innes <andrewi@gnu.org>
parents:
30942
diff
changeset
|
554 |
28692
a22cc42e941d
(init_iterator): Set iterator's extra_line_spacing
Gerd Moellmann <gerd@gnu.org>
parents:
28652
diff
changeset
|
555 /* Non-zero means automatically scroll windows horizontally to make |
a22cc42e941d
(init_iterator): Set iterator's extra_line_spacing
Gerd Moellmann <gerd@gnu.org>
parents:
28652
diff
changeset
|
556 point visible. */ |
a22cc42e941d
(init_iterator): Set iterator's extra_line_spacing
Gerd Moellmann <gerd@gnu.org>
parents:
28652
diff
changeset
|
557 |
a22cc42e941d
(init_iterator): Set iterator's extra_line_spacing
Gerd Moellmann <gerd@gnu.org>
parents:
28652
diff
changeset
|
558 int automatic_hscrolling_p; |
a22cc42e941d
(init_iterator): Set iterator's extra_line_spacing
Gerd Moellmann <gerd@gnu.org>
parents:
28652
diff
changeset
|
559 |
28984
540ca0531c77
(Vimage_types): Moved here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
28932
diff
changeset
|
560 /* A list of symbols, one for each supported image type. */ |
540ca0531c77
(Vimage_types): Moved here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
28932
diff
changeset
|
561 |
540ca0531c77
(Vimage_types): Moved here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
28932
diff
changeset
|
562 Lisp_Object Vimage_types; |
540ca0531c77
(Vimage_types): Moved here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
28932
diff
changeset
|
563 |
33314
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
564 /* The variable `resize-mini-windows'. If nil, don't resize |
33453 | 565 mini-windows. If t, always resize them to fit the text they |
33314
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
566 display. If `grow-only', let mini-windows grow only until they |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
567 become empty. */ |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
568 |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
569 Lisp_Object Vresize_mini_windows; |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
570 |
25012 | 571 /* Value returned from text property handlers (see below). */ |
572 | |
573 enum prop_handled | |
574 { | |
575 HANDLED_NORMALLY, | |
576 HANDLED_RECOMPUTE_PROPS, | |
577 HANDLED_OVERLAY_STRING_CONSUMED, | |
578 HANDLED_RETURN | |
579 }; | |
580 | |
581 /* A description of text properties that redisplay is interested | |
582 in. */ | |
583 | |
584 struct props | |
585 { | |
586 /* The name of the property. */ | |
587 Lisp_Object *name; | |
588 | |
589 /* A unique index for the property. */ | |
590 enum prop_idx idx; | |
591 | |
592 /* A handler function called to set up iterator IT from the property | |
593 at IT's current position. Value is used to steer handle_stop. */ | |
594 enum prop_handled (*handler) P_ ((struct it *it)); | |
595 }; | |
596 | |
597 static enum prop_handled handle_face_prop P_ ((struct it *)); | |
598 static enum prop_handled handle_invisible_prop P_ ((struct it *)); | |
599 static enum prop_handled handle_display_prop P_ ((struct it *)); | |
26874
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
600 static enum prop_handled handle_composition_prop P_ ((struct it *)); |
25012 | 601 static enum prop_handled handle_overlay_change P_ ((struct it *)); |
602 static enum prop_handled handle_fontified_prop P_ ((struct it *)); | |
603 | |
604 /* Properties handled by iterators. */ | |
605 | |
606 static struct props it_props[] = | |
607 { | |
608 {&Qfontified, FONTIFIED_PROP_IDX, handle_fontified_prop}, | |
609 /* Handle `face' before `display' because some sub-properties of | |
610 `display' need to know the face. */ | |
611 {&Qface, FACE_PROP_IDX, handle_face_prop}, | |
612 {&Qdisplay, DISPLAY_PROP_IDX, handle_display_prop}, | |
613 {&Qinvisible, INVISIBLE_PROP_IDX, handle_invisible_prop}, | |
26874
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
614 {&Qcomposition, COMPOSITION_PROP_IDX, handle_composition_prop}, |
25012 | 615 {NULL, 0, NULL} |
616 }; | |
617 | |
618 /* Value is the position described by X. If X is a marker, value is | |
619 the marker_position of X. Otherwise, value is X. */ | |
620 | |
621 #define COERCE_MARKER(X) (MARKERP ((X)) ? Fmarker_position (X) : (X)) | |
622 | |
623 /* Enumeration returned by some move_it_.* functions internally. */ | |
624 | |
625 enum move_it_result | |
626 { | |
627 /* Not used. Undefined value. */ | |
628 MOVE_UNDEFINED, | |
629 | |
630 /* Move ended at the requested buffer position or ZV. */ | |
631 MOVE_POS_MATCH_OR_ZV, | |
632 | |
633 /* Move ended at the requested X pixel position. */ | |
634 MOVE_X_REACHED, | |
635 | |
636 /* Move within a line ended at the end of a line that must be | |
637 continued. */ | |
638 MOVE_LINE_CONTINUED, | |
639 | |
640 /* Move within a line ended at the end of a line that would | |
641 be displayed truncated. */ | |
642 MOVE_LINE_TRUNCATED, | |
643 | |
644 /* Move within a line ended at a line end. */ | |
645 MOVE_NEWLINE_OR_CR | |
646 }; | |
647 | |
648 | |
649 | |
650 /* Function prototypes. */ | |
651 | |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
652 static int cursor_row_p P_ ((struct window *, struct glyph_row *)); |
31338
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
653 static int redisplay_mode_lines P_ ((Lisp_Object, int)); |
30320
a1f02a10e391
(with_echo_area_buffer): Call FN with more arguments.
Gerd Moellmann <gerd@gnu.org>
parents:
30243
diff
changeset
|
654 static char *decode_mode_spec_coding P_ ((Lisp_Object, char *, int)); |
a1f02a10e391
(with_echo_area_buffer): Call FN with more arguments.
Gerd Moellmann <gerd@gnu.org>
parents:
30243
diff
changeset
|
655 static int invisible_text_between_p P_ ((struct it *, int, int)); |
a1f02a10e391
(with_echo_area_buffer): Call FN with more arguments.
Gerd Moellmann <gerd@gnu.org>
parents:
30243
diff
changeset
|
656 static int next_element_from_ellipsis P_ ((struct it *)); |
a1f02a10e391
(with_echo_area_buffer): Call FN with more arguments.
Gerd Moellmann <gerd@gnu.org>
parents:
30243
diff
changeset
|
657 static void pint2str P_ ((char *, int, int)); |
a1f02a10e391
(with_echo_area_buffer): Call FN with more arguments.
Gerd Moellmann <gerd@gnu.org>
parents:
30243
diff
changeset
|
658 static struct text_pos run_window_scroll_functions P_ ((Lisp_Object, |
a1f02a10e391
(with_echo_area_buffer): Call FN with more arguments.
Gerd Moellmann <gerd@gnu.org>
parents:
30243
diff
changeset
|
659 struct text_pos)); |
a1f02a10e391
(with_echo_area_buffer): Call FN with more arguments.
Gerd Moellmann <gerd@gnu.org>
parents:
30243
diff
changeset
|
660 static void reconsider_clip_changes P_ ((struct window *, struct buffer *)); |
a1f02a10e391
(with_echo_area_buffer): Call FN with more arguments.
Gerd Moellmann <gerd@gnu.org>
parents:
30243
diff
changeset
|
661 static int text_outside_line_unchanged_p P_ ((struct window *, int, int)); |
a1f02a10e391
(with_echo_area_buffer): Call FN with more arguments.
Gerd Moellmann <gerd@gnu.org>
parents:
30243
diff
changeset
|
662 static void store_frame_title_char P_ ((char)); |
a1f02a10e391
(with_echo_area_buffer): Call FN with more arguments.
Gerd Moellmann <gerd@gnu.org>
parents:
30243
diff
changeset
|
663 static int store_frame_title P_ ((unsigned char *, int, int)); |
a1f02a10e391
(with_echo_area_buffer): Call FN with more arguments.
Gerd Moellmann <gerd@gnu.org>
parents:
30243
diff
changeset
|
664 static void x_consider_frame_title P_ ((Lisp_Object)); |
a1f02a10e391
(with_echo_area_buffer): Call FN with more arguments.
Gerd Moellmann <gerd@gnu.org>
parents:
30243
diff
changeset
|
665 static void handle_stop P_ ((struct it *)); |
a1f02a10e391
(with_echo_area_buffer): Call FN with more arguments.
Gerd Moellmann <gerd@gnu.org>
parents:
30243
diff
changeset
|
666 static int tool_bar_lines_needed P_ ((struct frame *)); |
29817
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
667 static int single_display_prop_intangible_p P_ ((Lisp_Object)); |
26447
2360d692254c
(ensure_echo_area_buffers): New.
Gerd Moellmann <gerd@gnu.org>
parents:
26374
diff
changeset
|
668 static void ensure_echo_area_buffers P_ ((void)); |
25543 | 669 static struct glyph_row *row_containing_pos P_ ((struct window *, int, |
670 struct glyph_row *, | |
671 struct glyph_row *)); | |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
672 static Lisp_Object unwind_with_echo_area_buffer P_ ((Lisp_Object)); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
673 static Lisp_Object with_echo_area_buffer_unwind_data P_ ((struct window *)); |
30413
d5335ebcf501
(with_echo_area_buffer): Take additional EMACS_INT
Gerd Moellmann <gerd@gnu.org>
parents:
30320
diff
changeset
|
674 static int with_echo_area_buffer P_ ((struct window *, int, |
30675
8a516a1f76a7
(message_dolog): Save and protect string "*Messages*" to reuse as buffer name,
Ken Raeburn <raeburn@raeburn.org>
parents:
30652
diff
changeset
|
675 int (*) (EMACS_INT, Lisp_Object, EMACS_INT, EMACS_INT), |
8a516a1f76a7
(message_dolog): Save and protect string "*Messages*" to reuse as buffer name,
Ken Raeburn <raeburn@raeburn.org>
parents:
30652
diff
changeset
|
676 EMACS_INT, Lisp_Object, EMACS_INT, EMACS_INT)); |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
677 static void clear_garbaged_frames P_ ((void)); |
30675
8a516a1f76a7
(message_dolog): Save and protect string "*Messages*" to reuse as buffer name,
Ken Raeburn <raeburn@raeburn.org>
parents:
30652
diff
changeset
|
678 static int current_message_1 P_ ((EMACS_INT, Lisp_Object, EMACS_INT, EMACS_INT)); |
8a516a1f76a7
(message_dolog): Save and protect string "*Messages*" to reuse as buffer name,
Ken Raeburn <raeburn@raeburn.org>
parents:
30652
diff
changeset
|
679 static int truncate_message_1 P_ ((EMACS_INT, Lisp_Object, EMACS_INT, EMACS_INT)); |
8a516a1f76a7
(message_dolog): Save and protect string "*Messages*" to reuse as buffer name,
Ken Raeburn <raeburn@raeburn.org>
parents:
30652
diff
changeset
|
680 static int set_message_1 P_ ((EMACS_INT, Lisp_Object, EMACS_INT, EMACS_INT)); |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
681 static int display_echo_area P_ ((struct window *)); |
30675
8a516a1f76a7
(message_dolog): Save and protect string "*Messages*" to reuse as buffer name,
Ken Raeburn <raeburn@raeburn.org>
parents:
30652
diff
changeset
|
682 static int display_echo_area_1 P_ ((EMACS_INT, Lisp_Object, EMACS_INT, EMACS_INT)); |
8a516a1f76a7
(message_dolog): Save and protect string "*Messages*" to reuse as buffer name,
Ken Raeburn <raeburn@raeburn.org>
parents:
30652
diff
changeset
|
683 static int resize_mini_window_1 P_ ((EMACS_INT, Lisp_Object, EMACS_INT, EMACS_INT)); |
25316
561aa7ea85a7
(unwind_redisplay): New. Resets flag redisplaying_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25305
diff
changeset
|
684 static Lisp_Object unwind_redisplay P_ ((Lisp_Object)); |
25096
1af1088d3812
(string_char_and_length): New. Use it everywhere
Gerd Moellmann <gerd@gnu.org>
parents:
25063
diff
changeset
|
685 static int string_char_and_length P_ ((unsigned char *, int, int *)); |
25012 | 686 static struct text_pos display_prop_end P_ ((struct it *, Lisp_Object, |
687 struct text_pos)); | |
688 static int compute_window_start_on_continuation_line P_ ((struct window *)); | |
32175
e5d99e8cbd94
(handle_single_display_prop): Use safe_call1.
Gerd Moellmann <gerd@gnu.org>
parents:
31931
diff
changeset
|
689 static Lisp_Object safe_eval_handler P_ ((Lisp_Object)); |
25012 | 690 static void insert_left_trunc_glyphs P_ ((struct it *)); |
691 static struct glyph_row *get_overlay_arrow_glyph_row P_ ((struct window *)); | |
692 static void extend_face_to_end_of_line P_ ((struct it *)); | |
26255
4ebced8747b7
(append_space): Return non-zero if space was appended.
Gerd Moellmann <gerd@gnu.org>
parents:
26203
diff
changeset
|
693 static int append_space P_ ((struct it *, int)); |
25012 | 694 static void make_cursor_line_fully_visible P_ ((struct window *)); |
695 static int try_scrolling P_ ((Lisp_Object, int, int, int, int)); | |
30744
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
696 static int try_cursor_movement P_ ((Lisp_Object, struct text_pos, int *)); |
25012 | 697 static int trailing_whitespace_p P_ ((int)); |
698 static int message_log_check_duplicate P_ ((int, int, int, int)); | |
699 int invisible_p P_ ((Lisp_Object, Lisp_Object)); | |
700 int invisible_ellipsis_p P_ ((Lisp_Object, Lisp_Object)); | |
701 static void push_it P_ ((struct it *)); | |
702 static void pop_it P_ ((struct it *)); | |
703 static void sync_frame_with_window_matrix_rows P_ ((struct window *)); | |
704 static void redisplay_internal P_ ((int)); | |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
705 static int echo_area_display P_ ((int)); |
25012 | 706 static void redisplay_windows P_ ((Lisp_Object)); |
707 static void redisplay_window P_ ((Lisp_Object, int)); | |
708 static void update_menu_bar P_ ((struct frame *, int)); | |
709 static int try_window_reusing_current_matrix P_ ((struct window *)); | |
710 static int try_window_id P_ ((struct window *)); | |
711 static int display_line P_ ((struct it *)); | |
31338
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
712 static int display_mode_lines P_ ((struct window *)); |
33462
d8cd8e1bc659
(current_mode_line_height, current_header_line_height):
Gerd Moellmann <gerd@gnu.org>
parents:
33453
diff
changeset
|
713 static int display_mode_line P_ ((struct window *, enum face_id, Lisp_Object)); |
25012 | 714 static int display_mode_element P_ ((struct it *, int, int, int, Lisp_Object)); |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26018
diff
changeset
|
715 static char *decode_mode_spec P_ ((struct window *, int, int, int)); |
25012 | 716 static void display_menu_bar P_ ((struct window *)); |
717 static int display_count_lines P_ ((int, int, int, int, int *)); | |
718 static int display_string P_ ((unsigned char *, Lisp_Object, Lisp_Object, | |
719 int, int, struct it *, int, int, int, int)); | |
720 static void compute_line_metrics P_ ((struct it *)); | |
721 static void run_redisplay_end_trigger_hook P_ ((struct it *)); | |
722 static int get_overlay_strings P_ ((struct it *)); | |
723 static void next_overlay_string P_ ((struct it *)); | |
724 static void reseat P_ ((struct it *, struct text_pos, int)); | |
725 static void reseat_1 P_ ((struct it *, struct text_pos, int)); | |
726 static void back_to_previous_visible_line_start P_ ((struct it *)); | |
727 static void reseat_at_previous_visible_line_start P_ ((struct it *)); | |
25188
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
728 static void reseat_at_next_visible_line_start P_ ((struct it *, int)); |
25012 | 729 static int next_element_from_display_vector P_ ((struct it *)); |
730 static int next_element_from_string P_ ((struct it *)); | |
731 static int next_element_from_c_string P_ ((struct it *)); | |
732 static int next_element_from_buffer P_ ((struct it *)); | |
26874
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
733 static int next_element_from_composition P_ ((struct it *)); |
25012 | 734 static int next_element_from_image P_ ((struct it *)); |
735 static int next_element_from_stretch P_ ((struct it *)); | |
736 static void load_overlay_strings P_ ((struct it *)); | |
737 static void init_from_display_pos P_ ((struct it *, struct window *, | |
738 struct display_pos *)); | |
739 static void reseat_to_string P_ ((struct it *, unsigned char *, | |
740 Lisp_Object, int, int, int, int)); | |
741 static enum move_it_result move_it_in_display_line_to P_ ((struct it *, | |
742 int, int, int)); | |
743 void move_it_vertically_backward P_ ((struct it *, int)); | |
744 static void init_to_row_start P_ ((struct it *, struct window *, | |
745 struct glyph_row *)); | |
746 static void init_to_row_end P_ ((struct it *, struct window *, | |
747 struct glyph_row *)); | |
748 static void back_to_previous_line_start P_ ((struct it *)); | |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
749 static int forward_to_next_line_start P_ ((struct it *, int *)); |
25012 | 750 static struct text_pos string_pos_nchars_ahead P_ ((struct text_pos, |
751 Lisp_Object, int)); | |
752 static struct text_pos string_pos P_ ((int, Lisp_Object)); | |
753 static struct text_pos c_string_pos P_ ((int, unsigned char *, int)); | |
754 static int number_of_chars P_ ((unsigned char *, int)); | |
755 static void compute_stop_pos P_ ((struct it *)); | |
756 static void compute_string_pos P_ ((struct text_pos *, struct text_pos, | |
757 Lisp_Object)); | |
758 static int face_before_or_after_it_pos P_ ((struct it *, int)); | |
759 static int next_overlay_change P_ ((int)); | |
760 static int handle_single_display_prop P_ ((struct it *, Lisp_Object, | |
761 Lisp_Object, struct text_pos *)); | |
34288
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
762 static int underlying_face_id P_ ((struct it *)); |
25012 | 763 |
764 #define face_before_it_pos(IT) face_before_or_after_it_pos ((IT), 1) | |
765 #define face_after_it_pos(IT) face_before_or_after_it_pos ((IT), 0) | |
766 | |
767 #ifdef HAVE_WINDOW_SYSTEM | |
768 | |
25543 | 769 static void update_tool_bar P_ ((struct frame *, int)); |
770 static void build_desired_tool_bar_string P_ ((struct frame *f)); | |
771 static int redisplay_tool_bar P_ ((struct frame *)); | |
772 static void display_tool_bar_line P_ ((struct it *)); | |
25012 | 773 |
774 #endif /* HAVE_WINDOW_SYSTEM */ | |
775 | |
776 | |
777 /*********************************************************************** | |
778 Window display dimensions | |
779 ***********************************************************************/ | |
780 | |
781 /* Return the window-relative maximum y + 1 for glyph rows displaying | |
782 text in window W. This is the height of W minus the height of a | |
783 mode line, if any. */ | |
784 | |
785 INLINE int | |
786 window_text_bottom_y (w) | |
787 struct window *w; | |
788 { | |
789 struct frame *f = XFRAME (w->frame); | |
790 int height = XFASTINT (w->height) * CANON_Y_UNIT (f); | |
32752
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32592
diff
changeset
|
791 |
25012 | 792 if (WINDOW_WANTS_MODELINE_P (w)) |
793 height -= CURRENT_MODE_LINE_HEIGHT (w); | |
794 return height; | |
795 } | |
796 | |
797 | |
798 /* Return the pixel width of display area AREA of window W. AREA < 0 | |
799 means return the total width of W, not including bitmap areas to | |
800 the left and right of the window. */ | |
801 | |
802 INLINE int | |
803 window_box_width (w, area) | |
804 struct window *w; | |
805 int area; | |
806 { | |
807 struct frame *f = XFRAME (w->frame); | |
808 int width = XFASTINT (w->width); | |
809 | |
810 if (!w->pseudo_window_p) | |
811 { | |
25463
255017b70168
(window_box_width): Use FRAME_FLAGS_AREA_COLS instead of
Gerd Moellmann <gerd@gnu.org>
parents:
25403
diff
changeset
|
812 width -= FRAME_SCROLL_BAR_WIDTH (f) + FRAME_FLAGS_AREA_COLS (f); |
25012 | 813 |
814 if (area == TEXT_AREA) | |
815 { | |
816 if (INTEGERP (w->left_margin_width)) | |
817 width -= XFASTINT (w->left_margin_width); | |
818 if (INTEGERP (w->right_margin_width)) | |
819 width -= XFASTINT (w->right_margin_width); | |
820 } | |
821 else if (area == LEFT_MARGIN_AREA) | |
822 width = (INTEGERP (w->left_margin_width) | |
823 ? XFASTINT (w->left_margin_width) : 0); | |
824 else if (area == RIGHT_MARGIN_AREA) | |
825 width = (INTEGERP (w->right_margin_width) | |
826 ? XFASTINT (w->right_margin_width) : 0); | |
827 } | |
828 | |
829 return width * CANON_X_UNIT (f); | |
830 } | |
831 | |
832 | |
833 /* Return the pixel height of the display area of window W, not | |
834 including mode lines of W, if any.. */ | |
835 | |
836 INLINE int | |
837 window_box_height (w) | |
838 struct window *w; | |
839 { | |
840 struct frame *f = XFRAME (w->frame); | |
841 int height = XFASTINT (w->height) * CANON_Y_UNIT (f); | |
31931
85c245edb7d7
(window_box_height): Add an assertion.
Gerd Moellmann <gerd@gnu.org>
parents:
31876
diff
changeset
|
842 |
85c245edb7d7
(window_box_height): Add an assertion.
Gerd Moellmann <gerd@gnu.org>
parents:
31876
diff
changeset
|
843 xassert (height >= 0); |
25012 | 844 |
34582
4099c0fd33f4
(window_box_height): Add comment.
Miles Bader <miles@gnu.org>
parents:
34578
diff
changeset
|
845 /* Note: the code below that determines the mode-line/header-line |
4099c0fd33f4
(window_box_height): Add comment.
Miles Bader <miles@gnu.org>
parents:
34578
diff
changeset
|
846 height is essentially the same as that contained in the macro |
4099c0fd33f4
(window_box_height): Add comment.
Miles Bader <miles@gnu.org>
parents:
34578
diff
changeset
|
847 CURRENT_{MODE,HEADER}_LINE_HEIGHT, except that it checks whether |
4099c0fd33f4
(window_box_height): Add comment.
Miles Bader <miles@gnu.org>
parents:
34578
diff
changeset
|
848 the appropriate glyph row has its `mode_line_p' flag set, |
4099c0fd33f4
(window_box_height): Add comment.
Miles Bader <miles@gnu.org>
parents:
34578
diff
changeset
|
849 and if it doesn't, uses estimate_mode_line_height instead. */ |
4099c0fd33f4
(window_box_height): Add comment.
Miles Bader <miles@gnu.org>
parents:
34578
diff
changeset
|
850 |
25012 | 851 if (WINDOW_WANTS_MODELINE_P (w)) |
34578
cd90170bc811
(window_box_height): Only use mode-line glyph-rows that are actually
Miles Bader <miles@gnu.org>
parents:
34500
diff
changeset
|
852 { |
cd90170bc811
(window_box_height): Only use mode-line glyph-rows that are actually
Miles Bader <miles@gnu.org>
parents:
34500
diff
changeset
|
853 struct glyph_row *ml_row |
cd90170bc811
(window_box_height): Only use mode-line glyph-rows that are actually
Miles Bader <miles@gnu.org>
parents:
34500
diff
changeset
|
854 = (w->current_matrix && w->current_matrix->rows |
cd90170bc811
(window_box_height): Only use mode-line glyph-rows that are actually
Miles Bader <miles@gnu.org>
parents:
34500
diff
changeset
|
855 ? MATRIX_MODE_LINE_ROW (w->current_matrix) |
cd90170bc811
(window_box_height): Only use mode-line glyph-rows that are actually
Miles Bader <miles@gnu.org>
parents:
34500
diff
changeset
|
856 : 0); |
cd90170bc811
(window_box_height): Only use mode-line glyph-rows that are actually
Miles Bader <miles@gnu.org>
parents:
34500
diff
changeset
|
857 if (ml_row && ml_row->mode_line_p) |
cd90170bc811
(window_box_height): Only use mode-line glyph-rows that are actually
Miles Bader <miles@gnu.org>
parents:
34500
diff
changeset
|
858 height -= ml_row->height; |
cd90170bc811
(window_box_height): Only use mode-line glyph-rows that are actually
Miles Bader <miles@gnu.org>
parents:
34500
diff
changeset
|
859 else |
cd90170bc811
(window_box_height): Only use mode-line glyph-rows that are actually
Miles Bader <miles@gnu.org>
parents:
34500
diff
changeset
|
860 height -= estimate_mode_line_height (f, MODE_LINE_FACE_ID); |
cd90170bc811
(window_box_height): Only use mode-line glyph-rows that are actually
Miles Bader <miles@gnu.org>
parents:
34500
diff
changeset
|
861 } |
25012 | 862 |
25546 | 863 if (WINDOW_WANTS_HEADER_LINE_P (w)) |
34578
cd90170bc811
(window_box_height): Only use mode-line glyph-rows that are actually
Miles Bader <miles@gnu.org>
parents:
34500
diff
changeset
|
864 { |
cd90170bc811
(window_box_height): Only use mode-line glyph-rows that are actually
Miles Bader <miles@gnu.org>
parents:
34500
diff
changeset
|
865 struct glyph_row *hl_row |
cd90170bc811
(window_box_height): Only use mode-line glyph-rows that are actually
Miles Bader <miles@gnu.org>
parents:
34500
diff
changeset
|
866 = (w->current_matrix && w->current_matrix->rows |
cd90170bc811
(window_box_height): Only use mode-line glyph-rows that are actually
Miles Bader <miles@gnu.org>
parents:
34500
diff
changeset
|
867 ? MATRIX_HEADER_LINE_ROW (w->current_matrix) |
cd90170bc811
(window_box_height): Only use mode-line glyph-rows that are actually
Miles Bader <miles@gnu.org>
parents:
34500
diff
changeset
|
868 : 0); |
cd90170bc811
(window_box_height): Only use mode-line glyph-rows that are actually
Miles Bader <miles@gnu.org>
parents:
34500
diff
changeset
|
869 if (hl_row && hl_row->mode_line_p) |
cd90170bc811
(window_box_height): Only use mode-line glyph-rows that are actually
Miles Bader <miles@gnu.org>
parents:
34500
diff
changeset
|
870 height -= hl_row->height; |
cd90170bc811
(window_box_height): Only use mode-line glyph-rows that are actually
Miles Bader <miles@gnu.org>
parents:
34500
diff
changeset
|
871 else |
cd90170bc811
(window_box_height): Only use mode-line glyph-rows that are actually
Miles Bader <miles@gnu.org>
parents:
34500
diff
changeset
|
872 height -= estimate_mode_line_height (f, HEADER_LINE_FACE_ID); |
cd90170bc811
(window_box_height): Only use mode-line glyph-rows that are actually
Miles Bader <miles@gnu.org>
parents:
34500
diff
changeset
|
873 } |
25012 | 874 |
875 return height; | |
876 } | |
877 | |
878 | |
879 /* Return the frame-relative coordinate of the left edge of display | |
880 area AREA of window W. AREA < 0 means return the left edge of the | |
881 whole window, to the right of any bitmap area at the left side of | |
882 W. */ | |
883 | |
884 INLINE int | |
885 window_box_left (w, area) | |
886 struct window *w; | |
887 int area; | |
888 { | |
889 struct frame *f = XFRAME (w->frame); | |
890 int x = FRAME_INTERNAL_BORDER_WIDTH_SAFE (f); | |
891 | |
892 if (!w->pseudo_window_p) | |
893 { | |
894 x += (WINDOW_LEFT_MARGIN (w) * CANON_X_UNIT (f) | |
25463
255017b70168
(window_box_width): Use FRAME_FLAGS_AREA_COLS instead of
Gerd Moellmann <gerd@gnu.org>
parents:
25403
diff
changeset
|
895 + FRAME_LEFT_FLAGS_AREA_WIDTH (f)); |
25012 | 896 |
897 if (area == TEXT_AREA) | |
898 x += window_box_width (w, LEFT_MARGIN_AREA); | |
899 else if (area == RIGHT_MARGIN_AREA) | |
900 x += (window_box_width (w, LEFT_MARGIN_AREA) | |
901 + window_box_width (w, TEXT_AREA)); | |
902 } | |
903 | |
904 return x; | |
905 } | |
906 | |
907 | |
908 /* Return the frame-relative coordinate of the right edge of display | |
909 area AREA of window W. AREA < 0 means return the left edge of the | |
910 whole window, to the left of any bitmap area at the right side of | |
911 W. */ | |
912 | |
913 INLINE int | |
914 window_box_right (w, area) | |
915 struct window *w; | |
916 int area; | |
917 { | |
918 return window_box_left (w, area) + window_box_width (w, area); | |
919 } | |
920 | |
921 | |
922 /* Get the bounding box of the display area AREA of window W, without | |
923 mode lines, in frame-relative coordinates. AREA < 0 means the | |
924 whole window, not including bitmap areas to the left and right of | |
925 the window. Return in *BOX_X and *BOX_Y the frame-relative pixel | |
926 coordinates of the upper-left corner of the box. Return in | |
927 *BOX_WIDTH, and *BOX_HEIGHT the pixel width and height of the box. */ | |
928 | |
929 INLINE void | |
930 window_box (w, area, box_x, box_y, box_width, box_height) | |
931 struct window *w; | |
932 int area; | |
933 int *box_x, *box_y, *box_width, *box_height; | |
934 { | |
935 struct frame *f = XFRAME (w->frame); | |
936 | |
937 *box_width = window_box_width (w, area); | |
938 *box_height = window_box_height (w); | |
939 *box_x = window_box_left (w, area); | |
940 *box_y = (FRAME_INTERNAL_BORDER_WIDTH_SAFE (f) | |
941 + XFASTINT (w->top) * CANON_Y_UNIT (f)); | |
25546 | 942 if (WINDOW_WANTS_HEADER_LINE_P (w)) |
943 *box_y += CURRENT_HEADER_LINE_HEIGHT (w); | |
25012 | 944 } |
945 | |
946 | |
947 /* Get the bounding box of the display area AREA of window W, without | |
948 mode lines. AREA < 0 means the whole window, not including bitmap | |
949 areas to the left and right of the window. Return in *TOP_LEFT_X | |
950 and TOP_LEFT_Y the frame-relative pixel coordinates of the | |
951 upper-left corner of the box. Return in *BOTTOM_RIGHT_X, and | |
952 *BOTTOM_RIGHT_Y the coordinates of the bottom-right corner of the | |
953 box. */ | |
954 | |
955 INLINE void | |
956 window_box_edges (w, area, top_left_x, top_left_y, | |
957 bottom_right_x, bottom_right_y) | |
958 struct window *w; | |
959 int area; | |
960 int *top_left_x, *top_left_y, *bottom_right_x, *bottom_right_y; | |
961 { | |
962 window_box (w, area, top_left_x, top_left_y, bottom_right_x, | |
963 bottom_right_y); | |
964 *bottom_right_x += *top_left_x; | |
965 *bottom_right_y += *top_left_y; | |
966 } | |
967 | |
968 | |
969 | |
970 /*********************************************************************** | |
971 Utilities | |
972 ***********************************************************************/ | |
973 | |
33510
405f162f1fc7
(pos_visible_p): Improve function comment.
Gerd Moellmann <gerd@gnu.org>
parents:
33490
diff
changeset
|
974 /* Return 1 if position CHARPOS is visible in window W. Set *FULLY to |
405f162f1fc7
(pos_visible_p): Improve function comment.
Gerd Moellmann <gerd@gnu.org>
parents:
33490
diff
changeset
|
975 1 if POS is visible and the line containing POS is fully visible. |
405f162f1fc7
(pos_visible_p): Improve function comment.
Gerd Moellmann <gerd@gnu.org>
parents:
33490
diff
changeset
|
976 EXACT_MODE_LINE_HEIGHTS_P non-zero means compute exact mode-line |
405f162f1fc7
(pos_visible_p): Improve function comment.
Gerd Moellmann <gerd@gnu.org>
parents:
33490
diff
changeset
|
977 and header-lines heights. */ |
32873
1dbdec58e580
(pos_visible_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32752
diff
changeset
|
978 |
1dbdec58e580
(pos_visible_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32752
diff
changeset
|
979 int |
33462
d8cd8e1bc659
(current_mode_line_height, current_header_line_height):
Gerd Moellmann <gerd@gnu.org>
parents:
33453
diff
changeset
|
980 pos_visible_p (w, charpos, fully, exact_mode_line_heights_p) |
32873
1dbdec58e580
(pos_visible_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32752
diff
changeset
|
981 struct window *w; |
33462
d8cd8e1bc659
(current_mode_line_height, current_header_line_height):
Gerd Moellmann <gerd@gnu.org>
parents:
33453
diff
changeset
|
982 int charpos, *fully, exact_mode_line_heights_p; |
32873
1dbdec58e580
(pos_visible_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32752
diff
changeset
|
983 { |
1dbdec58e580
(pos_visible_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32752
diff
changeset
|
984 struct it it; |
1dbdec58e580
(pos_visible_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32752
diff
changeset
|
985 struct text_pos top; |
32912
b55f99786a33
(pos_visible_p): Change current buffer if necessary.
Gerd Moellmann <gerd@gnu.org>
parents:
32878
diff
changeset
|
986 int visible_p; |
b55f99786a33
(pos_visible_p): Change current buffer if necessary.
Gerd Moellmann <gerd@gnu.org>
parents:
32878
diff
changeset
|
987 struct buffer *old_buffer = NULL; |
b55f99786a33
(pos_visible_p): Change current buffer if necessary.
Gerd Moellmann <gerd@gnu.org>
parents:
32878
diff
changeset
|
988 |
b55f99786a33
(pos_visible_p): Change current buffer if necessary.
Gerd Moellmann <gerd@gnu.org>
parents:
32878
diff
changeset
|
989 if (XBUFFER (w->buffer) != current_buffer) |
b55f99786a33
(pos_visible_p): Change current buffer if necessary.
Gerd Moellmann <gerd@gnu.org>
parents:
32878
diff
changeset
|
990 { |
b55f99786a33
(pos_visible_p): Change current buffer if necessary.
Gerd Moellmann <gerd@gnu.org>
parents:
32878
diff
changeset
|
991 old_buffer = current_buffer; |
b55f99786a33
(pos_visible_p): Change current buffer if necessary.
Gerd Moellmann <gerd@gnu.org>
parents:
32878
diff
changeset
|
992 set_buffer_internal_1 (XBUFFER (w->buffer)); |
b55f99786a33
(pos_visible_p): Change current buffer if necessary.
Gerd Moellmann <gerd@gnu.org>
parents:
32878
diff
changeset
|
993 } |
32873
1dbdec58e580
(pos_visible_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32752
diff
changeset
|
994 |
1dbdec58e580
(pos_visible_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32752
diff
changeset
|
995 *fully = visible_p = 0; |
1dbdec58e580
(pos_visible_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32752
diff
changeset
|
996 SET_TEXT_POS_FROM_MARKER (top, w->start); |
33462
d8cd8e1bc659
(current_mode_line_height, current_header_line_height):
Gerd Moellmann <gerd@gnu.org>
parents:
33453
diff
changeset
|
997 |
d8cd8e1bc659
(current_mode_line_height, current_header_line_height):
Gerd Moellmann <gerd@gnu.org>
parents:
33453
diff
changeset
|
998 /* Compute exact mode line heights, if requested. */ |
d8cd8e1bc659
(current_mode_line_height, current_header_line_height):
Gerd Moellmann <gerd@gnu.org>
parents:
33453
diff
changeset
|
999 if (exact_mode_line_heights_p) |
d8cd8e1bc659
(current_mode_line_height, current_header_line_height):
Gerd Moellmann <gerd@gnu.org>
parents:
33453
diff
changeset
|
1000 { |
d8cd8e1bc659
(current_mode_line_height, current_header_line_height):
Gerd Moellmann <gerd@gnu.org>
parents:
33453
diff
changeset
|
1001 if (WINDOW_WANTS_MODELINE_P (w)) |
d8cd8e1bc659
(current_mode_line_height, current_header_line_height):
Gerd Moellmann <gerd@gnu.org>
parents:
33453
diff
changeset
|
1002 current_mode_line_height |
d8cd8e1bc659
(current_mode_line_height, current_header_line_height):
Gerd Moellmann <gerd@gnu.org>
parents:
33453
diff
changeset
|
1003 = display_mode_line (w, MODE_LINE_FACE_ID, |
d8cd8e1bc659
(current_mode_line_height, current_header_line_height):
Gerd Moellmann <gerd@gnu.org>
parents:
33453
diff
changeset
|
1004 current_buffer->mode_line_format); |
d8cd8e1bc659
(current_mode_line_height, current_header_line_height):
Gerd Moellmann <gerd@gnu.org>
parents:
33453
diff
changeset
|
1005 |
d8cd8e1bc659
(current_mode_line_height, current_header_line_height):
Gerd Moellmann <gerd@gnu.org>
parents:
33453
diff
changeset
|
1006 if (WINDOW_WANTS_HEADER_LINE_P (w)) |
d8cd8e1bc659
(current_mode_line_height, current_header_line_height):
Gerd Moellmann <gerd@gnu.org>
parents:
33453
diff
changeset
|
1007 current_header_line_height |
d8cd8e1bc659
(current_mode_line_height, current_header_line_height):
Gerd Moellmann <gerd@gnu.org>
parents:
33453
diff
changeset
|
1008 = display_mode_line (w, HEADER_LINE_FACE_ID, |
d8cd8e1bc659
(current_mode_line_height, current_header_line_height):
Gerd Moellmann <gerd@gnu.org>
parents:
33453
diff
changeset
|
1009 current_buffer->header_line_format); |
d8cd8e1bc659
(current_mode_line_height, current_header_line_height):
Gerd Moellmann <gerd@gnu.org>
parents:
33453
diff
changeset
|
1010 } |
d8cd8e1bc659
(current_mode_line_height, current_header_line_height):
Gerd Moellmann <gerd@gnu.org>
parents:
33453
diff
changeset
|
1011 |
32873
1dbdec58e580
(pos_visible_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32752
diff
changeset
|
1012 start_display (&it, w, top); |
1dbdec58e580
(pos_visible_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32752
diff
changeset
|
1013 move_it_to (&it, charpos, 0, it.last_visible_y, -1, |
1dbdec58e580
(pos_visible_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32752
diff
changeset
|
1014 MOVE_TO_POS | MOVE_TO_X | MOVE_TO_Y); |
34947
5854869b9445
(pos_visible_p): Take into account that CHARPOS maybe
Gerd Moellmann <gerd@gnu.org>
parents:
34927
diff
changeset
|
1015 |
5854869b9445
(pos_visible_p): Take into account that CHARPOS maybe
Gerd Moellmann <gerd@gnu.org>
parents:
34927
diff
changeset
|
1016 /* Note that we may overshoot because of invisible text. */ |
5854869b9445
(pos_visible_p): Take into account that CHARPOS maybe
Gerd Moellmann <gerd@gnu.org>
parents:
34927
diff
changeset
|
1017 if (IT_CHARPOS (it) >= charpos) |
32873
1dbdec58e580
(pos_visible_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32752
diff
changeset
|
1018 { |
32912
b55f99786a33
(pos_visible_p): Change current buffer if necessary.
Gerd Moellmann <gerd@gnu.org>
parents:
32878
diff
changeset
|
1019 int line_height, line_bottom_y; |
b55f99786a33
(pos_visible_p): Change current buffer if necessary.
Gerd Moellmann <gerd@gnu.org>
parents:
32878
diff
changeset
|
1020 int line_top_y = it.current_y; |
b55f99786a33
(pos_visible_p): Change current buffer if necessary.
Gerd Moellmann <gerd@gnu.org>
parents:
32878
diff
changeset
|
1021 int window_top_y = WINDOW_DISPLAY_HEADER_LINE_HEIGHT (w); |
b55f99786a33
(pos_visible_p): Change current buffer if necessary.
Gerd Moellmann <gerd@gnu.org>
parents:
32878
diff
changeset
|
1022 |
b55f99786a33
(pos_visible_p): Change current buffer if necessary.
Gerd Moellmann <gerd@gnu.org>
parents:
32878
diff
changeset
|
1023 line_height = it.max_ascent + it.max_descent; |
b55f99786a33
(pos_visible_p): Change current buffer if necessary.
Gerd Moellmann <gerd@gnu.org>
parents:
32878
diff
changeset
|
1024 if (line_height == 0) |
b55f99786a33
(pos_visible_p): Change current buffer if necessary.
Gerd Moellmann <gerd@gnu.org>
parents:
32878
diff
changeset
|
1025 { |
b55f99786a33
(pos_visible_p): Change current buffer if necessary.
Gerd Moellmann <gerd@gnu.org>
parents:
32878
diff
changeset
|
1026 if (last_height) |
b55f99786a33
(pos_visible_p): Change current buffer if necessary.
Gerd Moellmann <gerd@gnu.org>
parents:
32878
diff
changeset
|
1027 line_height = last_height; |
33531
de985bc39ea3
(pos_visible_p): Handle case that we reach ZV without
Gerd Moellmann <gerd@gnu.org>
parents:
33510
diff
changeset
|
1028 else if (charpos < ZV) |
32912
b55f99786a33
(pos_visible_p): Change current buffer if necessary.
Gerd Moellmann <gerd@gnu.org>
parents:
32878
diff
changeset
|
1029 { |
b55f99786a33
(pos_visible_p): Change current buffer if necessary.
Gerd Moellmann <gerd@gnu.org>
parents:
32878
diff
changeset
|
1030 move_it_by_lines (&it, 1, 1); |
b55f99786a33
(pos_visible_p): Change current buffer if necessary.
Gerd Moellmann <gerd@gnu.org>
parents:
32878
diff
changeset
|
1031 line_height = (it.max_ascent || it.max_descent |
b55f99786a33
(pos_visible_p): Change current buffer if necessary.
Gerd Moellmann <gerd@gnu.org>
parents:
32878
diff
changeset
|
1032 ? it.max_ascent + it.max_descent |
b55f99786a33
(pos_visible_p): Change current buffer if necessary.
Gerd Moellmann <gerd@gnu.org>
parents:
32878
diff
changeset
|
1033 : last_height); |
b55f99786a33
(pos_visible_p): Change current buffer if necessary.
Gerd Moellmann <gerd@gnu.org>
parents:
32878
diff
changeset
|
1034 } |
33568
ea6ead04f574
(pos_visible_p): Compute the default character height
Gerd Moellmann <gerd@gnu.org>
parents:
33531
diff
changeset
|
1035 else |
ea6ead04f574
(pos_visible_p): Compute the default character height
Gerd Moellmann <gerd@gnu.org>
parents:
33531
diff
changeset
|
1036 { |
ea6ead04f574
(pos_visible_p): Compute the default character height
Gerd Moellmann <gerd@gnu.org>
parents:
33531
diff
changeset
|
1037 /* Use the default character height. */ |
ea6ead04f574
(pos_visible_p): Compute the default character height
Gerd Moellmann <gerd@gnu.org>
parents:
33531
diff
changeset
|
1038 it.what = IT_CHARACTER; |
ea6ead04f574
(pos_visible_p): Compute the default character height
Gerd Moellmann <gerd@gnu.org>
parents:
33531
diff
changeset
|
1039 it.c = ' '; |
ea6ead04f574
(pos_visible_p): Compute the default character height
Gerd Moellmann <gerd@gnu.org>
parents:
33531
diff
changeset
|
1040 it.len = 1; |
ea6ead04f574
(pos_visible_p): Compute the default character height
Gerd Moellmann <gerd@gnu.org>
parents:
33531
diff
changeset
|
1041 PRODUCE_GLYPHS (&it); |
ea6ead04f574
(pos_visible_p): Compute the default character height
Gerd Moellmann <gerd@gnu.org>
parents:
33531
diff
changeset
|
1042 line_height = it.ascent + it.descent; |
ea6ead04f574
(pos_visible_p): Compute the default character height
Gerd Moellmann <gerd@gnu.org>
parents:
33531
diff
changeset
|
1043 } |
32912
b55f99786a33
(pos_visible_p): Change current buffer if necessary.
Gerd Moellmann <gerd@gnu.org>
parents:
32878
diff
changeset
|
1044 } |
b55f99786a33
(pos_visible_p): Change current buffer if necessary.
Gerd Moellmann <gerd@gnu.org>
parents:
32878
diff
changeset
|
1045 line_bottom_y = line_top_y + line_height; |
b55f99786a33
(pos_visible_p): Change current buffer if necessary.
Gerd Moellmann <gerd@gnu.org>
parents:
32878
diff
changeset
|
1046 |
b55f99786a33
(pos_visible_p): Change current buffer if necessary.
Gerd Moellmann <gerd@gnu.org>
parents:
32878
diff
changeset
|
1047 if (line_top_y < window_top_y) |
b55f99786a33
(pos_visible_p): Change current buffer if necessary.
Gerd Moellmann <gerd@gnu.org>
parents:
32878
diff
changeset
|
1048 visible_p = line_bottom_y > window_top_y; |
b55f99786a33
(pos_visible_p): Change current buffer if necessary.
Gerd Moellmann <gerd@gnu.org>
parents:
32878
diff
changeset
|
1049 else if (line_top_y < it.last_visible_y) |
b55f99786a33
(pos_visible_p): Change current buffer if necessary.
Gerd Moellmann <gerd@gnu.org>
parents:
32878
diff
changeset
|
1050 { |
b55f99786a33
(pos_visible_p): Change current buffer if necessary.
Gerd Moellmann <gerd@gnu.org>
parents:
32878
diff
changeset
|
1051 visible_p = 1; |
b55f99786a33
(pos_visible_p): Change current buffer if necessary.
Gerd Moellmann <gerd@gnu.org>
parents:
32878
diff
changeset
|
1052 *fully = line_bottom_y <= it.last_visible_y; |
b55f99786a33
(pos_visible_p): Change current buffer if necessary.
Gerd Moellmann <gerd@gnu.org>
parents:
32878
diff
changeset
|
1053 } |
32873
1dbdec58e580
(pos_visible_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32752
diff
changeset
|
1054 } |
1dbdec58e580
(pos_visible_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32752
diff
changeset
|
1055 else if (it.current_y + it.max_ascent + it.max_descent > it.last_visible_y) |
1dbdec58e580
(pos_visible_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32752
diff
changeset
|
1056 { |
1dbdec58e580
(pos_visible_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32752
diff
changeset
|
1057 move_it_by_lines (&it, 1, 0); |
1dbdec58e580
(pos_visible_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32752
diff
changeset
|
1058 if (charpos < IT_CHARPOS (it)) |
1dbdec58e580
(pos_visible_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32752
diff
changeset
|
1059 { |
1dbdec58e580
(pos_visible_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32752
diff
changeset
|
1060 visible_p = 1; |
1dbdec58e580
(pos_visible_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32752
diff
changeset
|
1061 *fully = 0; |
1dbdec58e580
(pos_visible_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32752
diff
changeset
|
1062 } |
1dbdec58e580
(pos_visible_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32752
diff
changeset
|
1063 } |
32912
b55f99786a33
(pos_visible_p): Change current buffer if necessary.
Gerd Moellmann <gerd@gnu.org>
parents:
32878
diff
changeset
|
1064 |
b55f99786a33
(pos_visible_p): Change current buffer if necessary.
Gerd Moellmann <gerd@gnu.org>
parents:
32878
diff
changeset
|
1065 if (old_buffer) |
b55f99786a33
(pos_visible_p): Change current buffer if necessary.
Gerd Moellmann <gerd@gnu.org>
parents:
32878
diff
changeset
|
1066 set_buffer_internal_1 (old_buffer); |
33462
d8cd8e1bc659
(current_mode_line_height, current_header_line_height):
Gerd Moellmann <gerd@gnu.org>
parents:
33453
diff
changeset
|
1067 |
d8cd8e1bc659
(current_mode_line_height, current_header_line_height):
Gerd Moellmann <gerd@gnu.org>
parents:
33453
diff
changeset
|
1068 current_header_line_height = current_mode_line_height = -1; |
32873
1dbdec58e580
(pos_visible_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32752
diff
changeset
|
1069 return visible_p; |
1dbdec58e580
(pos_visible_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32752
diff
changeset
|
1070 } |
1dbdec58e580
(pos_visible_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32752
diff
changeset
|
1071 |
1dbdec58e580
(pos_visible_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32752
diff
changeset
|
1072 |
25096
1af1088d3812
(string_char_and_length): New. Use it everywhere
Gerd Moellmann <gerd@gnu.org>
parents:
25063
diff
changeset
|
1073 /* Return the next character from STR which is MAXLEN bytes long. |
1af1088d3812
(string_char_and_length): New. Use it everywhere
Gerd Moellmann <gerd@gnu.org>
parents:
25063
diff
changeset
|
1074 Return in *LEN the length of the character. This is like |
1af1088d3812
(string_char_and_length): New. Use it everywhere
Gerd Moellmann <gerd@gnu.org>
parents:
25063
diff
changeset
|
1075 STRING_CHAR_AND_LENGTH but never returns an invalid character. If |
28932
f8b0ac62f238
Use the term `invalid' instead of `illegal'.
Gerd Moellmann <gerd@gnu.org>
parents:
28876
diff
changeset
|
1076 we find one, we return a `?', but with the length of the invalid |
25096
1af1088d3812
(string_char_and_length): New. Use it everywhere
Gerd Moellmann <gerd@gnu.org>
parents:
25063
diff
changeset
|
1077 character. */ |
1af1088d3812
(string_char_and_length): New. Use it everywhere
Gerd Moellmann <gerd@gnu.org>
parents:
25063
diff
changeset
|
1078 |
1af1088d3812
(string_char_and_length): New. Use it everywhere
Gerd Moellmann <gerd@gnu.org>
parents:
25063
diff
changeset
|
1079 static INLINE int |
25098
188fc8b67ea9
(string_char_and_length): Fix previous change.
Gerd Moellmann <gerd@gnu.org>
parents:
25096
diff
changeset
|
1080 string_char_and_length (str, maxlen, len) |
25096
1af1088d3812
(string_char_and_length): New. Use it everywhere
Gerd Moellmann <gerd@gnu.org>
parents:
25063
diff
changeset
|
1081 unsigned char *str; |
25098
188fc8b67ea9
(string_char_and_length): Fix previous change.
Gerd Moellmann <gerd@gnu.org>
parents:
25096
diff
changeset
|
1082 int maxlen, *len; |
25096
1af1088d3812
(string_char_and_length): New. Use it everywhere
Gerd Moellmann <gerd@gnu.org>
parents:
25063
diff
changeset
|
1083 { |
1af1088d3812
(string_char_and_length): New. Use it everywhere
Gerd Moellmann <gerd@gnu.org>
parents:
25063
diff
changeset
|
1084 int c; |
1af1088d3812
(string_char_and_length): New. Use it everywhere
Gerd Moellmann <gerd@gnu.org>
parents:
25063
diff
changeset
|
1085 |
1af1088d3812
(string_char_and_length): New. Use it everywhere
Gerd Moellmann <gerd@gnu.org>
parents:
25063
diff
changeset
|
1086 c = STRING_CHAR_AND_LENGTH (str, maxlen, *len); |
1af1088d3812
(string_char_and_length): New. Use it everywhere
Gerd Moellmann <gerd@gnu.org>
parents:
25063
diff
changeset
|
1087 if (!CHAR_VALID_P (c, 1)) |
1af1088d3812
(string_char_and_length): New. Use it everywhere
Gerd Moellmann <gerd@gnu.org>
parents:
25063
diff
changeset
|
1088 /* We may not change the length here because other places in Emacs |
28932
f8b0ac62f238
Use the term `invalid' instead of `illegal'.
Gerd Moellmann <gerd@gnu.org>
parents:
28876
diff
changeset
|
1089 don't use this function, i.e. they silently accept invalid |
25096
1af1088d3812
(string_char_and_length): New. Use it everywhere
Gerd Moellmann <gerd@gnu.org>
parents:
25063
diff
changeset
|
1090 characters. */ |
1af1088d3812
(string_char_and_length): New. Use it everywhere
Gerd Moellmann <gerd@gnu.org>
parents:
25063
diff
changeset
|
1091 c = '?'; |
1af1088d3812
(string_char_and_length): New. Use it everywhere
Gerd Moellmann <gerd@gnu.org>
parents:
25063
diff
changeset
|
1092 |
1af1088d3812
(string_char_and_length): New. Use it everywhere
Gerd Moellmann <gerd@gnu.org>
parents:
25063
diff
changeset
|
1093 return c; |
1af1088d3812
(string_char_and_length): New. Use it everywhere
Gerd Moellmann <gerd@gnu.org>
parents:
25063
diff
changeset
|
1094 } |
1af1088d3812
(string_char_and_length): New. Use it everywhere
Gerd Moellmann <gerd@gnu.org>
parents:
25063
diff
changeset
|
1095 |
1af1088d3812
(string_char_and_length): New. Use it everywhere
Gerd Moellmann <gerd@gnu.org>
parents:
25063
diff
changeset
|
1096 |
1af1088d3812
(string_char_and_length): New. Use it everywhere
Gerd Moellmann <gerd@gnu.org>
parents:
25063
diff
changeset
|
1097 |
25012 | 1098 /* Given a position POS containing a valid character and byte position |
1099 in STRING, return the position NCHARS ahead (NCHARS >= 0). */ | |
1100 | |
1101 static struct text_pos | |
1102 string_pos_nchars_ahead (pos, string, nchars) | |
1103 struct text_pos pos; | |
1104 Lisp_Object string; | |
1105 int nchars; | |
1106 { | |
1107 xassert (STRINGP (string) && nchars >= 0); | |
1108 | |
1109 if (STRING_MULTIBYTE (string)) | |
1110 { | |
1111 int rest = STRING_BYTES (XSTRING (string)) - BYTEPOS (pos); | |
1112 unsigned char *p = XSTRING (string)->data + BYTEPOS (pos); | |
1113 int len; | |
1114 | |
1115 while (nchars--) | |
1116 { | |
25096
1af1088d3812
(string_char_and_length): New. Use it everywhere
Gerd Moellmann <gerd@gnu.org>
parents:
25063
diff
changeset
|
1117 string_char_and_length (p, rest, &len); |
25012 | 1118 p += len, rest -= len; |
1119 xassert (rest >= 0); | |
1120 CHARPOS (pos) += 1; | |
1121 BYTEPOS (pos) += len; | |
1122 } | |
1123 } | |
1124 else | |
1125 SET_TEXT_POS (pos, CHARPOS (pos) + nchars, BYTEPOS (pos) + nchars); | |
1126 | |
1127 return pos; | |
1128 } | |
1129 | |
1130 | |
1131 /* Value is the text position, i.e. character and byte position, | |
1132 for character position CHARPOS in STRING. */ | |
1133 | |
1134 static INLINE struct text_pos | |
1135 string_pos (charpos, string) | |
1136 int charpos; | |
1137 Lisp_Object string; | |
1138 { | |
1139 struct text_pos pos; | |
1140 xassert (STRINGP (string)); | |
1141 xassert (charpos >= 0); | |
1142 SET_TEXT_POS (pos, charpos, string_char_to_byte (string, charpos)); | |
1143 return pos; | |
1144 } | |
1145 | |
1146 | |
1147 /* Value is a text position, i.e. character and byte position, for | |
1148 character position CHARPOS in C string S. MULTIBYTE_P non-zero | |
1149 means recognize multibyte characters. */ | |
1150 | |
1151 static struct text_pos | |
1152 c_string_pos (charpos, s, multibyte_p) | |
1153 int charpos; | |
1154 unsigned char *s; | |
1155 int multibyte_p; | |
1156 { | |
1157 struct text_pos pos; | |
1158 | |
1159 xassert (s != NULL); | |
1160 xassert (charpos >= 0); | |
1161 | |
1162 if (multibyte_p) | |
1163 { | |
1164 int rest = strlen (s), len; | |
1165 | |
1166 SET_TEXT_POS (pos, 0, 0); | |
1167 while (charpos--) | |
1168 { | |
25096
1af1088d3812
(string_char_and_length): New. Use it everywhere
Gerd Moellmann <gerd@gnu.org>
parents:
25063
diff
changeset
|
1169 string_char_and_length (s, rest, &len); |
25012 | 1170 s += len, rest -= len; |
1171 xassert (rest >= 0); | |
1172 CHARPOS (pos) += 1; | |
1173 BYTEPOS (pos) += len; | |
1174 } | |
1175 } | |
1176 else | |
1177 SET_TEXT_POS (pos, charpos, charpos); | |
1178 | |
1179 return pos; | |
1180 } | |
1181 | |
1182 | |
1183 /* Value is the number of characters in C string S. MULTIBYTE_P | |
1184 non-zero means recognize multibyte characters. */ | |
1185 | |
1186 static int | |
1187 number_of_chars (s, multibyte_p) | |
1188 unsigned char *s; | |
1189 int multibyte_p; | |
1190 { | |
1191 int nchars; | |
1192 | |
1193 if (multibyte_p) | |
1194 { | |
1195 int rest = strlen (s), len; | |
1196 unsigned char *p = (unsigned char *) s; | |
1197 | |
1198 for (nchars = 0; rest > 0; ++nchars) | |
1199 { | |
25096
1af1088d3812
(string_char_and_length): New. Use it everywhere
Gerd Moellmann <gerd@gnu.org>
parents:
25063
diff
changeset
|
1200 string_char_and_length (p, rest, &len); |
25012 | 1201 rest -= len, p += len; |
1202 } | |
1203 } | |
1204 else | |
1205 nchars = strlen (s); | |
1206 | |
1207 return nchars; | |
1208 } | |
1209 | |
1210 | |
1211 /* Compute byte position NEWPOS->bytepos corresponding to | |
1212 NEWPOS->charpos. POS is a known position in string STRING. | |
1213 NEWPOS->charpos must be >= POS.charpos. */ | |
1214 | |
1215 static void | |
1216 compute_string_pos (newpos, pos, string) | |
1217 struct text_pos *newpos, pos; | |
1218 Lisp_Object string; | |
1219 { | |
1220 xassert (STRINGP (string)); | |
1221 xassert (CHARPOS (*newpos) >= CHARPOS (pos)); | |
1222 | |
1223 if (STRING_MULTIBYTE (string)) | |
28464
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28362
diff
changeset
|
1224 *newpos = string_pos_nchars_ahead (pos, string, |
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28362
diff
changeset
|
1225 CHARPOS (*newpos) - CHARPOS (pos)); |
25012 | 1226 else |
1227 BYTEPOS (*newpos) = CHARPOS (*newpos); | |
1228 } | |
1229 | |
1230 | |
1231 | |
1232 /*********************************************************************** | |
1233 Lisp form evaluation | |
1234 ***********************************************************************/ | |
1235 | |
32175
e5d99e8cbd94
(handle_single_display_prop): Use safe_call1.
Gerd Moellmann <gerd@gnu.org>
parents:
31931
diff
changeset
|
1236 /* Error handler for safe_eval and safe_call. */ |
25012 | 1237 |
1238 static Lisp_Object | |
32175
e5d99e8cbd94
(handle_single_display_prop): Use safe_call1.
Gerd Moellmann <gerd@gnu.org>
parents:
31931
diff
changeset
|
1239 safe_eval_handler (arg) |
25012 | 1240 Lisp_Object arg; |
1241 { | |
33072
176f2eb7a645
(safe_eval_handler): Call add_to_log.
Gerd Moellmann <gerd@gnu.org>
parents:
33068
diff
changeset
|
1242 add_to_log ("Error during redisplay: %s", arg, Qnil); |
25012 | 1243 return Qnil; |
1244 } | |
1245 | |
1246 | |
1247 /* Evaluate SEXPR and return the result, or nil if something went | |
1248 wrong. */ | |
1249 | |
30202
bade676e0950
(eval_form): Make it externally visible.
Gerd Moellmann <gerd@gnu.org>
parents:
30159
diff
changeset
|
1250 Lisp_Object |
32175
e5d99e8cbd94
(handle_single_display_prop): Use safe_call1.
Gerd Moellmann <gerd@gnu.org>
parents:
31931
diff
changeset
|
1251 safe_eval (sexpr) |
25012 | 1252 Lisp_Object sexpr; |
1253 { | |
33600
c5f64497e92c
Use BINDING_STACK_SIZE throughout.
Gerd Moellmann <gerd@gnu.org>
parents:
33594
diff
changeset
|
1254 int count = BINDING_STACK_SIZE (); |
30216
394c884dc496
(eval_form): GCPRO argument sexpr.
Gerd Moellmann <gerd@gnu.org>
parents:
30202
diff
changeset
|
1255 struct gcpro gcpro1; |
25012 | 1256 Lisp_Object val; |
30216
394c884dc496
(eval_form): GCPRO argument sexpr.
Gerd Moellmann <gerd@gnu.org>
parents:
30202
diff
changeset
|
1257 |
394c884dc496
(eval_form): GCPRO argument sexpr.
Gerd Moellmann <gerd@gnu.org>
parents:
30202
diff
changeset
|
1258 GCPRO1 (sexpr); |
25012 | 1259 specbind (Qinhibit_redisplay, Qt); |
32175
e5d99e8cbd94
(handle_single_display_prop): Use safe_call1.
Gerd Moellmann <gerd@gnu.org>
parents:
31931
diff
changeset
|
1260 val = internal_condition_case_1 (Feval, sexpr, Qerror, safe_eval_handler); |
30216
394c884dc496
(eval_form): GCPRO argument sexpr.
Gerd Moellmann <gerd@gnu.org>
parents:
30202
diff
changeset
|
1261 UNGCPRO; |
394c884dc496
(eval_form): GCPRO argument sexpr.
Gerd Moellmann <gerd@gnu.org>
parents:
30202
diff
changeset
|
1262 return unbind_to (count, val); |
394c884dc496
(eval_form): GCPRO argument sexpr.
Gerd Moellmann <gerd@gnu.org>
parents:
30202
diff
changeset
|
1263 } |
394c884dc496
(eval_form): GCPRO argument sexpr.
Gerd Moellmann <gerd@gnu.org>
parents:
30202
diff
changeset
|
1264 |
394c884dc496
(eval_form): GCPRO argument sexpr.
Gerd Moellmann <gerd@gnu.org>
parents:
30202
diff
changeset
|
1265 |
394c884dc496
(eval_form): GCPRO argument sexpr.
Gerd Moellmann <gerd@gnu.org>
parents:
30202
diff
changeset
|
1266 /* Call function ARGS[0] with arguments ARGS[1] to ARGS[NARGS - 1]. |
394c884dc496
(eval_form): GCPRO argument sexpr.
Gerd Moellmann <gerd@gnu.org>
parents:
30202
diff
changeset
|
1267 Return the result, or nil if something went wrong. */ |
394c884dc496
(eval_form): GCPRO argument sexpr.
Gerd Moellmann <gerd@gnu.org>
parents:
30202
diff
changeset
|
1268 |
394c884dc496
(eval_form): GCPRO argument sexpr.
Gerd Moellmann <gerd@gnu.org>
parents:
30202
diff
changeset
|
1269 Lisp_Object |
32175
e5d99e8cbd94
(handle_single_display_prop): Use safe_call1.
Gerd Moellmann <gerd@gnu.org>
parents:
31931
diff
changeset
|
1270 safe_call (nargs, args) |
30216
394c884dc496
(eval_form): GCPRO argument sexpr.
Gerd Moellmann <gerd@gnu.org>
parents:
30202
diff
changeset
|
1271 int nargs; |
394c884dc496
(eval_form): GCPRO argument sexpr.
Gerd Moellmann <gerd@gnu.org>
parents:
30202
diff
changeset
|
1272 Lisp_Object *args; |
394c884dc496
(eval_form): GCPRO argument sexpr.
Gerd Moellmann <gerd@gnu.org>
parents:
30202
diff
changeset
|
1273 { |
33600
c5f64497e92c
Use BINDING_STACK_SIZE throughout.
Gerd Moellmann <gerd@gnu.org>
parents:
33594
diff
changeset
|
1274 int count = BINDING_STACK_SIZE (); |
30216
394c884dc496
(eval_form): GCPRO argument sexpr.
Gerd Moellmann <gerd@gnu.org>
parents:
30202
diff
changeset
|
1275 Lisp_Object val; |
394c884dc496
(eval_form): GCPRO argument sexpr.
Gerd Moellmann <gerd@gnu.org>
parents:
30202
diff
changeset
|
1276 struct gcpro gcpro1; |
394c884dc496
(eval_form): GCPRO argument sexpr.
Gerd Moellmann <gerd@gnu.org>
parents:
30202
diff
changeset
|
1277 |
394c884dc496
(eval_form): GCPRO argument sexpr.
Gerd Moellmann <gerd@gnu.org>
parents:
30202
diff
changeset
|
1278 GCPRO1 (args[0]); |
394c884dc496
(eval_form): GCPRO argument sexpr.
Gerd Moellmann <gerd@gnu.org>
parents:
30202
diff
changeset
|
1279 gcpro1.nvars = nargs; |
394c884dc496
(eval_form): GCPRO argument sexpr.
Gerd Moellmann <gerd@gnu.org>
parents:
30202
diff
changeset
|
1280 specbind (Qinhibit_redisplay, Qt); |
394c884dc496
(eval_form): GCPRO argument sexpr.
Gerd Moellmann <gerd@gnu.org>
parents:
30202
diff
changeset
|
1281 val = internal_condition_case_2 (Ffuncall, nargs, args, Qerror, |
32175
e5d99e8cbd94
(handle_single_display_prop): Use safe_call1.
Gerd Moellmann <gerd@gnu.org>
parents:
31931
diff
changeset
|
1282 safe_eval_handler); |
30216
394c884dc496
(eval_form): GCPRO argument sexpr.
Gerd Moellmann <gerd@gnu.org>
parents:
30202
diff
changeset
|
1283 UNGCPRO; |
25012 | 1284 return unbind_to (count, val); |
1285 } | |
1286 | |
1287 | |
32175
e5d99e8cbd94
(handle_single_display_prop): Use safe_call1.
Gerd Moellmann <gerd@gnu.org>
parents:
31931
diff
changeset
|
1288 /* Call function FN with one argument ARG. |
e5d99e8cbd94
(handle_single_display_prop): Use safe_call1.
Gerd Moellmann <gerd@gnu.org>
parents:
31931
diff
changeset
|
1289 Return the result, or nil if something went wrong. */ |
e5d99e8cbd94
(handle_single_display_prop): Use safe_call1.
Gerd Moellmann <gerd@gnu.org>
parents:
31931
diff
changeset
|
1290 |
e5d99e8cbd94
(handle_single_display_prop): Use safe_call1.
Gerd Moellmann <gerd@gnu.org>
parents:
31931
diff
changeset
|
1291 Lisp_Object |
e5d99e8cbd94
(handle_single_display_prop): Use safe_call1.
Gerd Moellmann <gerd@gnu.org>
parents:
31931
diff
changeset
|
1292 safe_call1 (fn, arg) |
e5d99e8cbd94
(handle_single_display_prop): Use safe_call1.
Gerd Moellmann <gerd@gnu.org>
parents:
31931
diff
changeset
|
1293 Lisp_Object fn, arg; |
e5d99e8cbd94
(handle_single_display_prop): Use safe_call1.
Gerd Moellmann <gerd@gnu.org>
parents:
31931
diff
changeset
|
1294 { |
e5d99e8cbd94
(handle_single_display_prop): Use safe_call1.
Gerd Moellmann <gerd@gnu.org>
parents:
31931
diff
changeset
|
1295 Lisp_Object args[2]; |
e5d99e8cbd94
(handle_single_display_prop): Use safe_call1.
Gerd Moellmann <gerd@gnu.org>
parents:
31931
diff
changeset
|
1296 args[0] = fn; |
e5d99e8cbd94
(handle_single_display_prop): Use safe_call1.
Gerd Moellmann <gerd@gnu.org>
parents:
31931
diff
changeset
|
1297 args[1] = arg; |
e5d99e8cbd94
(handle_single_display_prop): Use safe_call1.
Gerd Moellmann <gerd@gnu.org>
parents:
31931
diff
changeset
|
1298 return safe_call (2, args); |
e5d99e8cbd94
(handle_single_display_prop): Use safe_call1.
Gerd Moellmann <gerd@gnu.org>
parents:
31931
diff
changeset
|
1299 } |
e5d99e8cbd94
(handle_single_display_prop): Use safe_call1.
Gerd Moellmann <gerd@gnu.org>
parents:
31931
diff
changeset
|
1300 |
e5d99e8cbd94
(handle_single_display_prop): Use safe_call1.
Gerd Moellmann <gerd@gnu.org>
parents:
31931
diff
changeset
|
1301 |
25012 | 1302 |
1303 /*********************************************************************** | |
1304 Debugging | |
1305 ***********************************************************************/ | |
1306 | |
1307 #if 0 | |
1308 | |
1309 /* Define CHECK_IT to perform sanity checks on iterators. | |
1310 This is for debugging. It is too slow to do unconditionally. */ | |
1311 | |
1312 static void | |
1313 check_it (it) | |
1314 struct it *it; | |
1315 { | |
1316 if (it->method == next_element_from_string) | |
1317 { | |
1318 xassert (STRINGP (it->string)); | |
1319 xassert (IT_STRING_CHARPOS (*it) >= 0); | |
1320 } | |
1321 else if (it->method == next_element_from_buffer) | |
1322 { | |
1323 /* Check that character and byte positions agree. */ | |
1324 xassert (IT_CHARPOS (*it) == BYTE_TO_CHAR (IT_BYTEPOS (*it))); | |
1325 } | |
1326 | |
1327 if (it->dpvec) | |
1328 xassert (it->current.dpvec_index >= 0); | |
1329 else | |
1330 xassert (it->current.dpvec_index < 0); | |
1331 } | |
1332 | |
1333 #define CHECK_IT(IT) check_it ((IT)) | |
1334 | |
1335 #else /* not 0 */ | |
1336 | |
1337 #define CHECK_IT(IT) (void) 0 | |
1338 | |
1339 #endif /* not 0 */ | |
1340 | |
1341 | |
1342 #if GLYPH_DEBUG | |
1343 | |
1344 /* Check that the window end of window W is what we expect it | |
1345 to be---the last row in the current matrix displaying text. */ | |
1346 | |
1347 static void | |
1348 check_window_end (w) | |
1349 struct window *w; | |
1350 { | |
1351 if (!MINI_WINDOW_P (w) | |
1352 && !NILP (w->window_end_valid)) | |
1353 { | |
1354 struct glyph_row *row; | |
1355 xassert ((row = MATRIX_ROW (w->current_matrix, | |
1356 XFASTINT (w->window_end_vpos)), | |
1357 !row->enabled_p | |
1358 || MATRIX_ROW_DISPLAYS_TEXT_P (row) | |
1359 || MATRIX_ROW_VPOS (row, w->current_matrix) == 0)); | |
1360 } | |
1361 } | |
1362 | |
1363 #define CHECK_WINDOW_END(W) check_window_end ((W)) | |
1364 | |
1365 #else /* not GLYPH_DEBUG */ | |
1366 | |
1367 #define CHECK_WINDOW_END(W) (void) 0 | |
1368 | |
1369 #endif /* not GLYPH_DEBUG */ | |
1370 | |
1371 | |
1372 | |
1373 /*********************************************************************** | |
1374 Iterator initialization | |
1375 ***********************************************************************/ | |
1376 | |
1377 /* Initialize IT for displaying current_buffer in window W, starting | |
1378 at character position CHARPOS. CHARPOS < 0 means that no buffer | |
1379 position is specified which is useful when the iterator is assigned | |
1380 a position later. BYTEPOS is the byte position corresponding to | |
1381 CHARPOS. BYTEPOS <= 0 means compute it from CHARPOS. | |
1382 | |
1383 If ROW is not null, calls to produce_glyphs with IT as parameter | |
1384 will produce glyphs in that row. | |
1385 | |
1386 BASE_FACE_ID is the id of a base face to use. It must be one of | |
1387 DEFAULT_FACE_ID for normal text, MODE_LINE_FACE_ID or | |
25546 | 1388 HEADER_LINE_FACE_ID for displaying mode lines, or TOOL_BAR_FACE_ID for |
25543 | 1389 displaying the tool-bar. |
25012 | 1390 |
1391 If ROW is null and BASE_FACE_ID is equal to MODE_LINE_FACE_ID or | |
25546 | 1392 HEADER_LINE_FACE_ID, the iterator will be initialized to use the |
25012 | 1393 corresponding mode line glyph row of the desired matrix of W. */ |
1394 | |
1395 void | |
1396 init_iterator (it, w, charpos, bytepos, row, base_face_id) | |
1397 struct it *it; | |
1398 struct window *w; | |
1399 int charpos, bytepos; | |
1400 struct glyph_row *row; | |
1401 enum face_id base_face_id; | |
1402 { | |
1403 int highlight_region_p; | |
1404 | |
1405 /* Some precondition checks. */ | |
1406 xassert (w != NULL && it != NULL); | |
1407 xassert (charpos < 0 || (charpos > 0 && charpos <= ZV)); | |
1408 | |
1409 /* If face attributes have been changed since the last redisplay, | |
1410 free realized faces now because they depend on face definitions | |
1411 that might have changed. */ | |
1412 if (face_change_count) | |
1413 { | |
1414 face_change_count = 0; | |
1415 free_all_realized_faces (Qnil); | |
1416 } | |
1417 | |
1418 /* Use one of the mode line rows of W's desired matrix if | |
1419 appropriate. */ | |
1420 if (row == NULL) | |
1421 { | |
1422 if (base_face_id == MODE_LINE_FACE_ID) | |
1423 row = MATRIX_MODE_LINE_ROW (w->desired_matrix); | |
25546 | 1424 else if (base_face_id == HEADER_LINE_FACE_ID) |
1425 row = MATRIX_HEADER_LINE_ROW (w->desired_matrix); | |
25012 | 1426 } |
1427 | |
1428 /* Clear IT. */ | |
1429 bzero (it, sizeof *it); | |
1430 it->current.overlay_string_index = -1; | |
1431 it->current.dpvec_index = -1; | |
1432 it->base_face_id = base_face_id; | |
1433 | |
1434 /* The window in which we iterate over current_buffer: */ | |
1435 XSETWINDOW (it->window, w); | |
1436 it->w = w; | |
1437 it->f = XFRAME (w->frame); | |
1438 | |
28692
a22cc42e941d
(init_iterator): Set iterator's extra_line_spacing
Gerd Moellmann <gerd@gnu.org>
parents:
28652
diff
changeset
|
1439 /* Extra space between lines (on window systems only). */ |
a22cc42e941d
(init_iterator): Set iterator's extra_line_spacing
Gerd Moellmann <gerd@gnu.org>
parents:
28652
diff
changeset
|
1440 if (base_face_id == DEFAULT_FACE_ID |
a22cc42e941d
(init_iterator): Set iterator's extra_line_spacing
Gerd Moellmann <gerd@gnu.org>
parents:
28652
diff
changeset
|
1441 && FRAME_WINDOW_P (it->f)) |
a22cc42e941d
(init_iterator): Set iterator's extra_line_spacing
Gerd Moellmann <gerd@gnu.org>
parents:
28652
diff
changeset
|
1442 { |
a22cc42e941d
(init_iterator): Set iterator's extra_line_spacing
Gerd Moellmann <gerd@gnu.org>
parents:
28652
diff
changeset
|
1443 if (NATNUMP (current_buffer->extra_line_spacing)) |
a22cc42e941d
(init_iterator): Set iterator's extra_line_spacing
Gerd Moellmann <gerd@gnu.org>
parents:
28652
diff
changeset
|
1444 it->extra_line_spacing = XFASTINT (current_buffer->extra_line_spacing); |
a22cc42e941d
(init_iterator): Set iterator's extra_line_spacing
Gerd Moellmann <gerd@gnu.org>
parents:
28652
diff
changeset
|
1445 else if (it->f->extra_line_spacing > 0) |
a22cc42e941d
(init_iterator): Set iterator's extra_line_spacing
Gerd Moellmann <gerd@gnu.org>
parents:
28652
diff
changeset
|
1446 it->extra_line_spacing = it->f->extra_line_spacing; |
a22cc42e941d
(init_iterator): Set iterator's extra_line_spacing
Gerd Moellmann <gerd@gnu.org>
parents:
28652
diff
changeset
|
1447 } |
a22cc42e941d
(init_iterator): Set iterator's extra_line_spacing
Gerd Moellmann <gerd@gnu.org>
parents:
28652
diff
changeset
|
1448 |
25012 | 1449 /* If realized faces have been removed, e.g. because of face |
34664
acdda5d1ff29
(init_iterator): If noninteractive, and the frame's
Gerd Moellmann <gerd@gnu.org>
parents:
34582
diff
changeset
|
1450 attribute changes of named faces, recompute them. When running |
acdda5d1ff29
(init_iterator): If noninteractive, and the frame's
Gerd Moellmann <gerd@gnu.org>
parents:
34582
diff
changeset
|
1451 in batch mode, the face cache of Vterminal_frame is null. If |
acdda5d1ff29
(init_iterator): If noninteractive, and the frame's
Gerd Moellmann <gerd@gnu.org>
parents:
34582
diff
changeset
|
1452 we happen to get called, make a dummy face cache. */ |
35005
2b83125ab28b
(handle_single_display_prop): Return if frame is
Andrew Innes <andrewi@gnu.org>
parents:
34987
diff
changeset
|
1453 if ( |
2b83125ab28b
(handle_single_display_prop): Return if frame is
Andrew Innes <andrewi@gnu.org>
parents:
34987
diff
changeset
|
1454 #ifndef WINDOWSNT |
2b83125ab28b
(handle_single_display_prop): Return if frame is
Andrew Innes <andrewi@gnu.org>
parents:
34987
diff
changeset
|
1455 noninteractive && |
2b83125ab28b
(handle_single_display_prop): Return if frame is
Andrew Innes <andrewi@gnu.org>
parents:
34987
diff
changeset
|
1456 #endif |
2b83125ab28b
(handle_single_display_prop): Return if frame is
Andrew Innes <andrewi@gnu.org>
parents:
34987
diff
changeset
|
1457 FRAME_FACE_CACHE (it->f) == NULL) |
34664
acdda5d1ff29
(init_iterator): If noninteractive, and the frame's
Gerd Moellmann <gerd@gnu.org>
parents:
34582
diff
changeset
|
1458 init_frame_faces (it->f); |
25012 | 1459 if (FRAME_FACE_CACHE (it->f)->used == 0) |
1460 recompute_basic_faces (it->f); | |
1461 | |
1462 /* Current value of the `space-width', and 'height' properties. */ | |
1463 it->space_width = Qnil; | |
1464 it->font_height = Qnil; | |
1465 | |
1466 /* Are control characters displayed as `^C'? */ | |
1467 it->ctl_arrow_p = !NILP (current_buffer->ctl_arrow); | |
1468 | |
1469 /* -1 means everything between a CR and the following line end | |
1470 is invisible. >0 means lines indented more than this value are | |
1471 invisible. */ | |
1472 it->selective = (INTEGERP (current_buffer->selective_display) | |
1473 ? XFASTINT (current_buffer->selective_display) | |
1474 : (!NILP (current_buffer->selective_display) | |
1475 ? -1 : 0)); | |
1476 it->selective_display_ellipsis_p | |
1477 = !NILP (current_buffer->selective_display_ellipses); | |
1478 | |
1479 /* Display table to use. */ | |
1480 it->dp = window_display_table (w); | |
1481 | |
1482 /* Are multibyte characters enabled in current_buffer? */ | |
1483 it->multibyte_p = !NILP (current_buffer->enable_multibyte_characters); | |
1484 | |
1485 /* Non-zero if we should highlight the region. */ | |
1486 highlight_region_p | |
1487 = (!NILP (Vtransient_mark_mode) | |
1488 && !NILP (current_buffer->mark_active) | |
1489 && XMARKER (current_buffer->mark)->buffer != 0); | |
1490 | |
1491 /* Set IT->region_beg_charpos and IT->region_end_charpos to the | |
1492 start and end of a visible region in window IT->w. Set both to | |
1493 -1 to indicate no region. */ | |
1494 if (highlight_region_p | |
1495 /* Maybe highlight only in selected window. */ | |
1496 && (/* Either show region everywhere. */ | |
1497 highlight_nonselected_windows | |
1498 /* Or show region in the selected window. */ | |
1499 || w == XWINDOW (selected_window) | |
1500 /* Or show the region if we are in the mini-buffer and W is | |
1501 the window the mini-buffer refers to. */ | |
1502 || (MINI_WINDOW_P (XWINDOW (selected_window)) | |
1503 && w == XWINDOW (Vminibuf_scroll_window)))) | |
1504 { | |
1505 int charpos = marker_position (current_buffer->mark); | |
1506 it->region_beg_charpos = min (PT, charpos); | |
1507 it->region_end_charpos = max (PT, charpos); | |
1508 } | |
1509 else | |
1510 it->region_beg_charpos = it->region_end_charpos = -1; | |
1511 | |
1512 /* Get the position at which the redisplay_end_trigger hook should | |
1513 be run, if it is to be run at all. */ | |
1514 if (MARKERP (w->redisplay_end_trigger) | |
1515 && XMARKER (w->redisplay_end_trigger)->buffer != 0) | |
1516 it->redisplay_end_trigger_charpos | |
1517 = marker_position (w->redisplay_end_trigger); | |
1518 else if (INTEGERP (w->redisplay_end_trigger)) | |
1519 it->redisplay_end_trigger_charpos = XINT (w->redisplay_end_trigger); | |
1520 | |
1521 /* Correct bogus values of tab_width. */ | |
1522 it->tab_width = XINT (current_buffer->tab_width); | |
1523 if (it->tab_width <= 0 || it->tab_width > 1000) | |
1524 it->tab_width = 8; | |
1525 | |
1526 /* Are lines in the display truncated? */ | |
1527 it->truncate_lines_p | |
1528 = (base_face_id != DEFAULT_FACE_ID | |
1529 || XINT (it->w->hscroll) | |
1530 || (truncate_partial_width_windows | |
1531 && !WINDOW_FULL_WIDTH_P (it->w)) | |
1532 || !NILP (current_buffer->truncate_lines)); | |
1533 | |
1534 /* Get dimensions of truncation and continuation glyphs. These are | |
1535 displayed as bitmaps under X, so we don't need them for such | |
1536 frames. */ | |
1537 if (!FRAME_WINDOW_P (it->f)) | |
1538 { | |
1539 if (it->truncate_lines_p) | |
1540 { | |
1541 /* We will need the truncation glyph. */ | |
1542 xassert (it->glyph_row == NULL); | |
1543 produce_special_glyphs (it, IT_TRUNCATION); | |
1544 it->truncation_pixel_width = it->pixel_width; | |
1545 } | |
1546 else | |
1547 { | |
1548 /* We will need the continuation glyph. */ | |
1549 xassert (it->glyph_row == NULL); | |
1550 produce_special_glyphs (it, IT_CONTINUATION); | |
1551 it->continuation_pixel_width = it->pixel_width; | |
1552 } | |
1553 | |
1554 /* Reset these values to zero becaue the produce_special_glyphs | |
1555 above has changed them. */ | |
1556 it->pixel_width = it->ascent = it->descent = 0; | |
25188
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
1557 it->phys_ascent = it->phys_descent = 0; |
25012 | 1558 } |
1559 | |
1560 /* Set this after getting the dimensions of truncation and | |
1561 continuation glyphs, so that we don't produce glyphs when calling | |
1562 produce_special_glyphs, above. */ | |
1563 it->glyph_row = row; | |
1564 it->area = TEXT_AREA; | |
1565 | |
1566 /* Get the dimensions of the display area. The display area | |
1567 consists of the visible window area plus a horizontally scrolled | |
1568 part to the left of the window. All x-values are relative to the | |
1569 start of this total display area. */ | |
1570 if (base_face_id != DEFAULT_FACE_ID) | |
1571 { | |
1572 /* Mode lines, menu bar in terminal frames. */ | |
1573 it->first_visible_x = 0; | |
1574 it->last_visible_x = XFASTINT (w->width) * CANON_X_UNIT (it->f); | |
1575 } | |
1576 else | |
1577 { | |
1578 it->first_visible_x | |
1579 = XFASTINT (it->w->hscroll) * CANON_X_UNIT (it->f); | |
1580 it->last_visible_x = (it->first_visible_x | |
1581 + window_box_width (w, TEXT_AREA)); | |
1582 | |
1583 /* If we truncate lines, leave room for the truncator glyph(s) at | |
1584 the right margin. Otherwise, leave room for the continuation | |
1585 glyph(s). Truncation and continuation glyphs are not inserted | |
1586 for window-based redisplay. */ | |
1587 if (!FRAME_WINDOW_P (it->f)) | |
1588 { | |
1589 if (it->truncate_lines_p) | |
1590 it->last_visible_x -= it->truncation_pixel_width; | |
1591 else | |
1592 it->last_visible_x -= it->continuation_pixel_width; | |
1593 } | |
1594 | |
25546 | 1595 it->header_line_p = WINDOW_WANTS_HEADER_LINE_P (w); |
1596 it->current_y = WINDOW_DISPLAY_HEADER_LINE_HEIGHT (w) + w->vscroll; | |
25012 | 1597 } |
1598 | |
1599 /* Leave room for a border glyph. */ | |
1600 if (!FRAME_WINDOW_P (it->f) | |
1601 && !WINDOW_RIGHTMOST_P (it->w)) | |
1602 it->last_visible_x -= 1; | |
1603 | |
1604 it->last_visible_y = window_text_bottom_y (w); | |
1605 | |
1606 /* For mode lines and alike, arrange for the first glyph having a | |
1607 left box line if the face specifies a box. */ | |
1608 if (base_face_id != DEFAULT_FACE_ID) | |
1609 { | |
1610 struct face *face; | |
1611 | |
1612 it->face_id = base_face_id; | |
1613 | |
1614 /* If we have a boxed mode line, make the first character appear | |
1615 with a left box line. */ | |
1616 face = FACE_FROM_ID (it->f, base_face_id); | |
1617 if (face->box != FACE_NO_BOX) | |
1618 it->start_of_box_run_p = 1; | |
1619 } | |
1620 | |
1621 /* If a buffer position was specified, set the iterator there, | |
1622 getting overlays and face properties from that position. */ | |
1623 if (charpos > 0) | |
1624 { | |
1625 it->end_charpos = ZV; | |
1626 it->face_id = -1; | |
1627 IT_CHARPOS (*it) = charpos; | |
1628 | |
1629 /* Compute byte position if not specified. */ | |
1630 if (bytepos <= 0) | |
1631 IT_BYTEPOS (*it) = CHAR_TO_BYTE (charpos); | |
1632 else | |
1633 IT_BYTEPOS (*it) = bytepos; | |
1634 | |
1635 /* Compute faces etc. */ | |
1636 reseat (it, it->current.pos, 1); | |
1637 } | |
1638 | |
1639 CHECK_IT (it); | |
1640 } | |
1641 | |
1642 | |
1643 /* Initialize IT for the display of window W with window start POS. */ | |
1644 | |
1645 void | |
1646 start_display (it, w, pos) | |
1647 struct it *it; | |
1648 struct window *w; | |
1649 struct text_pos pos; | |
1650 { | |
1651 int start_at_line_beg_p; | |
1652 struct glyph_row *row; | |
25546 | 1653 int first_vpos = WINDOW_WANTS_HEADER_LINE_P (w) ? 1 : 0; |
25012 | 1654 int first_y; |
1655 | |
1656 row = w->desired_matrix->rows + first_vpos; | |
1657 init_iterator (it, w, CHARPOS (pos), BYTEPOS (pos), row, DEFAULT_FACE_ID); | |
1658 first_y = it->current_y; | |
1659 | |
1660 /* If window start is not at a line start, move back to the line | |
1661 start. This makes sure that we take continuation lines into | |
1662 account. */ | |
1663 start_at_line_beg_p = (CHARPOS (pos) == BEGV | |
1664 || FETCH_BYTE (BYTEPOS (pos) - 1) == '\n'); | |
1665 if (!start_at_line_beg_p) | |
1666 reseat_at_previous_visible_line_start (it); | |
1667 | |
1668 /* If window start is not at a line start, skip forward to POS to | |
1669 get the correct continuation_lines_width and current_x. */ | |
1670 if (!start_at_line_beg_p) | |
1671 { | |
1672 move_it_to (it, CHARPOS (pos), -1, -1, -1, MOVE_TO_POS); | |
1673 | |
1674 /* If lines are continued, this line may end in the middle of a | |
1675 multi-glyph character (e.g. a control character displayed as | |
1676 \003, or in the middle of an overlay string). In this case | |
1677 move_it_to above will not have taken us to the start of | |
1678 the continuation line but to the end of the continued line. */ | |
30652
4ed1978642cb
(start_display): WHen starting display on a continuation
Gerd Moellmann <gerd@gnu.org>
parents:
30631
diff
changeset
|
1679 if (!it->truncate_lines_p) |
4ed1978642cb
(start_display): WHen starting display on a continuation
Gerd Moellmann <gerd@gnu.org>
parents:
30631
diff
changeset
|
1680 { |
4ed1978642cb
(start_display): WHen starting display on a continuation
Gerd Moellmann <gerd@gnu.org>
parents:
30631
diff
changeset
|
1681 if (it->current_x > 0) |
4ed1978642cb
(start_display): WHen starting display on a continuation
Gerd Moellmann <gerd@gnu.org>
parents:
30631
diff
changeset
|
1682 { |
4ed1978642cb
(start_display): WHen starting display on a continuation
Gerd Moellmann <gerd@gnu.org>
parents:
30631
diff
changeset
|
1683 if (it->current.dpvec_index >= 0 |
4ed1978642cb
(start_display): WHen starting display on a continuation
Gerd Moellmann <gerd@gnu.org>
parents:
30631
diff
changeset
|
1684 || it->current.overlay_string_index >= 0) |
4ed1978642cb
(start_display): WHen starting display on a continuation
Gerd Moellmann <gerd@gnu.org>
parents:
30631
diff
changeset
|
1685 { |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
1686 set_iterator_to_next (it, 1); |
30652
4ed1978642cb
(start_display): WHen starting display on a continuation
Gerd Moellmann <gerd@gnu.org>
parents:
30631
diff
changeset
|
1687 move_it_in_display_line_to (it, -1, -1, 0); |
4ed1978642cb
(start_display): WHen starting display on a continuation
Gerd Moellmann <gerd@gnu.org>
parents:
30631
diff
changeset
|
1688 } |
4ed1978642cb
(start_display): WHen starting display on a continuation
Gerd Moellmann <gerd@gnu.org>
parents:
30631
diff
changeset
|
1689 |
4ed1978642cb
(start_display): WHen starting display on a continuation
Gerd Moellmann <gerd@gnu.org>
parents:
30631
diff
changeset
|
1690 it->continuation_lines_width += it->current_x; |
4ed1978642cb
(start_display): WHen starting display on a continuation
Gerd Moellmann <gerd@gnu.org>
parents:
30631
diff
changeset
|
1691 } |
4ed1978642cb
(start_display): WHen starting display on a continuation
Gerd Moellmann <gerd@gnu.org>
parents:
30631
diff
changeset
|
1692 |
4ed1978642cb
(start_display): WHen starting display on a continuation
Gerd Moellmann <gerd@gnu.org>
parents:
30631
diff
changeset
|
1693 /* We're starting a new display line, not affected by the |
4ed1978642cb
(start_display): WHen starting display on a continuation
Gerd Moellmann <gerd@gnu.org>
parents:
30631
diff
changeset
|
1694 height of the continued line, so clear the appropriate |
4ed1978642cb
(start_display): WHen starting display on a continuation
Gerd Moellmann <gerd@gnu.org>
parents:
30631
diff
changeset
|
1695 fields in the iterator structure. */ |
4ed1978642cb
(start_display): WHen starting display on a continuation
Gerd Moellmann <gerd@gnu.org>
parents:
30631
diff
changeset
|
1696 it->max_ascent = it->max_descent = 0; |
4ed1978642cb
(start_display): WHen starting display on a continuation
Gerd Moellmann <gerd@gnu.org>
parents:
30631
diff
changeset
|
1697 it->max_phys_ascent = it->max_phys_descent = 0; |
25012 | 1698 } |
1699 | |
1700 it->current_y = first_y; | |
1701 it->vpos = 0; | |
1702 it->current_x = it->hpos = 0; | |
1703 } | |
1704 | |
1705 #if 0 /* Don't assert the following because start_display is sometimes | |
1706 called intentionally with a window start that is not at a | |
1707 line start. Please leave this code in as a comment. */ | |
1708 | |
1709 /* Window start should be on a line start, now. */ | |
1710 xassert (it->continuation_lines_width | |
1711 || IT_CHARPOS (it) == BEGV | |
1712 || FETCH_BYTE (IT_BYTEPOS (it) - 1) == '\n'); | |
1713 #endif /* 0 */ | |
1714 } | |
1715 | |
1716 | |
1717 /* Initialize IT for stepping through current_buffer in window W, | |
1718 starting at position POS that includes overlay string and display | |
1719 vector/ control character translation position information. */ | |
1720 | |
1721 static void | |
1722 init_from_display_pos (it, w, pos) | |
1723 struct it *it; | |
1724 struct window *w; | |
1725 struct display_pos *pos; | |
1726 { | |
1727 /* Keep in mind: the call to reseat in init_iterator skips invisible | |
1728 text, so we might end up at a position different from POS. This | |
1729 is only a problem when POS is a row start after a newline and an | |
1730 overlay starts there with an after-string, and the overlay has an | |
1731 invisible property. Since we don't skip invisible text in | |
1732 display_line and elsewhere immediately after consuming the | |
1733 newline before the row start, such a POS will not be in a string, | |
1734 but the call to init_iterator below will move us to the | |
1735 after-string. */ | |
1736 init_iterator (it, w, CHARPOS (pos->pos), BYTEPOS (pos->pos), | |
1737 NULL, DEFAULT_FACE_ID); | |
1738 | |
1739 /* If position is within an overlay string, set up IT to | |
1740 the right overlay string. */ | |
1741 if (pos->overlay_string_index >= 0) | |
1742 { | |
1743 int relative_index; | |
1744 | |
1745 /* We already have the first chunk of overlay strings in | |
1746 IT->overlay_strings. Load more until the one for | |
1747 pos->overlay_string_index is in IT->overlay_strings. */ | |
1748 if (pos->overlay_string_index >= OVERLAY_STRING_CHUNK_SIZE) | |
1749 { | |
1750 int n = pos->overlay_string_index / OVERLAY_STRING_CHUNK_SIZE; | |
1751 it->current.overlay_string_index = 0; | |
1752 while (n--) | |
1753 { | |
1754 load_overlay_strings (it); | |
1755 it->current.overlay_string_index += OVERLAY_STRING_CHUNK_SIZE; | |
1756 } | |
1757 } | |
1758 | |
1759 it->current.overlay_string_index = pos->overlay_string_index; | |
1760 relative_index = (it->current.overlay_string_index | |
1761 % OVERLAY_STRING_CHUNK_SIZE); | |
1762 it->string = it->overlay_strings[relative_index]; | |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
1763 xassert (STRINGP (it->string)); |
25012 | 1764 it->current.string_pos = pos->string_pos; |
1765 it->method = next_element_from_string; | |
1766 } | |
33863
2e449f784ca7
(init_from_display_pos): If POS says we're already after
Gerd Moellmann <gerd@gnu.org>
parents:
33840
diff
changeset
|
1767 else if (it->current.overlay_string_index >= 0) |
2e449f784ca7
(init_from_display_pos): If POS says we're already after
Gerd Moellmann <gerd@gnu.org>
parents:
33840
diff
changeset
|
1768 { |
2e449f784ca7
(init_from_display_pos): If POS says we're already after
Gerd Moellmann <gerd@gnu.org>
parents:
33840
diff
changeset
|
1769 /* If POS says we're already after an overlay string ending at |
2e449f784ca7
(init_from_display_pos): If POS says we're already after
Gerd Moellmann <gerd@gnu.org>
parents:
33840
diff
changeset
|
1770 POS, make sure to pop the iterator because it will be in |
2e449f784ca7
(init_from_display_pos): If POS says we're already after
Gerd Moellmann <gerd@gnu.org>
parents:
33840
diff
changeset
|
1771 front of that overlay string. When POS is ZV, we've thereby |
2e449f784ca7
(init_from_display_pos): If POS says we're already after
Gerd Moellmann <gerd@gnu.org>
parents:
33840
diff
changeset
|
1772 also ``processed'' overlay strings at ZV. */ |
34851
452349a9192a
(init_from_display_pos): Pop until the iterator's
Gerd Moellmann <gerd@gnu.org>
parents:
34847
diff
changeset
|
1773 while (it->sp) |
452349a9192a
(init_from_display_pos): Pop until the iterator's
Gerd Moellmann <gerd@gnu.org>
parents:
34847
diff
changeset
|
1774 pop_it (it); |
33863
2e449f784ca7
(init_from_display_pos): If POS says we're already after
Gerd Moellmann <gerd@gnu.org>
parents:
33840
diff
changeset
|
1775 it->current.overlay_string_index = -1; |
2e449f784ca7
(init_from_display_pos): If POS says we're already after
Gerd Moellmann <gerd@gnu.org>
parents:
33840
diff
changeset
|
1776 it->method = next_element_from_buffer; |
2e449f784ca7
(init_from_display_pos): If POS says we're already after
Gerd Moellmann <gerd@gnu.org>
parents:
33840
diff
changeset
|
1777 if (CHARPOS (pos->pos) == ZV) |
2e449f784ca7
(init_from_display_pos): If POS says we're already after
Gerd Moellmann <gerd@gnu.org>
parents:
33840
diff
changeset
|
1778 it->overlay_strings_at_end_processed_p = 1; |
2e449f784ca7
(init_from_display_pos): If POS says we're already after
Gerd Moellmann <gerd@gnu.org>
parents:
33840
diff
changeset
|
1779 } |
2e449f784ca7
(init_from_display_pos): If POS says we're already after
Gerd Moellmann <gerd@gnu.org>
parents:
33840
diff
changeset
|
1780 |
2e449f784ca7
(init_from_display_pos): If POS says we're already after
Gerd Moellmann <gerd@gnu.org>
parents:
33840
diff
changeset
|
1781 if (CHARPOS (pos->string_pos) >= 0) |
25012 | 1782 { |
1783 /* Recorded position is not in an overlay string, but in another | |
1784 string. This can only be a string from a `display' property. | |
1785 IT should already be filled with that string. */ | |
1786 it->current.string_pos = pos->string_pos; | |
1787 xassert (STRINGP (it->string)); | |
1788 } | |
1789 | |
1790 /* Restore position in display vector translations or control | |
1791 character translations. */ | |
1792 if (pos->dpvec_index >= 0) | |
1793 { | |
1794 /* This fills IT->dpvec. */ | |
1795 get_next_display_element (it); | |
1796 xassert (it->dpvec && it->current.dpvec_index == 0); | |
1797 it->current.dpvec_index = pos->dpvec_index; | |
1798 } | |
1799 | |
1800 CHECK_IT (it); | |
1801 } | |
1802 | |
1803 | |
1804 /* Initialize IT for stepping through current_buffer in window W | |
1805 starting at ROW->start. */ | |
1806 | |
1807 static void | |
1808 init_to_row_start (it, w, row) | |
1809 struct it *it; | |
1810 struct window *w; | |
1811 struct glyph_row *row; | |
1812 { | |
1813 init_from_display_pos (it, w, &row->start); | |
1814 it->continuation_lines_width = row->continuation_lines_width; | |
1815 CHECK_IT (it); | |
1816 } | |
1817 | |
1818 | |
1819 /* Initialize IT for stepping through current_buffer in window W | |
1820 starting in the line following ROW, i.e. starting at ROW->end. */ | |
1821 | |
1822 static void | |
1823 init_to_row_end (it, w, row) | |
1824 struct it *it; | |
1825 struct window *w; | |
1826 struct glyph_row *row; | |
1827 { | |
1828 init_from_display_pos (it, w, &row->end); | |
1829 | |
1830 if (row->continued_p) | |
1831 it->continuation_lines_width = (row->continuation_lines_width | |
1832 + row->pixel_width); | |
1833 CHECK_IT (it); | |
1834 } | |
1835 | |
1836 | |
1837 | |
1838 | |
1839 /*********************************************************************** | |
1840 Text properties | |
1841 ***********************************************************************/ | |
1842 | |
1843 /* Called when IT reaches IT->stop_charpos. Handle text property and | |
1844 overlay changes. Set IT->stop_charpos to the next position where | |
1845 to stop. */ | |
1846 | |
1847 static void | |
1848 handle_stop (it) | |
1849 struct it *it; | |
1850 { | |
1851 enum prop_handled handled; | |
1852 int handle_overlay_change_p = 1; | |
1853 struct props *p; | |
1854 | |
1855 it->dpvec = NULL; | |
1856 it->current.dpvec_index = -1; | |
1857 | |
1858 do | |
1859 { | |
1860 handled = HANDLED_NORMALLY; | |
1861 | |
1862 /* Call text property handlers. */ | |
1863 for (p = it_props; p->handler; ++p) | |
1864 { | |
1865 handled = p->handler (it); | |
29858
54f927c5f436
(handle_stop): Initialize it->add_overlay_start to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
29817
diff
changeset
|
1866 |
25012 | 1867 if (handled == HANDLED_RECOMPUTE_PROPS) |
1868 break; | |
1869 else if (handled == HANDLED_RETURN) | |
1870 return; | |
1871 else if (handled == HANDLED_OVERLAY_STRING_CONSUMED) | |
1872 handle_overlay_change_p = 0; | |
1873 } | |
1874 | |
1875 if (handled != HANDLED_RECOMPUTE_PROPS) | |
1876 { | |
1877 /* Don't check for overlay strings below when set to deliver | |
1878 characters from a display vector. */ | |
1879 if (it->method == next_element_from_display_vector) | |
1880 handle_overlay_change_p = 0; | |
1881 | |
1882 /* Handle overlay changes. */ | |
1883 if (handle_overlay_change_p) | |
1884 handled = handle_overlay_change (it); | |
1885 | |
1886 /* Determine where to stop next. */ | |
1887 if (handled == HANDLED_NORMALLY) | |
1888 compute_stop_pos (it); | |
1889 } | |
1890 } | |
1891 while (handled == HANDLED_RECOMPUTE_PROPS); | |
1892 } | |
1893 | |
1894 | |
1895 /* Compute IT->stop_charpos from text property and overlay change | |
1896 information for IT's current position. */ | |
1897 | |
1898 static void | |
1899 compute_stop_pos (it) | |
1900 struct it *it; | |
1901 { | |
1902 register INTERVAL iv, next_iv; | |
1903 Lisp_Object object, limit, position; | |
1904 | |
1905 /* If nowhere else, stop at the end. */ | |
1906 it->stop_charpos = it->end_charpos; | |
1907 | |
1908 if (STRINGP (it->string)) | |
1909 { | |
1910 /* Strings are usually short, so don't limit the search for | |
1911 properties. */ | |
1912 object = it->string; | |
1913 limit = Qnil; | |
1914 XSETFASTINT (position, IT_STRING_CHARPOS (*it)); | |
1915 } | |
1916 else | |
1917 { | |
1918 int charpos; | |
1919 | |
1920 /* If next overlay change is in front of the current stop pos | |
1921 (which is IT->end_charpos), stop there. Note: value of | |
1922 next_overlay_change is point-max if no overlay change | |
1923 follows. */ | |
1924 charpos = next_overlay_change (IT_CHARPOS (*it)); | |
1925 if (charpos < it->stop_charpos) | |
1926 it->stop_charpos = charpos; | |
1927 | |
1928 /* If showing the region, we have to stop at the region | |
1929 start or end because the face might change there. */ | |
1930 if (it->region_beg_charpos > 0) | |
1931 { | |
1932 if (IT_CHARPOS (*it) < it->region_beg_charpos) | |
1933 it->stop_charpos = min (it->stop_charpos, it->region_beg_charpos); | |
1934 else if (IT_CHARPOS (*it) < it->region_end_charpos) | |
1935 it->stop_charpos = min (it->stop_charpos, it->region_end_charpos); | |
1936 } | |
1937 | |
1938 /* Set up variables for computing the stop position from text | |
1939 property changes. */ | |
1940 XSETBUFFER (object, current_buffer); | |
1941 XSETFASTINT (limit, IT_CHARPOS (*it) + TEXT_PROP_DISTANCE_LIMIT); | |
1942 XSETFASTINT (position, IT_CHARPOS (*it)); | |
1943 | |
1944 } | |
1945 | |
1946 /* Get the interval containing IT's position. Value is a null | |
1947 interval if there isn't such an interval. */ | |
1948 iv = validate_interval_range (object, &position, &position, 0); | |
1949 if (!NULL_INTERVAL_P (iv)) | |
1950 { | |
1951 Lisp_Object values_here[LAST_PROP_IDX]; | |
1952 struct props *p; | |
1953 | |
1954 /* Get properties here. */ | |
1955 for (p = it_props; p->handler; ++p) | |
1956 values_here[p->idx] = textget (iv->plist, *p->name); | |
1957 | |
1958 /* Look for an interval following iv that has different | |
1959 properties. */ | |
1960 for (next_iv = next_interval (iv); | |
1961 (!NULL_INTERVAL_P (next_iv) | |
1962 && (NILP (limit) | |
1963 || XFASTINT (limit) > next_iv->position)); | |
1964 next_iv = next_interval (next_iv)) | |
1965 { | |
1966 for (p = it_props; p->handler; ++p) | |
1967 { | |
1968 Lisp_Object new_value; | |
1969 | |
1970 new_value = textget (next_iv->plist, *p->name); | |
1971 if (!EQ (values_here[p->idx], new_value)) | |
1972 break; | |
1973 } | |
1974 | |
1975 if (p->handler) | |
1976 break; | |
1977 } | |
1978 | |
1979 if (!NULL_INTERVAL_P (next_iv)) | |
1980 { | |
1981 if (INTEGERP (limit) | |
1982 && next_iv->position >= XFASTINT (limit)) | |
1983 /* No text property change up to limit. */ | |
1984 it->stop_charpos = min (XFASTINT (limit), it->stop_charpos); | |
1985 else | |
1986 /* Text properties change in next_iv. */ | |
1987 it->stop_charpos = min (it->stop_charpos, next_iv->position); | |
1988 } | |
1989 } | |
1990 | |
1991 xassert (STRINGP (it->string) | |
1992 || (it->stop_charpos >= BEGV | |
1993 && it->stop_charpos >= IT_CHARPOS (*it))); | |
1994 } | |
1995 | |
1996 | |
1997 /* Return the position of the next overlay change after POS in | |
1998 current_buffer. Value is point-max if no overlay change | |
1999 follows. This is like `next-overlay-change' but doesn't use | |
2000 xmalloc. */ | |
2001 | |
2002 static int | |
2003 next_overlay_change (pos) | |
2004 int pos; | |
2005 { | |
2006 int noverlays; | |
2007 int endpos; | |
2008 Lisp_Object *overlays; | |
2009 int len; | |
2010 int i; | |
2011 | |
2012 /* Get all overlays at the given position. */ | |
2013 len = 10; | |
2014 overlays = (Lisp_Object *) alloca (len * sizeof *overlays); | |
30697
0b56d5da235e
(next_overlay_change): Update call to overlays_at.
Miles Bader <miles@gnu.org>
parents:
30675
diff
changeset
|
2015 noverlays = overlays_at (pos, 0, &overlays, &len, &endpos, NULL, 1); |
25012 | 2016 if (noverlays > len) |
2017 { | |
2018 len = noverlays; | |
2019 overlays = (Lisp_Object *) alloca (len * sizeof *overlays); | |
30697
0b56d5da235e
(next_overlay_change): Update call to overlays_at.
Miles Bader <miles@gnu.org>
parents:
30675
diff
changeset
|
2020 noverlays = overlays_at (pos, 0, &overlays, &len, &endpos, NULL, 1); |
25012 | 2021 } |
2022 | |
2023 /* If any of these overlays ends before endpos, | |
2024 use its ending point instead. */ | |
2025 for (i = 0; i < noverlays; ++i) | |
2026 { | |
2027 Lisp_Object oend; | |
2028 int oendpos; | |
2029 | |
2030 oend = OVERLAY_END (overlays[i]); | |
2031 oendpos = OVERLAY_POSITION (oend); | |
2032 endpos = min (endpos, oendpos); | |
2033 } | |
2034 | |
2035 return endpos; | |
2036 } | |
2037 | |
2038 | |
2039 | |
2040 /*********************************************************************** | |
2041 Fontification | |
2042 ***********************************************************************/ | |
2043 | |
2044 /* Handle changes in the `fontified' property of the current buffer by | |
2045 calling hook functions from Qfontification_functions to fontify | |
2046 regions of text. */ | |
2047 | |
2048 static enum prop_handled | |
2049 handle_fontified_prop (it) | |
2050 struct it *it; | |
2051 { | |
2052 Lisp_Object prop, pos; | |
2053 enum prop_handled handled = HANDLED_NORMALLY; | |
2054 | |
2055 /* Get the value of the `fontified' property at IT's current buffer | |
2056 position. (The `fontified' property doesn't have a special | |
2057 meaning in strings.) If the value is nil, call functions from | |
2058 Qfontification_functions. */ | |
2059 if (!STRINGP (it->string) | |
2060 && it->s == NULL | |
2061 && !NILP (Vfontification_functions) | |
31610
29c6825c59a8
(handle_fontified_prop): While running fontification
Gerd Moellmann <gerd@gnu.org>
parents:
31506
diff
changeset
|
2062 && !NILP (Vrun_hooks) |
25012 | 2063 && (pos = make_number (IT_CHARPOS (*it)), |
2064 prop = Fget_char_property (pos, Qfontified, Qnil), | |
2065 NILP (prop))) | |
2066 { | |
33600
c5f64497e92c
Use BINDING_STACK_SIZE throughout.
Gerd Moellmann <gerd@gnu.org>
parents:
33594
diff
changeset
|
2067 int count = BINDING_STACK_SIZE (); |
31610
29c6825c59a8
(handle_fontified_prop): While running fontification
Gerd Moellmann <gerd@gnu.org>
parents:
31506
diff
changeset
|
2068 Lisp_Object val; |
29c6825c59a8
(handle_fontified_prop): While running fontification
Gerd Moellmann <gerd@gnu.org>
parents:
31506
diff
changeset
|
2069 |
29c6825c59a8
(handle_fontified_prop): While running fontification
Gerd Moellmann <gerd@gnu.org>
parents:
31506
diff
changeset
|
2070 val = Vfontification_functions; |
29c6825c59a8
(handle_fontified_prop): While running fontification
Gerd Moellmann <gerd@gnu.org>
parents:
31506
diff
changeset
|
2071 specbind (Qfontification_functions, Qnil); |
29c6825c59a8
(handle_fontified_prop): While running fontification
Gerd Moellmann <gerd@gnu.org>
parents:
31506
diff
changeset
|
2072 specbind (Qafter_change_functions, Qnil); |
29c6825c59a8
(handle_fontified_prop): While running fontification
Gerd Moellmann <gerd@gnu.org>
parents:
31506
diff
changeset
|
2073 |
29c6825c59a8
(handle_fontified_prop): While running fontification
Gerd Moellmann <gerd@gnu.org>
parents:
31506
diff
changeset
|
2074 if (!CONSP (val) || EQ (XCAR (val), Qlambda)) |
32175
e5d99e8cbd94
(handle_single_display_prop): Use safe_call1.
Gerd Moellmann <gerd@gnu.org>
parents:
31931
diff
changeset
|
2075 safe_call1 (val, pos); |
31610
29c6825c59a8
(handle_fontified_prop): While running fontification
Gerd Moellmann <gerd@gnu.org>
parents:
31506
diff
changeset
|
2076 else |
29c6825c59a8
(handle_fontified_prop): While running fontification
Gerd Moellmann <gerd@gnu.org>
parents:
31506
diff
changeset
|
2077 { |
29c6825c59a8
(handle_fontified_prop): While running fontification
Gerd Moellmann <gerd@gnu.org>
parents:
31506
diff
changeset
|
2078 Lisp_Object globals, fn; |
29c6825c59a8
(handle_fontified_prop): While running fontification
Gerd Moellmann <gerd@gnu.org>
parents:
31506
diff
changeset
|
2079 struct gcpro gcpro1, gcpro2; |
29c6825c59a8
(handle_fontified_prop): While running fontification
Gerd Moellmann <gerd@gnu.org>
parents:
31506
diff
changeset
|
2080 |
29c6825c59a8
(handle_fontified_prop): While running fontification
Gerd Moellmann <gerd@gnu.org>
parents:
31506
diff
changeset
|
2081 globals = Qnil; |
29c6825c59a8
(handle_fontified_prop): While running fontification
Gerd Moellmann <gerd@gnu.org>
parents:
31506
diff
changeset
|
2082 GCPRO2 (val, globals); |
29c6825c59a8
(handle_fontified_prop): While running fontification
Gerd Moellmann <gerd@gnu.org>
parents:
31506
diff
changeset
|
2083 |
29c6825c59a8
(handle_fontified_prop): While running fontification
Gerd Moellmann <gerd@gnu.org>
parents:
31506
diff
changeset
|
2084 for (; CONSP (val); val = XCDR (val)) |
29c6825c59a8
(handle_fontified_prop): While running fontification
Gerd Moellmann <gerd@gnu.org>
parents:
31506
diff
changeset
|
2085 { |
29c6825c59a8
(handle_fontified_prop): While running fontification
Gerd Moellmann <gerd@gnu.org>
parents:
31506
diff
changeset
|
2086 fn = XCAR (val); |
29c6825c59a8
(handle_fontified_prop): While running fontification
Gerd Moellmann <gerd@gnu.org>
parents:
31506
diff
changeset
|
2087 |
29c6825c59a8
(handle_fontified_prop): While running fontification
Gerd Moellmann <gerd@gnu.org>
parents:
31506
diff
changeset
|
2088 if (EQ (fn, Qt)) |
29c6825c59a8
(handle_fontified_prop): While running fontification
Gerd Moellmann <gerd@gnu.org>
parents:
31506
diff
changeset
|
2089 { |
29c6825c59a8
(handle_fontified_prop): While running fontification
Gerd Moellmann <gerd@gnu.org>
parents:
31506
diff
changeset
|
2090 /* A value of t indicates this hook has a local |
29c6825c59a8
(handle_fontified_prop): While running fontification
Gerd Moellmann <gerd@gnu.org>
parents:
31506
diff
changeset
|
2091 binding; it means to run the global binding too. |
29c6825c59a8
(handle_fontified_prop): While running fontification
Gerd Moellmann <gerd@gnu.org>
parents:
31506
diff
changeset
|
2092 In a global value, t should not occur. If it |
29c6825c59a8
(handle_fontified_prop): While running fontification
Gerd Moellmann <gerd@gnu.org>
parents:
31506
diff
changeset
|
2093 does, we must ignore it to avoid an endless |
29c6825c59a8
(handle_fontified_prop): While running fontification
Gerd Moellmann <gerd@gnu.org>
parents:
31506
diff
changeset
|
2094 loop. */ |
29c6825c59a8
(handle_fontified_prop): While running fontification
Gerd Moellmann <gerd@gnu.org>
parents:
31506
diff
changeset
|
2095 for (globals = Fdefault_value (Qfontification_functions); |
29c6825c59a8
(handle_fontified_prop): While running fontification
Gerd Moellmann <gerd@gnu.org>
parents:
31506
diff
changeset
|
2096 CONSP (globals); |
29c6825c59a8
(handle_fontified_prop): While running fontification
Gerd Moellmann <gerd@gnu.org>
parents:
31506
diff
changeset
|
2097 globals = XCDR (globals)) |
29c6825c59a8
(handle_fontified_prop): While running fontification
Gerd Moellmann <gerd@gnu.org>
parents:
31506
diff
changeset
|
2098 { |
29c6825c59a8
(handle_fontified_prop): While running fontification
Gerd Moellmann <gerd@gnu.org>
parents:
31506
diff
changeset
|
2099 fn = XCAR (globals); |
29c6825c59a8
(handle_fontified_prop): While running fontification
Gerd Moellmann <gerd@gnu.org>
parents:
31506
diff
changeset
|
2100 if (!EQ (fn, Qt)) |
32175
e5d99e8cbd94
(handle_single_display_prop): Use safe_call1.
Gerd Moellmann <gerd@gnu.org>
parents:
31931
diff
changeset
|
2101 safe_call1 (fn, pos); |
31610
29c6825c59a8
(handle_fontified_prop): While running fontification
Gerd Moellmann <gerd@gnu.org>
parents:
31506
diff
changeset
|
2102 } |
29c6825c59a8
(handle_fontified_prop): While running fontification
Gerd Moellmann <gerd@gnu.org>
parents:
31506
diff
changeset
|
2103 } |
29c6825c59a8
(handle_fontified_prop): While running fontification
Gerd Moellmann <gerd@gnu.org>
parents:
31506
diff
changeset
|
2104 else |
32175
e5d99e8cbd94
(handle_single_display_prop): Use safe_call1.
Gerd Moellmann <gerd@gnu.org>
parents:
31931
diff
changeset
|
2105 safe_call1 (fn, pos); |
31610
29c6825c59a8
(handle_fontified_prop): While running fontification
Gerd Moellmann <gerd@gnu.org>
parents:
31506
diff
changeset
|
2106 } |
29c6825c59a8
(handle_fontified_prop): While running fontification
Gerd Moellmann <gerd@gnu.org>
parents:
31506
diff
changeset
|
2107 |
29c6825c59a8
(handle_fontified_prop): While running fontification
Gerd Moellmann <gerd@gnu.org>
parents:
31506
diff
changeset
|
2108 UNGCPRO; |
29c6825c59a8
(handle_fontified_prop): While running fontification
Gerd Moellmann <gerd@gnu.org>
parents:
31506
diff
changeset
|
2109 } |
29c6825c59a8
(handle_fontified_prop): While running fontification
Gerd Moellmann <gerd@gnu.org>
parents:
31506
diff
changeset
|
2110 |
29c6825c59a8
(handle_fontified_prop): While running fontification
Gerd Moellmann <gerd@gnu.org>
parents:
31506
diff
changeset
|
2111 unbind_to (count, Qnil); |
25012 | 2112 |
2113 /* Return HANDLED_RECOMPUTE_PROPS only if function fontified | |
2114 something. This avoids an endless loop if they failed to | |
2115 fontify the text for which reason ever. */ | |
2116 if (!NILP (Fget_char_property (pos, Qfontified, Qnil))) | |
2117 handled = HANDLED_RECOMPUTE_PROPS; | |
2118 } | |
2119 | |
2120 return handled; | |
2121 } | |
2122 | |
2123 | |
2124 | |
2125 /*********************************************************************** | |
2126 Faces | |
2127 ***********************************************************************/ | |
2128 | |
2129 /* Set up iterator IT from face properties at its current position. | |
2130 Called from handle_stop. */ | |
2131 | |
2132 static enum prop_handled | |
2133 handle_face_prop (it) | |
2134 struct it *it; | |
2135 { | |
2136 int new_face_id, next_stop; | |
2137 | |
2138 if (!STRINGP (it->string)) | |
2139 { | |
2140 new_face_id | |
2141 = face_at_buffer_position (it->w, | |
2142 IT_CHARPOS (*it), | |
2143 it->region_beg_charpos, | |
2144 it->region_end_charpos, | |
2145 &next_stop, | |
2146 (IT_CHARPOS (*it) | |
2147 + TEXT_PROP_DISTANCE_LIMIT), | |
2148 0); | |
2149 | |
2150 /* Is this a start of a run of characters with box face? | |
2151 Caveat: this can be called for a freshly initialized | |
2152 iterator; face_id is -1 is this case. We know that the new | |
2153 face will not change until limit, i.e. if the new face has a | |
2154 box, all characters up to limit will have one. But, as | |
2155 usual, we don't know whether limit is really the end. */ | |
2156 if (new_face_id != it->face_id) | |
2157 { | |
2158 struct face *new_face = FACE_FROM_ID (it->f, new_face_id); | |
2159 | |
2160 /* If new face has a box but old face has not, this is | |
2161 the start of a run of characters with box, i.e. it has | |
2162 a shadow on the left side. The value of face_id of the | |
2163 iterator will be -1 if this is the initial call that gets | |
2164 the face. In this case, we have to look in front of IT's | |
2165 position and see whether there is a face != new_face_id. */ | |
2166 it->start_of_box_run_p | |
2167 = (new_face->box != FACE_NO_BOX | |
2168 && (it->face_id >= 0 | |
2169 || IT_CHARPOS (*it) == BEG | |
2170 || new_face_id != face_before_it_pos (it))); | |
2171 it->face_box_p = new_face->box != FACE_NO_BOX; | |
2172 } | |
2173 } | |
2174 else | |
2175 { | |
34288
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2176 int base_face_id, bufpos; |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2177 |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2178 if (it->current.overlay_string_index >= 0) |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2179 bufpos = IT_CHARPOS (*it); |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2180 else |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2181 bufpos = 0; |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2182 |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2183 /* For strings from a buffer, i.e. overlay strings or strings |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2184 from a `display' property, use the face at IT's current |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2185 buffer position as the base face to merge with, so that |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2186 overlay strings appear in the same face as surrounding |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2187 text, unless they specify their own faces. */ |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2188 base_face_id = underlying_face_id (it); |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2189 |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2190 new_face_id = face_at_string_position (it->w, |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2191 it->string, |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2192 IT_STRING_CHARPOS (*it), |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2193 bufpos, |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2194 it->region_beg_charpos, |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2195 it->region_end_charpos, |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2196 &next_stop, |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2197 base_face_id); |
25012 | 2198 |
2199 #if 0 /* This shouldn't be neccessary. Let's check it. */ | |
2200 /* If IT is used to display a mode line we would really like to | |
2201 use the mode line face instead of the frame's default face. */ | |
2202 if (it->glyph_row == MATRIX_MODE_LINE_ROW (it->w->desired_matrix) | |
2203 && new_face_id == DEFAULT_FACE_ID) | |
2204 new_face_id = MODE_LINE_FACE_ID; | |
2205 #endif | |
2206 | |
2207 /* Is this a start of a run of characters with box? Caveat: | |
2208 this can be called for a freshly allocated iterator; face_id | |
2209 is -1 is this case. We know that the new face will not | |
2210 change until the next check pos, i.e. if the new face has a | |
2211 box, all characters up to that position will have a | |
2212 box. But, as usual, we don't know whether that position | |
2213 is really the end. */ | |
2214 if (new_face_id != it->face_id) | |
2215 { | |
2216 struct face *new_face = FACE_FROM_ID (it->f, new_face_id); | |
2217 struct face *old_face = FACE_FROM_ID (it->f, it->face_id); | |
2218 | |
2219 /* If new face has a box but old face hasn't, this is the | |
2220 start of a run of characters with box, i.e. it has a | |
2221 shadow on the left side. */ | |
2222 it->start_of_box_run_p | |
2223 = new_face->box && (old_face == NULL || !old_face->box); | |
2224 it->face_box_p = new_face->box != FACE_NO_BOX; | |
2225 } | |
2226 } | |
2227 | |
2228 it->face_id = new_face_id; | |
2229 return HANDLED_NORMALLY; | |
2230 } | |
2231 | |
2232 | |
34288
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2233 /* Return the ID of the face ``underlying'' IT's current position, |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2234 which is in a string. If the iterator is associated with a |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2235 buffer, return the face at IT's current buffer position. |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2236 Otherwise, use the iterator's base_face_id. */ |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2237 |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2238 static int |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2239 underlying_face_id (it) |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2240 struct it *it; |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2241 { |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2242 int face_id = it->base_face_id, i; |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2243 |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2244 xassert (STRINGP (it->string)); |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2245 |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2246 for (i = it->sp - 1; i >= 0; --i) |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2247 if (NILP (it->stack[i].string)) |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2248 face_id = it->stack[i].face_id; |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2249 |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2250 return face_id; |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2251 } |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2252 |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2253 |
25012 | 2254 /* Compute the face one character before or after the current position |
2255 of IT. BEFORE_P non-zero means get the face in front of IT's | |
2256 position. Value is the id of the face. */ | |
2257 | |
2258 static int | |
2259 face_before_or_after_it_pos (it, before_p) | |
2260 struct it *it; | |
2261 int before_p; | |
2262 { | |
2263 int face_id, limit; | |
2264 int next_check_charpos; | |
2265 struct text_pos pos; | |
2266 | |
2267 xassert (it->s == NULL); | |
2268 | |
2269 if (STRINGP (it->string)) | |
2270 { | |
34288
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2271 int bufpos, base_face_id; |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2272 |
25012 | 2273 /* No face change past the end of the string (for the case |
2274 we are padding with spaces). No face change before the | |
2275 string start. */ | |
2276 if (IT_STRING_CHARPOS (*it) >= XSTRING (it->string)->size | |
2277 || (IT_STRING_CHARPOS (*it) == 0 && before_p)) | |
2278 return it->face_id; | |
2279 | |
2280 /* Set pos to the position before or after IT's current position. */ | |
2281 if (before_p) | |
2282 pos = string_pos (IT_STRING_CHARPOS (*it) - 1, it->string); | |
2283 else | |
26874
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
2284 /* For composition, we must check the character after the |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
2285 composition. */ |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
2286 pos = (it->what == IT_COMPOSITION |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
2287 ? string_pos (IT_STRING_CHARPOS (*it) + it->cmp_len, it->string) |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
2288 : string_pos (IT_STRING_CHARPOS (*it) + 1, it->string)); |
25012 | 2289 |
34288
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2290 if (it->current.overlay_string_index >= 0) |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2291 bufpos = IT_CHARPOS (*it); |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2292 else |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2293 bufpos = 0; |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2294 |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2295 base_face_id = underlying_face_id (it); |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2296 |
25012 | 2297 /* Get the face for ASCII, or unibyte. */ |
34288
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2298 face_id = face_at_string_position (it->w, |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2299 it->string, |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2300 CHARPOS (pos), |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2301 bufpos, |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2302 it->region_beg_charpos, |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2303 it->region_end_charpos, |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2304 &next_check_charpos, |
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2305 base_face_id); |
25012 | 2306 |
2307 /* Correct the face for charsets different from ASCII. Do it | |
2308 for the multibyte case only. The face returned above is | |
2309 suitable for unibyte text if IT->string is unibyte. */ | |
2310 if (STRING_MULTIBYTE (it->string)) | |
2311 { | |
2312 unsigned char *p = XSTRING (it->string)->data + BYTEPOS (pos); | |
2313 int rest = STRING_BYTES (XSTRING (it->string)) - BYTEPOS (pos); | |
28228
84be12f331b8
(charset_at_position): Function removed.
Kenichi Handa <handa@m17n.org>
parents:
28206
diff
changeset
|
2314 int c, len; |
84be12f331b8
(charset_at_position): Function removed.
Kenichi Handa <handa@m17n.org>
parents:
28206
diff
changeset
|
2315 struct face *face = FACE_FROM_ID (it->f, face_id); |
25012 | 2316 |
25096
1af1088d3812
(string_char_and_length): New. Use it everywhere
Gerd Moellmann <gerd@gnu.org>
parents:
25063
diff
changeset
|
2317 c = string_char_and_length (p, rest, &len); |
28228
84be12f331b8
(charset_at_position): Function removed.
Kenichi Handa <handa@m17n.org>
parents:
28206
diff
changeset
|
2318 face_id = FACE_FOR_CHAR (it->f, face, c); |
25012 | 2319 } |
2320 } | |
2321 else | |
2322 { | |
25242
28067247ff90
(face_before_or_after_it_pos): If position after
Gerd Moellmann <gerd@gnu.org>
parents:
25197
diff
changeset
|
2323 if ((IT_CHARPOS (*it) >= ZV && !before_p) |
28067247ff90
(face_before_or_after_it_pos): If position after
Gerd Moellmann <gerd@gnu.org>
parents:
25197
diff
changeset
|
2324 || (IT_CHARPOS (*it) <= BEGV && before_p)) |
28067247ff90
(face_before_or_after_it_pos): If position after
Gerd Moellmann <gerd@gnu.org>
parents:
25197
diff
changeset
|
2325 return it->face_id; |
28067247ff90
(face_before_or_after_it_pos): If position after
Gerd Moellmann <gerd@gnu.org>
parents:
25197
diff
changeset
|
2326 |
25012 | 2327 limit = IT_CHARPOS (*it) + TEXT_PROP_DISTANCE_LIMIT; |
2328 pos = it->current.pos; | |
2329 | |
2330 if (before_p) | |
28362
a568b23317fe
(face_before_or_after_it_pos): Pass multibyteness
Gerd Moellmann <gerd@gnu.org>
parents:
28228
diff
changeset
|
2331 DEC_TEXT_POS (pos, it->multibyte_p); |
25012 | 2332 else |
26874
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
2333 { |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
2334 if (it->what == IT_COMPOSITION) |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
2335 /* For composition, we must check the position after the |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
2336 composition. */ |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
2337 pos.charpos += it->cmp_len, pos.bytepos += it->len; |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
2338 else |
28362
a568b23317fe
(face_before_or_after_it_pos): Pass multibyteness
Gerd Moellmann <gerd@gnu.org>
parents:
28228
diff
changeset
|
2339 INC_TEXT_POS (pos, it->multibyte_p); |
26874
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
2340 } |
34288
28c3e736ae57
(underlying_face_id): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34252
diff
changeset
|
2341 |
25012 | 2342 /* Determine face for CHARSET_ASCII, or unibyte. */ |
2343 face_id = face_at_buffer_position (it->w, | |
2344 CHARPOS (pos), | |
2345 it->region_beg_charpos, | |
2346 it->region_end_charpos, | |
2347 &next_check_charpos, | |
2348 limit, 0); | |
2349 | |
2350 /* Correct the face for charsets different from ASCII. Do it | |
2351 for the multibyte case only. The face returned above is | |
2352 suitable for unibyte text if current_buffer is unibyte. */ | |
2353 if (it->multibyte_p) | |
2354 { | |
28228
84be12f331b8
(charset_at_position): Function removed.
Kenichi Handa <handa@m17n.org>
parents:
28206
diff
changeset
|
2355 int c = FETCH_MULTIBYTE_CHAR (CHARPOS (pos)); |
84be12f331b8
(charset_at_position): Function removed.
Kenichi Handa <handa@m17n.org>
parents:
28206
diff
changeset
|
2356 struct face *face = FACE_FROM_ID (it->f, face_id); |
84be12f331b8
(charset_at_position): Function removed.
Kenichi Handa <handa@m17n.org>
parents:
28206
diff
changeset
|
2357 face_id = FACE_FOR_CHAR (it->f, face, c); |
25012 | 2358 } |
2359 } | |
2360 | |
2361 return face_id; | |
2362 } | |
2363 | |
2364 | |
2365 | |
2366 /*********************************************************************** | |
2367 Invisible text | |
2368 ***********************************************************************/ | |
2369 | |
2370 /* Set up iterator IT from invisible properties at its current | |
2371 position. Called from handle_stop. */ | |
2372 | |
2373 static enum prop_handled | |
2374 handle_invisible_prop (it) | |
2375 struct it *it; | |
2376 { | |
2377 enum prop_handled handled = HANDLED_NORMALLY; | |
2378 | |
2379 if (STRINGP (it->string)) | |
2380 { | |
2381 extern Lisp_Object Qinvisible; | |
2382 Lisp_Object prop, end_charpos, limit, charpos; | |
2383 | |
2384 /* Get the value of the invisible text property at the | |
2385 current position. Value will be nil if there is no such | |
2386 property. */ | |
2387 XSETFASTINT (charpos, IT_STRING_CHARPOS (*it)); | |
2388 prop = Fget_text_property (charpos, Qinvisible, it->string); | |
2389 | |
29191
3977c8167022
(handle_invisible_prop): Don't try to skip over
Gerd Moellmann <gerd@gnu.org>
parents:
29185
diff
changeset
|
2390 if (!NILP (prop) |
3977c8167022
(handle_invisible_prop): Don't try to skip over
Gerd Moellmann <gerd@gnu.org>
parents:
29185
diff
changeset
|
2391 && IT_STRING_CHARPOS (*it) < it->end_charpos) |
25012 | 2392 { |
2393 handled = HANDLED_RECOMPUTE_PROPS; | |
2394 | |
2395 /* Get the position at which the next change of the | |
2396 invisible text property can be found in IT->string. | |
2397 Value will be nil if the property value is the same for | |
2398 all the rest of IT->string. */ | |
2399 XSETINT (limit, XSTRING (it->string)->size); | |
2400 end_charpos = Fnext_single_property_change (charpos, Qinvisible, | |
2401 it->string, limit); | |
2402 | |
2403 /* Text at current position is invisible. The next | |
2404 change in the property is at position end_charpos. | |
2405 Move IT's current position to that position. */ | |
2406 if (INTEGERP (end_charpos) | |
2407 && XFASTINT (end_charpos) < XFASTINT (limit)) | |
2408 { | |
2409 struct text_pos old; | |
2410 old = it->current.string_pos; | |
2411 IT_STRING_CHARPOS (*it) = XFASTINT (end_charpos); | |
2412 compute_string_pos (&it->current.string_pos, old, it->string); | |
2413 } | |
2414 else | |
2415 { | |
2416 /* The rest of the string is invisible. If this is an | |
2417 overlay string, proceed with the next overlay string | |
2418 or whatever comes and return a character from there. */ | |
2419 if (it->current.overlay_string_index >= 0) | |
2420 { | |
2421 next_overlay_string (it); | |
2422 /* Don't check for overlay strings when we just | |
2423 finished processing them. */ | |
2424 handled = HANDLED_OVERLAY_STRING_CONSUMED; | |
2425 } | |
2426 else | |
2427 { | |
2428 struct Lisp_String *s = XSTRING (it->string); | |
2429 IT_STRING_CHARPOS (*it) = s->size; | |
2430 IT_STRING_BYTEPOS (*it) = STRING_BYTES (s); | |
2431 } | |
2432 } | |
2433 } | |
2434 } | |
2435 else | |
2436 { | |
2437 int visible_p, newpos, next_stop; | |
2438 Lisp_Object pos, prop; | |
2439 | |
2440 /* First of all, is there invisible text at this position? */ | |
2441 XSETFASTINT (pos, IT_CHARPOS (*it)); | |
2442 prop = Fget_char_property (pos, Qinvisible, it->window); | |
2443 | |
2444 /* If we are on invisible text, skip over it. */ | |
29191
3977c8167022
(handle_invisible_prop): Don't try to skip over
Gerd Moellmann <gerd@gnu.org>
parents:
29185
diff
changeset
|
2445 if (TEXT_PROP_MEANS_INVISIBLE (prop) |
3977c8167022
(handle_invisible_prop): Don't try to skip over
Gerd Moellmann <gerd@gnu.org>
parents:
29185
diff
changeset
|
2446 && IT_CHARPOS (*it) < it->end_charpos) |
25012 | 2447 { |
2448 /* Record whether we have to display an ellipsis for the | |
2449 invisible text. */ | |
2450 int display_ellipsis_p | |
2451 = TEXT_PROP_MEANS_INVISIBLE_WITH_ELLIPSIS (prop); | |
2452 | |
2453 handled = HANDLED_RECOMPUTE_PROPS; | |
2454 | |
2455 /* Loop skipping over invisible text. The loop is left at | |
2456 ZV or with IT on the first char being visible again. */ | |
2457 do | |
2458 { | |
2459 /* Try to skip some invisible text. Return value is the | |
2460 position reached which can be equal to IT's position | |
2461 if there is nothing invisible here. This skips both | |
2462 over invisible text properties and overlays with | |
2463 invisible property. */ | |
2464 newpos = skip_invisible (IT_CHARPOS (*it), | |
2465 &next_stop, ZV, it->window); | |
2466 | |
2467 /* If we skipped nothing at all we weren't at invisible | |
2468 text in the first place. If everything to the end of | |
2469 the buffer was skipped, end the loop. */ | |
2470 if (newpos == IT_CHARPOS (*it) || newpos >= ZV) | |
2471 visible_p = 1; | |
2472 else | |
2473 { | |
2474 /* We skipped some characters but not necessarily | |
2475 all there are. Check if we ended up on visible | |
2476 text. Fget_char_property returns the property of | |
2477 the char before the given position, i.e. if we | |
2478 get visible_p = 1, this means that the char at | |
2479 newpos is visible. */ | |
2480 XSETFASTINT (pos, newpos); | |
2481 prop = Fget_char_property (pos, Qinvisible, it->window); | |
2482 visible_p = !TEXT_PROP_MEANS_INVISIBLE (prop); | |
2483 } | |
2484 | |
2485 /* If we ended up on invisible text, proceed to | |
2486 skip starting with next_stop. */ | |
2487 if (!visible_p) | |
2488 IT_CHARPOS (*it) = next_stop; | |
2489 } | |
2490 while (!visible_p); | |
2491 | |
2492 /* The position newpos is now either ZV or on visible text. */ | |
2493 IT_CHARPOS (*it) = newpos; | |
2494 IT_BYTEPOS (*it) = CHAR_TO_BYTE (newpos); | |
2495 | |
2496 /* Maybe return `...' next for the end of the invisible text. */ | |
2497 if (display_ellipsis_p) | |
2498 { | |
2499 if (it->dp | |
2500 && VECTORP (DISP_INVIS_VECTOR (it->dp))) | |
2501 { | |
2502 struct Lisp_Vector *v = XVECTOR (DISP_INVIS_VECTOR (it->dp)); | |
2503 it->dpvec = v->contents; | |
2504 it->dpend = v->contents + v->size; | |
2505 } | |
2506 else | |
2507 { | |
2508 /* Default `...'. */ | |
2509 it->dpvec = default_invis_vector; | |
2510 it->dpend = default_invis_vector + 3; | |
2511 } | |
2512 | |
2513 /* The ellipsis display does not replace the display of | |
2514 the character at the new position. Indicate this by | |
2515 setting IT->dpvec_char_len to zero. */ | |
2516 it->dpvec_char_len = 0; | |
2517 | |
2518 it->current.dpvec_index = 0; | |
2519 it->method = next_element_from_display_vector; | |
2520 } | |
2521 } | |
2522 } | |
2523 | |
2524 return handled; | |
2525 } | |
2526 | |
2527 | |
277 | 2528 |
25012 | 2529 /*********************************************************************** |
2530 'display' property | |
2531 ***********************************************************************/ | |
2532 | |
2533 /* Set up iterator IT from `display' property at its current position. | |
2534 Called from handle_stop. */ | |
2535 | |
2536 static enum prop_handled | |
2537 handle_display_prop (it) | |
2538 struct it *it; | |
2539 { | |
2540 Lisp_Object prop, object; | |
2541 struct text_pos *position; | |
2542 int space_or_image_found_p; | |
2543 | |
2544 if (STRINGP (it->string)) | |
2545 { | |
2546 object = it->string; | |
2547 position = &it->current.string_pos; | |
2548 } | |
2549 else | |
2550 { | |
2551 object = Qnil; | |
2552 position = &it->current.pos; | |
2553 } | |
2554 | |
2555 /* Reset those iterator values set from display property values. */ | |
2556 it->font_height = Qnil; | |
2557 it->space_width = Qnil; | |
2558 it->voffset = 0; | |
2559 | |
2560 /* We don't support recursive `display' properties, i.e. string | |
2561 values that have a string `display' property, that have a string | |
2562 `display' property etc. */ | |
2563 if (!it->string_from_display_prop_p) | |
2564 it->area = TEXT_AREA; | |
2565 | |
2566 prop = Fget_char_property (make_number (position->charpos), | |
2567 Qdisplay, object); | |
2568 if (NILP (prop)) | |
2569 return HANDLED_NORMALLY; | |
2570 | |
2571 space_or_image_found_p = 0; | |
25777
dabc57e3628f
(compute_window_start_on_continuation_line): Handle case
Gerd Moellmann <gerd@gnu.org>
parents:
25755
diff
changeset
|
2572 if (CONSP (prop) |
dabc57e3628f
(compute_window_start_on_continuation_line): Handle case
Gerd Moellmann <gerd@gnu.org>
parents:
25755
diff
changeset
|
2573 && CONSP (XCAR (prop)) |
dabc57e3628f
(compute_window_start_on_continuation_line): Handle case
Gerd Moellmann <gerd@gnu.org>
parents:
25755
diff
changeset
|
2574 && !EQ (Qmargin, XCAR (XCAR (prop)))) |
dabc57e3628f
(compute_window_start_on_continuation_line): Handle case
Gerd Moellmann <gerd@gnu.org>
parents:
25755
diff
changeset
|
2575 { |
dabc57e3628f
(compute_window_start_on_continuation_line): Handle case
Gerd Moellmann <gerd@gnu.org>
parents:
25755
diff
changeset
|
2576 /* A list of sub-properties. */ |
25012 | 2577 while (CONSP (prop)) |
2578 { | |
2579 if (handle_single_display_prop (it, XCAR (prop), object, position)) | |
2580 space_or_image_found_p = 1; | |
2581 prop = XCDR (prop); | |
2582 } | |
2583 } | |
2584 else if (VECTORP (prop)) | |
2585 { | |
2586 int i; | |
2587 for (i = 0; i < XVECTOR (prop)->size; ++i) | |
2588 if (handle_single_display_prop (it, XVECTOR (prop)->contents[i], | |
2589 object, position)) | |
2590 space_or_image_found_p = 1; | |
2591 } | |
2592 else | |
2593 { | |
2594 if (handle_single_display_prop (it, prop, object, position)) | |
2595 space_or_image_found_p = 1; | |
2596 } | |
2597 | |
2598 return space_or_image_found_p ? HANDLED_RETURN : HANDLED_NORMALLY; | |
2599 } | |
2600 | |
2601 | |
25820
a18595261196
(display_prop_end, invisible_text_between_p): Use
Gerd Moellmann <gerd@gnu.org>
parents:
25798
diff
changeset
|
2602 /* Value is the position of the end of the `display' property starting |
25012 | 2603 at START_POS in OBJECT. */ |
2604 | |
2605 static struct text_pos | |
2606 display_prop_end (it, object, start_pos) | |
2607 struct it *it; | |
2608 Lisp_Object object; | |
2609 struct text_pos start_pos; | |
2610 { | |
2611 Lisp_Object end; | |
2612 struct text_pos end_pos; | |
25820
a18595261196
(display_prop_end, invisible_text_between_p): Use
Gerd Moellmann <gerd@gnu.org>
parents:
25798
diff
changeset
|
2613 |
30243
c56062542bae
(display_prop_end, invisible_text_between_p):
Miles Bader <miles@gnu.org>
parents:
30216
diff
changeset
|
2614 end = Fnext_single_char_property_change (make_number (CHARPOS (start_pos)), |
c56062542bae
(display_prop_end, invisible_text_between_p):
Miles Bader <miles@gnu.org>
parents:
30216
diff
changeset
|
2615 Qdisplay, object, Qnil); |
25820
a18595261196
(display_prop_end, invisible_text_between_p): Use
Gerd Moellmann <gerd@gnu.org>
parents:
25798
diff
changeset
|
2616 CHARPOS (end_pos) = XFASTINT (end); |
a18595261196
(display_prop_end, invisible_text_between_p): Use
Gerd Moellmann <gerd@gnu.org>
parents:
25798
diff
changeset
|
2617 if (STRINGP (object)) |
25012 | 2618 compute_string_pos (&end_pos, start_pos, it->string); |
2619 else | |
25820
a18595261196
(display_prop_end, invisible_text_between_p): Use
Gerd Moellmann <gerd@gnu.org>
parents:
25798
diff
changeset
|
2620 BYTEPOS (end_pos) = CHAR_TO_BYTE (XFASTINT (end)); |
25012 | 2621 |
2622 return end_pos; | |
2623 } | |
2624 | |
2625 | |
2626 /* Set up IT from a single `display' sub-property value PROP. OBJECT | |
2627 is the object in which the `display' property was found. *POSITION | |
2628 is the position at which it was found. | |
2629 | |
2630 If PROP is a `space' or `image' sub-property, set *POSITION to the | |
2631 end position of the `display' property. | |
2632 | |
2633 Value is non-zero if a `space' or `image' property value was found. */ | |
2634 | |
2635 static int | |
2636 handle_single_display_prop (it, prop, object, position) | |
2637 struct it *it; | |
2638 Lisp_Object prop; | |
2639 Lisp_Object object; | |
2640 struct text_pos *position; | |
2641 { | |
2642 Lisp_Object value; | |
2643 int space_or_image_found_p = 0; | |
2644 Lisp_Object form; | |
2645 | |
25614 | 2646 /* If PROP is a list of the form `(when FORM . VALUE)', FORM is |
25598
709e9cdaaab1
(handle_single_display_prop): Change conditional
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
2647 evaluated. If the result is nil, VALUE is ignored. */ |
25012 | 2648 form = Qt; |
25614 | 2649 if (CONSP (prop) && EQ (XCAR (prop), Qwhen)) |
25012 | 2650 { |
2651 prop = XCDR (prop); | |
2652 if (!CONSP (prop)) | |
2653 return 0; | |
2654 form = XCAR (prop); | |
2655 prop = XCDR (prop); | |
2656 } | |
2657 | |
2658 if (!NILP (form) && !EQ (form, Qt)) | |
2659 { | |
2660 struct gcpro gcpro1; | |
2661 struct text_pos end_pos, pt; | |
2662 | |
28869
91b54118e73c
(handle_single_display_prop): Don't try to set PT if
Gerd Moellmann <gerd@gnu.org>
parents:
28804
diff
changeset
|
2663 GCPRO1 (form); |
25012 | 2664 end_pos = display_prop_end (it, object, *position); |
2665 | |
2666 /* Temporarily set point to the end position, and then evaluate | |
2667 the form. This makes `(eolp)' work as FORM. */ | |
28869
91b54118e73c
(handle_single_display_prop): Don't try to set PT if
Gerd Moellmann <gerd@gnu.org>
parents:
28804
diff
changeset
|
2668 if (BUFFERP (object)) |
91b54118e73c
(handle_single_display_prop): Don't try to set PT if
Gerd Moellmann <gerd@gnu.org>
parents:
28804
diff
changeset
|
2669 { |
91b54118e73c
(handle_single_display_prop): Don't try to set PT if
Gerd Moellmann <gerd@gnu.org>
parents:
28804
diff
changeset
|
2670 CHARPOS (pt) = PT; |
91b54118e73c
(handle_single_display_prop): Don't try to set PT if
Gerd Moellmann <gerd@gnu.org>
parents:
28804
diff
changeset
|
2671 BYTEPOS (pt) = PT_BYTE; |
91b54118e73c
(handle_single_display_prop): Don't try to set PT if
Gerd Moellmann <gerd@gnu.org>
parents:
28804
diff
changeset
|
2672 TEMP_SET_PT_BOTH (CHARPOS (end_pos), BYTEPOS (end_pos)); |
91b54118e73c
(handle_single_display_prop): Don't try to set PT if
Gerd Moellmann <gerd@gnu.org>
parents:
28804
diff
changeset
|
2673 } |
91b54118e73c
(handle_single_display_prop): Don't try to set PT if
Gerd Moellmann <gerd@gnu.org>
parents:
28804
diff
changeset
|
2674 |
32175
e5d99e8cbd94
(handle_single_display_prop): Use safe_call1.
Gerd Moellmann <gerd@gnu.org>
parents:
31931
diff
changeset
|
2675 form = safe_eval (form); |
28869
91b54118e73c
(handle_single_display_prop): Don't try to set PT if
Gerd Moellmann <gerd@gnu.org>
parents:
28804
diff
changeset
|
2676 |
91b54118e73c
(handle_single_display_prop): Don't try to set PT if
Gerd Moellmann <gerd@gnu.org>
parents:
28804
diff
changeset
|
2677 if (BUFFERP (object)) |
91b54118e73c
(handle_single_display_prop): Don't try to set PT if
Gerd Moellmann <gerd@gnu.org>
parents:
28804
diff
changeset
|
2678 TEMP_SET_PT_BOTH (CHARPOS (pt), BYTEPOS (pt)); |
25012 | 2679 UNGCPRO; |
2680 } | |
2681 | |
2682 if (NILP (form)) | |
2683 return 0; | |
2684 | |
2685 if (CONSP (prop) | |
2686 && EQ (XCAR (prop), Qheight) | |
2687 && CONSP (XCDR (prop))) | |
2688 { | |
35005
2b83125ab28b
(handle_single_display_prop): Return if frame is
Andrew Innes <andrewi@gnu.org>
parents:
34987
diff
changeset
|
2689 if (FRAME_TERMCAP_P (it->f) |
2b83125ab28b
(handle_single_display_prop): Return if frame is
Andrew Innes <andrewi@gnu.org>
parents:
34987
diff
changeset
|
2690 || FRAME_MSDOS_P (it->f) |
2b83125ab28b
(handle_single_display_prop): Return if frame is
Andrew Innes <andrewi@gnu.org>
parents:
34987
diff
changeset
|
2691 || FRAME_W32_CONSOLE_P (it->f)) |
25012 | 2692 return 0; |
2693 | |
2694 /* `(height HEIGHT)'. */ | |
2695 it->font_height = XCAR (XCDR (prop)); | |
2696 if (!NILP (it->font_height)) | |
2697 { | |
2698 struct face *face = FACE_FROM_ID (it->f, it->face_id); | |
2699 int new_height = -1; | |
2700 | |
2701 if (CONSP (it->font_height) | |
2702 && (EQ (XCAR (it->font_height), Qplus) | |
2703 || EQ (XCAR (it->font_height), Qminus)) | |
2704 && CONSP (XCDR (it->font_height)) | |
2705 && INTEGERP (XCAR (XCDR (it->font_height)))) | |
2706 { | |
2707 /* `(+ N)' or `(- N)' where N is an integer. */ | |
2708 int steps = XINT (XCAR (XCDR (it->font_height))); | |
2709 if (EQ (XCAR (it->font_height), Qplus)) | |
2710 steps = - steps; | |
2711 it->face_id = smaller_face (it->f, it->face_id, steps); | |
2712 } | |
30216
394c884dc496
(eval_form): GCPRO argument sexpr.
Gerd Moellmann <gerd@gnu.org>
parents:
30202
diff
changeset
|
2713 else if (FUNCTIONP (it->font_height)) |
25012 | 2714 { |
2715 /* Call function with current height as argument. | |
2716 Value is the new height. */ | |
32175
e5d99e8cbd94
(handle_single_display_prop): Use safe_call1.
Gerd Moellmann <gerd@gnu.org>
parents:
31931
diff
changeset
|
2717 Lisp_Object height; |
e5d99e8cbd94
(handle_single_display_prop): Use safe_call1.
Gerd Moellmann <gerd@gnu.org>
parents:
31931
diff
changeset
|
2718 height = safe_call1 (it->font_height, |
e5d99e8cbd94
(handle_single_display_prop): Use safe_call1.
Gerd Moellmann <gerd@gnu.org>
parents:
31931
diff
changeset
|
2719 face->lface[LFACE_HEIGHT_INDEX]); |
25012 | 2720 if (NUMBERP (height)) |
2721 new_height = XFLOATINT (height); | |
2722 } | |
2723 else if (NUMBERP (it->font_height)) | |
2724 { | |
2725 /* Value is a multiple of the canonical char height. */ | |
2726 struct face *face; | |
2727 | |
2728 face = FACE_FROM_ID (it->f, DEFAULT_FACE_ID); | |
2729 new_height = (XFLOATINT (it->font_height) | |
2730 * XINT (face->lface[LFACE_HEIGHT_INDEX])); | |
2731 } | |
2732 else | |
2733 { | |
2734 /* Evaluate IT->font_height with `height' bound to the | |
2735 current specified height to get the new height. */ | |
2736 Lisp_Object value; | |
33600
c5f64497e92c
Use BINDING_STACK_SIZE throughout.
Gerd Moellmann <gerd@gnu.org>
parents:
33594
diff
changeset
|
2737 int count = BINDING_STACK_SIZE (); |
25012 | 2738 |
2739 specbind (Qheight, face->lface[LFACE_HEIGHT_INDEX]); | |
32175
e5d99e8cbd94
(handle_single_display_prop): Use safe_call1.
Gerd Moellmann <gerd@gnu.org>
parents:
31931
diff
changeset
|
2740 value = safe_eval (it->font_height); |
25012 | 2741 unbind_to (count, Qnil); |
2742 | |
2743 if (NUMBERP (value)) | |
2744 new_height = XFLOATINT (value); | |
2745 } | |
2746 | |
2747 if (new_height > 0) | |
2748 it->face_id = face_with_height (it->f, it->face_id, new_height); | |
2749 } | |
2750 } | |
2751 else if (CONSP (prop) | |
2752 && EQ (XCAR (prop), Qspace_width) | |
2753 && CONSP (XCDR (prop))) | |
2754 { | |
2755 /* `(space_width WIDTH)'. */ | |
35005
2b83125ab28b
(handle_single_display_prop): Return if frame is
Andrew Innes <andrewi@gnu.org>
parents:
34987
diff
changeset
|
2756 if (FRAME_TERMCAP_P (it->f) |
2b83125ab28b
(handle_single_display_prop): Return if frame is
Andrew Innes <andrewi@gnu.org>
parents:
34987
diff
changeset
|
2757 || FRAME_MSDOS_P (it->f) |
2b83125ab28b
(handle_single_display_prop): Return if frame is
Andrew Innes <andrewi@gnu.org>
parents:
34987
diff
changeset
|
2758 || FRAME_W32_CONSOLE_P (it->f)) |
35017
53c3e3f3949b
(try_window_reusing_current_matrix): Fix bug setting
Gerd Moellmann <gerd@gnu.org>
parents:
35005
diff
changeset
|
2759 return 0; |
25012 | 2760 |
2761 value = XCAR (XCDR (prop)); | |
2762 if (NUMBERP (value) && XFLOATINT (value) > 0) | |
2763 it->space_width = value; | |
2764 } | |
2765 else if (CONSP (prop) | |
2766 && EQ (XCAR (prop), Qraise) | |
2767 && CONSP (XCDR (prop))) | |
2768 { | |
2769 /* `(raise FACTOR)'. */ | |
35005
2b83125ab28b
(handle_single_display_prop): Return if frame is
Andrew Innes <andrewi@gnu.org>
parents:
34987
diff
changeset
|
2770 if (FRAME_TERMCAP_P (it->f) |
2b83125ab28b
(handle_single_display_prop): Return if frame is
Andrew Innes <andrewi@gnu.org>
parents:
34987
diff
changeset
|
2771 || FRAME_MSDOS_P (it->f) |
2b83125ab28b
(handle_single_display_prop): Return if frame is
Andrew Innes <andrewi@gnu.org>
parents:
34987
diff
changeset
|
2772 || FRAME_W32_CONSOLE_P (it->f)) |
35017
53c3e3f3949b
(try_window_reusing_current_matrix): Fix bug setting
Gerd Moellmann <gerd@gnu.org>
parents:
35005
diff
changeset
|
2773 return 0; |
25012 | 2774 |
27118
2efb49dc860b
(handle_single_display_prop) [HAVE_WINDOW_SYSTEM]: No
Eli Zaretskii <eliz@gnu.org>
parents:
27106
diff
changeset
|
2775 #ifdef HAVE_WINDOW_SYSTEM |
25012 | 2776 value = XCAR (XCDR (prop)); |
2777 if (NUMBERP (value)) | |
2778 { | |
2779 struct face *face = FACE_FROM_ID (it->f, it->face_id); | |
2780 it->voffset = - (XFLOATINT (value) | |
27897
a6384a2b5574
(handle_single_display_prop): Use FONT_HEIGHT macro.
Jason Rumney <jasonr@gnu.org>
parents:
27843
diff
changeset
|
2781 * (FONT_HEIGHT (face->font))); |
25012 | 2782 } |
2783 #endif /* HAVE_WINDOW_SYSTEM */ | |
2784 } | |
2785 else if (!it->string_from_display_prop_p) | |
2786 { | |
25777
dabc57e3628f
(compute_window_start_on_continuation_line): Handle case
Gerd Moellmann <gerd@gnu.org>
parents:
25755
diff
changeset
|
2787 /* `((margin left-margin) VALUE)' or `((margin right-margin) |
dabc57e3628f
(compute_window_start_on_continuation_line): Handle case
Gerd Moellmann <gerd@gnu.org>
parents:
25755
diff
changeset
|
2788 VALUE) or `((margin nil) VALUE)' or VALUE. */ |
25012 | 2789 Lisp_Object location, value; |
2790 struct text_pos start_pos; | |
2791 int valid_p; | |
2792 | |
2793 /* Characters having this form of property are not displayed, so | |
2794 we have to find the end of the property. */ | |
2795 start_pos = *position; | |
2796 *position = display_prop_end (it, object, start_pos); | |
28206
07ac059dece0
(handle_single_display_prop): Initialize local `value'.
Gerd Moellmann <gerd@gnu.org>
parents:
28047
diff
changeset
|
2797 value = Qnil; |
25012 | 2798 |
2799 /* Let's stop at the new position and assume that all | |
2800 text properties change there. */ | |
2801 it->stop_charpos = position->charpos; | |
2802 | |
25777
dabc57e3628f
(compute_window_start_on_continuation_line): Handle case
Gerd Moellmann <gerd@gnu.org>
parents:
25755
diff
changeset
|
2803 location = Qunbound; |
dabc57e3628f
(compute_window_start_on_continuation_line): Handle case
Gerd Moellmann <gerd@gnu.org>
parents:
25755
diff
changeset
|
2804 if (CONSP (prop) && CONSP (XCAR (prop))) |
dabc57e3628f
(compute_window_start_on_continuation_line): Handle case
Gerd Moellmann <gerd@gnu.org>
parents:
25755
diff
changeset
|
2805 { |
dabc57e3628f
(compute_window_start_on_continuation_line): Handle case
Gerd Moellmann <gerd@gnu.org>
parents:
25755
diff
changeset
|
2806 Lisp_Object tem; |
dabc57e3628f
(compute_window_start_on_continuation_line): Handle case
Gerd Moellmann <gerd@gnu.org>
parents:
25755
diff
changeset
|
2807 |
25012 | 2808 value = XCDR (prop); |
25777
dabc57e3628f
(compute_window_start_on_continuation_line): Handle case
Gerd Moellmann <gerd@gnu.org>
parents:
25755
diff
changeset
|
2809 if (CONSP (value)) |
dabc57e3628f
(compute_window_start_on_continuation_line): Handle case
Gerd Moellmann <gerd@gnu.org>
parents:
25755
diff
changeset
|
2810 value = XCAR (value); |
dabc57e3628f
(compute_window_start_on_continuation_line): Handle case
Gerd Moellmann <gerd@gnu.org>
parents:
25755
diff
changeset
|
2811 |
dabc57e3628f
(compute_window_start_on_continuation_line): Handle case
Gerd Moellmann <gerd@gnu.org>
parents:
25755
diff
changeset
|
2812 tem = XCAR (prop); |
dabc57e3628f
(compute_window_start_on_continuation_line): Handle case
Gerd Moellmann <gerd@gnu.org>
parents:
25755
diff
changeset
|
2813 if (EQ (XCAR (tem), Qmargin) |
dabc57e3628f
(compute_window_start_on_continuation_line): Handle case
Gerd Moellmann <gerd@gnu.org>
parents:
25755
diff
changeset
|
2814 && (tem = XCDR (tem), |
dabc57e3628f
(compute_window_start_on_continuation_line): Handle case
Gerd Moellmann <gerd@gnu.org>
parents:
25755
diff
changeset
|
2815 tem = CONSP (tem) ? XCAR (tem) : Qnil, |
dabc57e3628f
(compute_window_start_on_continuation_line): Handle case
Gerd Moellmann <gerd@gnu.org>
parents:
25755
diff
changeset
|
2816 (NILP (tem) |
dabc57e3628f
(compute_window_start_on_continuation_line): Handle case
Gerd Moellmann <gerd@gnu.org>
parents:
25755
diff
changeset
|
2817 || EQ (tem, Qleft_margin) |
dabc57e3628f
(compute_window_start_on_continuation_line): Handle case
Gerd Moellmann <gerd@gnu.org>
parents:
25755
diff
changeset
|
2818 || EQ (tem, Qright_margin)))) |
dabc57e3628f
(compute_window_start_on_continuation_line): Handle case
Gerd Moellmann <gerd@gnu.org>
parents:
25755
diff
changeset
|
2819 location = tem; |
dabc57e3628f
(compute_window_start_on_continuation_line): Handle case
Gerd Moellmann <gerd@gnu.org>
parents:
25755
diff
changeset
|
2820 } |
dabc57e3628f
(compute_window_start_on_continuation_line): Handle case
Gerd Moellmann <gerd@gnu.org>
parents:
25755
diff
changeset
|
2821 |
dabc57e3628f
(compute_window_start_on_continuation_line): Handle case
Gerd Moellmann <gerd@gnu.org>
parents:
25755
diff
changeset
|
2822 if (EQ (location, Qunbound)) |
25012 | 2823 { |
2824 location = Qnil; | |
2825 value = prop; | |
2826 } | |
2827 | |
2828 #ifdef HAVE_WINDOW_SYSTEM | |
27118
2efb49dc860b
(handle_single_display_prop) [HAVE_WINDOW_SYSTEM]: No
Eli Zaretskii <eliz@gnu.org>
parents:
27106
diff
changeset
|
2829 if (FRAME_TERMCAP_P (it->f)) |
25012 | 2830 valid_p = STRINGP (value); |
2831 else | |
2832 valid_p = (STRINGP (value) | |
2833 || (CONSP (value) && EQ (XCAR (value), Qspace)) | |
2834 || valid_image_p (value)); | |
2835 #else /* not HAVE_WINDOW_SYSTEM */ | |
2836 valid_p = STRINGP (value); | |
2837 #endif /* not HAVE_WINDOW_SYSTEM */ | |
2838 | |
2839 if ((EQ (location, Qleft_margin) | |
2840 || EQ (location, Qright_margin) | |
2841 || NILP (location)) | |
2842 && valid_p) | |
2843 { | |
28804
ddc6811eb4c8
(handle_single_display_prop): If display property value
Gerd Moellmann <gerd@gnu.org>
parents:
28754
diff
changeset
|
2844 space_or_image_found_p = 1; |
ddc6811eb4c8
(handle_single_display_prop): If display property value
Gerd Moellmann <gerd@gnu.org>
parents:
28754
diff
changeset
|
2845 |
25012 | 2846 /* Save current settings of IT so that we can restore them |
2847 when we are finished with the glyph property value. */ | |
2848 push_it (it); | |
2849 | |
2850 if (NILP (location)) | |
2851 it->area = TEXT_AREA; | |
2852 else if (EQ (location, Qleft_margin)) | |
2853 it->area = LEFT_MARGIN_AREA; | |
2854 else | |
2855 it->area = RIGHT_MARGIN_AREA; | |
2856 | |
2857 if (STRINGP (value)) | |
2858 { | |
2859 it->string = value; | |
2860 it->multibyte_p = STRING_MULTIBYTE (it->string); | |
2861 it->current.overlay_string_index = -1; | |
2862 IT_STRING_CHARPOS (*it) = IT_STRING_BYTEPOS (*it) = 0; | |
2863 it->end_charpos = it->string_nchars | |
2864 = XSTRING (it->string)->size; | |
2865 it->method = next_element_from_string; | |
2866 it->stop_charpos = 0; | |
2867 it->string_from_display_prop_p = 1; | |
2868 } | |
2869 else if (CONSP (value) && EQ (XCAR (value), Qspace)) | |
2870 { | |
2871 it->method = next_element_from_stretch; | |
2872 it->object = value; | |
2873 it->current.pos = it->position = start_pos; | |
2874 } | |
2875 #ifdef HAVE_WINDOW_SYSTEM | |
2876 else | |
2877 { | |
2878 it->what = IT_IMAGE; | |
2879 it->image_id = lookup_image (it->f, value); | |
2880 it->position = start_pos; | |
2881 it->object = NILP (object) ? it->w->buffer : object; | |
2882 it->method = next_element_from_image; | |
2883 | |
29185
239420a3c60d
(Fdump_glyph_matrix): Declare the arg.
Dave Love <fx@gnu.org>
parents:
29023
diff
changeset
|
2884 /* Say that we haven't consumed the characters with |
25012 | 2885 `display' property yet. The call to pop_it in |
2886 set_iterator_to_next will clean this up. */ | |
2887 *position = start_pos; | |
2888 } | |
2889 #endif /* HAVE_WINDOW_SYSTEM */ | |
2890 } | |
28804
ddc6811eb4c8
(handle_single_display_prop): If display property value
Gerd Moellmann <gerd@gnu.org>
parents:
28754
diff
changeset
|
2891 else |
ddc6811eb4c8
(handle_single_display_prop): If display property value
Gerd Moellmann <gerd@gnu.org>
parents:
28754
diff
changeset
|
2892 /* Invalid property or property not supported. Restore |
ddc6811eb4c8
(handle_single_display_prop): If display property value
Gerd Moellmann <gerd@gnu.org>
parents:
28754
diff
changeset
|
2893 the position to what it was before. */ |
ddc6811eb4c8
(handle_single_display_prop): If display property value
Gerd Moellmann <gerd@gnu.org>
parents:
28754
diff
changeset
|
2894 *position = start_pos; |
25012 | 2895 } |
2896 | |
2897 return space_or_image_found_p; | |
2898 } | |
2899 | |
2900 | |
29817
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2901 /* Check if PROP is a display sub-property value whose text should be |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2902 treated as intangible. */ |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2903 |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2904 static int |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2905 single_display_prop_intangible_p (prop) |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2906 Lisp_Object prop; |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2907 { |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2908 /* Skip over `when FORM'. */ |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2909 if (CONSP (prop) && EQ (XCAR (prop), Qwhen)) |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2910 { |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2911 prop = XCDR (prop); |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2912 if (!CONSP (prop)) |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2913 return 0; |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2914 prop = XCDR (prop); |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2915 } |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2916 |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2917 if (!CONSP (prop)) |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2918 return 0; |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2919 |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2920 /* Skip over `margin LOCATION'. If LOCATION is in the margins, |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2921 we don't need to treat text as intangible. */ |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2922 if (EQ (XCAR (prop), Qmargin)) |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2923 { |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2924 prop = XCDR (prop); |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2925 if (!CONSP (prop)) |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2926 return 0; |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2927 |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2928 prop = XCDR (prop); |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2929 if (!CONSP (prop) |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2930 || EQ (XCAR (prop), Qleft_margin) |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2931 || EQ (XCAR (prop), Qright_margin)) |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2932 return 0; |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2933 } |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2934 |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2935 return CONSP (prop) && EQ (XCAR (prop), Qimage); |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2936 } |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2937 |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2938 |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2939 /* Check if PROP is a display property value whose text should be |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2940 treated as intangible. */ |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2941 |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2942 int |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2943 display_prop_intangible_p (prop) |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2944 Lisp_Object prop; |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2945 { |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2946 if (CONSP (prop) |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2947 && CONSP (XCAR (prop)) |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2948 && !EQ (Qmargin, XCAR (XCAR (prop)))) |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2949 { |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2950 /* A list of sub-properties. */ |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2951 while (CONSP (prop)) |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2952 { |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2953 if (single_display_prop_intangible_p (XCAR (prop))) |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2954 return 1; |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2955 prop = XCDR (prop); |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2956 } |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2957 } |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2958 else if (VECTORP (prop)) |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2959 { |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2960 /* A vector of sub-properties. */ |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2961 int i; |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2962 for (i = 0; i < XVECTOR (prop)->size; ++i) |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2963 if (single_display_prop_intangible_p (XVECTOR (prop)->contents[i])) |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2964 return 1; |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2965 } |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2966 else |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2967 return single_display_prop_intangible_p (prop); |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2968 |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2969 return 0; |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2970 } |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
2971 |
25012 | 2972 |
2973 /*********************************************************************** | |
26874
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
2974 `composition' property |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
2975 ***********************************************************************/ |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
2976 |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
2977 /* Set up iterator IT from `composition' property at its current |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
2978 position. Called from handle_stop. */ |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
2979 |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
2980 static enum prop_handled |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
2981 handle_composition_prop (it) |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
2982 struct it *it; |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
2983 { |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
2984 Lisp_Object prop, string; |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
2985 int pos, pos_byte, end; |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
2986 enum prop_handled handled = HANDLED_NORMALLY; |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
2987 |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
2988 if (STRINGP (it->string)) |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
2989 { |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
2990 pos = IT_STRING_CHARPOS (*it); |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
2991 pos_byte = IT_STRING_BYTEPOS (*it); |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
2992 string = it->string; |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
2993 } |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
2994 else |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
2995 { |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
2996 pos = IT_CHARPOS (*it); |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
2997 pos_byte = IT_BYTEPOS (*it); |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
2998 string = Qnil; |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
2999 } |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
3000 |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
3001 /* If there's a valid composition and point is not inside of the |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
3002 composition (in the case that the composition is from the current |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
3003 buffer), draw a glyph composed from the composition components. */ |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
3004 if (find_composition (pos, -1, &pos, &end, &prop, string) |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
3005 && COMPOSITION_VALID_P (pos, end, prop) |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
3006 && (STRINGP (it->string) || (PT <= pos || PT >= end))) |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
3007 { |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
3008 int id = get_composition_id (pos, pos_byte, end - pos, prop, string); |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
3009 |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
3010 if (id >= 0) |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
3011 { |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
3012 it->method = next_element_from_composition; |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
3013 it->cmp_id = id; |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
3014 it->cmp_len = COMPOSITION_LENGTH (prop); |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
3015 /* For a terminal, draw only the first character of the |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
3016 components. */ |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
3017 it->c = COMPOSITION_GLYPH (composition_table[id], 0); |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
3018 it->len = (STRINGP (it->string) |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
3019 ? string_char_to_byte (it->string, end) |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
3020 : CHAR_TO_BYTE (end)) - pos_byte; |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
3021 it->stop_charpos = end; |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
3022 handled = HANDLED_RETURN; |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
3023 } |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
3024 } |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
3025 |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
3026 return handled; |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
3027 } |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
3028 |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
3029 |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
3030 |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
3031 /*********************************************************************** |
25012 | 3032 Overlay strings |
3033 ***********************************************************************/ | |
3034 | |
3035 /* The following structure is used to record overlay strings for | |
3036 later sorting in load_overlay_strings. */ | |
3037 | |
3038 struct overlay_entry | |
3039 { | |
29858
54f927c5f436
(handle_stop): Initialize it->add_overlay_start to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
29817
diff
changeset
|
3040 Lisp_Object overlay; |
25012 | 3041 Lisp_Object string; |
3042 int priority; | |
3043 int after_string_p; | |
3044 }; | |
3045 | |
3046 | |
3047 /* Set up iterator IT from overlay strings at its current position. | |
3048 Called from handle_stop. */ | |
3049 | |
3050 static enum prop_handled | |
3051 handle_overlay_change (it) | |
3052 struct it *it; | |
3053 { | |
29858
54f927c5f436
(handle_stop): Initialize it->add_overlay_start to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
29817
diff
changeset
|
3054 if (!STRINGP (it->string) && get_overlay_strings (it)) |
54f927c5f436
(handle_stop): Initialize it->add_overlay_start to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
29817
diff
changeset
|
3055 return HANDLED_RECOMPUTE_PROPS; |
25012 | 3056 else |
29858
54f927c5f436
(handle_stop): Initialize it->add_overlay_start to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
29817
diff
changeset
|
3057 return HANDLED_NORMALLY; |
25012 | 3058 } |
3059 | |
3060 | |
3061 /* Set up the next overlay string for delivery by IT, if there is an | |
3062 overlay string to deliver. Called by set_iterator_to_next when the | |
3063 end of the current overlay string is reached. If there are more | |
3064 overlay strings to display, IT->string and | |
3065 IT->current.overlay_string_index are set appropriately here. | |
3066 Otherwise IT->string is set to nil. */ | |
3067 | |
3068 static void | |
3069 next_overlay_string (it) | |
3070 struct it *it; | |
3071 { | |
3072 ++it->current.overlay_string_index; | |
3073 if (it->current.overlay_string_index == it->n_overlay_strings) | |
3074 { | |
3075 /* No more overlay strings. Restore IT's settings to what | |
3076 they were before overlay strings were processed, and | |
3077 continue to deliver from current_buffer. */ | |
3078 pop_it (it); | |
3079 xassert (it->stop_charpos >= BEGV | |
3080 && it->stop_charpos <= it->end_charpos); | |
3081 it->string = Qnil; | |
3082 it->current.overlay_string_index = -1; | |
3083 SET_TEXT_POS (it->current.string_pos, -1, -1); | |
3084 it->n_overlay_strings = 0; | |
3085 it->method = next_element_from_buffer; | |
29858
54f927c5f436
(handle_stop): Initialize it->add_overlay_start to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
29817
diff
changeset
|
3086 |
54f927c5f436
(handle_stop): Initialize it->add_overlay_start to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
29817
diff
changeset
|
3087 /* If we're at the end of the buffer, record that we have |
54f927c5f436
(handle_stop): Initialize it->add_overlay_start to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
29817
diff
changeset
|
3088 processed the overlay strings there already, so that |
54f927c5f436
(handle_stop): Initialize it->add_overlay_start to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
29817
diff
changeset
|
3089 next_element_from_buffer doesn't try it again. */ |
54f927c5f436
(handle_stop): Initialize it->add_overlay_start to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
29817
diff
changeset
|
3090 if (IT_CHARPOS (*it) >= it->end_charpos) |
54f927c5f436
(handle_stop): Initialize it->add_overlay_start to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
29817
diff
changeset
|
3091 it->overlay_strings_at_end_processed_p = 1; |
25012 | 3092 } |
3093 else | |
3094 { | |
3095 /* There are more overlay strings to process. If | |
3096 IT->current.overlay_string_index has advanced to a position | |
3097 where we must load IT->overlay_strings with more strings, do | |
3098 it. */ | |
3099 int i = it->current.overlay_string_index % OVERLAY_STRING_CHUNK_SIZE; | |
3100 | |
3101 if (it->current.overlay_string_index && i == 0) | |
3102 load_overlay_strings (it); | |
3103 | |
3104 /* Initialize IT to deliver display elements from the overlay | |
3105 string. */ | |
3106 it->string = it->overlay_strings[i]; | |
3107 it->multibyte_p = STRING_MULTIBYTE (it->string); | |
3108 SET_TEXT_POS (it->current.string_pos, 0, 0); | |
3109 it->method = next_element_from_string; | |
3110 it->stop_charpos = 0; | |
3111 } | |
3112 | |
3113 CHECK_IT (it); | |
3114 } | |
3115 | |
3116 | |
3117 /* Compare two overlay_entry structures E1 and E2. Used as a | |
3118 comparison function for qsort in load_overlay_strings. Overlay | |
3119 strings for the same position are sorted so that | |
3120 | |
29858
54f927c5f436
(handle_stop): Initialize it->add_overlay_start to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
29817
diff
changeset
|
3121 1. All after-strings come in front of before-strings, except |
54f927c5f436
(handle_stop): Initialize it->add_overlay_start to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
29817
diff
changeset
|
3122 when they come from the same overlay. |
25012 | 3123 |
3124 2. Within after-strings, strings are sorted so that overlay strings | |
3125 from overlays with higher priorities come first. | |
3126 | |
3127 2. Within before-strings, strings are sorted so that overlay | |
3128 strings from overlays with higher priorities come last. | |
3129 | |
3130 Value is analogous to strcmp. */ | |
3131 | |
3132 | |
3133 static int | |
3134 compare_overlay_entries (e1, e2) | |
3135 void *e1, *e2; | |
3136 { | |
3137 struct overlay_entry *entry1 = (struct overlay_entry *) e1; | |
3138 struct overlay_entry *entry2 = (struct overlay_entry *) e2; | |
3139 int result; | |
3140 | |
3141 if (entry1->after_string_p != entry2->after_string_p) | |
29858
54f927c5f436
(handle_stop): Initialize it->add_overlay_start to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
29817
diff
changeset
|
3142 { |
54f927c5f436
(handle_stop): Initialize it->add_overlay_start to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
29817
diff
changeset
|
3143 /* Let after-strings appear in front of before-strings if |
54f927c5f436
(handle_stop): Initialize it->add_overlay_start to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
29817
diff
changeset
|
3144 they come from different overlays. */ |
54f927c5f436
(handle_stop): Initialize it->add_overlay_start to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
29817
diff
changeset
|
3145 if (EQ (entry1->overlay, entry2->overlay)) |
54f927c5f436
(handle_stop): Initialize it->add_overlay_start to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
29817
diff
changeset
|
3146 result = entry1->after_string_p ? 1 : -1; |
54f927c5f436
(handle_stop): Initialize it->add_overlay_start to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
29817
diff
changeset
|
3147 else |
54f927c5f436
(handle_stop): Initialize it->add_overlay_start to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
29817
diff
changeset
|
3148 result = entry1->after_string_p ? -1 : 1; |
54f927c5f436
(handle_stop): Initialize it->add_overlay_start to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
29817
diff
changeset
|
3149 } |
25012 | 3150 else if (entry1->after_string_p) |
3151 /* After-strings sorted in order of decreasing priority. */ | |
3152 result = entry2->priority - entry1->priority; | |
3153 else | |
3154 /* Before-strings sorted in order of increasing priority. */ | |
3155 result = entry1->priority - entry2->priority; | |
3156 | |
3157 return result; | |
3158 } | |
3159 | |
3160 | |
3161 /* Load the vector IT->overlay_strings with overlay strings from IT's | |
3162 current buffer position. Set IT->n_overlays to the total number of | |
3163 overlay strings found. | |
3164 | |
3165 Overlay strings are processed OVERLAY_STRING_CHUNK_SIZE strings at | |
3166 a time. On entry into load_overlay_strings, | |
3167 IT->current.overlay_string_index gives the number of overlay | |
3168 strings that have already been loaded by previous calls to this | |
3169 function. | |
3170 | |
29858
54f927c5f436
(handle_stop): Initialize it->add_overlay_start to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
29817
diff
changeset
|
3171 IT->add_overlay_start contains an additional overlay start |
54f927c5f436
(handle_stop): Initialize it->add_overlay_start to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
29817
diff
changeset
|
3172 position to consider for taking overlay strings from, if non-zero. |
54f927c5f436
(handle_stop): Initialize it->add_overlay_start to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
29817
diff
changeset
|
3173 This position comes into play when the overlay has an `invisible' |
54f927c5f436
(handle_stop): Initialize it->add_overlay_start to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
29817
diff
changeset
|
3174 property, and both before and after-strings. When we've skipped to |
54f927c5f436
(handle_stop): Initialize it->add_overlay_start to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
29817
diff
changeset
|
3175 the end of the overlay, because of its `invisible' property, we |
54f927c5f436
(handle_stop): Initialize it->add_overlay_start to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
29817
diff
changeset
|
3176 nevertheless want its before-string to appear. |
54f927c5f436
(handle_stop): Initialize it->add_overlay_start to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
29817
diff
changeset
|
3177 IT->add_overlay_start will contain the overlay start position |
54f927c5f436
(handle_stop): Initialize it->add_overlay_start to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
29817
diff
changeset
|
3178 in this case. |
54f927c5f436
(handle_stop): Initialize it->add_overlay_start to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
29817
diff
changeset
|
3179 |
25012 | 3180 Overlay strings are sorted so that after-string strings come in |
3181 front of before-string strings. Within before and after-strings, | |
3182 strings are sorted by overlay priority. See also function | |
3183 compare_overlay_entries. */ | |
3184 | |
3185 static void | |
3186 load_overlay_strings (it) | |
3187 struct it *it; | |
3188 { | |
3189 extern Lisp_Object Qafter_string, Qbefore_string, Qwindow, Qpriority; | |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3190 Lisp_Object ov, overlay, window, str, invisible; |
25012 | 3191 int start, end; |
3192 int size = 20; | |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3193 int n = 0, i, j, invis_p; |
25012 | 3194 struct overlay_entry *entries |
3195 = (struct overlay_entry *) alloca (size * sizeof *entries); | |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3196 int charpos = IT_CHARPOS (*it); |
25012 | 3197 |
3198 /* Append the overlay string STRING of overlay OVERLAY to vector | |
3199 `entries' which has size `size' and currently contains `n' | |
3200 elements. AFTER_P non-zero means STRING is an after-string of | |
3201 OVERLAY. */ | |
3202 #define RECORD_OVERLAY_STRING(OVERLAY, STRING, AFTER_P) \ | |
3203 do \ | |
3204 { \ | |
3205 Lisp_Object priority; \ | |
3206 \ | |
3207 if (n == size) \ | |
3208 { \ | |
3209 int new_size = 2 * size; \ | |
3210 struct overlay_entry *old = entries; \ | |
3211 entries = \ | |
3212 (struct overlay_entry *) alloca (new_size \ | |
3213 * sizeof *entries); \ | |
3214 bcopy (old, entries, size * sizeof *entries); \ | |
3215 size = new_size; \ | |
3216 } \ | |
3217 \ | |
3218 entries[n].string = (STRING); \ | |
29858
54f927c5f436
(handle_stop): Initialize it->add_overlay_start to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
29817
diff
changeset
|
3219 entries[n].overlay = (OVERLAY); \ |
25012 | 3220 priority = Foverlay_get ((OVERLAY), Qpriority); \ |
29858
54f927c5f436
(handle_stop): Initialize it->add_overlay_start to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
29817
diff
changeset
|
3221 entries[n].priority = INTEGERP (priority) ? XINT (priority) : 0; \ |
25012 | 3222 entries[n].after_string_p = (AFTER_P); \ |
3223 ++n; \ | |
3224 } \ | |
3225 while (0) | |
3226 | |
3227 /* Process overlay before the overlay center. */ | |
29858
54f927c5f436
(handle_stop): Initialize it->add_overlay_start to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
29817
diff
changeset
|
3228 for (ov = current_buffer->overlays_before; CONSP (ov); ov = XCDR (ov)) |
25519
5e59e2bd26b5
Use XCAR and XCDR instead of XCONS.
Gerd Moellmann <gerd@gnu.org>
parents:
25500
diff
changeset
|
3229 { |
5e59e2bd26b5
Use XCAR and XCDR instead of XCONS.
Gerd Moellmann <gerd@gnu.org>
parents:
25500
diff
changeset
|
3230 overlay = XCAR (ov); |
25012 | 3231 xassert (OVERLAYP (overlay)); |
3232 start = OVERLAY_POSITION (OVERLAY_START (overlay)); | |
3233 end = OVERLAY_POSITION (OVERLAY_END (overlay)); | |
3234 | |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3235 if (end < charpos) |
25012 | 3236 break; |
3237 | |
3238 /* Skip this overlay if it doesn't start or end at IT's current | |
3239 position. */ | |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3240 if (end != charpos && start != charpos) |
25012 | 3241 continue; |
3242 | |
3243 /* Skip this overlay if it doesn't apply to IT->w. */ | |
3244 window = Foverlay_get (overlay, Qwindow); | |
3245 if (WINDOWP (window) && XWINDOW (window) != it->w) | |
3246 continue; | |
3247 | |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3248 /* If the text ``under'' the overlay is invisible, both before- |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3249 and after-strings from this overlay are visible; start and |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3250 end position are indistinguishable. */ |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3251 invisible = Foverlay_get (overlay, Qinvisible); |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3252 invis_p = TEXT_PROP_MEANS_INVISIBLE (invisible); |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3253 |
25012 | 3254 /* If overlay has a non-empty before-string, record it. */ |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3255 if ((start == charpos || (end == charpos && invis_p)) |
25012 | 3256 && (str = Foverlay_get (overlay, Qbefore_string), STRINGP (str)) |
3257 && XSTRING (str)->size) | |
3258 RECORD_OVERLAY_STRING (overlay, str, 0); | |
3259 | |
3260 /* If overlay has a non-empty after-string, record it. */ | |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3261 if ((end == charpos || (start == charpos && invis_p)) |
25012 | 3262 && (str = Foverlay_get (overlay, Qafter_string), STRINGP (str)) |
3263 && XSTRING (str)->size) | |
3264 RECORD_OVERLAY_STRING (overlay, str, 1); | |
3265 } | |
3266 | |
3267 /* Process overlays after the overlay center. */ | |
29858
54f927c5f436
(handle_stop): Initialize it->add_overlay_start to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
29817
diff
changeset
|
3268 for (ov = current_buffer->overlays_after; CONSP (ov); ov = XCDR (ov)) |
25519
5e59e2bd26b5
Use XCAR and XCDR instead of XCONS.
Gerd Moellmann <gerd@gnu.org>
parents:
25500
diff
changeset
|
3269 { |
5e59e2bd26b5
Use XCAR and XCDR instead of XCONS.
Gerd Moellmann <gerd@gnu.org>
parents:
25500
diff
changeset
|
3270 overlay = XCAR (ov); |
25012 | 3271 xassert (OVERLAYP (overlay)); |
3272 start = OVERLAY_POSITION (OVERLAY_START (overlay)); | |
3273 end = OVERLAY_POSITION (OVERLAY_END (overlay)); | |
3274 | |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3275 if (start > charpos) |
25012 | 3276 break; |
3277 | |
3278 /* Skip this overlay if it doesn't start or end at IT's current | |
3279 position. */ | |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3280 if (end != charpos && start != charpos) |
25012 | 3281 continue; |
3282 | |
3283 /* Skip this overlay if it doesn't apply to IT->w. */ | |
3284 window = Foverlay_get (overlay, Qwindow); | |
3285 if (WINDOWP (window) && XWINDOW (window) != it->w) | |
3286 continue; | |
3287 | |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3288 /* If the text ``under'' the overlay is invisible, it has a zero |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3289 dimension, and both before- and after-strings apply. */ |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3290 invisible = Foverlay_get (overlay, Qinvisible); |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3291 invis_p = TEXT_PROP_MEANS_INVISIBLE (invisible); |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3292 |
25012 | 3293 /* If overlay has a non-empty before-string, record it. */ |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3294 if ((start == charpos || (end == charpos && invis_p)) |
25012 | 3295 && (str = Foverlay_get (overlay, Qbefore_string), STRINGP (str)) |
3296 && XSTRING (str)->size) | |
3297 RECORD_OVERLAY_STRING (overlay, str, 0); | |
3298 | |
3299 /* If overlay has a non-empty after-string, record it. */ | |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3300 if ((end == charpos || (start == charpos && invis_p)) |
25012 | 3301 && (str = Foverlay_get (overlay, Qafter_string), STRINGP (str)) |
3302 && XSTRING (str)->size) | |
3303 RECORD_OVERLAY_STRING (overlay, str, 1); | |
3304 } | |
3305 | |
3306 #undef RECORD_OVERLAY_STRING | |
3307 | |
3308 /* Sort entries. */ | |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3309 if (n > 1) |
29858
54f927c5f436
(handle_stop): Initialize it->add_overlay_start to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
29817
diff
changeset
|
3310 qsort (entries, n, sizeof *entries, compare_overlay_entries); |
25012 | 3311 |
3312 /* Record the total number of strings to process. */ | |
3313 it->n_overlay_strings = n; | |
3314 | |
3315 /* IT->current.overlay_string_index is the number of overlay strings | |
3316 that have already been consumed by IT. Copy some of the | |
3317 remaining overlay strings to IT->overlay_strings. */ | |
3318 i = 0; | |
3319 j = it->current.overlay_string_index; | |
3320 while (i < OVERLAY_STRING_CHUNK_SIZE && j < n) | |
3321 it->overlay_strings[i++] = entries[j++].string; | |
29858
54f927c5f436
(handle_stop): Initialize it->add_overlay_start to zero.
Gerd Moellmann <gerd@gnu.org>
parents:
29817
diff
changeset
|
3322 |
25012 | 3323 CHECK_IT (it); |
3324 } | |
3325 | |
3326 | |
3327 /* Get the first chunk of overlay strings at IT's current buffer | |
3328 position. Value is non-zero if at least one overlay string was | |
3329 found. */ | |
3330 | |
3331 static int | |
3332 get_overlay_strings (it) | |
3333 struct it *it; | |
3334 { | |
3335 /* Get the first OVERLAY_STRING_CHUNK_SIZE overlay strings to | |
3336 process. This fills IT->overlay_strings with strings, and sets | |
3337 IT->n_overlay_strings to the total number of strings to process. | |
3338 IT->pos.overlay_string_index has to be set temporarily to zero | |
3339 because load_overlay_strings needs this; it must be set to -1 | |
3340 when no overlay strings are found because a zero value would | |
3341 indicate a position in the first overlay string. */ | |
3342 it->current.overlay_string_index = 0; | |
3343 load_overlay_strings (it); | |
3344 | |
3345 /* If we found overlay strings, set up IT to deliver display | |
3346 elements from the first one. Otherwise set up IT to deliver | |
3347 from current_buffer. */ | |
3348 if (it->n_overlay_strings) | |
3349 { | |
3350 /* Make sure we know settings in current_buffer, so that we can | |
3351 restore meaningful values when we're done with the overlay | |
3352 strings. */ | |
3353 compute_stop_pos (it); | |
3354 xassert (it->face_id >= 0); | |
3355 | |
3356 /* Save IT's settings. They are restored after all overlay | |
3357 strings have been processed. */ | |
3358 xassert (it->sp == 0); | |
3359 push_it (it); | |
3360 | |
3361 /* Set up IT to deliver display elements from the first overlay | |
3362 string. */ | |
3363 IT_STRING_CHARPOS (*it) = IT_STRING_BYTEPOS (*it) = 0; | |
3364 it->stop_charpos = 0; | |
3365 it->string = it->overlay_strings[0]; | |
3366 it->multibyte_p = STRING_MULTIBYTE (it->string); | |
3367 xassert (STRINGP (it->string)); | |
3368 it->method = next_element_from_string; | |
3369 } | |
3370 else | |
3371 { | |
3372 it->string = Qnil; | |
3373 it->current.overlay_string_index = -1; | |
3374 it->method = next_element_from_buffer; | |
3375 } | |
3376 | |
3377 CHECK_IT (it); | |
3378 | |
3379 /* Value is non-zero if we found at least one overlay string. */ | |
3380 return STRINGP (it->string); | |
3381 } | |
3382 | |
3383 | |
3384 | |
3385 /*********************************************************************** | |
3386 Saving and restoring state | |
3387 ***********************************************************************/ | |
3388 | |
3389 /* Save current settings of IT on IT->stack. Called, for example, | |
3390 before setting up IT for an overlay string, to be able to restore | |
3391 IT's settings to what they were after the overlay string has been | |
3392 processed. */ | |
3393 | |
3394 static void | |
3395 push_it (it) | |
3396 struct it *it; | |
3397 { | |
3398 struct iterator_stack_entry *p; | |
3399 | |
3400 xassert (it->sp < 2); | |
3401 p = it->stack + it->sp; | |
3402 | |
3403 p->stop_charpos = it->stop_charpos; | |
3404 xassert (it->face_id >= 0); | |
3405 p->face_id = it->face_id; | |
3406 p->string = it->string; | |
3407 p->pos = it->current; | |
3408 p->end_charpos = it->end_charpos; | |
3409 p->string_nchars = it->string_nchars; | |
3410 p->area = it->area; | |
3411 p->multibyte_p = it->multibyte_p; | |
3412 p->space_width = it->space_width; | |
3413 p->font_height = it->font_height; | |
3414 p->voffset = it->voffset; | |
3415 p->string_from_display_prop_p = it->string_from_display_prop_p; | |
3416 ++it->sp; | |
3417 } | |
3418 | |
3419 | |
3420 /* Restore IT's settings from IT->stack. Called, for example, when no | |
3421 more overlay strings must be processed, and we return to delivering | |
3422 display elements from a buffer, or when the end of a string from a | |
3423 `display' property is reached and we return to delivering display | |
3424 elements from an overlay string, or from a buffer. */ | |
3425 | |
3426 static void | |
3427 pop_it (it) | |
3428 struct it *it; | |
3429 { | |
3430 struct iterator_stack_entry *p; | |
3431 | |
3432 xassert (it->sp > 0); | |
3433 --it->sp; | |
3434 p = it->stack + it->sp; | |
3435 it->stop_charpos = p->stop_charpos; | |
3436 it->face_id = p->face_id; | |
3437 it->string = p->string; | |
3438 it->current = p->pos; | |
3439 it->end_charpos = p->end_charpos; | |
3440 it->string_nchars = p->string_nchars; | |
3441 it->area = p->area; | |
3442 it->multibyte_p = p->multibyte_p; | |
3443 it->space_width = p->space_width; | |
3444 it->font_height = p->font_height; | |
3445 it->voffset = p->voffset; | |
3446 it->string_from_display_prop_p = p->string_from_display_prop_p; | |
3447 } | |
3448 | |
3449 | |
3450 | |
3451 /*********************************************************************** | |
3452 Moving over lines | |
3453 ***********************************************************************/ | |
3454 | |
3455 /* Set IT's current position to the previous line start. */ | |
3456 | |
3457 static void | |
3458 back_to_previous_line_start (it) | |
3459 struct it *it; | |
3460 { | |
3461 IT_CHARPOS (*it) = find_next_newline_no_quit (IT_CHARPOS (*it) - 1, -1); | |
3462 IT_BYTEPOS (*it) = CHAR_TO_BYTE (IT_CHARPOS (*it)); | |
3463 } | |
3464 | |
3465 | |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3466 /* Move IT to the next line start. |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3467 |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3468 Value is non-zero if a newline was found. Set *SKIPPED_P to 1 if |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3469 we skipped over part of the text (as opposed to moving the iterator |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3470 continuously over the text). Otherwise, don't change the value |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3471 of *SKIPPED_P. |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3472 |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3473 Newlines may come from buffer text, overlay strings, or strings |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3474 displayed via the `display' property. That's the reason we can't |
33916
907c3073ae28
(forward_to_next_line_start): If already on a newline,
Gerd Moellmann <gerd@gnu.org>
parents:
33898
diff
changeset
|
3475 simply use find_next_newline_no_quit. |
907c3073ae28
(forward_to_next_line_start): If already on a newline,
Gerd Moellmann <gerd@gnu.org>
parents:
33898
diff
changeset
|
3476 |
907c3073ae28
(forward_to_next_line_start): If already on a newline,
Gerd Moellmann <gerd@gnu.org>
parents:
33898
diff
changeset
|
3477 Note that this function may not skip over invisible text that is so |
907c3073ae28
(forward_to_next_line_start): If already on a newline,
Gerd Moellmann <gerd@gnu.org>
parents:
33898
diff
changeset
|
3478 because of text properties and immediately follows a newline. If |
907c3073ae28
(forward_to_next_line_start): If already on a newline,
Gerd Moellmann <gerd@gnu.org>
parents:
33898
diff
changeset
|
3479 it would, function reseat_at_next_visible_line_start, when called |
907c3073ae28
(forward_to_next_line_start): If already on a newline,
Gerd Moellmann <gerd@gnu.org>
parents:
33898
diff
changeset
|
3480 from set_iterator_to_next, would effectively make invisible |
907c3073ae28
(forward_to_next_line_start): If already on a newline,
Gerd Moellmann <gerd@gnu.org>
parents:
33898
diff
changeset
|
3481 characters following a newline part of the wrong glyph row, which |
907c3073ae28
(forward_to_next_line_start): If already on a newline,
Gerd Moellmann <gerd@gnu.org>
parents:
33898
diff
changeset
|
3482 leads to wrong cursor motion. */ |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3483 |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3484 static int |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3485 forward_to_next_line_start (it, skipped_p) |
25012 | 3486 struct it *it; |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3487 int *skipped_p; |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3488 { |
32585
bf84251f474b
(forward_to_next_line_start): Switch iterator's handling
Gerd Moellmann <gerd@gnu.org>
parents:
32553
diff
changeset
|
3489 int old_selective, newline_found_p, n; |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3490 const int MAX_NEWLINE_DISTANCE = 500; |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3491 |
33916
907c3073ae28
(forward_to_next_line_start): If already on a newline,
Gerd Moellmann <gerd@gnu.org>
parents:
33898
diff
changeset
|
3492 /* If already on a newline, just consume it to avoid unintended |
907c3073ae28
(forward_to_next_line_start): If already on a newline,
Gerd Moellmann <gerd@gnu.org>
parents:
33898
diff
changeset
|
3493 skipping over invisible text below. */ |
33950
a036721cfe80
(forward_to_next_line_start): Check for newlines,
Gerd Moellmann <gerd@gnu.org>
parents:
33916
diff
changeset
|
3494 if (it->what == IT_CHARACTER && it->c == '\n') |
33916
907c3073ae28
(forward_to_next_line_start): If already on a newline,
Gerd Moellmann <gerd@gnu.org>
parents:
33898
diff
changeset
|
3495 { |
907c3073ae28
(forward_to_next_line_start): If already on a newline,
Gerd Moellmann <gerd@gnu.org>
parents:
33898
diff
changeset
|
3496 set_iterator_to_next (it, 0); |
35029
e02de3bdd349
(forward_to_next_line_start): Reset it->c if taking the
Gerd Moellmann <gerd@gnu.org>
parents:
35023
diff
changeset
|
3497 it->c = 0; |
33916
907c3073ae28
(forward_to_next_line_start): If already on a newline,
Gerd Moellmann <gerd@gnu.org>
parents:
33898
diff
changeset
|
3498 return 1; |
907c3073ae28
(forward_to_next_line_start): If already on a newline,
Gerd Moellmann <gerd@gnu.org>
parents:
33898
diff
changeset
|
3499 } |
907c3073ae28
(forward_to_next_line_start): If already on a newline,
Gerd Moellmann <gerd@gnu.org>
parents:
33898
diff
changeset
|
3500 |
32585
bf84251f474b
(forward_to_next_line_start): Switch iterator's handling
Gerd Moellmann <gerd@gnu.org>
parents:
32553
diff
changeset
|
3501 /* Don't handle selective display in the following. It's (a) |
33916
907c3073ae28
(forward_to_next_line_start): If already on a newline,
Gerd Moellmann <gerd@gnu.org>
parents:
33898
diff
changeset
|
3502 unnecessary because it's done by the caller, and (b) leads to an |
907c3073ae28
(forward_to_next_line_start): If already on a newline,
Gerd Moellmann <gerd@gnu.org>
parents:
33898
diff
changeset
|
3503 infinite recursion because next_element_from_ellipsis indirectly |
907c3073ae28
(forward_to_next_line_start): If already on a newline,
Gerd Moellmann <gerd@gnu.org>
parents:
33898
diff
changeset
|
3504 calls this function. */ |
32585
bf84251f474b
(forward_to_next_line_start): Switch iterator's handling
Gerd Moellmann <gerd@gnu.org>
parents:
32553
diff
changeset
|
3505 old_selective = it->selective; |
bf84251f474b
(forward_to_next_line_start): Switch iterator's handling
Gerd Moellmann <gerd@gnu.org>
parents:
32553
diff
changeset
|
3506 it->selective = 0; |
bf84251f474b
(forward_to_next_line_start): Switch iterator's handling
Gerd Moellmann <gerd@gnu.org>
parents:
32553
diff
changeset
|
3507 |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3508 /* Scan for a newline within MAX_NEWLINE_DISTANCE display elements |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3509 from buffer text. */ |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3510 n = newline_found_p = 0; |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3511 while (n < MAX_NEWLINE_DISTANCE |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3512 && get_next_display_element (it) |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3513 && !newline_found_p) |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3514 { |
33950
a036721cfe80
(forward_to_next_line_start): Check for newlines,
Gerd Moellmann <gerd@gnu.org>
parents:
33916
diff
changeset
|
3515 newline_found_p = it->what == IT_CHARACTER && it->c == '\n'; |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3516 set_iterator_to_next (it, 0); |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3517 if (!STRINGP (it->string)) |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3518 ++n; |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3519 } |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3520 |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3521 /* If we didn't find a newline near enough, see if we can use a |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3522 short-cut. */ |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3523 if (!newline_found_p && n == MAX_NEWLINE_DISTANCE) |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3524 { |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3525 int start = IT_CHARPOS (*it); |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3526 int limit = find_next_newline_no_quit (start, 1); |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3527 Lisp_Object pos; |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3528 |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3529 xassert (!STRINGP (it->string)); |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3530 |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3531 /* If there isn't any `display' property in sight, and no |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3532 overlays, we can just use the position of the newline in |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3533 buffer text. */ |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3534 if (it->stop_charpos >= limit |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3535 || ((pos = Fnext_single_property_change (make_number (start), |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3536 Qdisplay, |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3537 Qnil, make_number (limit)), |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3538 NILP (pos)) |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3539 && next_overlay_change (start) == ZV)) |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3540 { |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3541 IT_CHARPOS (*it) = limit; |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3542 IT_BYTEPOS (*it) = CHAR_TO_BYTE (limit); |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3543 *skipped_p = newline_found_p = 1; |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3544 } |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3545 else |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3546 { |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3547 while (get_next_display_element (it) |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3548 && !newline_found_p) |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3549 { |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3550 newline_found_p = ITERATOR_AT_END_OF_LINE_P (it); |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3551 set_iterator_to_next (it, 0); |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3552 } |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3553 } |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3554 } |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3555 |
32585
bf84251f474b
(forward_to_next_line_start): Switch iterator's handling
Gerd Moellmann <gerd@gnu.org>
parents:
32553
diff
changeset
|
3556 it->selective = old_selective; |
35029
e02de3bdd349
(forward_to_next_line_start): Reset it->c if taking the
Gerd Moellmann <gerd@gnu.org>
parents:
35023
diff
changeset
|
3557 xassert (!newline_found_p || FETCH_BYTE (IT_BYTEPOS (*it) - 1) == '\n'); |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3558 return newline_found_p; |
25012 | 3559 } |
3560 | |
3561 | |
3562 /* Set IT's current position to the previous visible line start. Skip | |
3563 invisible text that is so either due to text properties or due to | |
3564 selective display. Caution: this does not change IT->current_x and | |
3565 IT->hpos. */ | |
3566 | |
3567 static void | |
3568 back_to_previous_visible_line_start (it) | |
3569 struct it *it; | |
3570 { | |
3571 int visible_p = 0; | |
3572 | |
3573 /* Go back one newline if not on BEGV already. */ | |
3574 if (IT_CHARPOS (*it) > BEGV) | |
3575 back_to_previous_line_start (it); | |
3576 | |
3577 /* Move over lines that are invisible because of selective display | |
3578 or text properties. */ | |
3579 while (IT_CHARPOS (*it) > BEGV | |
3580 && !visible_p) | |
3581 { | |
3582 visible_p = 1; | |
3583 | |
3584 /* If selective > 0, then lines indented more than that values | |
3585 are invisible. */ | |
3586 if (it->selective > 0 | |
3587 && indented_beyond_p (IT_CHARPOS (*it), IT_BYTEPOS (*it), | |
3588 it->selective)) | |
3589 visible_p = 0; | |
3590 else | |
3591 { | |
3592 Lisp_Object prop; | |
3593 | |
28464
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28362
diff
changeset
|
3594 prop = Fget_char_property (make_number (IT_CHARPOS (*it)), |
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28362
diff
changeset
|
3595 Qinvisible, it->window); |
25012 | 3596 if (TEXT_PROP_MEANS_INVISIBLE (prop)) |
3597 visible_p = 0; | |
3598 } | |
3599 | |
3600 /* Back one more newline if the current one is invisible. */ | |
3601 if (!visible_p) | |
3602 back_to_previous_line_start (it); | |
3603 } | |
3604 | |
3605 xassert (IT_CHARPOS (*it) >= BEGV); | |
3606 xassert (IT_CHARPOS (*it) == BEGV | |
3607 || FETCH_BYTE (IT_BYTEPOS (*it) - 1) == '\n'); | |
3608 CHECK_IT (it); | |
3609 } | |
3610 | |
3611 | |
3612 /* Reseat iterator IT at the previous visible line start. Skip | |
3613 invisible text that is so either due to text properties or due to | |
3614 selective display. At the end, update IT's overlay information, | |
3615 face information etc. */ | |
3616 | |
3617 static void | |
3618 reseat_at_previous_visible_line_start (it) | |
3619 struct it *it; | |
3620 { | |
3621 back_to_previous_visible_line_start (it); | |
3622 reseat (it, it->current.pos, 1); | |
3623 CHECK_IT (it); | |
3624 } | |
3625 | |
3626 | |
3627 /* Reseat iterator IT on the next visible line start in the current | |
25188
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
3628 buffer. ON_NEWLINE_P non-zero means position IT on the newline |
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
3629 preceding the line start. Skip over invisible text that is so |
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
3630 because of selective display. Compute faces, overlays etc at the |
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
3631 new position. Note that this function does not skip over text that |
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
3632 is invisible because of text properties. */ |
25012 | 3633 |
3634 static void | |
25188
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
3635 reseat_at_next_visible_line_start (it, on_newline_p) |
25012 | 3636 struct it *it; |
25188
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
3637 int on_newline_p; |
25012 | 3638 { |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3639 int newline_found_p, skipped_p = 0; |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3640 |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3641 newline_found_p = forward_to_next_line_start (it, &skipped_p); |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3642 |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3643 /* Skip over lines that are invisible because they are indented |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3644 more than the value of IT->selective. */ |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3645 if (it->selective > 0) |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3646 while (IT_CHARPOS (*it) < ZV |
35029
e02de3bdd349
(forward_to_next_line_start): Reset it->c if taking the
Gerd Moellmann <gerd@gnu.org>
parents:
35023
diff
changeset
|
3647 && indented_beyond_p (IT_CHARPOS (*it), IT_BYTEPOS (*it), |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3648 it->selective)) |
35029
e02de3bdd349
(forward_to_next_line_start): Reset it->c if taking the
Gerd Moellmann <gerd@gnu.org>
parents:
35023
diff
changeset
|
3649 { |
e02de3bdd349
(forward_to_next_line_start): Reset it->c if taking the
Gerd Moellmann <gerd@gnu.org>
parents:
35023
diff
changeset
|
3650 xassert (FETCH_BYTE (IT_BYTEPOS (*it) - 1) == '\n'); |
e02de3bdd349
(forward_to_next_line_start): Reset it->c if taking the
Gerd Moellmann <gerd@gnu.org>
parents:
35023
diff
changeset
|
3651 newline_found_p = forward_to_next_line_start (it, &skipped_p); |
e02de3bdd349
(forward_to_next_line_start): Reset it->c if taking the
Gerd Moellmann <gerd@gnu.org>
parents:
35023
diff
changeset
|
3652 } |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3653 |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3654 /* Position on the newline if that's what's requested. */ |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3655 if (on_newline_p && newline_found_p) |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3656 { |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3657 if (STRINGP (it->string)) |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3658 { |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3659 if (IT_STRING_CHARPOS (*it) > 0) |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3660 { |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3661 --IT_STRING_CHARPOS (*it); |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3662 --IT_STRING_BYTEPOS (*it); |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3663 } |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3664 } |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3665 else if (IT_CHARPOS (*it) > BEGV) |
25188
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
3666 { |
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
3667 --IT_CHARPOS (*it); |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3668 --IT_BYTEPOS (*it); |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3669 reseat (it, it->current.pos, 0); |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3670 } |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3671 } |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3672 else if (skipped_p) |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
3673 reseat (it, it->current.pos, 0); |
25012 | 3674 |
3675 CHECK_IT (it); | |
3676 } | |
3677 | |
3678 | |
3679 | |
3680 /*********************************************************************** | |
3681 Changing an iterator's position | |
3682 ***********************************************************************/ | |
3683 | |
3684 /* Change IT's current position to POS in current_buffer. If FORCE_P | |
3685 is non-zero, always check for text properties at the new position. | |
3686 Otherwise, text properties are only looked up if POS >= | |
3687 IT->check_charpos of a property. */ | |
3688 | |
3689 static void | |
3690 reseat (it, pos, force_p) | |
3691 struct it *it; | |
3692 struct text_pos pos; | |
3693 int force_p; | |
3694 { | |
3695 int original_pos = IT_CHARPOS (*it); | |
3696 | |
3697 reseat_1 (it, pos, 0); | |
3698 | |
3699 /* Determine where to check text properties. Avoid doing it | |
3700 where possible because text property lookup is very expensive. */ | |
3701 if (force_p | |
3702 || CHARPOS (pos) > it->stop_charpos | |
3703 || CHARPOS (pos) < original_pos) | |
3704 handle_stop (it); | |
3705 | |
3706 CHECK_IT (it); | |
3707 } | |
3708 | |
3709 | |
3710 /* Change IT's buffer position to POS. SET_STOP_P non-zero means set | |
3711 IT->stop_pos to POS, also. */ | |
3712 | |
3713 static void | |
3714 reseat_1 (it, pos, set_stop_p) | |
3715 struct it *it; | |
3716 struct text_pos pos; | |
3717 int set_stop_p; | |
3718 { | |
3719 /* Don't call this function when scanning a C string. */ | |
3720 xassert (it->s == NULL); | |
3721 | |
3722 /* POS must be a reasonable value. */ | |
3723 xassert (CHARPOS (pos) >= BEGV && CHARPOS (pos) <= ZV); | |
3724 | |
3725 it->current.pos = it->position = pos; | |
3726 XSETBUFFER (it->object, current_buffer); | |
3727 it->dpvec = NULL; | |
3728 it->current.dpvec_index = -1; | |
3729 it->current.overlay_string_index = -1; | |
3730 IT_STRING_CHARPOS (*it) = -1; | |
3731 IT_STRING_BYTEPOS (*it) = -1; | |
3732 it->string = Qnil; | |
3733 it->method = next_element_from_buffer; | |
3734 it->sp = 0; | |
34225
b5cdf1bb6bb8
(next_element_from_ellipsis): Save face before selective
Gerd Moellmann <gerd@gnu.org>
parents:
34068
diff
changeset
|
3735 it->face_before_selective_p = 0; |
25012 | 3736 |
3737 if (set_stop_p) | |
3738 it->stop_charpos = CHARPOS (pos); | |
3739 } | |
3740 | |
3741 | |
3742 /* Set up IT for displaying a string, starting at CHARPOS in window W. | |
3743 If S is non-null, it is a C string to iterate over. Otherwise, | |
3744 STRING gives a Lisp string to iterate over. | |
3745 | |
3746 If PRECISION > 0, don't return more then PRECISION number of | |
3747 characters from the string. | |
3748 | |
3749 If FIELD_WIDTH > 0, return padding spaces until FIELD_WIDTH | |
3750 characters have been returned. FIELD_WIDTH < 0 means an infinite | |
3751 field width. | |
3752 | |
3753 MULTIBYTE = 0 means disable processing of multibyte characters, | |
3754 MULTIBYTE > 0 means enable it, | |
3755 MULTIBYTE < 0 means use IT->multibyte_p. | |
3756 | |
3757 IT must be initialized via a prior call to init_iterator before | |
3758 calling this function. */ | |
3759 | |
3760 static void | |
3761 reseat_to_string (it, s, string, charpos, precision, field_width, multibyte) | |
3762 struct it *it; | |
3763 unsigned char *s; | |
3764 Lisp_Object string; | |
3765 int charpos; | |
3766 int precision, field_width, multibyte; | |
3767 { | |
3768 /* No region in strings. */ | |
3769 it->region_beg_charpos = it->region_end_charpos = -1; | |
3770 | |
3771 /* No text property checks performed by default, but see below. */ | |
3772 it->stop_charpos = -1; | |
3773 | |
3774 /* Set iterator position and end position. */ | |
3775 bzero (&it->current, sizeof it->current); | |
3776 it->current.overlay_string_index = -1; | |
3777 it->current.dpvec_index = -1; | |
3778 xassert (charpos >= 0); | |
3779 | |
3780 /* Use the setting of MULTIBYTE if specified. */ | |
3781 if (multibyte >= 0) | |
3782 it->multibyte_p = multibyte > 0; | |
3783 | |
3784 if (s == NULL) | |
3785 { | |
3786 xassert (STRINGP (string)); | |
3787 it->string = string; | |
3788 it->s = NULL; | |
3789 it->end_charpos = it->string_nchars = XSTRING (string)->size; | |
3790 it->method = next_element_from_string; | |
3791 it->current.string_pos = string_pos (charpos, string); | |
3792 } | |
3793 else | |
3794 { | |
3795 it->s = s; | |
3796 it->string = Qnil; | |
3797 | |
3798 /* Note that we use IT->current.pos, not it->current.string_pos, | |
3799 for displaying C strings. */ | |
3800 IT_STRING_CHARPOS (*it) = IT_STRING_BYTEPOS (*it) = -1; | |
3801 if (it->multibyte_p) | |
3802 { | |
3803 it->current.pos = c_string_pos (charpos, s, 1); | |
3804 it->end_charpos = it->string_nchars = number_of_chars (s, 1); | |
3805 } | |
3806 else | |
3807 { | |
3808 IT_CHARPOS (*it) = IT_BYTEPOS (*it) = charpos; | |
3809 it->end_charpos = it->string_nchars = strlen (s); | |
3810 } | |
3811 | |
3812 it->method = next_element_from_c_string; | |
3813 } | |
3814 | |
3815 /* PRECISION > 0 means don't return more than PRECISION characters | |
3816 from the string. */ | |
3817 if (precision > 0 && it->end_charpos - charpos > precision) | |
3818 it->end_charpos = it->string_nchars = charpos + precision; | |
3819 | |
3820 /* FIELD_WIDTH > 0 means pad with spaces until FIELD_WIDTH | |
3821 characters have been returned. FIELD_WIDTH == 0 means don't pad, | |
3822 FIELD_WIDTH < 0 means infinite field width. This is useful for | |
3823 padding with `-' at the end of a mode line. */ | |
3824 if (field_width < 0) | |
3825 field_width = INFINITY; | |
3826 if (field_width > it->end_charpos - charpos) | |
3827 it->end_charpos = charpos + field_width; | |
3828 | |
3829 /* Use the standard display table for displaying strings. */ | |
3830 if (DISP_TABLE_P (Vstandard_display_table)) | |
3831 it->dp = XCHAR_TABLE (Vstandard_display_table); | |
3832 | |
3833 it->stop_charpos = charpos; | |
3834 CHECK_IT (it); | |
3835 } | |
3836 | |
3837 | |
3838 | |
3839 /*********************************************************************** | |
3840 Iteration | |
3841 ***********************************************************************/ | |
3842 | |
3843 /* Load IT's display element fields with information about the next | |
3844 display element from the current position of IT. Value is zero if | |
3845 end of buffer (or C string) is reached. */ | |
3846 | |
3847 int | |
3848 get_next_display_element (it) | |
3849 struct it *it; | |
3850 { | |
3851 /* Non-zero means that we found an display element. Zero means that | |
3852 we hit the end of what we iterate over. Performance note: the | |
3853 function pointer `method' used here turns out to be faster than | |
3854 using a sequence of if-statements. */ | |
3855 int success_p = (*it->method) (it); | |
3856 | |
3857 if (it->what == IT_CHARACTER) | |
3858 { | |
3859 /* Map via display table or translate control characters. | |
3860 IT->c, IT->len etc. have been set to the next character by | |
3861 the function call above. If we have a display table, and it | |
3862 contains an entry for IT->c, translate it. Don't do this if | |
3863 IT->c itself comes from a display table, otherwise we could | |
3864 end up in an infinite recursion. (An alternative could be to | |
3865 count the recursion depth of this function and signal an | |
3866 error when a certain maximum depth is reached.) Is it worth | |
3867 it? */ | |
3868 if (success_p && it->dpvec == NULL) | |
3869 { | |
3870 Lisp_Object dv; | |
3871 | |
3872 if (it->dp | |
3873 && (dv = DISP_CHAR_VECTOR (it->dp, it->c), | |
3874 VECTORP (dv))) | |
3875 { | |
3876 struct Lisp_Vector *v = XVECTOR (dv); | |
3877 | |
3878 /* Return the first character from the display table | |
3879 entry, if not empty. If empty, don't display the | |
3880 current character. */ | |
3881 if (v->size) | |
3882 { | |
3883 it->dpvec_char_len = it->len; | |
3884 it->dpvec = v->contents; | |
3885 it->dpend = v->contents + v->size; | |
3886 it->current.dpvec_index = 0; | |
3887 it->method = next_element_from_display_vector; | |
3888 } | |
3889 | |
3890 success_p = get_next_display_element (it); | |
3891 } | |
3892 | |
3893 /* Translate control characters into `\003' or `^C' form. | |
3894 Control characters coming from a display table entry are | |
3895 currently not translated because we use IT->dpvec to hold | |
3896 the translation. This could easily be changed but I | |
25500
156172362ea9
(get_next_display_element): Display incomplete multibyte
Kenichi Handa <handa@m17n.org>
parents:
25493
diff
changeset
|
3897 don't believe that it is worth doing. |
156172362ea9
(get_next_display_element): Display incomplete multibyte
Kenichi Handa <handa@m17n.org>
parents:
25493
diff
changeset
|
3898 |
156172362ea9
(get_next_display_element): Display incomplete multibyte
Kenichi Handa <handa@m17n.org>
parents:
25493
diff
changeset
|
3899 Non-printable multibyte characters are also translated |
156172362ea9
(get_next_display_element): Display incomplete multibyte
Kenichi Handa <handa@m17n.org>
parents:
25493
diff
changeset
|
3900 octal form. */ |
25012 | 3901 else if ((it->c < ' ' |
3902 && (it->area != TEXT_AREA | |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
3903 || (it->c != '\n' && it->c != '\t'))) |
25063
7c69e1001e35
(get_next_display_element): Display DEL as `^?'.
Gerd Moellmann <gerd@gnu.org>
parents:
25012
diff
changeset
|
3904 || (it->c >= 127 |
25500
156172362ea9
(get_next_display_element): Display incomplete multibyte
Kenichi Handa <handa@m17n.org>
parents:
25493
diff
changeset
|
3905 && it->len == 1) |
156172362ea9
(get_next_display_element): Display incomplete multibyte
Kenichi Handa <handa@m17n.org>
parents:
25493
diff
changeset
|
3906 || !CHAR_PRINTABLE_P (it->c)) |
25012 | 3907 { |
3908 /* IT->c is a control character which must be displayed | |
3909 either as '\003' or as `^C' where the '\\' and '^' | |
3910 can be defined in the display table. Fill | |
3911 IT->ctl_chars with glyphs for what we have to | |
3912 display. Then, set IT->dpvec to these glyphs. */ | |
3913 GLYPH g; | |
3914 | |
25063
7c69e1001e35
(get_next_display_element): Display DEL as `^?'.
Gerd Moellmann <gerd@gnu.org>
parents:
25012
diff
changeset
|
3915 if (it->c < 128 && it->ctl_arrow_p) |
25012 | 3916 { |
3917 /* Set IT->ctl_chars[0] to the glyph for `^'. */ | |
3918 if (it->dp | |
3919 && INTEGERP (DISP_CTRL_GLYPH (it->dp)) | |
3920 && GLYPH_CHAR_VALID_P (XINT (DISP_CTRL_GLYPH (it->dp)))) | |
3921 g = XINT (DISP_CTRL_GLYPH (it->dp)); | |
3922 else | |
3923 g = FAST_MAKE_GLYPH ('^', 0); | |
3924 XSETINT (it->ctl_chars[0], g); | |
3925 | |
3926 g = FAST_MAKE_GLYPH (it->c ^ 0100, 0); | |
3927 XSETINT (it->ctl_chars[1], g); | |
3928 | |
3929 /* Set up IT->dpvec and return first character from it. */ | |
3930 it->dpvec_char_len = it->len; | |
3931 it->dpvec = it->ctl_chars; | |
3932 it->dpend = it->dpvec + 2; | |
3933 it->current.dpvec_index = 0; | |
3934 it->method = next_element_from_display_vector; | |
3935 get_next_display_element (it); | |
3936 } | |
3937 else | |
3938 { | |
26874
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
3939 unsigned char str[MAX_MULTIBYTE_LENGTH]; |
29023
af50e87cc257
(get_next_display_element): Handle 8-bit characters
Kenichi Handa <handa@m17n.org>
parents:
28984
diff
changeset
|
3940 int len; |
25500
156172362ea9
(get_next_display_element): Display incomplete multibyte
Kenichi Handa <handa@m17n.org>
parents:
25493
diff
changeset
|
3941 int i; |
156172362ea9
(get_next_display_element): Display incomplete multibyte
Kenichi Handa <handa@m17n.org>
parents:
25493
diff
changeset
|
3942 GLYPH escape_glyph; |
156172362ea9
(get_next_display_element): Display incomplete multibyte
Kenichi Handa <handa@m17n.org>
parents:
25493
diff
changeset
|
3943 |
25012 | 3944 /* Set IT->ctl_chars[0] to the glyph for `\\'. */ |
3945 if (it->dp | |
3946 && INTEGERP (DISP_ESCAPE_GLYPH (it->dp)) | |
3947 && GLYPH_CHAR_VALID_P (XFASTINT (DISP_ESCAPE_GLYPH (it->dp)))) | |
25500
156172362ea9
(get_next_display_element): Display incomplete multibyte
Kenichi Handa <handa@m17n.org>
parents:
25493
diff
changeset
|
3948 escape_glyph = XFASTINT (DISP_ESCAPE_GLYPH (it->dp)); |
25012 | 3949 else |
25500
156172362ea9
(get_next_display_element): Display incomplete multibyte
Kenichi Handa <handa@m17n.org>
parents:
25493
diff
changeset
|
3950 escape_glyph = FAST_MAKE_GLYPH ('\\', 0); |
156172362ea9
(get_next_display_element): Display incomplete multibyte
Kenichi Handa <handa@m17n.org>
parents:
25493
diff
changeset
|
3951 |
29023
af50e87cc257
(get_next_display_element): Handle 8-bit characters
Kenichi Handa <handa@m17n.org>
parents:
28984
diff
changeset
|
3952 if (SINGLE_BYTE_CHAR_P (it->c)) |
af50e87cc257
(get_next_display_element): Handle 8-bit characters
Kenichi Handa <handa@m17n.org>
parents:
28984
diff
changeset
|
3953 str[0] = it->c, len = 1; |
af50e87cc257
(get_next_display_element): Handle 8-bit characters
Kenichi Handa <handa@m17n.org>
parents:
28984
diff
changeset
|
3954 else |
af50e87cc257
(get_next_display_element): Handle 8-bit characters
Kenichi Handa <handa@m17n.org>
parents:
28984
diff
changeset
|
3955 len = CHAR_STRING (it->c, str); |
af50e87cc257
(get_next_display_element): Handle 8-bit characters
Kenichi Handa <handa@m17n.org>
parents:
28984
diff
changeset
|
3956 |
25500
156172362ea9
(get_next_display_element): Display incomplete multibyte
Kenichi Handa <handa@m17n.org>
parents:
25493
diff
changeset
|
3957 for (i = 0; i < len; i++) |
156172362ea9
(get_next_display_element): Display incomplete multibyte
Kenichi Handa <handa@m17n.org>
parents:
25493
diff
changeset
|
3958 { |
156172362ea9
(get_next_display_element): Display incomplete multibyte
Kenichi Handa <handa@m17n.org>
parents:
25493
diff
changeset
|
3959 XSETINT (it->ctl_chars[i * 4], escape_glyph); |
156172362ea9
(get_next_display_element): Display incomplete multibyte
Kenichi Handa <handa@m17n.org>
parents:
25493
diff
changeset
|
3960 /* Insert three more glyphs into IT->ctl_chars for |
156172362ea9
(get_next_display_element): Display incomplete multibyte
Kenichi Handa <handa@m17n.org>
parents:
25493
diff
changeset
|
3961 the octal display of the character. */ |
156172362ea9
(get_next_display_element): Display incomplete multibyte
Kenichi Handa <handa@m17n.org>
parents:
25493
diff
changeset
|
3962 g = FAST_MAKE_GLYPH (((str[i] >> 6) & 7) + '0', 0); |
156172362ea9
(get_next_display_element): Display incomplete multibyte
Kenichi Handa <handa@m17n.org>
parents:
25493
diff
changeset
|
3963 XSETINT (it->ctl_chars[i * 4 + 1], g); |
156172362ea9
(get_next_display_element): Display incomplete multibyte
Kenichi Handa <handa@m17n.org>
parents:
25493
diff
changeset
|
3964 g = FAST_MAKE_GLYPH (((str[i] >> 3) & 7) + '0', 0); |
156172362ea9
(get_next_display_element): Display incomplete multibyte
Kenichi Handa <handa@m17n.org>
parents:
25493
diff
changeset
|
3965 XSETINT (it->ctl_chars[i * 4 + 2], g); |
156172362ea9
(get_next_display_element): Display incomplete multibyte
Kenichi Handa <handa@m17n.org>
parents:
25493
diff
changeset
|
3966 g = FAST_MAKE_GLYPH ((str[i] & 7) + '0', 0); |
156172362ea9
(get_next_display_element): Display incomplete multibyte
Kenichi Handa <handa@m17n.org>
parents:
25493
diff
changeset
|
3967 XSETINT (it->ctl_chars[i * 4 + 3], g); |
156172362ea9
(get_next_display_element): Display incomplete multibyte
Kenichi Handa <handa@m17n.org>
parents:
25493
diff
changeset
|
3968 } |
25012 | 3969 |
3970 /* Set up IT->dpvec and return the first character | |
3971 from it. */ | |
3972 it->dpvec_char_len = it->len; | |
3973 it->dpvec = it->ctl_chars; | |
25500
156172362ea9
(get_next_display_element): Display incomplete multibyte
Kenichi Handa <handa@m17n.org>
parents:
25493
diff
changeset
|
3974 it->dpend = it->dpvec + len * 4; |
25012 | 3975 it->current.dpvec_index = 0; |
3976 it->method = next_element_from_display_vector; | |
3977 get_next_display_element (it); | |
3978 } | |
3979 } | |
3980 } | |
3981 | |
28228
84be12f331b8
(charset_at_position): Function removed.
Kenichi Handa <handa@m17n.org>
parents:
28206
diff
changeset
|
3982 /* Adjust face id for a multibyte character. There are no |
84be12f331b8
(charset_at_position): Function removed.
Kenichi Handa <handa@m17n.org>
parents:
28206
diff
changeset
|
3983 multibyte character in unibyte text. */ |
25012 | 3984 if (it->multibyte_p |
3985 && success_p | |
28228
84be12f331b8
(charset_at_position): Function removed.
Kenichi Handa <handa@m17n.org>
parents:
28206
diff
changeset
|
3986 && FRAME_WINDOW_P (it->f)) |
84be12f331b8
(charset_at_position): Function removed.
Kenichi Handa <handa@m17n.org>
parents:
28206
diff
changeset
|
3987 { |
84be12f331b8
(charset_at_position): Function removed.
Kenichi Handa <handa@m17n.org>
parents:
28206
diff
changeset
|
3988 struct face *face = FACE_FROM_ID (it->f, it->face_id); |
84be12f331b8
(charset_at_position): Function removed.
Kenichi Handa <handa@m17n.org>
parents:
28206
diff
changeset
|
3989 it->face_id = FACE_FOR_CHAR (it->f, face, it->c); |
25012 | 3990 } |
3991 } | |
3992 | |
3993 /* Is this character the last one of a run of characters with | |
3994 box? If yes, set IT->end_of_box_run_p to 1. */ | |
3995 if (it->face_box_p | |
3996 && it->s == NULL) | |
3997 { | |
3998 int face_id; | |
3999 struct face *face; | |
4000 | |
4001 it->end_of_box_run_p | |
4002 = ((face_id = face_after_it_pos (it), | |
4003 face_id != it->face_id) | |
4004 && (face = FACE_FROM_ID (it->f, face_id), | |
4005 face->box == FACE_NO_BOX)); | |
4006 } | |
4007 | |
4008 /* Value is 0 if end of buffer or string reached. */ | |
4009 return success_p; | |
4010 } | |
4011 | |
4012 | |
4013 /* Move IT to the next display element. | |
4014 | |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
4015 RESEAT_P non-zero means if called on a newline in buffer text, |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
4016 skip to the next visible line start. |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
4017 |
25012 | 4018 Functions get_next_display_element and set_iterator_to_next are |
4019 separate because I find this arrangement easier to handle than a | |
4020 get_next_display_element function that also increments IT's | |
4021 position. The way it is we can first look at an iterator's current | |
4022 display element, decide whether it fits on a line, and if it does, | |
4023 increment the iterator position. The other way around we probably | |
4024 would either need a flag indicating whether the iterator has to be | |
4025 incremented the next time, or we would have to implement a | |
4026 decrement position function which would not be easy to write. */ | |
4027 | |
4028 void | |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
4029 set_iterator_to_next (it, reseat_p) |
25012 | 4030 struct it *it; |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
4031 int reseat_p; |
25012 | 4032 { |
32553
2bd19f54cd7a
(set_iterator_to_next): Reset box start and flags of the
Gerd Moellmann <gerd@gnu.org>
parents:
32539
diff
changeset
|
4033 /* Reset flags indicating start and end of a sequence of characters |
2bd19f54cd7a
(set_iterator_to_next): Reset box start and flags of the
Gerd Moellmann <gerd@gnu.org>
parents:
32539
diff
changeset
|
4034 with box. Reset them at the start of this function because |
2bd19f54cd7a
(set_iterator_to_next): Reset box start and flags of the
Gerd Moellmann <gerd@gnu.org>
parents:
32539
diff
changeset
|
4035 moving the iterator to a new position might set them. */ |
2bd19f54cd7a
(set_iterator_to_next): Reset box start and flags of the
Gerd Moellmann <gerd@gnu.org>
parents:
32539
diff
changeset
|
4036 it->start_of_box_run_p = it->end_of_box_run_p = 0; |
2bd19f54cd7a
(set_iterator_to_next): Reset box start and flags of the
Gerd Moellmann <gerd@gnu.org>
parents:
32539
diff
changeset
|
4037 |
25012 | 4038 if (it->method == next_element_from_buffer) |
4039 { | |
4040 /* The current display element of IT is a character from | |
4041 current_buffer. Advance in the buffer, and maybe skip over | |
4042 invisible lines that are so because of selective display. */ | |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
4043 if (ITERATOR_AT_END_OF_LINE_P (it) && reseat_p) |
25188
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
4044 reseat_at_next_visible_line_start (it, 0); |
25012 | 4045 else |
4046 { | |
4047 xassert (it->len != 0); | |
4048 IT_BYTEPOS (*it) += it->len; | |
4049 IT_CHARPOS (*it) += 1; | |
4050 xassert (IT_BYTEPOS (*it) == CHAR_TO_BYTE (IT_CHARPOS (*it))); | |
4051 } | |
4052 } | |
26874
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
4053 else if (it->method == next_element_from_composition) |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
4054 { |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
4055 xassert (it->cmp_id >= 0 && it ->cmp_id < n_compositions); |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
4056 if (STRINGP (it->string)) |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
4057 { |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
4058 IT_STRING_BYTEPOS (*it) += it->len; |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
4059 IT_STRING_CHARPOS (*it) += it->cmp_len; |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
4060 it->method = next_element_from_string; |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
4061 goto consider_string_end; |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
4062 } |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
4063 else |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
4064 { |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
4065 IT_BYTEPOS (*it) += it->len; |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
4066 IT_CHARPOS (*it) += it->cmp_len; |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
4067 it->method = next_element_from_buffer; |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
4068 } |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
4069 } |
25012 | 4070 else if (it->method == next_element_from_c_string) |
4071 { | |
4072 /* Current display element of IT is from a C string. */ | |
4073 IT_BYTEPOS (*it) += it->len; | |
4074 IT_CHARPOS (*it) += 1; | |
4075 } | |
4076 else if (it->method == next_element_from_display_vector) | |
4077 { | |
4078 /* Current display element of IT is from a display table entry. | |
4079 Advance in the display table definition. Reset it to null if | |
4080 end reached, and continue with characters from buffers/ | |
4081 strings. */ | |
4082 ++it->current.dpvec_index; | |
25197
fbe149852f1c
(set_iterator_to_next): After delivering a character
Gerd Moellmann <gerd@gnu.org>
parents:
25188
diff
changeset
|
4083 |
28228
84be12f331b8
(charset_at_position): Function removed.
Kenichi Handa <handa@m17n.org>
parents:
28206
diff
changeset
|
4084 /* Restore face of the iterator to what they were before the |
84be12f331b8
(charset_at_position): Function removed.
Kenichi Handa <handa@m17n.org>
parents:
28206
diff
changeset
|
4085 display vector entry (these entries may contain faces). */ |
25012 | 4086 it->face_id = it->saved_face_id; |
25197
fbe149852f1c
(set_iterator_to_next): After delivering a character
Gerd Moellmann <gerd@gnu.org>
parents:
25188
diff
changeset
|
4087 |
25012 | 4088 if (it->dpvec + it->current.dpvec_index == it->dpend) |
4089 { | |
4090 if (it->s) | |
4091 it->method = next_element_from_c_string; | |
4092 else if (STRINGP (it->string)) | |
4093 it->method = next_element_from_string; | |
4094 else | |
4095 it->method = next_element_from_buffer; | |
4096 | |
4097 it->dpvec = NULL; | |
4098 it->current.dpvec_index = -1; | |
4099 | |
25188
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
4100 /* Skip over characters which were displayed via IT->dpvec. */ |
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
4101 if (it->dpvec_char_len < 0) |
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
4102 reseat_at_next_visible_line_start (it, 1); |
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
4103 else if (it->dpvec_char_len > 0) |
25012 | 4104 { |
4105 it->len = it->dpvec_char_len; | |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
4106 set_iterator_to_next (it, reseat_p); |
25012 | 4107 } |
4108 } | |
4109 } | |
4110 else if (it->method == next_element_from_string) | |
4111 { | |
4112 /* Current display element is a character from a Lisp string. */ | |
4113 xassert (it->s == NULL && STRINGP (it->string)); | |
4114 IT_STRING_BYTEPOS (*it) += it->len; | |
4115 IT_STRING_CHARPOS (*it) += 1; | |
4116 | |
4117 consider_string_end: | |
4118 | |
4119 if (it->current.overlay_string_index >= 0) | |
4120 { | |
4121 /* IT->string is an overlay string. Advance to the | |
4122 next, if there is one. */ | |
4123 if (IT_STRING_CHARPOS (*it) >= XSTRING (it->string)->size) | |
4124 next_overlay_string (it); | |
4125 } | |
4126 else | |
4127 { | |
4128 /* IT->string is not an overlay string. If we reached | |
4129 its end, and there is something on IT->stack, proceed | |
4130 with what is on the stack. This can be either another | |
4131 string, this time an overlay string, or a buffer. */ | |
4132 if (IT_STRING_CHARPOS (*it) == XSTRING (it->string)->size | |
4133 && it->sp > 0) | |
4134 { | |
4135 pop_it (it); | |
4136 if (!STRINGP (it->string)) | |
4137 it->method = next_element_from_buffer; | |
4138 } | |
4139 } | |
4140 } | |
4141 else if (it->method == next_element_from_image | |
4142 || it->method == next_element_from_stretch) | |
4143 { | |
4144 /* The position etc with which we have to proceed are on | |
4145 the stack. The position may be at the end of a string, | |
4146 if the `display' property takes up the whole string. */ | |
4147 pop_it (it); | |
4148 it->image_id = 0; | |
4149 if (STRINGP (it->string)) | |
4150 { | |
4151 it->method = next_element_from_string; | |
4152 goto consider_string_end; | |
4153 } | |
4154 else | |
4155 it->method = next_element_from_buffer; | |
4156 } | |
4157 else | |
4158 /* There are no other methods defined, so this should be a bug. */ | |
4159 abort (); | |
4160 | |
4161 xassert (it->method != next_element_from_string | |
4162 || (STRINGP (it->string) | |
4163 && IT_STRING_CHARPOS (*it) >= 0)); | |
4164 } | |
4165 | |
4166 | |
4167 /* Load IT's display element fields with information about the next | |
4168 display element which comes from a display table entry or from the | |
4169 result of translating a control character to one of the forms `^C' | |
4170 or `\003'. IT->dpvec holds the glyphs to return as characters. */ | |
4171 | |
4172 static int | |
4173 next_element_from_display_vector (it) | |
4174 struct it *it; | |
4175 { | |
4176 /* Precondition. */ | |
4177 xassert (it->dpvec && it->current.dpvec_index >= 0); | |
4178 | |
4179 /* Remember the current face id in case glyphs specify faces. | |
4180 IT's face is restored in set_iterator_to_next. */ | |
4181 it->saved_face_id = it->face_id; | |
4182 | |
4183 if (INTEGERP (*it->dpvec) | |
4184 && GLYPH_CHAR_VALID_P (XFASTINT (*it->dpvec))) | |
4185 { | |
4186 int lface_id; | |
4187 GLYPH g; | |
4188 | |
4189 g = XFASTINT (it->dpvec[it->current.dpvec_index]); | |
4190 it->c = FAST_GLYPH_CHAR (g); | |
29023
af50e87cc257
(get_next_display_element): Handle 8-bit characters
Kenichi Handa <handa@m17n.org>
parents:
28984
diff
changeset
|
4191 it->len = CHAR_BYTES (it->c); |
25012 | 4192 |
4193 /* The entry may contain a face id to use. Such a face id is | |
4194 the id of a Lisp face, not a realized face. A face id of | |
30448
92e758e908a2
(next_element_from_display_vector): Improve comments.
Gerd Moellmann <gerd@gnu.org>
parents:
30413
diff
changeset
|
4195 zero means no face is specified. */ |
25012 | 4196 lface_id = FAST_GLYPH_FACE (g); |
4197 if (lface_id) | |
4198 { | |
30448
92e758e908a2
(next_element_from_display_vector): Improve comments.
Gerd Moellmann <gerd@gnu.org>
parents:
30413
diff
changeset
|
4199 /* The function returns -1 if lface_id is invalid. */ |
25012 | 4200 int face_id = ascii_face_of_lisp_face (it->f, lface_id); |
4201 if (face_id >= 0) | |
30448
92e758e908a2
(next_element_from_display_vector): Improve comments.
Gerd Moellmann <gerd@gnu.org>
parents:
30413
diff
changeset
|
4202 it->face_id = face_id; |
25012 | 4203 } |
4204 } | |
4205 else | |
4206 /* Display table entry is invalid. Return a space. */ | |
4207 it->c = ' ', it->len = 1; | |
4208 | |
4209 /* Don't change position and object of the iterator here. They are | |
4210 still the values of the character that had this display table | |
4211 entry or was translated, and that's what we want. */ | |
4212 it->what = IT_CHARACTER; | |
4213 return 1; | |
4214 } | |
4215 | |
4216 | |
4217 /* Load IT with the next display element from Lisp string IT->string. | |
4218 IT->current.string_pos is the current position within the string. | |
4219 If IT->current.overlay_string_index >= 0, the Lisp string is an | |
4220 overlay string. */ | |
4221 | |
4222 static int | |
4223 next_element_from_string (it) | |
4224 struct it *it; | |
4225 { | |
4226 struct text_pos position; | |
4227 | |
4228 xassert (STRINGP (it->string)); | |
4229 xassert (IT_STRING_CHARPOS (*it) >= 0); | |
4230 position = it->current.string_pos; | |
4231 | |
4232 /* Time to check for invisible text? */ | |
4233 if (IT_STRING_CHARPOS (*it) < it->end_charpos | |
4234 && IT_STRING_CHARPOS (*it) == it->stop_charpos) | |
4235 { | |
4236 handle_stop (it); | |
4237 | |
4238 /* Since a handler may have changed IT->method, we must | |
4239 recurse here. */ | |
4240 return get_next_display_element (it); | |
4241 } | |
4242 | |
4243 if (it->current.overlay_string_index >= 0) | |
4244 { | |
4245 /* Get the next character from an overlay string. In overlay | |
4246 strings, There is no field width or padding with spaces to | |
4247 do. */ | |
4248 if (IT_STRING_CHARPOS (*it) >= XSTRING (it->string)->size) | |
4249 { | |
4250 it->what = IT_EOB; | |
4251 return 0; | |
4252 } | |
4253 else if (STRING_MULTIBYTE (it->string)) | |
4254 { | |
4255 int remaining = (STRING_BYTES (XSTRING (it->string)) | |
4256 - IT_STRING_BYTEPOS (*it)); | |
4257 unsigned char *s = (XSTRING (it->string)->data | |
4258 + IT_STRING_BYTEPOS (*it)); | |
25096
1af1088d3812
(string_char_and_length): New. Use it everywhere
Gerd Moellmann <gerd@gnu.org>
parents:
25063
diff
changeset
|
4259 it->c = string_char_and_length (s, remaining, &it->len); |
25012 | 4260 } |
4261 else | |
4262 { | |
4263 it->c = XSTRING (it->string)->data[IT_STRING_BYTEPOS (*it)]; | |
4264 it->len = 1; | |
4265 } | |
4266 } | |
4267 else | |
4268 { | |
4269 /* Get the next character from a Lisp string that is not an | |
4270 overlay string. Such strings come from the mode line, for | |
4271 example. We may have to pad with spaces, or truncate the | |
4272 string. See also next_element_from_c_string. */ | |
4273 if (IT_STRING_CHARPOS (*it) >= it->end_charpos) | |
4274 { | |
4275 it->what = IT_EOB; | |
4276 return 0; | |
4277 } | |
4278 else if (IT_STRING_CHARPOS (*it) >= it->string_nchars) | |
4279 { | |
4280 /* Pad with spaces. */ | |
4281 it->c = ' ', it->len = 1; | |
4282 CHARPOS (position) = BYTEPOS (position) = -1; | |
4283 } | |
4284 else if (STRING_MULTIBYTE (it->string)) | |
4285 { | |
4286 int maxlen = (STRING_BYTES (XSTRING (it->string)) | |
4287 - IT_STRING_BYTEPOS (*it)); | |
4288 unsigned char *s = (XSTRING (it->string)->data | |
4289 + IT_STRING_BYTEPOS (*it)); | |
25096
1af1088d3812
(string_char_and_length): New. Use it everywhere
Gerd Moellmann <gerd@gnu.org>
parents:
25063
diff
changeset
|
4290 it->c = string_char_and_length (s, maxlen, &it->len); |
25012 | 4291 } |
4292 else | |
4293 { | |
4294 it->c = XSTRING (it->string)->data[IT_STRING_BYTEPOS (*it)]; | |
4295 it->len = 1; | |
4296 } | |
4297 } | |
4298 | |
4299 /* Record what we have and where it came from. Note that we store a | |
4300 buffer position in IT->position although it could arguably be a | |
4301 string position. */ | |
4302 it->what = IT_CHARACTER; | |
4303 it->object = it->string; | |
4304 it->position = position; | |
4305 return 1; | |
4306 } | |
4307 | |
4308 | |
4309 /* Load IT with next display element from C string IT->s. | |
4310 IT->string_nchars is the maximum number of characters to return | |
4311 from the string. IT->end_charpos may be greater than | |
4312 IT->string_nchars when this function is called, in which case we | |
4313 may have to return padding spaces. Value is zero if end of string | |
4314 reached, including padding spaces. */ | |
4315 | |
4316 static int | |
4317 next_element_from_c_string (it) | |
4318 struct it *it; | |
4319 { | |
4320 int success_p = 1; | |
4321 | |
4322 xassert (it->s); | |
4323 it->what = IT_CHARACTER; | |
4324 BYTEPOS (it->position) = CHARPOS (it->position) = 0; | |
4325 it->object = Qnil; | |
4326 | |
4327 /* IT's position can be greater IT->string_nchars in case a field | |
4328 width or precision has been specified when the iterator was | |
4329 initialized. */ | |
4330 if (IT_CHARPOS (*it) >= it->end_charpos) | |
4331 { | |
4332 /* End of the game. */ | |
4333 it->what = IT_EOB; | |
4334 success_p = 0; | |
4335 } | |
4336 else if (IT_CHARPOS (*it) >= it->string_nchars) | |
4337 { | |
4338 /* Pad with spaces. */ | |
4339 it->c = ' ', it->len = 1; | |
4340 BYTEPOS (it->position) = CHARPOS (it->position) = -1; | |
4341 } | |
4342 else if (it->multibyte_p) | |
4343 { | |
4344 /* Implementation note: The calls to strlen apparently aren't a | |
4345 performance problem because there is no noticeable performance | |
4346 difference between Emacs running in unibyte or multibyte mode. */ | |
4347 int maxlen = strlen (it->s) - IT_BYTEPOS (*it); | |
25096
1af1088d3812
(string_char_and_length): New. Use it everywhere
Gerd Moellmann <gerd@gnu.org>
parents:
25063
diff
changeset
|
4348 it->c = string_char_and_length (it->s + IT_BYTEPOS (*it), |
1af1088d3812
(string_char_and_length): New. Use it everywhere
Gerd Moellmann <gerd@gnu.org>
parents:
25063
diff
changeset
|
4349 maxlen, &it->len); |
25012 | 4350 } |
4351 else | |
4352 it->c = it->s[IT_BYTEPOS (*it)], it->len = 1; | |
4353 | |
4354 return success_p; | |
4355 } | |
4356 | |
4357 | |
4358 /* Set up IT to return characters from an ellipsis, if appropriate. | |
4359 The definition of the ellipsis glyphs may come from a display table | |
4360 entry. This function Fills IT with the first glyph from the | |
4361 ellipsis if an ellipsis is to be displayed. */ | |
4362 | |
27106
0f307c7f49ba
(reseat_at_next_visible_line_start): Position before
Gerd Moellmann <gerd@gnu.org>
parents:
27056
diff
changeset
|
4363 static int |
25012 | 4364 next_element_from_ellipsis (it) |
4365 struct it *it; | |
4366 { | |
27106
0f307c7f49ba
(reseat_at_next_visible_line_start): Position before
Gerd Moellmann <gerd@gnu.org>
parents:
27056
diff
changeset
|
4367 if (it->selective_display_ellipsis_p) |
0f307c7f49ba
(reseat_at_next_visible_line_start): Position before
Gerd Moellmann <gerd@gnu.org>
parents:
27056
diff
changeset
|
4368 { |
0f307c7f49ba
(reseat_at_next_visible_line_start): Position before
Gerd Moellmann <gerd@gnu.org>
parents:
27056
diff
changeset
|
4369 if (it->dp && VECTORP (DISP_INVIS_VECTOR (it->dp))) |
0f307c7f49ba
(reseat_at_next_visible_line_start): Position before
Gerd Moellmann <gerd@gnu.org>
parents:
27056
diff
changeset
|
4370 { |
0f307c7f49ba
(reseat_at_next_visible_line_start): Position before
Gerd Moellmann <gerd@gnu.org>
parents:
27056
diff
changeset
|
4371 /* Use the display table definition for `...'. Invalid glyphs |
0f307c7f49ba
(reseat_at_next_visible_line_start): Position before
Gerd Moellmann <gerd@gnu.org>
parents:
27056
diff
changeset
|
4372 will be handled by the method returning elements from dpvec. */ |
0f307c7f49ba
(reseat_at_next_visible_line_start): Position before
Gerd Moellmann <gerd@gnu.org>
parents:
27056
diff
changeset
|
4373 struct Lisp_Vector *v = XVECTOR (DISP_INVIS_VECTOR (it->dp)); |
0f307c7f49ba
(reseat_at_next_visible_line_start): Position before
Gerd Moellmann <gerd@gnu.org>
parents:
27056
diff
changeset
|
4374 it->dpvec_char_len = it->len; |
0f307c7f49ba
(reseat_at_next_visible_line_start): Position before
Gerd Moellmann <gerd@gnu.org>
parents:
27056
diff
changeset
|
4375 it->dpvec = v->contents; |
0f307c7f49ba
(reseat_at_next_visible_line_start): Position before
Gerd Moellmann <gerd@gnu.org>
parents:
27056
diff
changeset
|
4376 it->dpend = v->contents + v->size; |
0f307c7f49ba
(reseat_at_next_visible_line_start): Position before
Gerd Moellmann <gerd@gnu.org>
parents:
27056
diff
changeset
|
4377 it->current.dpvec_index = 0; |
0f307c7f49ba
(reseat_at_next_visible_line_start): Position before
Gerd Moellmann <gerd@gnu.org>
parents:
27056
diff
changeset
|
4378 it->method = next_element_from_display_vector; |
0f307c7f49ba
(reseat_at_next_visible_line_start): Position before
Gerd Moellmann <gerd@gnu.org>
parents:
27056
diff
changeset
|
4379 } |
0f307c7f49ba
(reseat_at_next_visible_line_start): Position before
Gerd Moellmann <gerd@gnu.org>
parents:
27056
diff
changeset
|
4380 else |
0f307c7f49ba
(reseat_at_next_visible_line_start): Position before
Gerd Moellmann <gerd@gnu.org>
parents:
27056
diff
changeset
|
4381 { |
0f307c7f49ba
(reseat_at_next_visible_line_start): Position before
Gerd Moellmann <gerd@gnu.org>
parents:
27056
diff
changeset
|
4382 /* Use default `...' which is stored in default_invis_vector. */ |
0f307c7f49ba
(reseat_at_next_visible_line_start): Position before
Gerd Moellmann <gerd@gnu.org>
parents:
27056
diff
changeset
|
4383 it->dpvec_char_len = it->len; |
0f307c7f49ba
(reseat_at_next_visible_line_start): Position before
Gerd Moellmann <gerd@gnu.org>
parents:
27056
diff
changeset
|
4384 it->dpvec = default_invis_vector; |
0f307c7f49ba
(reseat_at_next_visible_line_start): Position before
Gerd Moellmann <gerd@gnu.org>
parents:
27056
diff
changeset
|
4385 it->dpend = default_invis_vector + 3; |
0f307c7f49ba
(reseat_at_next_visible_line_start): Position before
Gerd Moellmann <gerd@gnu.org>
parents:
27056
diff
changeset
|
4386 it->current.dpvec_index = 0; |
0f307c7f49ba
(reseat_at_next_visible_line_start): Position before
Gerd Moellmann <gerd@gnu.org>
parents:
27056
diff
changeset
|
4387 it->method = next_element_from_display_vector; |
0f307c7f49ba
(reseat_at_next_visible_line_start): Position before
Gerd Moellmann <gerd@gnu.org>
parents:
27056
diff
changeset
|
4388 } |
0f307c7f49ba
(reseat_at_next_visible_line_start): Position before
Gerd Moellmann <gerd@gnu.org>
parents:
27056
diff
changeset
|
4389 } |
0f307c7f49ba
(reseat_at_next_visible_line_start): Position before
Gerd Moellmann <gerd@gnu.org>
parents:
27056
diff
changeset
|
4390 else |
32585
bf84251f474b
(forward_to_next_line_start): Switch iterator's handling
Gerd Moellmann <gerd@gnu.org>
parents:
32553
diff
changeset
|
4391 { |
34225
b5cdf1bb6bb8
(next_element_from_ellipsis): Save face before selective
Gerd Moellmann <gerd@gnu.org>
parents:
34068
diff
changeset
|
4392 /* The face at the current position may be different from the |
b5cdf1bb6bb8
(next_element_from_ellipsis): Save face before selective
Gerd Moellmann <gerd@gnu.org>
parents:
34068
diff
changeset
|
4393 face we find after the invisible text. Remember what it |
b5cdf1bb6bb8
(next_element_from_ellipsis): Save face before selective
Gerd Moellmann <gerd@gnu.org>
parents:
34068
diff
changeset
|
4394 was in IT->saved_face_id, and signal that it's there by |
b5cdf1bb6bb8
(next_element_from_ellipsis): Save face before selective
Gerd Moellmann <gerd@gnu.org>
parents:
34068
diff
changeset
|
4395 setting face_before_selective_p. */ |
b5cdf1bb6bb8
(next_element_from_ellipsis): Save face before selective
Gerd Moellmann <gerd@gnu.org>
parents:
34068
diff
changeset
|
4396 it->saved_face_id = it->face_id; |
32585
bf84251f474b
(forward_to_next_line_start): Switch iterator's handling
Gerd Moellmann <gerd@gnu.org>
parents:
32553
diff
changeset
|
4397 it->method = next_element_from_buffer; |
bf84251f474b
(forward_to_next_line_start): Switch iterator's handling
Gerd Moellmann <gerd@gnu.org>
parents:
32553
diff
changeset
|
4398 reseat_at_next_visible_line_start (it, 1); |
34225
b5cdf1bb6bb8
(next_element_from_ellipsis): Save face before selective
Gerd Moellmann <gerd@gnu.org>
parents:
34068
diff
changeset
|
4399 it->face_before_selective_p = 1; |
32585
bf84251f474b
(forward_to_next_line_start): Switch iterator's handling
Gerd Moellmann <gerd@gnu.org>
parents:
32553
diff
changeset
|
4400 } |
27106
0f307c7f49ba
(reseat_at_next_visible_line_start): Position before
Gerd Moellmann <gerd@gnu.org>
parents:
27056
diff
changeset
|
4401 |
0f307c7f49ba
(reseat_at_next_visible_line_start): Position before
Gerd Moellmann <gerd@gnu.org>
parents:
27056
diff
changeset
|
4402 return get_next_display_element (it); |
25012 | 4403 } |
4404 | |
4405 | |
4406 /* Deliver an image display element. The iterator IT is already | |
4407 filled with image information (done in handle_display_prop). Value | |
4408 is always 1. */ | |
4409 | |
4410 | |
4411 static int | |
4412 next_element_from_image (it) | |
4413 struct it *it; | |
4414 { | |
4415 it->what = IT_IMAGE; | |
4416 return 1; | |
4417 } | |
4418 | |
4419 | |
4420 /* Fill iterator IT with next display element from a stretch glyph | |
4421 property. IT->object is the value of the text property. Value is | |
4422 always 1. */ | |
4423 | |
4424 static int | |
4425 next_element_from_stretch (it) | |
4426 struct it *it; | |
4427 { | |
4428 it->what = IT_STRETCH; | |
4429 return 1; | |
4430 } | |
4431 | |
4432 | |
4433 /* Load IT with the next display element from current_buffer. Value | |
4434 is zero if end of buffer reached. IT->stop_charpos is the next | |
4435 position at which to stop and check for text properties or buffer | |
4436 end. */ | |
4437 | |
4438 static int | |
4439 next_element_from_buffer (it) | |
4440 struct it *it; | |
4441 { | |
4442 int success_p = 1; | |
4443 | |
4444 /* Check this assumption, otherwise, we would never enter the | |
4445 if-statement, below. */ | |
4446 xassert (IT_CHARPOS (*it) >= BEGV | |
4447 && IT_CHARPOS (*it) <= it->stop_charpos); | |
4448 | |
4449 if (IT_CHARPOS (*it) >= it->stop_charpos) | |
4450 { | |
4451 if (IT_CHARPOS (*it) >= it->end_charpos) | |
4452 { | |
4453 int overlay_strings_follow_p; | |
4454 | |
4455 /* End of the game, except when overlay strings follow that | |
4456 haven't been returned yet. */ | |
4457 if (it->overlay_strings_at_end_processed_p) | |
4458 overlay_strings_follow_p = 0; | |
4459 else | |
4460 { | |
4461 it->overlay_strings_at_end_processed_p = 1; | |
27056
8cf3702104b5
(next_element_from_buffer): Change assertion at the end
Gerd Moellmann <gerd@gnu.org>
parents:
27015
diff
changeset
|
4462 overlay_strings_follow_p = get_overlay_strings (it); |
25012 | 4463 } |
4464 | |
4465 if (overlay_strings_follow_p) | |
4466 success_p = get_next_display_element (it); | |
4467 else | |
4468 { | |
4469 it->what = IT_EOB; | |
4470 it->position = it->current.pos; | |
4471 success_p = 0; | |
4472 } | |
4473 } | |
4474 else | |
4475 { | |
4476 handle_stop (it); | |
4477 return get_next_display_element (it); | |
4478 } | |
4479 } | |
4480 else | |
4481 { | |
4482 /* No face changes, overlays etc. in sight, so just return a | |
4483 character from current_buffer. */ | |
4484 unsigned char *p; | |
4485 | |
4486 /* Maybe run the redisplay end trigger hook. Performance note: | |
4487 This doesn't seem to cost measurable time. */ | |
4488 if (it->redisplay_end_trigger_charpos | |
4489 && it->glyph_row | |
4490 && IT_CHARPOS (*it) >= it->redisplay_end_trigger_charpos) | |
4491 run_redisplay_end_trigger_hook (it); | |
4492 | |
4493 /* Get the next character, maybe multibyte. */ | |
4494 p = BYTE_POS_ADDR (IT_BYTEPOS (*it)); | |
26874
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
4495 if (it->multibyte_p && !ASCII_BYTE_P (*p)) |
25012 | 4496 { |
4497 int maxlen = ((IT_BYTEPOS (*it) >= GPT_BYTE ? ZV_BYTE : GPT_BYTE) | |
4498 - IT_BYTEPOS (*it)); | |
25096
1af1088d3812
(string_char_and_length): New. Use it everywhere
Gerd Moellmann <gerd@gnu.org>
parents:
25063
diff
changeset
|
4499 it->c = string_char_and_length (p, maxlen, &it->len); |
25012 | 4500 } |
4501 else | |
4502 it->c = *p, it->len = 1; | |
4503 | |
4504 /* Record what we have and where it came from. */ | |
4505 it->what = IT_CHARACTER;; | |
4506 it->object = it->w->buffer; | |
4507 it->position = it->current.pos; | |
4508 | |
4509 /* Normally we return the character found above, except when we | |
4510 really want to return an ellipsis for selective display. */ | |
4511 if (it->selective) | |
4512 { | |
4513 if (it->c == '\n') | |
4514 { | |
4515 /* A value of selective > 0 means hide lines indented more | |
4516 than that number of columns. */ | |
4517 if (it->selective > 0 | |
4518 && IT_CHARPOS (*it) + 1 < ZV | |
4519 && indented_beyond_p (IT_CHARPOS (*it) + 1, | |
4520 IT_BYTEPOS (*it) + 1, | |
4521 it->selective)) | |
25188
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
4522 { |
27106
0f307c7f49ba
(reseat_at_next_visible_line_start): Position before
Gerd Moellmann <gerd@gnu.org>
parents:
27056
diff
changeset
|
4523 success_p = next_element_from_ellipsis (it); |
25188
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
4524 it->dpvec_char_len = -1; |
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
4525 } |
25012 | 4526 } |
4527 else if (it->c == '\r' && it->selective == -1) | |
4528 { | |
4529 /* A value of selective == -1 means that everything from the | |
4530 CR to the end of the line is invisible, with maybe an | |
4531 ellipsis displayed for it. */ | |
27106
0f307c7f49ba
(reseat_at_next_visible_line_start): Position before
Gerd Moellmann <gerd@gnu.org>
parents:
27056
diff
changeset
|
4532 success_p = next_element_from_ellipsis (it); |
25188
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
4533 it->dpvec_char_len = -1; |
25012 | 4534 } |
4535 } | |
4536 } | |
4537 | |
4538 /* Value is zero if end of buffer reached. */ | |
27056
8cf3702104b5
(next_element_from_buffer): Change assertion at the end
Gerd Moellmann <gerd@gnu.org>
parents:
27015
diff
changeset
|
4539 xassert (!success_p || it->what != IT_CHARACTER || it->len > 0); |
25012 | 4540 return success_p; |
4541 } | |
4542 | |
4543 | |
4544 /* Run the redisplay end trigger hook for IT. */ | |
4545 | |
4546 static void | |
4547 run_redisplay_end_trigger_hook (it) | |
4548 struct it *it; | |
4549 { | |
4550 Lisp_Object args[3]; | |
4551 | |
4552 /* IT->glyph_row should be non-null, i.e. we should be actually | |
4553 displaying something, or otherwise we should not run the hook. */ | |
4554 xassert (it->glyph_row); | |
4555 | |
4556 /* Set up hook arguments. */ | |
4557 args[0] = Qredisplay_end_trigger_functions; | |
4558 args[1] = it->window; | |
4559 XSETINT (args[2], it->redisplay_end_trigger_charpos); | |
4560 it->redisplay_end_trigger_charpos = 0; | |
4561 | |
4562 /* Since we are *trying* to run these functions, don't try to run | |
4563 them again, even if they get an error. */ | |
4564 it->w->redisplay_end_trigger = Qnil; | |
4565 Frun_hook_with_args (3, args); | |
4566 | |
4567 /* Notice if it changed the face of the character we are on. */ | |
4568 handle_face_prop (it); | |
4569 } | |
4570 | |
4571 | |
26874
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
4572 /* Deliver a composition display element. The iterator IT is already |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
4573 filled with composition information (done in |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
4574 handle_composition_prop). Value is always 1. */ |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
4575 |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
4576 static int |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
4577 next_element_from_composition (it) |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
4578 struct it *it; |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
4579 { |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
4580 it->what = IT_COMPOSITION; |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
4581 it->position = (STRINGP (it->string) |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
4582 ? it->current.string_pos |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
4583 : it->current.pos); |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
4584 return 1; |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
4585 } |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
4586 |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
4587 |
25012 | 4588 |
4589 /*********************************************************************** | |
4590 Moving an iterator without producing glyphs | |
4591 ***********************************************************************/ | |
4592 | |
4593 /* Move iterator IT to a specified buffer or X position within one | |
4594 line on the display without producing glyphs. | |
4595 | |
4596 Begin to skip at IT's current position. Skip to TO_CHARPOS or TO_X | |
4597 whichever is reached first. | |
4598 | |
4599 TO_CHARPOS <= 0 means no TO_CHARPOS is specified. | |
4600 | |
4601 TO_X < 0 means that no TO_X is specified. TO_X is normally a value | |
4602 0 <= TO_X <= IT->last_visible_x. This means in particular, that | |
4603 TO_X includes the amount by which a window is horizontally | |
4604 scrolled. | |
4605 | |
4606 Value is | |
4607 | |
4608 MOVE_POS_MATCH_OR_ZV | |
4609 - when TO_POS or ZV was reached. | |
4610 | |
4611 MOVE_X_REACHED | |
4612 -when TO_X was reached before TO_POS or ZV were reached. | |
4613 | |
4614 MOVE_LINE_CONTINUED | |
4615 - when we reached the end of the display area and the line must | |
4616 be continued. | |
4617 | |
4618 MOVE_LINE_TRUNCATED | |
4619 - when we reached the end of the display area and the line is | |
4620 truncated. | |
4621 | |
4622 MOVE_NEWLINE_OR_CR | |
4623 - when we stopped at a line end, i.e. a newline or a CR and selective | |
4624 display is on. */ | |
4625 | |
25693
b12ed057020a
(move_it_in_display_line_to): Make type consistent with declaration.
Dave Love <fx@gnu.org>
parents:
25677
diff
changeset
|
4626 static enum move_it_result |
25012 | 4627 move_it_in_display_line_to (it, to_charpos, to_x, op) |
4628 struct it *it; | |
4629 int to_charpos, to_x, op; | |
4630 { | |
4631 enum move_it_result result = MOVE_UNDEFINED; | |
4632 struct glyph_row *saved_glyph_row; | |
4633 | |
4634 /* Don't produce glyphs in produce_glyphs. */ | |
4635 saved_glyph_row = it->glyph_row; | |
4636 it->glyph_row = NULL; | |
4637 | |
4638 while (1) | |
4639 { | |
31506
a1d733428491
(dump_glyph_row): Fix printf format string.
Gerd Moellmann <gerd@gnu.org>
parents:
31493
diff
changeset
|
4640 int x, i, ascent = 0, descent = 0; |
25012 | 4641 |
4642 /* Stop when ZV or TO_CHARPOS reached. */ | |
4643 if (!get_next_display_element (it) | |
4644 || ((op & MOVE_TO_POS) != 0 | |
4645 && BUFFERP (it->object) | |
4646 && IT_CHARPOS (*it) >= to_charpos)) | |
4647 { | |
4648 result = MOVE_POS_MATCH_OR_ZV; | |
4649 break; | |
4650 } | |
4651 | |
4652 /* The call to produce_glyphs will get the metrics of the | |
4653 display element IT is loaded with. We record in x the | |
4654 x-position before this display element in case it does not | |
4655 fit on the line. */ | |
4656 x = it->current_x; | |
30744
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4657 |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4658 /* Remember the line height so far in case the next element doesn't |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4659 fit on the line. */ |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4660 if (!it->truncate_lines_p) |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4661 { |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4662 ascent = it->max_ascent; |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4663 descent = it->max_descent; |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4664 } |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4665 |
25012 | 4666 PRODUCE_GLYPHS (it); |
4667 | |
4668 if (it->area != TEXT_AREA) | |
4669 { | |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
4670 set_iterator_to_next (it, 1); |
25012 | 4671 continue; |
4672 } | |
4673 | |
4674 /* The number of glyphs we get back in IT->nglyphs will normally | |
4675 be 1 except when IT->c is (i) a TAB, or (ii) a multi-glyph | |
4676 character on a terminal frame, or (iii) a line end. For the | |
4677 second case, IT->nglyphs - 1 padding glyphs will be present | |
4678 (on X frames, there is only one glyph produced for a | |
4679 composite character. | |
4680 | |
4681 The behavior implemented below means, for continuation lines, | |
4682 that as many spaces of a TAB as fit on the current line are | |
4683 displayed there. For terminal frames, as many glyphs of a | |
4684 multi-glyph character are displayed in the current line, too. | |
4685 This is what the old redisplay code did, and we keep it that | |
4686 way. Under X, the whole shape of a complex character must | |
4687 fit on the line or it will be completely displayed in the | |
4688 next line. | |
4689 | |
4690 Note that both for tabs and padding glyphs, all glyphs have | |
4691 the same width. */ | |
4692 if (it->nglyphs) | |
4693 { | |
4694 /* More than one glyph or glyph doesn't fit on line. All | |
4695 glyphs have the same width. */ | |
4696 int single_glyph_width = it->pixel_width / it->nglyphs; | |
4697 int new_x; | |
4698 | |
4699 for (i = 0; i < it->nglyphs; ++i, x = new_x) | |
4700 { | |
4701 new_x = x + single_glyph_width; | |
4702 | |
4703 /* We want to leave anything reaching TO_X to the caller. */ | |
4704 if ((op & MOVE_TO_X) && new_x > to_x) | |
4705 { | |
4706 it->current_x = x; | |
4707 result = MOVE_X_REACHED; | |
4708 break; | |
4709 } | |
4710 else if (/* Lines are continued. */ | |
4711 !it->truncate_lines_p | |
4712 && (/* And glyph doesn't fit on the line. */ | |
4713 new_x > it->last_visible_x | |
4714 /* Or it fits exactly and we're on a window | |
4715 system frame. */ | |
4716 || (new_x == it->last_visible_x | |
4717 && FRAME_WINDOW_P (it->f)))) | |
4718 { | |
4719 if (/* IT->hpos == 0 means the very first glyph | |
4720 doesn't fit on the line, e.g. a wide image. */ | |
4721 it->hpos == 0 | |
4722 || (new_x == it->last_visible_x | |
4723 && FRAME_WINDOW_P (it->f))) | |
4724 { | |
4725 ++it->hpos; | |
4726 it->current_x = new_x; | |
4727 if (i == it->nglyphs - 1) | |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
4728 set_iterator_to_next (it, 1); |
25012 | 4729 } |
4730 else | |
30744
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4731 { |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4732 it->current_x = x; |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4733 it->max_ascent = ascent; |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4734 it->max_descent = descent; |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4735 } |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4736 |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4737 TRACE_MOVE ((stderr, "move_it_in: continued at %d\n", |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4738 IT_CHARPOS (*it))); |
25012 | 4739 result = MOVE_LINE_CONTINUED; |
4740 break; | |
4741 } | |
4742 else if (new_x > it->first_visible_x) | |
4743 { | |
4744 /* Glyph is visible. Increment number of glyphs that | |
4745 would be displayed. */ | |
4746 ++it->hpos; | |
4747 } | |
4748 else | |
4749 { | |
4750 /* Glyph is completely off the left margin of the display | |
4751 area. Nothing to do. */ | |
4752 } | |
4753 } | |
4754 | |
4755 if (result != MOVE_UNDEFINED) | |
4756 break; | |
4757 } | |
4758 else if ((op & MOVE_TO_X) && it->current_x >= to_x) | |
4759 { | |
4760 /* Stop when TO_X specified and reached. This check is | |
4761 necessary here because of lines consisting of a line end, | |
4762 only. The line end will not produce any glyphs and we | |
4763 would never get MOVE_X_REACHED. */ | |
4764 xassert (it->nglyphs == 0); | |
4765 result = MOVE_X_REACHED; | |
4766 break; | |
4767 } | |
4768 | |
4769 /* Is this a line end? If yes, we're done. */ | |
4770 if (ITERATOR_AT_END_OF_LINE_P (it)) | |
4771 { | |
4772 result = MOVE_NEWLINE_OR_CR; | |
4773 break; | |
4774 } | |
4775 | |
4776 /* The current display element has been consumed. Advance | |
4777 to the next. */ | |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
4778 set_iterator_to_next (it, 1); |
25012 | 4779 |
4780 /* Stop if lines are truncated and IT's current x-position is | |
4781 past the right edge of the window now. */ | |
4782 if (it->truncate_lines_p | |
4783 && it->current_x >= it->last_visible_x) | |
4784 { | |
4785 result = MOVE_LINE_TRUNCATED; | |
4786 break; | |
4787 } | |
4788 } | |
4789 | |
4790 /* Restore the iterator settings altered at the beginning of this | |
4791 function. */ | |
4792 it->glyph_row = saved_glyph_row; | |
4793 return result; | |
4794 } | |
4795 | |
4796 | |
4797 /* Move IT forward to a specified buffer position TO_CHARPOS, TO_X, | |
4798 TO_Y, TO_VPOS. OP is a bit-mask that specifies where to stop. See | |
4799 the description of enum move_operation_enum. | |
4800 | |
4801 If TO_CHARPOS is in invisible text, e.g. a truncated part of a | |
4802 screen line, this function will set IT to the next position > | |
4803 TO_CHARPOS. */ | |
4804 | |
4805 void | |
4806 move_it_to (it, to_charpos, to_x, to_y, to_vpos, op) | |
4807 struct it *it; | |
4808 int to_charpos, to_x, to_y, to_vpos; | |
4809 int op; | |
4810 { | |
4811 enum move_it_result skip, skip2 = MOVE_X_REACHED; | |
4812 int line_height; | |
30744
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4813 int reached = 0; |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4814 |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4815 for (;;) |
25012 | 4816 { |
4817 if (op & MOVE_TO_VPOS) | |
4818 { | |
4819 /* If no TO_CHARPOS and no TO_X specified, stop at the | |
4820 start of the line TO_VPOS. */ | |
4821 if ((op & (MOVE_TO_X | MOVE_TO_POS)) == 0) | |
4822 { | |
4823 if (it->vpos == to_vpos) | |
30744
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4824 { |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4825 reached = 1; |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4826 break; |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4827 } |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4828 else |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4829 skip = move_it_in_display_line_to (it, -1, -1, 0); |
25012 | 4830 } |
4831 else | |
4832 { | |
4833 /* TO_VPOS >= 0 means stop at TO_X in the line at | |
4834 TO_VPOS, or at TO_POS, whichever comes first. */ | |
30744
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4835 if (it->vpos == to_vpos) |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4836 { |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4837 reached = 2; |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4838 break; |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4839 } |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4840 |
25012 | 4841 skip = move_it_in_display_line_to (it, to_charpos, to_x, op); |
4842 | |
4843 if (skip == MOVE_POS_MATCH_OR_ZV || it->vpos == to_vpos) | |
30744
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4844 { |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4845 reached = 3; |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4846 break; |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4847 } |
25012 | 4848 else if (skip == MOVE_X_REACHED && it->vpos != to_vpos) |
4849 { | |
4850 /* We have reached TO_X but not in the line we want. */ | |
4851 skip = move_it_in_display_line_to (it, to_charpos, | |
4852 -1, MOVE_TO_POS); | |
4853 if (skip == MOVE_POS_MATCH_OR_ZV) | |
30744
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4854 { |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4855 reached = 4; |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4856 break; |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4857 } |
25012 | 4858 } |
4859 } | |
4860 } | |
4861 else if (op & MOVE_TO_Y) | |
4862 { | |
4863 struct it it_backup; | |
4864 | |
4865 /* TO_Y specified means stop at TO_X in the line containing | |
4866 TO_Y---or at TO_CHARPOS if this is reached first. The | |
4867 problem is that we can't really tell whether the line | |
4868 contains TO_Y before we have completely scanned it, and | |
4869 this may skip past TO_X. What we do is to first scan to | |
4870 TO_X. | |
4871 | |
4872 If TO_X is not specified, use a TO_X of zero. The reason | |
4873 is to make the outcome of this function more predictable. | |
4874 If we didn't use TO_X == 0, we would stop at the end of | |
4875 the line which is probably not what a caller would expect | |
4876 to happen. */ | |
4877 skip = move_it_in_display_line_to (it, to_charpos, | |
4878 ((op & MOVE_TO_X) | |
4879 ? to_x : 0), | |
4880 (MOVE_TO_X | |
4881 | (op & MOVE_TO_POS))); | |
4882 | |
4883 /* If TO_CHARPOS is reached or ZV, we don't have to do more. */ | |
4884 if (skip == MOVE_POS_MATCH_OR_ZV) | |
30744
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4885 { |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4886 reached = 5; |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4887 break; |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4888 } |
25012 | 4889 |
4890 /* If TO_X was reached, we would like to know whether TO_Y | |
4891 is in the line. This can only be said if we know the | |
4892 total line height which requires us to scan the rest of | |
4893 the line. */ | |
4894 if (skip == MOVE_X_REACHED) | |
4895 { | |
4896 it_backup = *it; | |
30744
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4897 TRACE_MOVE ((stderr, "move_it: from %d\n", IT_CHARPOS (*it))); |
25012 | 4898 skip2 = move_it_in_display_line_to (it, to_charpos, -1, |
4899 op & MOVE_TO_POS); | |
30744
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4900 TRACE_MOVE ((stderr, "move_it: to %d\n", IT_CHARPOS (*it))); |
25012 | 4901 } |
4902 | |
4903 /* Now, decide whether TO_Y is in this line. */ | |
4904 line_height = it->max_ascent + it->max_descent; | |
30744
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4905 TRACE_MOVE ((stderr, "move_it: line_height = %d\n", line_height)); |
25012 | 4906 |
4907 if (to_y >= it->current_y | |
4908 && to_y < it->current_y + line_height) | |
4909 { | |
4910 if (skip == MOVE_X_REACHED) | |
4911 /* If TO_Y is in this line and TO_X was reached above, | |
4912 we scanned too far. We have to restore IT's settings | |
4913 to the ones before skipping. */ | |
4914 *it = it_backup; | |
30744
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4915 reached = 6; |
25012 | 4916 } |
4917 else if (skip == MOVE_X_REACHED) | |
4918 { | |
4919 skip = skip2; | |
4920 if (skip == MOVE_POS_MATCH_OR_ZV) | |
30744
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4921 reached = 7; |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4922 } |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4923 |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4924 if (reached) |
25012 | 4925 break; |
4926 } | |
4927 else | |
4928 skip = move_it_in_display_line_to (it, to_charpos, -1, MOVE_TO_POS); | |
4929 | |
4930 switch (skip) | |
4931 { | |
4932 case MOVE_POS_MATCH_OR_ZV: | |
30744
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4933 reached = 8; |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4934 goto out; |
25012 | 4935 |
4936 case MOVE_NEWLINE_OR_CR: | |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
4937 set_iterator_to_next (it, 1); |
25012 | 4938 it->continuation_lines_width = 0; |
4939 break; | |
4940 | |
4941 case MOVE_LINE_TRUNCATED: | |
4942 it->continuation_lines_width = 0; | |
25188
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
4943 reseat_at_next_visible_line_start (it, 0); |
25012 | 4944 if ((op & MOVE_TO_POS) != 0 |
4945 && IT_CHARPOS (*it) > to_charpos) | |
30744
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4946 { |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4947 reached = 9; |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4948 goto out; |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4949 } |
25012 | 4950 break; |
4951 | |
4952 case MOVE_LINE_CONTINUED: | |
4953 it->continuation_lines_width += it->current_x; | |
4954 break; | |
4955 | |
4956 default: | |
4957 abort (); | |
4958 } | |
4959 | |
4960 /* Reset/increment for the next run. */ | |
4961 recenter_overlay_lists (current_buffer, IT_CHARPOS (*it)); | |
4962 it->current_x = it->hpos = 0; | |
4963 it->current_y += it->max_ascent + it->max_descent; | |
4964 ++it->vpos; | |
4965 last_height = it->max_ascent + it->max_descent; | |
4966 last_max_ascent = it->max_ascent; | |
4967 it->max_ascent = it->max_descent = 0; | |
4968 } | |
30744
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4969 |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4970 out: |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4971 |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
4972 TRACE_MOVE ((stderr, "move_it_to: reached %d\n", reached)); |
25012 | 4973 } |
4974 | |
4975 | |
4976 /* Move iterator IT backward by a specified y-distance DY, DY >= 0. | |
4977 | |
4978 If DY > 0, move IT backward at least that many pixels. DY = 0 | |
4979 means move IT backward to the preceding line start or BEGV. This | |
4980 function may move over more than DY pixels if IT->current_y - DY | |
4981 ends up in the middle of a line; in this case IT->current_y will be | |
4982 set to the top of the line moved to. */ | |
4983 | |
4984 void | |
4985 move_it_vertically_backward (it, dy) | |
4986 struct it *it; | |
4987 int dy; | |
4988 { | |
4989 int nlines, h, line_height; | |
4990 struct it it2; | |
4991 int start_pos = IT_CHARPOS (*it); | |
4992 | |
4993 xassert (dy >= 0); | |
4994 | |
4995 /* Estimate how many newlines we must move back. */ | |
4996 nlines = max (1, dy / CANON_Y_UNIT (it->f)); | |
4997 | |
4998 /* Set the iterator's position that many lines back. */ | |
4999 while (nlines-- && IT_CHARPOS (*it) > BEGV) | |
5000 back_to_previous_visible_line_start (it); | |
5001 | |
5002 /* Reseat the iterator here. When moving backward, we don't want | |
5003 reseat to skip forward over invisible text, set up the iterator | |
5004 to deliver from overlay strings at the new position etc. So, | |
5005 use reseat_1 here. */ | |
5006 reseat_1 (it, it->current.pos, 1); | |
5007 | |
5008 /* We are now surely at a line start. */ | |
5009 it->current_x = it->hpos = 0; | |
5010 | |
5011 /* Move forward and see what y-distance we moved. First move to the | |
5012 start of the next line so that we get its height. We need this | |
5013 height to be able to tell whether we reached the specified | |
5014 y-distance. */ | |
5015 it2 = *it; | |
5016 it2.max_ascent = it2.max_descent = 0; | |
5017 move_it_to (&it2, start_pos, -1, -1, it2.vpos + 1, | |
5018 MOVE_TO_POS | MOVE_TO_VPOS); | |
5019 xassert (IT_CHARPOS (*it) >= BEGV); | |
5020 line_height = it2.max_ascent + it2.max_descent; | |
30744
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
5021 |
25012 | 5022 move_it_to (&it2, start_pos, -1, -1, -1, MOVE_TO_POS); |
5023 xassert (IT_CHARPOS (*it) >= BEGV); | |
5024 h = it2.current_y - it->current_y; | |
5025 nlines = it2.vpos - it->vpos; | |
5026 | |
5027 /* Correct IT's y and vpos position. */ | |
5028 it->vpos -= nlines; | |
5029 it->current_y -= h; | |
5030 | |
5031 if (dy == 0) | |
5032 { | |
5033 /* DY == 0 means move to the start of the screen line. The | |
5034 value of nlines is > 0 if continuation lines were involved. */ | |
5035 if (nlines > 0) | |
5036 move_it_by_lines (it, nlines, 1); | |
5037 xassert (IT_CHARPOS (*it) <= start_pos); | |
5038 } | |
5039 else if (nlines) | |
5040 { | |
5041 /* The y-position we try to reach. Note that h has been | |
5042 subtracted in front of the if-statement. */ | |
5043 int target_y = it->current_y + h - dy; | |
5044 | |
5045 /* If we did not reach target_y, try to move further backward if | |
5046 we can. If we moved too far backward, try to move forward. */ | |
5047 if (target_y < it->current_y | |
5048 && IT_CHARPOS (*it) > BEGV) | |
5049 { | |
5050 move_it_vertically (it, target_y - it->current_y); | |
5051 xassert (IT_CHARPOS (*it) >= BEGV); | |
5052 } | |
5053 else if (target_y >= it->current_y + line_height | |
5054 && IT_CHARPOS (*it) < ZV) | |
5055 { | |
5056 move_it_vertically (it, target_y - (it->current_y + line_height)); | |
5057 xassert (IT_CHARPOS (*it) >= BEGV); | |
5058 } | |
5059 } | |
5060 } | |
5061 | |
5062 | |
5063 /* Move IT by a specified amount of pixel lines DY. DY negative means | |
5064 move backwards. DY = 0 means move to start of screen line. At the | |
5065 end, IT will be on the start of a screen line. */ | |
5066 | |
5067 void | |
5068 move_it_vertically (it, dy) | |
5069 struct it *it; | |
5070 int dy; | |
5071 { | |
5072 if (dy <= 0) | |
5073 move_it_vertically_backward (it, -dy); | |
5074 else if (dy > 0) | |
5075 { | |
30744
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
5076 TRACE_MOVE ((stderr, "move_it_v: from %d, %d\n", IT_CHARPOS (*it), dy)); |
25012 | 5077 move_it_to (it, ZV, -1, it->current_y + dy, -1, |
5078 MOVE_TO_POS | MOVE_TO_Y); | |
30744
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
5079 TRACE_MOVE ((stderr, "move_it_v: to %d\n", IT_CHARPOS (*it))); |
25012 | 5080 |
5081 /* If buffer ends in ZV without a newline, move to the start of | |
5082 the line to satisfy the post-condition. */ | |
5083 if (IT_CHARPOS (*it) == ZV | |
5084 && FETCH_BYTE (IT_BYTEPOS (*it) - 1) != '\n') | |
5085 move_it_by_lines (it, 0, 0); | |
5086 } | |
5087 } | |
5088 | |
5089 | |
35023
6016a947974c
(move_it_past_eol): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
35017
diff
changeset
|
5090 /* Move iterator IT past the end of the text line it is in. */ |
6016a947974c
(move_it_past_eol): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
35017
diff
changeset
|
5091 |
6016a947974c
(move_it_past_eol): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
35017
diff
changeset
|
5092 void |
6016a947974c
(move_it_past_eol): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
35017
diff
changeset
|
5093 move_it_past_eol (it) |
6016a947974c
(move_it_past_eol): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
35017
diff
changeset
|
5094 struct it *it; |
6016a947974c
(move_it_past_eol): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
35017
diff
changeset
|
5095 { |
6016a947974c
(move_it_past_eol): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
35017
diff
changeset
|
5096 enum move_it_result rc; |
6016a947974c
(move_it_past_eol): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
35017
diff
changeset
|
5097 |
6016a947974c
(move_it_past_eol): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
35017
diff
changeset
|
5098 rc = move_it_in_display_line_to (it, Z, 0, MOVE_TO_POS); |
6016a947974c
(move_it_past_eol): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
35017
diff
changeset
|
5099 if (rc == MOVE_NEWLINE_OR_CR) |
6016a947974c
(move_it_past_eol): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
35017
diff
changeset
|
5100 set_iterator_to_next (it, 0); |
6016a947974c
(move_it_past_eol): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
35017
diff
changeset
|
5101 } |
6016a947974c
(move_it_past_eol): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
35017
diff
changeset
|
5102 |
6016a947974c
(move_it_past_eol): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
35017
diff
changeset
|
5103 |
34924
db558893a42c
(move_it_by_lines): Don't do optimizations if NEED_Y_P
Gerd Moellmann <gerd@gnu.org>
parents:
34900
diff
changeset
|
5104 #if 0 /* Currently not used. */ |
db558893a42c
(move_it_by_lines): Don't do optimizations if NEED_Y_P
Gerd Moellmann <gerd@gnu.org>
parents:
34900
diff
changeset
|
5105 |
25012 | 5106 /* Return non-zero if some text between buffer positions START_CHARPOS |
5107 and END_CHARPOS is invisible. IT->window is the window for text | |
5108 property lookup. */ | |
5109 | |
5110 static int | |
5111 invisible_text_between_p (it, start_charpos, end_charpos) | |
5112 struct it *it; | |
5113 int start_charpos, end_charpos; | |
5114 { | |
5115 Lisp_Object prop, limit; | |
5116 int invisible_found_p; | |
5117 | |
5118 xassert (it != NULL && start_charpos <= end_charpos); | |
5119 | |
5120 /* Is text at START invisible? */ | |
5121 prop = Fget_char_property (make_number (start_charpos), Qinvisible, | |
5122 it->window); | |
5123 if (TEXT_PROP_MEANS_INVISIBLE (prop)) | |
5124 invisible_found_p = 1; | |
5125 else | |
5126 { | |
30243
c56062542bae
(display_prop_end, invisible_text_between_p):
Miles Bader <miles@gnu.org>
parents:
30216
diff
changeset
|
5127 limit = Fnext_single_char_property_change (make_number (start_charpos), |
c56062542bae
(display_prop_end, invisible_text_between_p):
Miles Bader <miles@gnu.org>
parents:
30216
diff
changeset
|
5128 Qinvisible, Qnil, |
c56062542bae
(display_prop_end, invisible_text_between_p):
Miles Bader <miles@gnu.org>
parents:
30216
diff
changeset
|
5129 make_number (end_charpos)); |
25012 | 5130 invisible_found_p = XFASTINT (limit) < end_charpos; |
5131 } | |
5132 | |
5133 return invisible_found_p; | |
5134 } | |
5135 | |
34924
db558893a42c
(move_it_by_lines): Don't do optimizations if NEED_Y_P
Gerd Moellmann <gerd@gnu.org>
parents:
34900
diff
changeset
|
5136 #endif /* 0 */ |
db558893a42c
(move_it_by_lines): Don't do optimizations if NEED_Y_P
Gerd Moellmann <gerd@gnu.org>
parents:
34900
diff
changeset
|
5137 |
25012 | 5138 |
5139 /* Move IT by a specified number DVPOS of screen lines down. DVPOS | |
5140 negative means move up. DVPOS == 0 means move to the start of the | |
5141 screen line. NEED_Y_P non-zero means calculate IT->current_y. If | |
5142 NEED_Y_P is zero, IT->current_y will be left unchanged. | |
5143 | |
5144 Further optimization ideas: If we would know that IT->f doesn't use | |
5145 a face with proportional font, we could be faster for | |
5146 truncate-lines nil. */ | |
5147 | |
5148 void | |
5149 move_it_by_lines (it, dvpos, need_y_p) | |
5150 struct it *it; | |
5151 int dvpos, need_y_p; | |
5152 { | |
5153 struct position pos; | |
5154 | |
5155 if (!FRAME_WINDOW_P (it->f)) | |
5156 { | |
5157 struct text_pos textpos; | |
5158 | |
5159 /* We can use vmotion on frames without proportional fonts. */ | |
5160 pos = *vmotion (IT_CHARPOS (*it), dvpos, it->w); | |
5161 SET_TEXT_POS (textpos, pos.bufpos, pos.bytepos); | |
5162 reseat (it, textpos, 1); | |
5163 it->vpos += pos.vpos; | |
5164 it->current_y += pos.vpos; | |
5165 } | |
5166 else if (dvpos == 0) | |
5167 { | |
5168 /* DVPOS == 0 means move to the start of the screen line. */ | |
5169 move_it_vertically_backward (it, 0); | |
5170 xassert (it->current_x == 0 && it->hpos == 0); | |
5171 } | |
5172 else if (dvpos > 0) | |
34924
db558893a42c
(move_it_by_lines): Don't do optimizations if NEED_Y_P
Gerd Moellmann <gerd@gnu.org>
parents:
34900
diff
changeset
|
5173 move_it_to (it, -1, -1, -1, it->vpos + dvpos, MOVE_TO_VPOS); |
25012 | 5174 else |
5175 { | |
5176 struct it it2; | |
5177 int start_charpos, i; | |
34924
db558893a42c
(move_it_by_lines): Don't do optimizations if NEED_Y_P
Gerd Moellmann <gerd@gnu.org>
parents:
34900
diff
changeset
|
5178 |
25012 | 5179 /* Go back -DVPOS visible lines and reseat the iterator there. */ |
5180 start_charpos = IT_CHARPOS (*it); | |
5181 for (i = -dvpos; i && IT_CHARPOS (*it) > BEGV; --i) | |
5182 back_to_previous_visible_line_start (it); | |
5183 reseat (it, it->current.pos, 1); | |
5184 it->current_x = it->hpos = 0; | |
5185 | |
5186 /* Above call may have moved too far if continuation lines | |
5187 are involved. Scan forward and see if it did. */ | |
5188 it2 = *it; | |
5189 it2.vpos = it2.current_y = 0; | |
5190 move_it_to (&it2, start_charpos, -1, -1, -1, MOVE_TO_POS); | |
5191 it->vpos -= it2.vpos; | |
5192 it->current_y -= it2.current_y; | |
5193 it->current_x = it->hpos = 0; | |
5194 | |
5195 /* If we moved too far, move IT some lines forward. */ | |
5196 if (it2.vpos > -dvpos) | |
5197 { | |
5198 int delta = it2.vpos + dvpos; | |
5199 move_it_to (it, -1, -1, -1, it->vpos + delta, MOVE_TO_VPOS); | |
5200 } | |
5201 } | |
5202 } | |
5203 | |
5204 | |
5205 | |
5206 /*********************************************************************** | |
5207 Messages | |
5208 ***********************************************************************/ | |
5209 | |
5210 | |
25798
775d0eca0cc3
(add_to_log): Moved from xfaces.c. Remove frame
Gerd Moellmann <gerd@gnu.org>
parents:
25794
diff
changeset
|
5211 /* Add a message with format string FORMAT and arguments ARG1 and ARG2 |
775d0eca0cc3
(add_to_log): Moved from xfaces.c. Remove frame
Gerd Moellmann <gerd@gnu.org>
parents:
25794
diff
changeset
|
5212 to *Messages*. */ |
775d0eca0cc3
(add_to_log): Moved from xfaces.c. Remove frame
Gerd Moellmann <gerd@gnu.org>
parents:
25794
diff
changeset
|
5213 |
775d0eca0cc3
(add_to_log): Moved from xfaces.c. Remove frame
Gerd Moellmann <gerd@gnu.org>
parents:
25794
diff
changeset
|
5214 void |
775d0eca0cc3
(add_to_log): Moved from xfaces.c. Remove frame
Gerd Moellmann <gerd@gnu.org>
parents:
25794
diff
changeset
|
5215 add_to_log (format, arg1, arg2) |
775d0eca0cc3
(add_to_log): Moved from xfaces.c. Remove frame
Gerd Moellmann <gerd@gnu.org>
parents:
25794
diff
changeset
|
5216 char *format; |
775d0eca0cc3
(add_to_log): Moved from xfaces.c. Remove frame
Gerd Moellmann <gerd@gnu.org>
parents:
25794
diff
changeset
|
5217 Lisp_Object arg1, arg2; |
775d0eca0cc3
(add_to_log): Moved from xfaces.c. Remove frame
Gerd Moellmann <gerd@gnu.org>
parents:
25794
diff
changeset
|
5218 { |
775d0eca0cc3
(add_to_log): Moved from xfaces.c. Remove frame
Gerd Moellmann <gerd@gnu.org>
parents:
25794
diff
changeset
|
5219 Lisp_Object args[3]; |
775d0eca0cc3
(add_to_log): Moved from xfaces.c. Remove frame
Gerd Moellmann <gerd@gnu.org>
parents:
25794
diff
changeset
|
5220 Lisp_Object msg, fmt; |
775d0eca0cc3
(add_to_log): Moved from xfaces.c. Remove frame
Gerd Moellmann <gerd@gnu.org>
parents:
25794
diff
changeset
|
5221 char *buffer; |
775d0eca0cc3
(add_to_log): Moved from xfaces.c. Remove frame
Gerd Moellmann <gerd@gnu.org>
parents:
25794
diff
changeset
|
5222 int len; |
775d0eca0cc3
(add_to_log): Moved from xfaces.c. Remove frame
Gerd Moellmann <gerd@gnu.org>
parents:
25794
diff
changeset
|
5223 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4; |
775d0eca0cc3
(add_to_log): Moved from xfaces.c. Remove frame
Gerd Moellmann <gerd@gnu.org>
parents:
25794
diff
changeset
|
5224 |
775d0eca0cc3
(add_to_log): Moved from xfaces.c. Remove frame
Gerd Moellmann <gerd@gnu.org>
parents:
25794
diff
changeset
|
5225 fmt = msg = Qnil; |
775d0eca0cc3
(add_to_log): Moved from xfaces.c. Remove frame
Gerd Moellmann <gerd@gnu.org>
parents:
25794
diff
changeset
|
5226 GCPRO4 (fmt, msg, arg1, arg2); |
775d0eca0cc3
(add_to_log): Moved from xfaces.c. Remove frame
Gerd Moellmann <gerd@gnu.org>
parents:
25794
diff
changeset
|
5227 |
775d0eca0cc3
(add_to_log): Moved from xfaces.c. Remove frame
Gerd Moellmann <gerd@gnu.org>
parents:
25794
diff
changeset
|
5228 args[0] = fmt = build_string (format); |
775d0eca0cc3
(add_to_log): Moved from xfaces.c. Remove frame
Gerd Moellmann <gerd@gnu.org>
parents:
25794
diff
changeset
|
5229 args[1] = arg1; |
775d0eca0cc3
(add_to_log): Moved from xfaces.c. Remove frame
Gerd Moellmann <gerd@gnu.org>
parents:
25794
diff
changeset
|
5230 args[2] = arg2; |
28464
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28362
diff
changeset
|
5231 msg = Fformat (3, args); |
25798
775d0eca0cc3
(add_to_log): Moved from xfaces.c. Remove frame
Gerd Moellmann <gerd@gnu.org>
parents:
25794
diff
changeset
|
5232 |
775d0eca0cc3
(add_to_log): Moved from xfaces.c. Remove frame
Gerd Moellmann <gerd@gnu.org>
parents:
25794
diff
changeset
|
5233 len = STRING_BYTES (XSTRING (msg)) + 1; |
775d0eca0cc3
(add_to_log): Moved from xfaces.c. Remove frame
Gerd Moellmann <gerd@gnu.org>
parents:
25794
diff
changeset
|
5234 buffer = (char *) alloca (len); |
775d0eca0cc3
(add_to_log): Moved from xfaces.c. Remove frame
Gerd Moellmann <gerd@gnu.org>
parents:
25794
diff
changeset
|
5235 strcpy (buffer, XSTRING (msg)->data); |
775d0eca0cc3
(add_to_log): Moved from xfaces.c. Remove frame
Gerd Moellmann <gerd@gnu.org>
parents:
25794
diff
changeset
|
5236 |
28876
04cbb0510d7e
(add_to_log): Pass 1 byte less to message_dolog.
Gerd Moellmann <gerd@gnu.org>
parents:
28869
diff
changeset
|
5237 message_dolog (buffer, len - 1, 1, 0); |
25798
775d0eca0cc3
(add_to_log): Moved from xfaces.c. Remove frame
Gerd Moellmann <gerd@gnu.org>
parents:
25794
diff
changeset
|
5238 UNGCPRO; |
775d0eca0cc3
(add_to_log): Moved from xfaces.c. Remove frame
Gerd Moellmann <gerd@gnu.org>
parents:
25794
diff
changeset
|
5239 } |
775d0eca0cc3
(add_to_log): Moved from xfaces.c. Remove frame
Gerd Moellmann <gerd@gnu.org>
parents:
25794
diff
changeset
|
5240 |
775d0eca0cc3
(add_to_log): Moved from xfaces.c. Remove frame
Gerd Moellmann <gerd@gnu.org>
parents:
25794
diff
changeset
|
5241 |
14465
0936d5e38928
Comment/whitespace changes.
Richard M. Stallman <rms@gnu.org>
parents:
14299
diff
changeset
|
5242 /* Output a newline in the *Messages* buffer if "needs" one. */ |
0936d5e38928
Comment/whitespace changes.
Richard M. Stallman <rms@gnu.org>
parents:
14299
diff
changeset
|
5243 |
10567
65c5552c16cb
(message_log_need_newline): This var is now static.
Karl Heuer <kwzh@gnu.org>
parents:
10457
diff
changeset
|
5244 void |
65c5552c16cb
(message_log_need_newline): This var is now static.
Karl Heuer <kwzh@gnu.org>
parents:
10457
diff
changeset
|
5245 message_log_maybe_newline () |
65c5552c16cb
(message_log_need_newline): This var is now static.
Karl Heuer <kwzh@gnu.org>
parents:
10457
diff
changeset
|
5246 { |
65c5552c16cb
(message_log_need_newline): This var is now static.
Karl Heuer <kwzh@gnu.org>
parents:
10457
diff
changeset
|
5247 if (message_log_need_newline) |
20628
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5248 message_dolog ("", 0, 1, 0); |
10567
65c5552c16cb
(message_log_need_newline): This var is now static.
Karl Heuer <kwzh@gnu.org>
parents:
10457
diff
changeset
|
5249 } |
65c5552c16cb
(message_log_need_newline): This var is now static.
Karl Heuer <kwzh@gnu.org>
parents:
10457
diff
changeset
|
5250 |
65c5552c16cb
(message_log_need_newline): This var is now static.
Karl Heuer <kwzh@gnu.org>
parents:
10457
diff
changeset
|
5251 |
25012 | 5252 /* Add a string M of length LEN to the message log, optionally |
5253 terminated with a newline when NLFLAG is non-zero. MULTIBYTE, if | |
5254 nonzero, means interpret the contents of M as multibyte. This | |
5255 function calls low-level routines in order to bypass text property | |
5256 hooks, etc. which might not be safe to run. */ | |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
5257 |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
5258 void |
20628
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5259 message_dolog (m, len, nlflag, multibyte) |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
5260 char *m; |
20628
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5261 int len, nlflag, multibyte; |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
5262 { |
10416
51c4308d74c9
(message_log_need_newline): New var.
Karl Heuer <kwzh@gnu.org>
parents:
10394
diff
changeset
|
5263 if (!NILP (Vmessage_log_max)) |
10393 | 5264 { |
5265 struct buffer *oldbuf; | |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5266 Lisp_Object oldpoint, oldbegv, oldzv; |
13733
e51b69e60614
(message_dolog): Save and restore windows_or_buffers_changed.
Richard M. Stallman <rms@gnu.org>
parents:
13655
diff
changeset
|
5267 int old_windows_or_buffers_changed = windows_or_buffers_changed; |
20473
f8b70ad2fc2a
(message_dolog): Update PT and ZV properly when at end of
Richard M. Stallman <rms@gnu.org>
parents:
20376
diff
changeset
|
5268 int point_at_end = 0; |
f8b70ad2fc2a
(message_dolog): Update PT and ZV properly when at end of
Richard M. Stallman <rms@gnu.org>
parents:
20376
diff
changeset
|
5269 int zv_at_end = 0; |
22209
571020b7fc5e
(message_dolog): Do set windows_or_buffers_changed,
Richard M. Stallman <rms@gnu.org>
parents:
22148
diff
changeset
|
5270 Lisp_Object old_deactivate_mark, tem; |
22500
274456e421ab
(message_dolog): GCPRO the oldpoint, oldbegv and oldzv
Richard M. Stallman <rms@gnu.org>
parents:
22399
diff
changeset
|
5271 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4; |
21179
482ff111ccbc
(message_dolog): Save and restore Vdeactivate_mark.
Richard M. Stallman <rms@gnu.org>
parents:
21028
diff
changeset
|
5272 |
482ff111ccbc
(message_dolog): Save and restore Vdeactivate_mark.
Richard M. Stallman <rms@gnu.org>
parents:
21028
diff
changeset
|
5273 old_deactivate_mark = Vdeactivate_mark; |
10393 | 5274 oldbuf = current_buffer; |
30728
a87e28789082
(Vmessages_buffer_name): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30721
diff
changeset
|
5275 Fset_buffer (Fget_buffer_create (Vmessages_buffer_name)); |
11531
355c40d2b1d2
(message_dolog): The message log doesn't need an undo list.
Karl Heuer <kwzh@gnu.org>
parents:
11499
diff
changeset
|
5276 current_buffer->undo_list = Qt; |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5277 |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5278 oldpoint = Fpoint_marker (); |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5279 oldbegv = Fpoint_min_marker (); |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5280 oldzv = Fpoint_max_marker (); |
22500
274456e421ab
(message_dolog): GCPRO the oldpoint, oldbegv and oldzv
Richard M. Stallman <rms@gnu.org>
parents:
22399
diff
changeset
|
5281 GCPRO4 (oldpoint, oldbegv, oldzv, old_deactivate_mark); |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5282 |
20703
f465da76f36b
(message_dolog): Use unibyte_char_to_multibyte.
Richard M. Stallman <rms@gnu.org>
parents:
20689
diff
changeset
|
5283 if (PT == Z) |
20473
f8b70ad2fc2a
(message_dolog): Update PT and ZV properly when at end of
Richard M. Stallman <rms@gnu.org>
parents:
20376
diff
changeset
|
5284 point_at_end = 1; |
20703
f465da76f36b
(message_dolog): Use unibyte_char_to_multibyte.
Richard M. Stallman <rms@gnu.org>
parents:
20689
diff
changeset
|
5285 if (ZV == Z) |
20473
f8b70ad2fc2a
(message_dolog): Update PT and ZV properly when at end of
Richard M. Stallman <rms@gnu.org>
parents:
20376
diff
changeset
|
5286 zv_at_end = 1; |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5287 |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5288 BEGV = BEG; |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5289 BEGV_BYTE = BEG_BYTE; |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5290 ZV = Z; |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5291 ZV_BYTE = Z_BYTE; |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5292 TEMP_SET_PT_BOTH (Z, Z_BYTE); |
20473
f8b70ad2fc2a
(message_dolog): Update PT and ZV properly when at end of
Richard M. Stallman <rms@gnu.org>
parents:
20376
diff
changeset
|
5293 |
f8b70ad2fc2a
(message_dolog): Update PT and ZV properly when at end of
Richard M. Stallman <rms@gnu.org>
parents:
20376
diff
changeset
|
5294 /* Insert the string--maybe converting multibyte to single byte |
f8b70ad2fc2a
(message_dolog): Update PT and ZV properly when at end of
Richard M. Stallman <rms@gnu.org>
parents:
20376
diff
changeset
|
5295 or vice versa, so that all the text fits the buffer. */ |
20628
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5296 if (multibyte |
20473
f8b70ad2fc2a
(message_dolog): Update PT and ZV properly when at end of
Richard M. Stallman <rms@gnu.org>
parents:
20376
diff
changeset
|
5297 && NILP (current_buffer->enable_multibyte_characters)) |
f8b70ad2fc2a
(message_dolog): Update PT and ZV properly when at end of
Richard M. Stallman <rms@gnu.org>
parents:
20376
diff
changeset
|
5298 { |
24040
d178122d6122
(message_dolog): Use insert_1_both to avoid running any
Kenichi Handa <handa@m17n.org>
parents:
23784
diff
changeset
|
5299 int i, c, nbytes; |
d178122d6122
(message_dolog): Use insert_1_both to avoid running any
Kenichi Handa <handa@m17n.org>
parents:
23784
diff
changeset
|
5300 unsigned char work[1]; |
25012 | 5301 |
20473
f8b70ad2fc2a
(message_dolog): Update PT and ZV properly when at end of
Richard M. Stallman <rms@gnu.org>
parents:
20376
diff
changeset
|
5302 /* Convert a multibyte string to single-byte |
f8b70ad2fc2a
(message_dolog): Update PT and ZV properly when at end of
Richard M. Stallman <rms@gnu.org>
parents:
20376
diff
changeset
|
5303 for the *Message* buffer. */ |
24040
d178122d6122
(message_dolog): Use insert_1_both to avoid running any
Kenichi Handa <handa@m17n.org>
parents:
23784
diff
changeset
|
5304 for (i = 0; i < len; i += nbytes) |
20473
f8b70ad2fc2a
(message_dolog): Update PT and ZV properly when at end of
Richard M. Stallman <rms@gnu.org>
parents:
20376
diff
changeset
|
5305 { |
25096
1af1088d3812
(string_char_and_length): New. Use it everywhere
Gerd Moellmann <gerd@gnu.org>
parents:
25063
diff
changeset
|
5306 c = string_char_and_length (m + i, len - i, &nbytes); |
24040
d178122d6122
(message_dolog): Use insert_1_both to avoid running any
Kenichi Handa <handa@m17n.org>
parents:
23784
diff
changeset
|
5307 work[0] = (SINGLE_BYTE_CHAR_P (c) |
d178122d6122
(message_dolog): Use insert_1_both to avoid running any
Kenichi Handa <handa@m17n.org>
parents:
23784
diff
changeset
|
5308 ? c |
d178122d6122
(message_dolog): Use insert_1_both to avoid running any
Kenichi Handa <handa@m17n.org>
parents:
23784
diff
changeset
|
5309 : multibyte_char_to_unibyte (c, Qnil)); |
d178122d6122
(message_dolog): Use insert_1_both to avoid running any
Kenichi Handa <handa@m17n.org>
parents:
23784
diff
changeset
|
5310 insert_1_both (work, 1, 1, 1, 0, 0); |
20473
f8b70ad2fc2a
(message_dolog): Update PT and ZV properly when at end of
Richard M. Stallman <rms@gnu.org>
parents:
20376
diff
changeset
|
5311 } |
f8b70ad2fc2a
(message_dolog): Update PT and ZV properly when at end of
Richard M. Stallman <rms@gnu.org>
parents:
20376
diff
changeset
|
5312 } |
20628
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5313 else if (! multibyte |
20473
f8b70ad2fc2a
(message_dolog): Update PT and ZV properly when at end of
Richard M. Stallman <rms@gnu.org>
parents:
20376
diff
changeset
|
5314 && ! NILP (current_buffer->enable_multibyte_characters)) |
f8b70ad2fc2a
(message_dolog): Update PT and ZV properly when at end of
Richard M. Stallman <rms@gnu.org>
parents:
20376
diff
changeset
|
5315 { |
24040
d178122d6122
(message_dolog): Use insert_1_both to avoid running any
Kenichi Handa <handa@m17n.org>
parents:
23784
diff
changeset
|
5316 int i, c, nbytes; |
20786
49d68bf8f34b
(message_dolog): Cast M to unsigned char * to access bytes.
Richard M. Stallman <rms@gnu.org>
parents:
20703
diff
changeset
|
5317 unsigned char *msg = (unsigned char *) m; |
26874
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
5318 unsigned char str[MAX_MULTIBYTE_LENGTH]; |
20473
f8b70ad2fc2a
(message_dolog): Update PT and ZV properly when at end of
Richard M. Stallman <rms@gnu.org>
parents:
20376
diff
changeset
|
5319 /* Convert a single-byte string to multibyte |
f8b70ad2fc2a
(message_dolog): Update PT and ZV properly when at end of
Richard M. Stallman <rms@gnu.org>
parents:
20376
diff
changeset
|
5320 for the *Message* buffer. */ |
24040
d178122d6122
(message_dolog): Use insert_1_both to avoid running any
Kenichi Handa <handa@m17n.org>
parents:
23784
diff
changeset
|
5321 for (i = 0; i < len; i++) |
20473
f8b70ad2fc2a
(message_dolog): Update PT and ZV properly when at end of
Richard M. Stallman <rms@gnu.org>
parents:
20376
diff
changeset
|
5322 { |
24040
d178122d6122
(message_dolog): Use insert_1_both to avoid running any
Kenichi Handa <handa@m17n.org>
parents:
23784
diff
changeset
|
5323 c = unibyte_char_to_multibyte (msg[i]); |
26874
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
5324 nbytes = CHAR_STRING (c, str); |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
5325 insert_1_both (str, 1, nbytes, 1, 0, 0); |
20473
f8b70ad2fc2a
(message_dolog): Update PT and ZV properly when at end of
Richard M. Stallman <rms@gnu.org>
parents:
20376
diff
changeset
|
5326 } |
f8b70ad2fc2a
(message_dolog): Update PT and ZV properly when at end of
Richard M. Stallman <rms@gnu.org>
parents:
20376
diff
changeset
|
5327 } |
f8b70ad2fc2a
(message_dolog): Update PT and ZV properly when at end of
Richard M. Stallman <rms@gnu.org>
parents:
20376
diff
changeset
|
5328 else if (len) |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5329 insert_1 (m, len, 1, 0, 0); |
20473
f8b70ad2fc2a
(message_dolog): Update PT and ZV properly when at end of
Richard M. Stallman <rms@gnu.org>
parents:
20376
diff
changeset
|
5330 |
10416
51c4308d74c9
(message_log_need_newline): New var.
Karl Heuer <kwzh@gnu.org>
parents:
10394
diff
changeset
|
5331 if (nlflag) |
10393 | 5332 { |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5333 int this_bol, this_bol_byte, prev_bol, prev_bol_byte, dup; |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5334 insert_1 ("\n", 1, 1, 0, 0); |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5335 |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5336 scan_newline (Z, Z_BYTE, BEG, BEG_BYTE, -2, 0); |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5337 this_bol = PT; |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5338 this_bol_byte = PT_BYTE; |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5339 |
10688
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5340 if (this_bol > BEG) |
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5341 { |
20703
f465da76f36b
(message_dolog): Use unibyte_char_to_multibyte.
Richard M. Stallman <rms@gnu.org>
parents:
20689
diff
changeset
|
5342 scan_newline (PT, PT_BYTE, BEG, BEG_BYTE, -2, 0); |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5343 prev_bol = PT; |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5344 prev_bol_byte = PT_BYTE; |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5345 |
20964
4cad33afd914
(message_dolog): Give correct args to
Kenichi Handa <handa@m17n.org>
parents:
20926
diff
changeset
|
5346 dup = message_log_check_duplicate (prev_bol, prev_bol_byte, |
4cad33afd914
(message_dolog): Give correct args to
Kenichi Handa <handa@m17n.org>
parents:
20926
diff
changeset
|
5347 this_bol, this_bol_byte); |
10688
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5348 if (dup) |
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5349 { |
20981
0ce30e7ba2b8
Reorder args of del_range_both.
Karl Heuer <kwzh@gnu.org>
parents:
20964
diff
changeset
|
5350 del_range_both (prev_bol, prev_bol_byte, |
0ce30e7ba2b8
Reorder args of del_range_both.
Karl Heuer <kwzh@gnu.org>
parents:
20964
diff
changeset
|
5351 this_bol, this_bol_byte, 0); |
10688
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5352 if (dup > 1) |
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5353 { |
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5354 char dupstr[40]; |
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5355 int duplen; |
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5356 |
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5357 /* If you change this format, don't forget to also |
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5358 change message_log_check_duplicate. */ |
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5359 sprintf (dupstr, " [%d times]", dup); |
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5360 duplen = strlen (dupstr); |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5361 TEMP_SET_PT_BOTH (Z - 1, Z_BYTE - 1); |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5362 insert_1 (dupstr, duplen, 1, 0, 1); |
10688
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5363 } |
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5364 } |
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5365 } |
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5366 |
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5367 if (NATNUMP (Vmessage_log_max)) |
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5368 { |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5369 scan_newline (Z, Z_BYTE, BEG, BEG_BYTE, |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5370 -XFASTINT (Vmessage_log_max) - 1, 0); |
20981
0ce30e7ba2b8
Reorder args of del_range_both.
Karl Heuer <kwzh@gnu.org>
parents:
20964
diff
changeset
|
5371 del_range_both (BEG, BEG_BYTE, PT, PT_BYTE, 0); |
10688
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5372 } |
10393 | 5373 } |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5374 BEGV = XMARKER (oldbegv)->charpos; |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5375 BEGV_BYTE = marker_byte_position (oldbegv); |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5376 |
20473
f8b70ad2fc2a
(message_dolog): Update PT and ZV properly when at end of
Richard M. Stallman <rms@gnu.org>
parents:
20376
diff
changeset
|
5377 if (zv_at_end) |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5378 { |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5379 ZV = Z; |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5380 ZV_BYTE = Z_BYTE; |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5381 } |
20473
f8b70ad2fc2a
(message_dolog): Update PT and ZV properly when at end of
Richard M. Stallman <rms@gnu.org>
parents:
20376
diff
changeset
|
5382 else |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5383 { |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5384 ZV = XMARKER (oldzv)->charpos; |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5385 ZV_BYTE = marker_byte_position (oldzv); |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5386 } |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5387 |
20473
f8b70ad2fc2a
(message_dolog): Update PT and ZV properly when at end of
Richard M. Stallman <rms@gnu.org>
parents:
20376
diff
changeset
|
5388 if (point_at_end) |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5389 TEMP_SET_PT_BOTH (Z, Z_BYTE); |
20473
f8b70ad2fc2a
(message_dolog): Update PT and ZV properly when at end of
Richard M. Stallman <rms@gnu.org>
parents:
20376
diff
changeset
|
5390 else |
24040
d178122d6122
(message_dolog): Use insert_1_both to avoid running any
Kenichi Handa <handa@m17n.org>
parents:
23784
diff
changeset
|
5391 /* We can't do Fgoto_char (oldpoint) because it will run some |
d178122d6122
(message_dolog): Use insert_1_both to avoid running any
Kenichi Handa <handa@m17n.org>
parents:
23784
diff
changeset
|
5392 Lisp code. */ |
d178122d6122
(message_dolog): Use insert_1_both to avoid running any
Kenichi Handa <handa@m17n.org>
parents:
23784
diff
changeset
|
5393 TEMP_SET_PT_BOTH (XMARKER (oldpoint)->charpos, |
d178122d6122
(message_dolog): Use insert_1_both to avoid running any
Kenichi Handa <handa@m17n.org>
parents:
23784
diff
changeset
|
5394 XMARKER (oldpoint)->bytepos); |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5395 |
22500
274456e421ab
(message_dolog): GCPRO the oldpoint, oldbegv and oldzv
Richard M. Stallman <rms@gnu.org>
parents:
22399
diff
changeset
|
5396 UNGCPRO; |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5397 free_marker (oldpoint); |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5398 free_marker (oldbegv); |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5399 free_marker (oldzv); |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5400 |
22209
571020b7fc5e
(message_dolog): Do set windows_or_buffers_changed,
Richard M. Stallman <rms@gnu.org>
parents:
22148
diff
changeset
|
5401 tem = Fget_buffer_window (Fcurrent_buffer (), Qt); |
10393 | 5402 set_buffer_internal (oldbuf); |
22209
571020b7fc5e
(message_dolog): Do set windows_or_buffers_changed,
Richard M. Stallman <rms@gnu.org>
parents:
22148
diff
changeset
|
5403 if (NILP (tem)) |
571020b7fc5e
(message_dolog): Do set windows_or_buffers_changed,
Richard M. Stallman <rms@gnu.org>
parents:
22148
diff
changeset
|
5404 windows_or_buffers_changed = old_windows_or_buffers_changed; |
10567
65c5552c16cb
(message_log_need_newline): This var is now static.
Karl Heuer <kwzh@gnu.org>
parents:
10457
diff
changeset
|
5405 message_log_need_newline = !nlflag; |
21179
482ff111ccbc
(message_dolog): Save and restore Vdeactivate_mark.
Richard M. Stallman <rms@gnu.org>
parents:
21028
diff
changeset
|
5406 Vdeactivate_mark = old_deactivate_mark; |
10393 | 5407 } |
10416
51c4308d74c9
(message_log_need_newline): New var.
Karl Heuer <kwzh@gnu.org>
parents:
10394
diff
changeset
|
5408 } |
51c4308d74c9
(message_log_need_newline): New var.
Karl Heuer <kwzh@gnu.org>
parents:
10394
diff
changeset
|
5409 |
25012 | 5410 |
10688
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5411 /* We are at the end of the buffer after just having inserted a newline. |
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5412 (Note: We depend on the fact we won't be crossing the gap.) |
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5413 Check to see if the most recent message looks a lot like the previous one. |
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5414 Return 0 if different, 1 if the new one should just replace it, or a |
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5415 value N > 1 if we should also append " [N times]". */ |
11444
763c454b044e
(redisplay): Call init_desired_glyphs for each frame.
Richard M. Stallman <rms@gnu.org>
parents:
11354
diff
changeset
|
5416 |
10688
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5417 static int |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5418 message_log_check_duplicate (prev_bol, prev_bol_byte, this_bol, this_bol_byte) |
10688
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5419 int prev_bol, this_bol; |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5420 int prev_bol_byte, this_bol_byte; |
10688
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5421 { |
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5422 int i; |
23257
b72cefab3254
(message_log_check_duplicate): Count byte length of the
Kenichi Handa <handa@m17n.org>
parents:
23249
diff
changeset
|
5423 int len = Z_BYTE - 1 - this_bol_byte; |
10688
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5424 int seen_dots = 0; |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5425 unsigned char *p1 = BUF_BYTE_ADDRESS (current_buffer, prev_bol_byte); |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5426 unsigned char *p2 = BUF_BYTE_ADDRESS (current_buffer, this_bol_byte); |
10688
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5427 |
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5428 for (i = 0; i < len; i++) |
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5429 { |
33594
a4cd4c93196b
(message_log_check_duplicate): Let "..."-detection match
Miles Bader <miles@gnu.org>
parents:
33591
diff
changeset
|
5430 if (i >= 3 && p1[i-3] == '.' && p1[i-2] == '.' && p1[i-1] == '.') |
10688
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5431 seen_dots = 1; |
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5432 if (p1[i] != p2[i]) |
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5433 return seen_dots; |
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5434 } |
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5435 p1 += len; |
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5436 if (*p1 == '\n') |
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5437 return 2; |
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5438 if (*p1++ == ' ' && *p1++ == '[') |
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5439 { |
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5440 int n = 0; |
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5441 while (*p1 >= '0' && *p1 <= '9') |
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5442 n = n * 10 + *p1++ - '0'; |
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5443 if (strncmp (p1, " times]\n", 8) == 0) |
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5444 return n+1; |
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5445 } |
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5446 return 0; |
340ceb6ae024
(message_log_check_duplicate): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10667
diff
changeset
|
5447 } |
25012 | 5448 |
5449 | |
5450 /* Display an echo area message M with a specified length of LEN | |
5451 chars. The string may include null characters. If M is 0, clear | |
5452 out any existing message, and let the mini-buffer text show through. | |
5453 | |
5454 The buffer M must continue to exist until after the echo area gets | |
5455 cleared or some other message gets displayed there. This means do | |
5456 not pass text that is stored in a Lisp string; do not pass text in | |
5457 a buffer that was alloca'd. */ | |
10416
51c4308d74c9
(message_log_need_newline): New var.
Karl Heuer <kwzh@gnu.org>
parents:
10394
diff
changeset
|
5458 |
51c4308d74c9
(message_log_need_newline): New var.
Karl Heuer <kwzh@gnu.org>
parents:
10394
diff
changeset
|
5459 void |
20628
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5460 message2 (m, len, multibyte) |
10416
51c4308d74c9
(message_log_need_newline): New var.
Karl Heuer <kwzh@gnu.org>
parents:
10394
diff
changeset
|
5461 char *m; |
51c4308d74c9
(message_log_need_newline): New var.
Karl Heuer <kwzh@gnu.org>
parents:
10394
diff
changeset
|
5462 int len; |
20628
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5463 int multibyte; |
10416
51c4308d74c9
(message_log_need_newline): New var.
Karl Heuer <kwzh@gnu.org>
parents:
10394
diff
changeset
|
5464 { |
51c4308d74c9
(message_log_need_newline): New var.
Karl Heuer <kwzh@gnu.org>
parents:
10394
diff
changeset
|
5465 /* First flush out any partial line written with print. */ |
10567
65c5552c16cb
(message_log_need_newline): This var is now static.
Karl Heuer <kwzh@gnu.org>
parents:
10457
diff
changeset
|
5466 message_log_maybe_newline (); |
10416
51c4308d74c9
(message_log_need_newline): New var.
Karl Heuer <kwzh@gnu.org>
parents:
10394
diff
changeset
|
5467 if (m) |
20628
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5468 message_dolog (m, len, 1, multibyte); |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5469 message2_nolog (m, len, multibyte); |
10393 | 5470 } |
5471 | |
5472 | |
14465
0936d5e38928
Comment/whitespace changes.
Richard M. Stallman <rms@gnu.org>
parents:
14299
diff
changeset
|
5473 /* The non-logging counterpart of message2. */ |
10393 | 5474 |
5475 void | |
20494
9946c5fb4ff7
(message2_nolog): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20473
diff
changeset
|
5476 message2_nolog (m, len, multibyte) |
10393 | 5477 char *m; |
5478 int len; | |
5479 { | |
25677
1223d6401ab2
(QCfile): Move here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
25660
diff
changeset
|
5480 struct frame *sf = SELECTED_FRAME (); |
20494
9946c5fb4ff7
(message2_nolog): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20473
diff
changeset
|
5481 message_enable_multibyte = multibyte; |
19915
0ee6d171e8af
When redisplaying the echo area, use the value
Richard M. Stallman <rms@gnu.org>
parents:
19789
diff
changeset
|
5482 |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
5483 if (noninteractive) |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
5484 { |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
5485 if (noninteractive_need_newline) |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
5486 putc ('\n', stderr); |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
5487 noninteractive_need_newline = 0; |
18752
8fce2f503ea9
(message2_nolog): Don't call fwrite will null string.
Richard M. Stallman <rms@gnu.org>
parents:
18730
diff
changeset
|
5488 if (m) |
8fce2f503ea9
(message2_nolog): Don't call fwrite will null string.
Richard M. Stallman <rms@gnu.org>
parents:
18730
diff
changeset
|
5489 fwrite (m, len, 1, stderr); |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
5490 if (cursor_in_echo_area == 0) |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
5491 fprintf (stderr, "\n"); |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
5492 fflush (stderr); |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
5493 } |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
5494 /* A null message buffer means that the frame hasn't really been |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
5495 initialized yet. Error messages get reported properly by |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
5496 cmd_error, so this must be just an informative message; toss it. */ |
25012 | 5497 else if (INTERACTIVE |
25677
1223d6401ab2
(QCfile): Move here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
25660
diff
changeset
|
5498 && sf->glyphs_initialized_p |
1223d6401ab2
(QCfile): Move here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
25660
diff
changeset
|
5499 && FRAME_MESSAGE_BUF (sf)) |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
5500 { |
12629
55241c80f448
(echo_area_display): Use selected frame's minibuf window
Richard M. Stallman <rms@gnu.org>
parents:
12598
diff
changeset
|
5501 Lisp_Object mini_window; |
25012 | 5502 struct frame *f; |
5503 | |
5504 /* Get the frame containing the mini-buffer | |
12629
55241c80f448
(echo_area_display): Use selected frame's minibuf window
Richard M. Stallman <rms@gnu.org>
parents:
12598
diff
changeset
|
5505 that the selected frame is using. */ |
25677
1223d6401ab2
(QCfile): Move here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
25660
diff
changeset
|
5506 mini_window = FRAME_MINIBUF_WINDOW (sf); |
12629
55241c80f448
(echo_area_display): Use selected frame's minibuf window
Richard M. Stallman <rms@gnu.org>
parents:
12598
diff
changeset
|
5507 f = XFRAME (WINDOW_FRAME (XWINDOW (mini_window))); |
55241c80f448
(echo_area_display): Use selected frame's minibuf window
Richard M. Stallman <rms@gnu.org>
parents:
12598
diff
changeset
|
5508 |
55241c80f448
(echo_area_display): Use selected frame's minibuf window
Richard M. Stallman <rms@gnu.org>
parents:
12598
diff
changeset
|
5509 FRAME_SAMPLE_VISIBILITY (f); |
25677
1223d6401ab2
(QCfile): Move here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
25660
diff
changeset
|
5510 if (FRAME_VISIBLE_P (sf) |
12629
55241c80f448
(echo_area_display): Use selected frame's minibuf window
Richard M. Stallman <rms@gnu.org>
parents:
12598
diff
changeset
|
5511 && ! FRAME_VISIBLE_P (f)) |
55241c80f448
(echo_area_display): Use selected frame's minibuf window
Richard M. Stallman <rms@gnu.org>
parents:
12598
diff
changeset
|
5512 Fmake_frame_visible (WINDOW_FRAME (XWINDOW (mini_window))); |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
5513 |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
5514 if (m) |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
5515 { |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5516 set_message (m, Qnil, len, multibyte); |
16660
16f2e24baf42
(message2_nolog): Handle minibuffer_auto_raise.
Richard M. Stallman <rms@gnu.org>
parents:
16570
diff
changeset
|
5517 if (minibuffer_auto_raise) |
16f2e24baf42
(message2_nolog): Handle minibuffer_auto_raise.
Richard M. Stallman <rms@gnu.org>
parents:
16570
diff
changeset
|
5518 Fraise_frame (WINDOW_FRAME (XWINDOW (mini_window))); |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
5519 } |
1527
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
5520 else |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5521 clear_message (1, 1); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5522 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5523 do_pending_window_change (0); |
25012 | 5524 echo_area_display (1); |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5525 do_pending_window_change (0); |
6661
a26e7181f36b
(display_text_line): Properly handle charstarts for hscroll,
Richard M. Stallman <rms@gnu.org>
parents:
6650
diff
changeset
|
5526 if (frame_up_to_date_hook != 0 && ! gc_in_progress) |
12629
55241c80f448
(echo_area_display): Use selected frame's minibuf window
Richard M. Stallman <rms@gnu.org>
parents:
12598
diff
changeset
|
5527 (*frame_up_to_date_hook) (f); |
1527
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
5528 } |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
5529 } |
25012 | 5530 |
5531 | |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5532 /* Display an echo area message M with a specified length of NBYTES |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5533 bytes. The string may include null characters. If M is not a |
25012 | 5534 string, clear out any existing message, and let the mini-buffer |
5535 text show through. */ | |
5536 | |
5537 void | |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5538 message3 (m, nbytes, multibyte) |
25012 | 5539 Lisp_Object m; |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5540 int nbytes; |
25012 | 5541 int multibyte; |
5542 { | |
5543 struct gcpro gcpro1; | |
5544 | |
5545 GCPRO1 (m); | |
5546 | |
5547 /* First flush out any partial line written with print. */ | |
5548 message_log_maybe_newline (); | |
5549 if (STRINGP (m)) | |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5550 message_dolog (XSTRING (m)->data, nbytes, 1, multibyte); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5551 message3_nolog (m, nbytes, multibyte); |
25012 | 5552 |
5553 UNGCPRO; | |
5554 } | |
5555 | |
5556 | |
5557 /* The non-logging version of message3. */ | |
5558 | |
5559 void | |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5560 message3_nolog (m, nbytes, multibyte) |
25012 | 5561 Lisp_Object m; |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5562 int nbytes, multibyte; |
25012 | 5563 { |
25677
1223d6401ab2
(QCfile): Move here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
25660
diff
changeset
|
5564 struct frame *sf = SELECTED_FRAME (); |
25012 | 5565 message_enable_multibyte = multibyte; |
5566 | |
5567 if (noninteractive) | |
5568 { | |
5569 if (noninteractive_need_newline) | |
5570 putc ('\n', stderr); | |
5571 noninteractive_need_newline = 0; | |
5572 if (STRINGP (m)) | |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5573 fwrite (XSTRING (m)->data, nbytes, 1, stderr); |
25012 | 5574 if (cursor_in_echo_area == 0) |
5575 fprintf (stderr, "\n"); | |
5576 fflush (stderr); | |
5577 } | |
5578 /* A null message buffer means that the frame hasn't really been | |
5579 initialized yet. Error messages get reported properly by | |
5580 cmd_error, so this must be just an informative message; toss it. */ | |
5581 else if (INTERACTIVE | |
25677
1223d6401ab2
(QCfile): Move here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
25660
diff
changeset
|
5582 && sf->glyphs_initialized_p |
1223d6401ab2
(QCfile): Move here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
25660
diff
changeset
|
5583 && FRAME_MESSAGE_BUF (sf)) |
25012 | 5584 { |
5585 Lisp_Object mini_window; | |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5586 Lisp_Object frame; |
25012 | 5587 struct frame *f; |
5588 | |
5589 /* Get the frame containing the mini-buffer | |
5590 that the selected frame is using. */ | |
25677
1223d6401ab2
(QCfile): Move here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
25660
diff
changeset
|
5591 mini_window = FRAME_MINIBUF_WINDOW (sf); |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5592 frame = XWINDOW (mini_window)->frame; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5593 f = XFRAME (frame); |
25012 | 5594 |
5595 FRAME_SAMPLE_VISIBILITY (f); | |
25677
1223d6401ab2
(QCfile): Move here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
25660
diff
changeset
|
5596 if (FRAME_VISIBLE_P (sf) |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5597 && !FRAME_VISIBLE_P (f)) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5598 Fmake_frame_visible (frame); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5599 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5600 if (STRINGP (m) && XSTRING (m)->size) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5601 { |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5602 set_message (NULL, m, nbytes, multibyte); |
25393
9aff86718a20
(try_window_id): Recognize case that PT == ZV and in
Gerd Moellmann <gerd@gnu.org>
parents:
25388
diff
changeset
|
5603 if (minibuffer_auto_raise) |
9aff86718a20
(try_window_id): Recognize case that PT == ZV and in
Gerd Moellmann <gerd@gnu.org>
parents:
25388
diff
changeset
|
5604 Fraise_frame (frame); |
25012 | 5605 } |
5606 else | |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5607 clear_message (1, 1); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5608 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5609 do_pending_window_change (0); |
25012 | 5610 echo_area_display (1); |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5611 do_pending_window_change (0); |
25012 | 5612 if (frame_up_to_date_hook != 0 && ! gc_in_progress) |
5613 (*frame_up_to_date_hook) (f); | |
5614 } | |
5615 } | |
5616 | |
5617 | |
5618 /* Display a null-terminated echo area message M. If M is 0, clear | |
5619 out any existing message, and let the mini-buffer text show through. | |
5620 | |
5621 The buffer M must continue to exist until after the echo area gets | |
5622 cleared or some other message gets displayed there. Do not pass | |
5623 text that is stored in a Lisp string. Do not pass text in a buffer | |
5624 that was alloca'd. */ | |
1527
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
5625 |
6366
6f28d7614611
(message1): Call message2 instead of duplicating code.
Karl Heuer <kwzh@gnu.org>
parents:
6342
diff
changeset
|
5626 void |
6f28d7614611
(message1): Call message2 instead of duplicating code.
Karl Heuer <kwzh@gnu.org>
parents:
6342
diff
changeset
|
5627 message1 (m) |
6f28d7614611
(message1): Call message2 instead of duplicating code.
Karl Heuer <kwzh@gnu.org>
parents:
6342
diff
changeset
|
5628 char *m; |
6f28d7614611
(message1): Call message2 instead of duplicating code.
Karl Heuer <kwzh@gnu.org>
parents:
6342
diff
changeset
|
5629 { |
20628
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5630 message2 (m, (m ? strlen (m) : 0), 0); |
6366
6f28d7614611
(message1): Call message2 instead of duplicating code.
Karl Heuer <kwzh@gnu.org>
parents:
6342
diff
changeset
|
5631 } |
6f28d7614611
(message1): Call message2 instead of duplicating code.
Karl Heuer <kwzh@gnu.org>
parents:
6342
diff
changeset
|
5632 |
25012 | 5633 |
5634 /* The non-logging counterpart of message1. */ | |
5635 | |
10394
afa796e2b954
(message1_nolog): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10393
diff
changeset
|
5636 void |
afa796e2b954
(message1_nolog): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10393
diff
changeset
|
5637 message1_nolog (m) |
afa796e2b954
(message1_nolog): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10393
diff
changeset
|
5638 char *m; |
afa796e2b954
(message1_nolog): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10393
diff
changeset
|
5639 { |
20628
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5640 message2_nolog (m, (m ? strlen (m) : 0), 0); |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5641 } |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5642 |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5643 /* Display a message M which contains a single %s |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5644 which gets replaced with STRING. */ |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5645 |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5646 void |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5647 message_with_string (m, string, log) |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5648 char *m; |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5649 Lisp_Object string; |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5650 int log; |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5651 { |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5652 if (noninteractive) |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5653 { |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5654 if (m) |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5655 { |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5656 if (noninteractive_need_newline) |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5657 putc ('\n', stderr); |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5658 noninteractive_need_newline = 0; |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5659 fprintf (stderr, m, XSTRING (string)->data); |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5660 if (cursor_in_echo_area == 0) |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5661 fprintf (stderr, "\n"); |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5662 fflush (stderr); |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5663 } |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5664 } |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5665 else if (INTERACTIVE) |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5666 { |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5667 /* The frame whose minibuffer we're going to display the message on. |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5668 It may be larger than the selected frame, so we need |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5669 to use its buffer, not the selected frame's buffer. */ |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5670 Lisp_Object mini_window; |
25677
1223d6401ab2
(QCfile): Move here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
25660
diff
changeset
|
5671 struct frame *f, *sf = SELECTED_FRAME (); |
20628
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5672 |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5673 /* Get the frame containing the minibuffer |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5674 that the selected frame is using. */ |
25677
1223d6401ab2
(QCfile): Move here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
25660
diff
changeset
|
5675 mini_window = FRAME_MINIBUF_WINDOW (sf); |
20628
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5676 f = XFRAME (WINDOW_FRAME (XWINDOW (mini_window))); |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5677 |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5678 /* A null message buffer means that the frame hasn't really been |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5679 initialized yet. Error messages get reported properly by |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5680 cmd_error, so this must be just an informative message; toss it. */ |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5681 if (FRAME_MESSAGE_BUF (f)) |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5682 { |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5683 int len; |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5684 char *a[1]; |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5685 a[0] = (char *) XSTRING (string)->data; |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5686 |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5687 len = doprnt (FRAME_MESSAGE_BUF (f), |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5688 FRAME_MESSAGE_BUF_SIZE (f), m, (char *)0, 3, a); |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5689 |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5690 if (log) |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5691 message2 (FRAME_MESSAGE_BUF (f), len, |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5692 STRING_MULTIBYTE (string)); |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5693 else |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5694 message2_nolog (FRAME_MESSAGE_BUF (f), len, |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5695 STRING_MULTIBYTE (string)); |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5696 |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5697 /* Print should start at the beginning of the message |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5698 buffer next time. */ |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5699 message_buf_print = 0; |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5700 } |
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5701 } |
10394
afa796e2b954
(message1_nolog): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10393
diff
changeset
|
5702 } |
afa796e2b954
(message1_nolog): New function.
Karl Heuer <kwzh@gnu.org>
parents:
10393
diff
changeset
|
5703 |
25012 | 5704 |
14465
0936d5e38928
Comment/whitespace changes.
Richard M. Stallman <rms@gnu.org>
parents:
14299
diff
changeset
|
5705 /* Dump an informative message to the minibuf. If M is 0, clear out |
25012 | 5706 any existing message, and let the mini-buffer text show through. */ |
14465
0936d5e38928
Comment/whitespace changes.
Richard M. Stallman <rms@gnu.org>
parents:
14299
diff
changeset
|
5707 |
277 | 5708 /* VARARGS 1 */ |
5709 void | |
5710 message (m, a1, a2, a3) | |
5711 char *m; | |
8834
ba6936b88869
(message): Use EMACS_INT.
Richard M. Stallman <rms@gnu.org>
parents:
8797
diff
changeset
|
5712 EMACS_INT a1, a2, a3; |
277 | 5713 { |
5714 if (noninteractive) | |
5715 { | |
1446
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
5716 if (m) |
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
5717 { |
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
5718 if (noninteractive_need_newline) |
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
5719 putc ('\n', stderr); |
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
5720 noninteractive_need_newline = 0; |
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
5721 fprintf (stderr, m, a1, a2, a3); |
2526
bcba821c17bc
(message, message1): If noninteractive and
Richard M. Stallman <rms@gnu.org>
parents:
2324
diff
changeset
|
5722 if (cursor_in_echo_area == 0) |
bcba821c17bc
(message, message1): If noninteractive and
Richard M. Stallman <rms@gnu.org>
parents:
2324
diff
changeset
|
5723 fprintf (stderr, "\n"); |
1446
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
5724 fflush (stderr); |
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
5725 } |
277 | 5726 } |
1873
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
5727 else if (INTERACTIVE) |
277 | 5728 { |
25012 | 5729 /* The frame whose mini-buffer we're going to display the message |
5730 on. It may be larger than the selected frame, so we need to | |
5731 use its buffer, not the selected frame's buffer. */ | |
12629
55241c80f448
(echo_area_display): Use selected frame's minibuf window
Richard M. Stallman <rms@gnu.org>
parents:
12598
diff
changeset
|
5732 Lisp_Object mini_window; |
25677
1223d6401ab2
(QCfile): Move here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
25660
diff
changeset
|
5733 struct frame *f, *sf = SELECTED_FRAME (); |
25012 | 5734 |
5735 /* Get the frame containing the mini-buffer | |
12629
55241c80f448
(echo_area_display): Use selected frame's minibuf window
Richard M. Stallman <rms@gnu.org>
parents:
12598
diff
changeset
|
5736 that the selected frame is using. */ |
25677
1223d6401ab2
(QCfile): Move here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
25660
diff
changeset
|
5737 mini_window = FRAME_MINIBUF_WINDOW (sf); |
12629
55241c80f448
(echo_area_display): Use selected frame's minibuf window
Richard M. Stallman <rms@gnu.org>
parents:
12598
diff
changeset
|
5738 f = XFRAME (WINDOW_FRAME (XWINDOW (mini_window))); |
277 | 5739 |
1873
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
5740 /* A null message buffer means that the frame hasn't really been |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
5741 initialized yet. Error messages get reported properly by |
25012 | 5742 cmd_error, so this must be just an informative message; toss |
5743 it. */ | |
12629
55241c80f448
(echo_area_display): Use selected frame's minibuf window
Richard M. Stallman <rms@gnu.org>
parents:
12598
diff
changeset
|
5744 if (FRAME_MESSAGE_BUF (f)) |
1873
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
5745 { |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
5746 if (m) |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
5747 { |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
5748 int len; |
1873
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
5749 #ifdef NO_ARG_ARRAY |
20376
67f1753dc577
(message): Declare a as char *[3].
Andreas Schwab <schwab@suse.de>
parents:
20363
diff
changeset
|
5750 char *a[3]; |
67f1753dc577
(message): Declare a as char *[3].
Andreas Schwab <schwab@suse.de>
parents:
20363
diff
changeset
|
5751 a[0] = (char *) a1; |
67f1753dc577
(message): Declare a as char *[3].
Andreas Schwab <schwab@suse.de>
parents:
20363
diff
changeset
|
5752 a[1] = (char *) a2; |
67f1753dc577
(message): Declare a as char *[3].
Andreas Schwab <schwab@suse.de>
parents:
20363
diff
changeset
|
5753 a[2] = (char *) a3; |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
5754 |
12629
55241c80f448
(echo_area_display): Use selected frame's minibuf window
Richard M. Stallman <rms@gnu.org>
parents:
12598
diff
changeset
|
5755 len = doprnt (FRAME_MESSAGE_BUF (f), |
17017
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
5756 FRAME_MESSAGE_BUF_SIZE (f), m, (char *)0, 3, a); |
1873
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
5757 #else |
12629
55241c80f448
(echo_area_display): Use selected frame's minibuf window
Richard M. Stallman <rms@gnu.org>
parents:
12598
diff
changeset
|
5758 len = doprnt (FRAME_MESSAGE_BUF (f), |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5759 FRAME_MESSAGE_BUF_SIZE (f), m, (char *)0, 3, |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
5760 (char **) &a1); |
1873
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
5761 #endif /* NO_ARG_ARRAY */ |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
5762 |
20628
05919533e157
(message_dolog, message2): New arg MULTIBYTE.
Richard M. Stallman <rms@gnu.org>
parents:
20580
diff
changeset
|
5763 message2 (FRAME_MESSAGE_BUF (f), len, 0); |
1873
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
5764 } |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
5765 else |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
5766 message1 (0); |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
5767 |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
5768 /* Print should start at the beginning of the message |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
5769 buffer next time. */ |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
5770 message_buf_print = 0; |
1446
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
5771 } |
277 | 5772 } |
5773 } | |
5774 | |
25012 | 5775 |
14465
0936d5e38928
Comment/whitespace changes.
Richard M. Stallman <rms@gnu.org>
parents:
14299
diff
changeset
|
5776 /* The non-logging version of message. */ |
25012 | 5777 |
11193 | 5778 void |
5779 message_nolog (m, a1, a2, a3) | |
5780 char *m; | |
5781 EMACS_INT a1, a2, a3; | |
5782 { | |
5783 Lisp_Object old_log_max; | |
5784 old_log_max = Vmessage_log_max; | |
5785 Vmessage_log_max = Qnil; | |
5786 message (m, a1, a2, a3); | |
5787 Vmessage_log_max = old_log_max; | |
5788 } | |
5789 | |
25012 | 5790 |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5791 /* Display the current message in the current mini-buffer. This is |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5792 only called from error handlers in process.c, and is not time |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5793 critical. */ |
25012 | 5794 |
9088
f29b14d21b26
(update_echo_area): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8943
diff
changeset
|
5795 void |
f29b14d21b26
(update_echo_area): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8943
diff
changeset
|
5796 update_echo_area () |
f29b14d21b26
(update_echo_area): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8943
diff
changeset
|
5797 { |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5798 if (!NILP (echo_area_buffer[0])) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5799 { |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5800 Lisp_Object string; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5801 string = Fcurrent_message (); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5802 message3 (string, XSTRING (string)->size, |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5803 !NILP (current_buffer->enable_multibyte_characters)); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5804 } |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5805 } |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5806 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5807 |
26447
2360d692254c
(ensure_echo_area_buffers): New.
Gerd Moellmann <gerd@gnu.org>
parents:
26374
diff
changeset
|
5808 /* Make sure echo area buffers in echo_buffers[] are life. If they |
2360d692254c
(ensure_echo_area_buffers): New.
Gerd Moellmann <gerd@gnu.org>
parents:
26374
diff
changeset
|
5809 aren't, make new ones. */ |
2360d692254c
(ensure_echo_area_buffers): New.
Gerd Moellmann <gerd@gnu.org>
parents:
26374
diff
changeset
|
5810 |
2360d692254c
(ensure_echo_area_buffers): New.
Gerd Moellmann <gerd@gnu.org>
parents:
26374
diff
changeset
|
5811 static void |
2360d692254c
(ensure_echo_area_buffers): New.
Gerd Moellmann <gerd@gnu.org>
parents:
26374
diff
changeset
|
5812 ensure_echo_area_buffers () |
2360d692254c
(ensure_echo_area_buffers): New.
Gerd Moellmann <gerd@gnu.org>
parents:
26374
diff
changeset
|
5813 { |
2360d692254c
(ensure_echo_area_buffers): New.
Gerd Moellmann <gerd@gnu.org>
parents:
26374
diff
changeset
|
5814 int i; |
2360d692254c
(ensure_echo_area_buffers): New.
Gerd Moellmann <gerd@gnu.org>
parents:
26374
diff
changeset
|
5815 |
2360d692254c
(ensure_echo_area_buffers): New.
Gerd Moellmann <gerd@gnu.org>
parents:
26374
diff
changeset
|
5816 for (i = 0; i < 2; ++i) |
2360d692254c
(ensure_echo_area_buffers): New.
Gerd Moellmann <gerd@gnu.org>
parents:
26374
diff
changeset
|
5817 if (!BUFFERP (echo_buffer[i]) |
2360d692254c
(ensure_echo_area_buffers): New.
Gerd Moellmann <gerd@gnu.org>
parents:
26374
diff
changeset
|
5818 || NILP (XBUFFER (echo_buffer[i])->name)) |
2360d692254c
(ensure_echo_area_buffers): New.
Gerd Moellmann <gerd@gnu.org>
parents:
26374
diff
changeset
|
5819 { |
2360d692254c
(ensure_echo_area_buffers): New.
Gerd Moellmann <gerd@gnu.org>
parents:
26374
diff
changeset
|
5820 char name[30]; |
30631
0c3f7d0ebb82
(ensure_echo_area_buffers): If a buffer was killed and a
Gerd Moellmann <gerd@gnu.org>
parents:
30448
diff
changeset
|
5821 Lisp_Object old_buffer; |
0c3f7d0ebb82
(ensure_echo_area_buffers): If a buffer was killed and a
Gerd Moellmann <gerd@gnu.org>
parents:
30448
diff
changeset
|
5822 int j; |
0c3f7d0ebb82
(ensure_echo_area_buffers): If a buffer was killed and a
Gerd Moellmann <gerd@gnu.org>
parents:
30448
diff
changeset
|
5823 |
0c3f7d0ebb82
(ensure_echo_area_buffers): If a buffer was killed and a
Gerd Moellmann <gerd@gnu.org>
parents:
30448
diff
changeset
|
5824 old_buffer = echo_buffer[i]; |
26447
2360d692254c
(ensure_echo_area_buffers): New.
Gerd Moellmann <gerd@gnu.org>
parents:
26374
diff
changeset
|
5825 sprintf (name, " *Echo Area %d*", i); |
2360d692254c
(ensure_echo_area_buffers): New.
Gerd Moellmann <gerd@gnu.org>
parents:
26374
diff
changeset
|
5826 echo_buffer[i] = Fget_buffer_create (build_string (name)); |
29634
ac38155fbce6
(message_truncate_lines, Qmessage_truncate_lines): New
Gerd Moellmann <gerd@gnu.org>
parents:
29632
diff
changeset
|
5827 XBUFFER (echo_buffer[i])->truncate_lines = Qnil; |
30631
0c3f7d0ebb82
(ensure_echo_area_buffers): If a buffer was killed and a
Gerd Moellmann <gerd@gnu.org>
parents:
30448
diff
changeset
|
5828 |
0c3f7d0ebb82
(ensure_echo_area_buffers): If a buffer was killed and a
Gerd Moellmann <gerd@gnu.org>
parents:
30448
diff
changeset
|
5829 for (j = 0; j < 2; ++j) |
0c3f7d0ebb82
(ensure_echo_area_buffers): If a buffer was killed and a
Gerd Moellmann <gerd@gnu.org>
parents:
30448
diff
changeset
|
5830 if (EQ (old_buffer, echo_area_buffer[j])) |
0c3f7d0ebb82
(ensure_echo_area_buffers): If a buffer was killed and a
Gerd Moellmann <gerd@gnu.org>
parents:
30448
diff
changeset
|
5831 echo_area_buffer[j] = echo_buffer[i]; |
26447
2360d692254c
(ensure_echo_area_buffers): New.
Gerd Moellmann <gerd@gnu.org>
parents:
26374
diff
changeset
|
5832 } |
2360d692254c
(ensure_echo_area_buffers): New.
Gerd Moellmann <gerd@gnu.org>
parents:
26374
diff
changeset
|
5833 } |
2360d692254c
(ensure_echo_area_buffers): New.
Gerd Moellmann <gerd@gnu.org>
parents:
26374
diff
changeset
|
5834 |
2360d692254c
(ensure_echo_area_buffers): New.
Gerd Moellmann <gerd@gnu.org>
parents:
26374
diff
changeset
|
5835 |
30413
d5335ebcf501
(with_echo_area_buffer): Take additional EMACS_INT
Gerd Moellmann <gerd@gnu.org>
parents:
30320
diff
changeset
|
5836 /* Call FN with args A1..A4 with either the current or last displayed |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5837 echo_area_buffer as current buffer. |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5838 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5839 WHICH zero means use the current message buffer |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5840 echo_area_buffer[0]. If that is nil, choose a suitable buffer |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5841 from echo_buffer[] and clear it. |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5842 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5843 WHICH > 0 means use echo_area_buffer[1]. If that is nil, choose a |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5844 suitable buffer from echo_buffer[] and clear it. |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5845 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5846 If WHICH < 0, set echo_area_buffer[1] to echo_area_buffer[0], so |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5847 that the current message becomes the last displayed one, make |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5848 choose a suitable buffer for echo_area_buffer[0], and clear it. |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5849 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5850 Value is what FN returns. */ |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5851 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5852 static int |
30413
d5335ebcf501
(with_echo_area_buffer): Take additional EMACS_INT
Gerd Moellmann <gerd@gnu.org>
parents:
30320
diff
changeset
|
5853 with_echo_area_buffer (w, which, fn, a1, a2, a3, a4) |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5854 struct window *w; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5855 int which; |
30675
8a516a1f76a7
(message_dolog): Save and protect string "*Messages*" to reuse as buffer name,
Ken Raeburn <raeburn@raeburn.org>
parents:
30652
diff
changeset
|
5856 int (*fn) P_ ((EMACS_INT, Lisp_Object, EMACS_INT, EMACS_INT)); |
8a516a1f76a7
(message_dolog): Save and protect string "*Messages*" to reuse as buffer name,
Ken Raeburn <raeburn@raeburn.org>
parents:
30652
diff
changeset
|
5857 EMACS_INT a1; |
8a516a1f76a7
(message_dolog): Save and protect string "*Messages*" to reuse as buffer name,
Ken Raeburn <raeburn@raeburn.org>
parents:
30652
diff
changeset
|
5858 Lisp_Object a2; |
8a516a1f76a7
(message_dolog): Save and protect string "*Messages*" to reuse as buffer name,
Ken Raeburn <raeburn@raeburn.org>
parents:
30652
diff
changeset
|
5859 EMACS_INT a3, a4; |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5860 { |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5861 Lisp_Object buffer; |
28206
07ac059dece0
(handle_single_display_prop): Initialize local `value'.
Gerd Moellmann <gerd@gnu.org>
parents:
28047
diff
changeset
|
5862 int this_one, the_other, clear_buffer_p, rc; |
33600
c5f64497e92c
Use BINDING_STACK_SIZE throughout.
Gerd Moellmann <gerd@gnu.org>
parents:
33594
diff
changeset
|
5863 int count = BINDING_STACK_SIZE (); |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5864 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5865 /* If buffers aren't life, make new ones. */ |
26447
2360d692254c
(ensure_echo_area_buffers): New.
Gerd Moellmann <gerd@gnu.org>
parents:
26374
diff
changeset
|
5866 ensure_echo_area_buffers (); |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5867 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5868 clear_buffer_p = 0; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5869 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5870 if (which == 0) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5871 this_one = 0, the_other = 1; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5872 else if (which > 0) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5873 this_one = 1, the_other = 0; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5874 else |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5875 { |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5876 this_one = 0, the_other = 1; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5877 clear_buffer_p = 1; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5878 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5879 /* We need a fresh one in case the current echo buffer equals |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5880 the one containing the last displayed echo area message. */ |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5881 if (!NILP (echo_area_buffer[this_one]) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5882 && EQ (echo_area_buffer[this_one], echo_area_buffer[the_other])) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5883 echo_area_buffer[this_one] = Qnil; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5884 } |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5885 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5886 /* Choose a suitable buffer from echo_buffer[] is we don't |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5887 have one. */ |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5888 if (NILP (echo_area_buffer[this_one])) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5889 { |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5890 echo_area_buffer[this_one] |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5891 = (EQ (echo_area_buffer[the_other], echo_buffer[this_one]) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5892 ? echo_buffer[the_other] |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5893 : echo_buffer[this_one]); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5894 clear_buffer_p = 1; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5895 } |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5896 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5897 buffer = echo_area_buffer[this_one]; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5898 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5899 record_unwind_protect (unwind_with_echo_area_buffer, |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5900 with_echo_area_buffer_unwind_data (w)); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5901 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5902 /* Make the echo area buffer current. Note that for display |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5903 purposes, it is not necessary that the displayed window's buffer |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5904 == current_buffer, except for text property lookup. So, let's |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5905 only set that buffer temporarily here without doing a full |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5906 Fset_window_buffer. We must also change w->pointm, though, |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5907 because otherwise an assertions in unshow_buffer fails, and Emacs |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5908 aborts. */ |
25377
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
5909 set_buffer_internal_1 (XBUFFER (buffer)); |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5910 if (w) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5911 { |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5912 w->buffer = buffer; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5913 set_marker_both (w->pointm, buffer, BEG, BEG_BYTE); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5914 } |
29634
ac38155fbce6
(message_truncate_lines, Qmessage_truncate_lines): New
Gerd Moellmann <gerd@gnu.org>
parents:
29632
diff
changeset
|
5915 |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5916 current_buffer->undo_list = Qt; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5917 current_buffer->read_only = Qnil; |
34479
aab24f62ad6b
(setup_echo_area_for_printing, with_echo_area_buffer):
Gerd Moellmann <gerd@gnu.org>
parents:
34448
diff
changeset
|
5918 specbind (Qinhibit_read_only, Qt); |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5919 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5920 if (clear_buffer_p && Z > BEG) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5921 del_range (BEG, Z); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5922 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5923 xassert (BEGV >= BEG); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5924 xassert (ZV <= Z && ZV >= BEGV); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5925 |
30413
d5335ebcf501
(with_echo_area_buffer): Take additional EMACS_INT
Gerd Moellmann <gerd@gnu.org>
parents:
30320
diff
changeset
|
5926 rc = fn (a1, a2, a3, a4); |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5927 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5928 xassert (BEGV >= BEG); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5929 xassert (ZV <= Z && ZV >= BEGV); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5930 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5931 unbind_to (count, Qnil); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5932 return rc; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5933 } |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5934 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5935 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5936 /* Save state that should be preserved around the call to the function |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5937 FN called in with_echo_area_buffer. */ |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5938 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5939 static Lisp_Object |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5940 with_echo_area_buffer_unwind_data (w) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5941 struct window *w; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5942 { |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5943 int i = 0; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5944 Lisp_Object vector; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5945 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5946 /* Reduce consing by keeping one vector in |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5947 Vwith_echo_area_save_vector. */ |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5948 vector = Vwith_echo_area_save_vector; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5949 Vwith_echo_area_save_vector = Qnil; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5950 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5951 if (NILP (vector)) |
25377
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
5952 vector = Fmake_vector (make_number (7), Qnil); |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5953 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5954 XSETBUFFER (XVECTOR (vector)->contents[i], current_buffer); ++i; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5955 XVECTOR (vector)->contents[i++] = Vdeactivate_mark; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5956 XVECTOR (vector)->contents[i++] = make_number (windows_or_buffers_changed); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5957 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5958 if (w) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5959 { |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5960 XSETWINDOW (XVECTOR (vector)->contents[i], w); ++i; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5961 XVECTOR (vector)->contents[i++] = w->buffer; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5962 XVECTOR (vector)->contents[i++] |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5963 = make_number (XMARKER (w->pointm)->charpos); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5964 XVECTOR (vector)->contents[i++] |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5965 = make_number (XMARKER (w->pointm)->bytepos); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5966 } |
25012 | 5967 else |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5968 { |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5969 int end = i + 4; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5970 while (i < end) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5971 XVECTOR (vector)->contents[i++] = Qnil; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5972 } |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5973 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5974 xassert (i == XVECTOR (vector)->size); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5975 return vector; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5976 } |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5977 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5978 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5979 /* Restore global state from VECTOR which was created by |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5980 with_echo_area_buffer_unwind_data. */ |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5981 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5982 static Lisp_Object |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5983 unwind_with_echo_area_buffer (vector) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5984 Lisp_Object vector; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5985 { |
34479
aab24f62ad6b
(setup_echo_area_for_printing, with_echo_area_buffer):
Gerd Moellmann <gerd@gnu.org>
parents:
34448
diff
changeset
|
5986 set_buffer_internal_1 (XBUFFER (AREF (vector, 0))); |
aab24f62ad6b
(setup_echo_area_for_printing, with_echo_area_buffer):
Gerd Moellmann <gerd@gnu.org>
parents:
34448
diff
changeset
|
5987 Vdeactivate_mark = AREF (vector, 1); |
aab24f62ad6b
(setup_echo_area_for_printing, with_echo_area_buffer):
Gerd Moellmann <gerd@gnu.org>
parents:
34448
diff
changeset
|
5988 windows_or_buffers_changed = XFASTINT (AREF (vector, 2)); |
aab24f62ad6b
(setup_echo_area_for_printing, with_echo_area_buffer):
Gerd Moellmann <gerd@gnu.org>
parents:
34448
diff
changeset
|
5989 |
aab24f62ad6b
(setup_echo_area_for_printing, with_echo_area_buffer):
Gerd Moellmann <gerd@gnu.org>
parents:
34448
diff
changeset
|
5990 if (WINDOWP (AREF (vector, 3))) |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5991 { |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5992 struct window *w; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5993 Lisp_Object buffer, charpos, bytepos; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5994 |
34479
aab24f62ad6b
(setup_echo_area_for_printing, with_echo_area_buffer):
Gerd Moellmann <gerd@gnu.org>
parents:
34448
diff
changeset
|
5995 w = XWINDOW (AREF (vector, 3)); |
aab24f62ad6b
(setup_echo_area_for_printing, with_echo_area_buffer):
Gerd Moellmann <gerd@gnu.org>
parents:
34448
diff
changeset
|
5996 buffer = AREF (vector, 4); |
aab24f62ad6b
(setup_echo_area_for_printing, with_echo_area_buffer):
Gerd Moellmann <gerd@gnu.org>
parents:
34448
diff
changeset
|
5997 charpos = AREF (vector, 5); |
aab24f62ad6b
(setup_echo_area_for_printing, with_echo_area_buffer):
Gerd Moellmann <gerd@gnu.org>
parents:
34448
diff
changeset
|
5998 bytepos = AREF (vector, 6); |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
5999 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6000 w->buffer = buffer; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6001 set_marker_both (w->pointm, buffer, |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6002 XFASTINT (charpos), XFASTINT (bytepos)); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6003 } |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6004 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6005 Vwith_echo_area_save_vector = vector; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6006 return Qnil; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6007 } |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6008 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6009 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6010 /* Set up the echo area for use by print functions. MULTIBYTE_P |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6011 non-zero means we will print multibyte. */ |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6012 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6013 void |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6014 setup_echo_area_for_printing (multibyte_p) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6015 int multibyte_p; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6016 { |
26447
2360d692254c
(ensure_echo_area_buffers): New.
Gerd Moellmann <gerd@gnu.org>
parents:
26374
diff
changeset
|
6017 ensure_echo_area_buffers (); |
2360d692254c
(ensure_echo_area_buffers): New.
Gerd Moellmann <gerd@gnu.org>
parents:
26374
diff
changeset
|
6018 |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6019 if (!message_buf_print) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6020 { |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6021 /* A message has been output since the last time we printed. |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6022 Choose a fresh echo area buffer. */ |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6023 if (EQ (echo_area_buffer[1], echo_buffer[0])) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6024 echo_area_buffer[0] = echo_buffer[1]; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6025 else |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6026 echo_area_buffer[0] = echo_buffer[0]; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6027 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6028 /* Switch to that buffer and clear it. */ |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6029 set_buffer_internal (XBUFFER (echo_area_buffer[0])); |
34479
aab24f62ad6b
(setup_echo_area_for_printing, with_echo_area_buffer):
Gerd Moellmann <gerd@gnu.org>
parents:
34448
diff
changeset
|
6030 |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6031 if (Z > BEG) |
34479
aab24f62ad6b
(setup_echo_area_for_printing, with_echo_area_buffer):
Gerd Moellmann <gerd@gnu.org>
parents:
34448
diff
changeset
|
6032 { |
aab24f62ad6b
(setup_echo_area_for_printing, with_echo_area_buffer):
Gerd Moellmann <gerd@gnu.org>
parents:
34448
diff
changeset
|
6033 int count = BINDING_STACK_SIZE (); |
aab24f62ad6b
(setup_echo_area_for_printing, with_echo_area_buffer):
Gerd Moellmann <gerd@gnu.org>
parents:
34448
diff
changeset
|
6034 specbind (Qinhibit_read_only, Qt); |
aab24f62ad6b
(setup_echo_area_for_printing, with_echo_area_buffer):
Gerd Moellmann <gerd@gnu.org>
parents:
34448
diff
changeset
|
6035 del_range (BEG, Z); |
aab24f62ad6b
(setup_echo_area_for_printing, with_echo_area_buffer):
Gerd Moellmann <gerd@gnu.org>
parents:
34448
diff
changeset
|
6036 unbind_to (count, Qnil); |
aab24f62ad6b
(setup_echo_area_for_printing, with_echo_area_buffer):
Gerd Moellmann <gerd@gnu.org>
parents:
34448
diff
changeset
|
6037 } |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6038 TEMP_SET_PT_BOTH (BEG, BEG_BYTE); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6039 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6040 /* Set up the buffer for the multibyteness we need. */ |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6041 if (multibyte_p |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6042 != !NILP (current_buffer->enable_multibyte_characters)) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6043 Fset_buffer_multibyte (multibyte_p ? Qt : Qnil); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6044 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6045 /* Raise the frame containing the echo area. */ |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6046 if (minibuffer_auto_raise) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6047 { |
25677
1223d6401ab2
(QCfile): Move here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
25660
diff
changeset
|
6048 struct frame *sf = SELECTED_FRAME (); |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6049 Lisp_Object mini_window; |
25677
1223d6401ab2
(QCfile): Move here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
25660
diff
changeset
|
6050 mini_window = FRAME_MINIBUF_WINDOW (sf); |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6051 Fraise_frame (WINDOW_FRAME (XWINDOW (mini_window))); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6052 } |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6053 |
29643
77f1e8db4147
(setup_echo_area_for_printing): Call
Gerd Moellmann <gerd@gnu.org>
parents:
29634
diff
changeset
|
6054 message_log_maybe_newline (); |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6055 message_buf_print = 1; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6056 } |
28539
918f12c5c8e3
(setup_echo_area_for_printing): Choose an echo
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6057 else |
918f12c5c8e3
(setup_echo_area_for_printing): Choose an echo
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6058 { |
918f12c5c8e3
(setup_echo_area_for_printing): Choose an echo
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6059 if (NILP (echo_area_buffer[0])) |
918f12c5c8e3
(setup_echo_area_for_printing): Choose an echo
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6060 { |
918f12c5c8e3
(setup_echo_area_for_printing): Choose an echo
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6061 if (EQ (echo_area_buffer[1], echo_buffer[0])) |
918f12c5c8e3
(setup_echo_area_for_printing): Choose an echo
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6062 echo_area_buffer[0] = echo_buffer[1]; |
918f12c5c8e3
(setup_echo_area_for_printing): Choose an echo
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6063 else |
918f12c5c8e3
(setup_echo_area_for_printing): Choose an echo
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6064 echo_area_buffer[0] = echo_buffer[0]; |
918f12c5c8e3
(setup_echo_area_for_printing): Choose an echo
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6065 } |
918f12c5c8e3
(setup_echo_area_for_printing): Choose an echo
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6066 |
918f12c5c8e3
(setup_echo_area_for_printing): Choose an echo
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6067 if (current_buffer != XBUFFER (echo_area_buffer[0])) |
918f12c5c8e3
(setup_echo_area_for_printing): Choose an echo
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6068 /* Someone switched buffers between print requests. */ |
918f12c5c8e3
(setup_echo_area_for_printing): Choose an echo
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6069 set_buffer_internal (XBUFFER (echo_area_buffer[0])); |
918f12c5c8e3
(setup_echo_area_for_printing): Choose an echo
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
6070 } |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6071 } |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6072 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6073 |
25362
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6074 /* Display an echo area message in window W. Value is non-zero if W's |
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6075 height is changed. If display_last_displayed_message_p is |
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6076 non-zero, display the message that was last displayed, otherwise |
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6077 display the current message. */ |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6078 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6079 static int |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6080 display_echo_area (w) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6081 struct window *w; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6082 { |
28047
91d9cd696b80
(display_echo_area): Temporarily inhibit garbage collection.
Gerd Moellmann <gerd@gnu.org>
parents:
28002
diff
changeset
|
6083 int i, no_message_p, window_height_changed_p, count; |
91d9cd696b80
(display_echo_area): Temporarily inhibit garbage collection.
Gerd Moellmann <gerd@gnu.org>
parents:
28002
diff
changeset
|
6084 |
91d9cd696b80
(display_echo_area): Temporarily inhibit garbage collection.
Gerd Moellmann <gerd@gnu.org>
parents:
28002
diff
changeset
|
6085 /* Temporarily disable garbage collections while displaying the echo |
91d9cd696b80
(display_echo_area): Temporarily inhibit garbage collection.
Gerd Moellmann <gerd@gnu.org>
parents:
28002
diff
changeset
|
6086 area. This is done because a GC can print a message itself. |
91d9cd696b80
(display_echo_area): Temporarily inhibit garbage collection.
Gerd Moellmann <gerd@gnu.org>
parents:
28002
diff
changeset
|
6087 That message would modify the echo area buffer's contents while a |
91d9cd696b80
(display_echo_area): Temporarily inhibit garbage collection.
Gerd Moellmann <gerd@gnu.org>
parents:
28002
diff
changeset
|
6088 redisplay of the buffer is going on, and seriously confuse |
91d9cd696b80
(display_echo_area): Temporarily inhibit garbage collection.
Gerd Moellmann <gerd@gnu.org>
parents:
28002
diff
changeset
|
6089 redisplay. */ |
91d9cd696b80
(display_echo_area): Temporarily inhibit garbage collection.
Gerd Moellmann <gerd@gnu.org>
parents:
28002
diff
changeset
|
6090 count = inhibit_garbage_collection (); |
25362
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6091 |
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6092 /* If there is no message, we must call display_echo_area_1 |
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6093 nevertheless because it resizes the window. But we will have to |
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6094 reset the echo_area_buffer in question to nil at the end because |
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6095 with_echo_area_buffer will sets it to an empty buffer. */ |
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6096 i = display_last_displayed_message_p ? 1 : 0; |
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6097 no_message_p = NILP (echo_area_buffer[i]); |
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6098 |
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6099 window_height_changed_p |
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6100 = with_echo_area_buffer (w, display_last_displayed_message_p, |
30413
d5335ebcf501
(with_echo_area_buffer): Take additional EMACS_INT
Gerd Moellmann <gerd@gnu.org>
parents:
30320
diff
changeset
|
6101 display_echo_area_1, |
30675
8a516a1f76a7
(message_dolog): Save and protect string "*Messages*" to reuse as buffer name,
Ken Raeburn <raeburn@raeburn.org>
parents:
30652
diff
changeset
|
6102 (EMACS_INT) w, Qnil, 0, 0); |
25362
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6103 |
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6104 if (no_message_p) |
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6105 echo_area_buffer[i] = Qnil; |
28047
91d9cd696b80
(display_echo_area): Temporarily inhibit garbage collection.
Gerd Moellmann <gerd@gnu.org>
parents:
28002
diff
changeset
|
6106 |
91d9cd696b80
(display_echo_area): Temporarily inhibit garbage collection.
Gerd Moellmann <gerd@gnu.org>
parents:
28002
diff
changeset
|
6107 unbind_to (count, Qnil); |
25362
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6108 return window_height_changed_p; |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6109 } |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6110 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6111 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6112 /* Helper for display_echo_area. Display the current buffer which |
30413
d5335ebcf501
(with_echo_area_buffer): Take additional EMACS_INT
Gerd Moellmann <gerd@gnu.org>
parents:
30320
diff
changeset
|
6113 contains the current echo area message in window W, a mini-window, |
d5335ebcf501
(with_echo_area_buffer): Take additional EMACS_INT
Gerd Moellmann <gerd@gnu.org>
parents:
30320
diff
changeset
|
6114 a pointer to which is passed in A1. A2..A4 are currently not used. |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6115 Change the height of W so that all of the message is displayed. |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6116 Value is non-zero if height of W was changed. */ |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6117 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6118 static int |
30413
d5335ebcf501
(with_echo_area_buffer): Take additional EMACS_INT
Gerd Moellmann <gerd@gnu.org>
parents:
30320
diff
changeset
|
6119 display_echo_area_1 (a1, a2, a3, a4) |
30675
8a516a1f76a7
(message_dolog): Save and protect string "*Messages*" to reuse as buffer name,
Ken Raeburn <raeburn@raeburn.org>
parents:
30652
diff
changeset
|
6120 EMACS_INT a1; |
8a516a1f76a7
(message_dolog): Save and protect string "*Messages*" to reuse as buffer name,
Ken Raeburn <raeburn@raeburn.org>
parents:
30652
diff
changeset
|
6121 Lisp_Object a2; |
8a516a1f76a7
(message_dolog): Save and protect string "*Messages*" to reuse as buffer name,
Ken Raeburn <raeburn@raeburn.org>
parents:
30652
diff
changeset
|
6122 EMACS_INT a3, a4; |
30413
d5335ebcf501
(with_echo_area_buffer): Take additional EMACS_INT
Gerd Moellmann <gerd@gnu.org>
parents:
30320
diff
changeset
|
6123 { |
d5335ebcf501
(with_echo_area_buffer): Take additional EMACS_INT
Gerd Moellmann <gerd@gnu.org>
parents:
30320
diff
changeset
|
6124 struct window *w = (struct window *) a1; |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6125 Lisp_Object window; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6126 struct text_pos start; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6127 int window_height_changed_p = 0; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6128 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6129 /* Do this before displaying, so that we have a large enough glyph |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6130 matrix for the display. */ |
25660
0072098f54df
(resize_mini_window): Add parameter exact_p. Resize
Gerd Moellmann <gerd@gnu.org>
parents:
25643
diff
changeset
|
6131 window_height_changed_p = resize_mini_window (w, 0); |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6132 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6133 /* Display. */ |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6134 clear_glyph_matrix (w->desired_matrix); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6135 XSETWINDOW (window, w); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6136 SET_TEXT_POS (start, BEG, BEG_BYTE); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6137 try_window (window, start); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6138 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6139 return window_height_changed_p; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6140 } |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6141 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6142 |
25660
0072098f54df
(resize_mini_window): Add parameter exact_p. Resize
Gerd Moellmann <gerd@gnu.org>
parents:
25643
diff
changeset
|
6143 /* Resize the echo area window to exactly the size needed for the |
0072098f54df
(resize_mini_window): Add parameter exact_p. Resize
Gerd Moellmann <gerd@gnu.org>
parents:
25643
diff
changeset
|
6144 currently displayed message, if there is one. */ |
0072098f54df
(resize_mini_window): Add parameter exact_p. Resize
Gerd Moellmann <gerd@gnu.org>
parents:
25643
diff
changeset
|
6145 |
0072098f54df
(resize_mini_window): Add parameter exact_p. Resize
Gerd Moellmann <gerd@gnu.org>
parents:
25643
diff
changeset
|
6146 void |
0072098f54df
(resize_mini_window): Add parameter exact_p. Resize
Gerd Moellmann <gerd@gnu.org>
parents:
25643
diff
changeset
|
6147 resize_echo_area_axactly () |
0072098f54df
(resize_mini_window): Add parameter exact_p. Resize
Gerd Moellmann <gerd@gnu.org>
parents:
25643
diff
changeset
|
6148 { |
0072098f54df
(resize_mini_window): Add parameter exact_p. Resize
Gerd Moellmann <gerd@gnu.org>
parents:
25643
diff
changeset
|
6149 if (BUFFERP (echo_area_buffer[0]) |
0072098f54df
(resize_mini_window): Add parameter exact_p. Resize
Gerd Moellmann <gerd@gnu.org>
parents:
25643
diff
changeset
|
6150 && WINDOWP (echo_area_window)) |
0072098f54df
(resize_mini_window): Add parameter exact_p. Resize
Gerd Moellmann <gerd@gnu.org>
parents:
25643
diff
changeset
|
6151 { |
0072098f54df
(resize_mini_window): Add parameter exact_p. Resize
Gerd Moellmann <gerd@gnu.org>
parents:
25643
diff
changeset
|
6152 struct window *w = XWINDOW (echo_area_window); |
0072098f54df
(resize_mini_window): Add parameter exact_p. Resize
Gerd Moellmann <gerd@gnu.org>
parents:
25643
diff
changeset
|
6153 int resized_p; |
0072098f54df
(resize_mini_window): Add parameter exact_p. Resize
Gerd Moellmann <gerd@gnu.org>
parents:
25643
diff
changeset
|
6154 |
30413
d5335ebcf501
(with_echo_area_buffer): Take additional EMACS_INT
Gerd Moellmann <gerd@gnu.org>
parents:
30320
diff
changeset
|
6155 resized_p = with_echo_area_buffer (w, 0, resize_mini_window_1, |
30675
8a516a1f76a7
(message_dolog): Save and protect string "*Messages*" to reuse as buffer name,
Ken Raeburn <raeburn@raeburn.org>
parents:
30652
diff
changeset
|
6156 (EMACS_INT) w, Qnil, 0, 0); |
25660
0072098f54df
(resize_mini_window): Add parameter exact_p. Resize
Gerd Moellmann <gerd@gnu.org>
parents:
25643
diff
changeset
|
6157 if (resized_p) |
0072098f54df
(resize_mini_window): Add parameter exact_p. Resize
Gerd Moellmann <gerd@gnu.org>
parents:
25643
diff
changeset
|
6158 { |
0072098f54df
(resize_mini_window): Add parameter exact_p. Resize
Gerd Moellmann <gerd@gnu.org>
parents:
25643
diff
changeset
|
6159 ++windows_or_buffers_changed; |
0072098f54df
(resize_mini_window): Add parameter exact_p. Resize
Gerd Moellmann <gerd@gnu.org>
parents:
25643
diff
changeset
|
6160 ++update_mode_lines; |
0072098f54df
(resize_mini_window): Add parameter exact_p. Resize
Gerd Moellmann <gerd@gnu.org>
parents:
25643
diff
changeset
|
6161 redisplay_internal (0); |
0072098f54df
(resize_mini_window): Add parameter exact_p. Resize
Gerd Moellmann <gerd@gnu.org>
parents:
25643
diff
changeset
|
6162 } |
0072098f54df
(resize_mini_window): Add parameter exact_p. Resize
Gerd Moellmann <gerd@gnu.org>
parents:
25643
diff
changeset
|
6163 } |
0072098f54df
(resize_mini_window): Add parameter exact_p. Resize
Gerd Moellmann <gerd@gnu.org>
parents:
25643
diff
changeset
|
6164 } |
0072098f54df
(resize_mini_window): Add parameter exact_p. Resize
Gerd Moellmann <gerd@gnu.org>
parents:
25643
diff
changeset
|
6165 |
0072098f54df
(resize_mini_window): Add parameter exact_p. Resize
Gerd Moellmann <gerd@gnu.org>
parents:
25643
diff
changeset
|
6166 |
30413
d5335ebcf501
(with_echo_area_buffer): Take additional EMACS_INT
Gerd Moellmann <gerd@gnu.org>
parents:
30320
diff
changeset
|
6167 /* Callback function for with_echo_area_buffer, when used from |
d5335ebcf501
(with_echo_area_buffer): Take additional EMACS_INT
Gerd Moellmann <gerd@gnu.org>
parents:
30320
diff
changeset
|
6168 resize_echo_area_axactly. A1 contains a pointer to the window to |
d5335ebcf501
(with_echo_area_buffer): Take additional EMACS_INT
Gerd Moellmann <gerd@gnu.org>
parents:
30320
diff
changeset
|
6169 resize, A2 to A4 are not used. Value is what resize_mini_window |
d5335ebcf501
(with_echo_area_buffer): Take additional EMACS_INT
Gerd Moellmann <gerd@gnu.org>
parents:
30320
diff
changeset
|
6170 returns. */ |
d5335ebcf501
(with_echo_area_buffer): Take additional EMACS_INT
Gerd Moellmann <gerd@gnu.org>
parents:
30320
diff
changeset
|
6171 |
d5335ebcf501
(with_echo_area_buffer): Take additional EMACS_INT
Gerd Moellmann <gerd@gnu.org>
parents:
30320
diff
changeset
|
6172 static int |
d5335ebcf501
(with_echo_area_buffer): Take additional EMACS_INT
Gerd Moellmann <gerd@gnu.org>
parents:
30320
diff
changeset
|
6173 resize_mini_window_1 (a1, a2, a3, a4) |
30675
8a516a1f76a7
(message_dolog): Save and protect string "*Messages*" to reuse as buffer name,
Ken Raeburn <raeburn@raeburn.org>
parents:
30652
diff
changeset
|
6174 EMACS_INT a1; |
8a516a1f76a7
(message_dolog): Save and protect string "*Messages*" to reuse as buffer name,
Ken Raeburn <raeburn@raeburn.org>
parents:
30652
diff
changeset
|
6175 Lisp_Object a2; |
8a516a1f76a7
(message_dolog): Save and protect string "*Messages*" to reuse as buffer name,
Ken Raeburn <raeburn@raeburn.org>
parents:
30652
diff
changeset
|
6176 EMACS_INT a3, a4; |
30413
d5335ebcf501
(with_echo_area_buffer): Take additional EMACS_INT
Gerd Moellmann <gerd@gnu.org>
parents:
30320
diff
changeset
|
6177 { |
d5335ebcf501
(with_echo_area_buffer): Take additional EMACS_INT
Gerd Moellmann <gerd@gnu.org>
parents:
30320
diff
changeset
|
6178 return resize_mini_window ((struct window *) a1, 1); |
d5335ebcf501
(with_echo_area_buffer): Take additional EMACS_INT
Gerd Moellmann <gerd@gnu.org>
parents:
30320
diff
changeset
|
6179 } |
d5335ebcf501
(with_echo_area_buffer): Take additional EMACS_INT
Gerd Moellmann <gerd@gnu.org>
parents:
30320
diff
changeset
|
6180 |
d5335ebcf501
(with_echo_area_buffer): Take additional EMACS_INT
Gerd Moellmann <gerd@gnu.org>
parents:
30320
diff
changeset
|
6181 |
25660
0072098f54df
(resize_mini_window): Add parameter exact_p. Resize
Gerd Moellmann <gerd@gnu.org>
parents:
25643
diff
changeset
|
6182 /* Resize mini-window W to fit the size of its contents. EXACT:P |
0072098f54df
(resize_mini_window): Add parameter exact_p. Resize
Gerd Moellmann <gerd@gnu.org>
parents:
25643
diff
changeset
|
6183 means size the window exactly to the size needed. Otherwise, it's |
0072098f54df
(resize_mini_window): Add parameter exact_p. Resize
Gerd Moellmann <gerd@gnu.org>
parents:
25643
diff
changeset
|
6184 only enlarged until W's buffer is empty. Value is non-zero if |
0072098f54df
(resize_mini_window): Add parameter exact_p. Resize
Gerd Moellmann <gerd@gnu.org>
parents:
25643
diff
changeset
|
6185 the window height has been changed. */ |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6186 |
25519
5e59e2bd26b5
Use XCAR and XCDR instead of XCONS.
Gerd Moellmann <gerd@gnu.org>
parents:
25500
diff
changeset
|
6187 int |
25660
0072098f54df
(resize_mini_window): Add parameter exact_p. Resize
Gerd Moellmann <gerd@gnu.org>
parents:
25643
diff
changeset
|
6188 resize_mini_window (w, exact_p) |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6189 struct window *w; |
25660
0072098f54df
(resize_mini_window): Add parameter exact_p. Resize
Gerd Moellmann <gerd@gnu.org>
parents:
25643
diff
changeset
|
6190 int exact_p; |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6191 { |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6192 struct frame *f = XFRAME (w->frame); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6193 int window_height_changed_p = 0; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6194 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6195 xassert (MINI_WINDOW_P (w)); |
25403
5a3db5249db9
(resize_mini_window): Don't resize if
Gerd Moellmann <gerd@gnu.org>
parents:
25394
diff
changeset
|
6196 |
5a3db5249db9
(resize_mini_window): Don't resize if
Gerd Moellmann <gerd@gnu.org>
parents:
25394
diff
changeset
|
6197 /* Nil means don't try to resize. */ |
33314
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
6198 if (NILP (Vresize_mini_windows) |
25832
148a6733cd83
(resize_mini_window): Do nothing if frame is an X
Gerd Moellmann <gerd@gnu.org>
parents:
25820
diff
changeset
|
6199 || (FRAME_X_P (f) && f->output_data.x == NULL)) |
25403
5a3db5249db9
(resize_mini_window): Don't resize if
Gerd Moellmann <gerd@gnu.org>
parents:
25394
diff
changeset
|
6200 return 0; |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6201 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6202 if (!FRAME_MINIBUF_ONLY_P (f)) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6203 { |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6204 struct it it; |
25362
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6205 struct window *root = XWINDOW (FRAME_ROOT_WINDOW (f)); |
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6206 int total_height = XFASTINT (root->height) + XFASTINT (w->height); |
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6207 int height, max_height; |
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6208 int unit = CANON_Y_UNIT (f); |
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6209 struct text_pos start; |
33591
b501918e1c9d
(resize_mini_window): Temporarily change to the
Gerd Moellmann <gerd@gnu.org>
parents:
33568
diff
changeset
|
6210 struct buffer *old_current_buffer = NULL; |
b501918e1c9d
(resize_mini_window): Temporarily change to the
Gerd Moellmann <gerd@gnu.org>
parents:
33568
diff
changeset
|
6211 |
b501918e1c9d
(resize_mini_window): Temporarily change to the
Gerd Moellmann <gerd@gnu.org>
parents:
33568
diff
changeset
|
6212 if (current_buffer != XBUFFER (w->buffer)) |
b501918e1c9d
(resize_mini_window): Temporarily change to the
Gerd Moellmann <gerd@gnu.org>
parents:
33568
diff
changeset
|
6213 { |
b501918e1c9d
(resize_mini_window): Temporarily change to the
Gerd Moellmann <gerd@gnu.org>
parents:
33568
diff
changeset
|
6214 old_current_buffer = current_buffer; |
b501918e1c9d
(resize_mini_window): Temporarily change to the
Gerd Moellmann <gerd@gnu.org>
parents:
33568
diff
changeset
|
6215 set_buffer_internal (XBUFFER (w->buffer)); |
b501918e1c9d
(resize_mini_window): Temporarily change to the
Gerd Moellmann <gerd@gnu.org>
parents:
33568
diff
changeset
|
6216 } |
25377
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
6217 |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6218 init_iterator (&it, w, BEGV, BEGV_BYTE, NULL, DEFAULT_FACE_ID); |
25362
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6219 |
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6220 /* Compute the max. number of lines specified by the user. */ |
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6221 if (FLOATP (Vmax_mini_window_height)) |
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6222 max_height = XFLOATINT (Vmax_mini_window_height) * total_height; |
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6223 else if (INTEGERP (Vmax_mini_window_height)) |
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6224 max_height = XINT (Vmax_mini_window_height); |
25403
5a3db5249db9
(resize_mini_window): Don't resize if
Gerd Moellmann <gerd@gnu.org>
parents:
25394
diff
changeset
|
6225 else |
5a3db5249db9
(resize_mini_window): Don't resize if
Gerd Moellmann <gerd@gnu.org>
parents:
25394
diff
changeset
|
6226 max_height = total_height / 4; |
25362
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6227 |
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6228 /* Correct that max. height if it's bogus. */ |
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6229 max_height = max (1, max_height); |
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6230 max_height = min (total_height, max_height); |
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6231 |
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6232 /* Find out the height of the text in the window. */ |
29634
ac38155fbce6
(message_truncate_lines, Qmessage_truncate_lines): New
Gerd Moellmann <gerd@gnu.org>
parents:
29632
diff
changeset
|
6233 if (it.truncate_lines_p) |
ac38155fbce6
(message_truncate_lines, Qmessage_truncate_lines): New
Gerd Moellmann <gerd@gnu.org>
parents:
29632
diff
changeset
|
6234 height = 1; |
26374
e3e89fd28459
Remove conditional computation on USE_TEXT_PROPERTIES.
Gerd Moellmann <gerd@gnu.org>
parents:
26301
diff
changeset
|
6235 else |
29634
ac38155fbce6
(message_truncate_lines, Qmessage_truncate_lines): New
Gerd Moellmann <gerd@gnu.org>
parents:
29632
diff
changeset
|
6236 { |
ac38155fbce6
(message_truncate_lines, Qmessage_truncate_lines): New
Gerd Moellmann <gerd@gnu.org>
parents:
29632
diff
changeset
|
6237 last_height = 0; |
ac38155fbce6
(message_truncate_lines, Qmessage_truncate_lines): New
Gerd Moellmann <gerd@gnu.org>
parents:
29632
diff
changeset
|
6238 move_it_to (&it, ZV, -1, -1, -1, MOVE_TO_POS); |
ac38155fbce6
(message_truncate_lines, Qmessage_truncate_lines): New
Gerd Moellmann <gerd@gnu.org>
parents:
29632
diff
changeset
|
6239 if (it.max_ascent == 0 && it.max_descent == 0) |
ac38155fbce6
(message_truncate_lines, Qmessage_truncate_lines): New
Gerd Moellmann <gerd@gnu.org>
parents:
29632
diff
changeset
|
6240 height = it.current_y + last_height; |
ac38155fbce6
(message_truncate_lines, Qmessage_truncate_lines): New
Gerd Moellmann <gerd@gnu.org>
parents:
29632
diff
changeset
|
6241 else |
ac38155fbce6
(message_truncate_lines, Qmessage_truncate_lines): New
Gerd Moellmann <gerd@gnu.org>
parents:
29632
diff
changeset
|
6242 height = it.current_y + it.max_ascent + it.max_descent; |
29960
8aa954de8db9
(resize_mini_window): Subract the extra line spacing
Gerd Moellmann <gerd@gnu.org>
parents:
29858
diff
changeset
|
6243 height -= it.extra_line_spacing; |
29634
ac38155fbce6
(message_truncate_lines, Qmessage_truncate_lines): New
Gerd Moellmann <gerd@gnu.org>
parents:
29632
diff
changeset
|
6244 height = (height + unit - 1) / unit; |
ac38155fbce6
(message_truncate_lines, Qmessage_truncate_lines): New
Gerd Moellmann <gerd@gnu.org>
parents:
29632
diff
changeset
|
6245 } |
25362
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6246 |
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6247 /* Compute a suitable window start. */ |
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6248 if (height > max_height) |
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6249 { |
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6250 height = max_height; |
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6251 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID); |
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6252 move_it_vertically_backward (&it, (height - 1) * unit); |
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6253 start = it.current.pos; |
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6254 } |
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6255 else |
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6256 SET_TEXT_POS (start, BEGV, BEGV_BYTE); |
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6257 SET_MARKER_FROM_TEXT_POS (w->start, start); |
25388
b38732c75a65
(redisplay_window): Don't ever test just_this_one_p
Gerd Moellmann <gerd@gnu.org>
parents:
25377
diff
changeset
|
6258 |
33314
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
6259 if (EQ (Vresize_mini_windows, Qgrow_only)) |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
6260 { |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
6261 /* Let it grow only, until we display an empty message, in which |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
6262 case the window shrinks again. */ |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
6263 if (height > XFASTINT (w->height)) |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
6264 { |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
6265 int old_height = XFASTINT (w->height); |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
6266 freeze_window_starts (f, 1); |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
6267 grow_mini_window (w, height - XFASTINT (w->height)); |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
6268 window_height_changed_p = XFASTINT (w->height) != old_height; |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
6269 } |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
6270 else if (height < XFASTINT (w->height) |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
6271 && (exact_p || BEGV == ZV)) |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
6272 { |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
6273 int old_height = XFASTINT (w->height); |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
6274 freeze_window_starts (f, 0); |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
6275 shrink_mini_window (w); |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
6276 window_height_changed_p = XFASTINT (w->height) != old_height; |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
6277 } |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
6278 } |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
6279 else |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
6280 { |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
6281 /* Always resize to exact size needed. */ |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
6282 if (height > XFASTINT (w->height)) |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
6283 { |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
6284 int old_height = XFASTINT (w->height); |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
6285 freeze_window_starts (f, 1); |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
6286 grow_mini_window (w, height - XFASTINT (w->height)); |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
6287 window_height_changed_p = XFASTINT (w->height) != old_height; |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
6288 } |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
6289 else if (height < XFASTINT (w->height)) |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
6290 { |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
6291 int old_height = XFASTINT (w->height); |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
6292 freeze_window_starts (f, 0); |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
6293 shrink_mini_window (w); |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
6294 |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
6295 if (height) |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
6296 { |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
6297 freeze_window_starts (f, 1); |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
6298 grow_mini_window (w, height - XFASTINT (w->height)); |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
6299 } |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
6300 |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
6301 window_height_changed_p = XFASTINT (w->height) != old_height; |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
6302 } |
25377
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
6303 } |
33591
b501918e1c9d
(resize_mini_window): Temporarily change to the
Gerd Moellmann <gerd@gnu.org>
parents:
33568
diff
changeset
|
6304 |
b501918e1c9d
(resize_mini_window): Temporarily change to the
Gerd Moellmann <gerd@gnu.org>
parents:
33568
diff
changeset
|
6305 if (old_current_buffer) |
b501918e1c9d
(resize_mini_window): Temporarily change to the
Gerd Moellmann <gerd@gnu.org>
parents:
33568
diff
changeset
|
6306 set_buffer_internal (old_current_buffer); |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6307 } |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6308 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6309 return window_height_changed_p; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6310 } |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6311 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6312 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6313 /* Value is the current message, a string, or nil if there is no |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6314 current message. */ |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6315 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6316 Lisp_Object |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6317 current_message () |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6318 { |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6319 Lisp_Object msg; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6320 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6321 if (NILP (echo_area_buffer[0])) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6322 msg = Qnil; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6323 else |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6324 { |
30413
d5335ebcf501
(with_echo_area_buffer): Take additional EMACS_INT
Gerd Moellmann <gerd@gnu.org>
parents:
30320
diff
changeset
|
6325 with_echo_area_buffer (0, 0, current_message_1, |
30675
8a516a1f76a7
(message_dolog): Save and protect string "*Messages*" to reuse as buffer name,
Ken Raeburn <raeburn@raeburn.org>
parents:
30652
diff
changeset
|
6326 (EMACS_INT) &msg, Qnil, 0, 0); |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6327 if (NILP (msg)) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6328 echo_area_buffer[0] = Qnil; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6329 } |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6330 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6331 return msg; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6332 } |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6333 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6334 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6335 static int |
30413
d5335ebcf501
(with_echo_area_buffer): Take additional EMACS_INT
Gerd Moellmann <gerd@gnu.org>
parents:
30320
diff
changeset
|
6336 current_message_1 (a1, a2, a3, a4) |
30675
8a516a1f76a7
(message_dolog): Save and protect string "*Messages*" to reuse as buffer name,
Ken Raeburn <raeburn@raeburn.org>
parents:
30652
diff
changeset
|
6337 EMACS_INT a1; |
8a516a1f76a7
(message_dolog): Save and protect string "*Messages*" to reuse as buffer name,
Ken Raeburn <raeburn@raeburn.org>
parents:
30652
diff
changeset
|
6338 Lisp_Object a2; |
8a516a1f76a7
(message_dolog): Save and protect string "*Messages*" to reuse as buffer name,
Ken Raeburn <raeburn@raeburn.org>
parents:
30652
diff
changeset
|
6339 EMACS_INT a3, a4; |
30413
d5335ebcf501
(with_echo_area_buffer): Take additional EMACS_INT
Gerd Moellmann <gerd@gnu.org>
parents:
30320
diff
changeset
|
6340 { |
d5335ebcf501
(with_echo_area_buffer): Take additional EMACS_INT
Gerd Moellmann <gerd@gnu.org>
parents:
30320
diff
changeset
|
6341 Lisp_Object *msg = (Lisp_Object *) a1; |
d5335ebcf501
(with_echo_area_buffer): Take additional EMACS_INT
Gerd Moellmann <gerd@gnu.org>
parents:
30320
diff
changeset
|
6342 |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6343 if (Z > BEG) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6344 *msg = make_buffer_string (BEG, Z, 1); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6345 else |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6346 *msg = Qnil; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6347 return 0; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6348 } |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6349 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6350 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6351 /* Push the current message on Vmessage_stack for later restauration |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6352 by restore_message. Value is non-zero if the current message isn't |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6353 empty. This is a relatively infrequent operation, so it's not |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6354 worth optimizing. */ |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6355 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6356 int |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6357 push_message () |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6358 { |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6359 Lisp_Object msg; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6360 msg = current_message (); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6361 Vmessage_stack = Fcons (msg, Vmessage_stack); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6362 return STRINGP (msg); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6363 } |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6364 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6365 |
35174
96c7c0a356aa
(push_message_unwind): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
35029
diff
changeset
|
6366 /* Handler for record_unwind_protect calling pop_message. */ |
96c7c0a356aa
(push_message_unwind): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
35029
diff
changeset
|
6367 |
96c7c0a356aa
(push_message_unwind): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
35029
diff
changeset
|
6368 Lisp_Object |
96c7c0a356aa
(push_message_unwind): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
35029
diff
changeset
|
6369 push_message_unwind (dummy) |
96c7c0a356aa
(push_message_unwind): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
35029
diff
changeset
|
6370 Lisp_Object dummy; |
96c7c0a356aa
(push_message_unwind): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
35029
diff
changeset
|
6371 { |
96c7c0a356aa
(push_message_unwind): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
35029
diff
changeset
|
6372 pop_message (); |
96c7c0a356aa
(push_message_unwind): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
35029
diff
changeset
|
6373 return Qnil; |
96c7c0a356aa
(push_message_unwind): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
35029
diff
changeset
|
6374 } |
96c7c0a356aa
(push_message_unwind): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
35029
diff
changeset
|
6375 |
96c7c0a356aa
(push_message_unwind): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
35029
diff
changeset
|
6376 |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6377 /* Restore message display from the top of Vmessage_stack. */ |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6378 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6379 void |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6380 restore_message () |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6381 { |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6382 Lisp_Object msg; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6383 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6384 xassert (CONSP (Vmessage_stack)); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6385 msg = XCAR (Vmessage_stack); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6386 if (STRINGP (msg)) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6387 message3_nolog (msg, STRING_BYTES (XSTRING (msg)), STRING_MULTIBYTE (msg)); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6388 else |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6389 message3_nolog (msg, 0, 0); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6390 } |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6391 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6392 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6393 /* Pop the top-most entry off Vmessage_stack. */ |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6394 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6395 void |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6396 pop_message () |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6397 { |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6398 xassert (CONSP (Vmessage_stack)); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6399 Vmessage_stack = XCDR (Vmessage_stack); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6400 } |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6401 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6402 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6403 /* Check that Vmessage_stack is nil. Called from emacs.c when Emacs |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6404 exits. If the stack is not empty, we have a missing pop_message |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6405 somewhere. */ |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6406 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6407 void |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6408 check_message_stack () |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6409 { |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6410 if (!NILP (Vmessage_stack)) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6411 abort (); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6412 } |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6413 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6414 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6415 /* Truncate to NCHARS what will be displayed in the echo area the next |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6416 time we display it---but don't redisplay it now. */ |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6417 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6418 void |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6419 truncate_echo_area (nchars) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6420 int nchars; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6421 { |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6422 if (nchars == 0) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6423 echo_area_buffer[0] = Qnil; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6424 /* A null message buffer means that the frame hasn't really been |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6425 initialized yet. Error messages get reported properly by |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6426 cmd_error, so this must be just an informative message; toss it. */ |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6427 else if (!noninteractive |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6428 && INTERACTIVE |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6429 && !NILP (echo_area_buffer[0])) |
25677
1223d6401ab2
(QCfile): Move here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
25660
diff
changeset
|
6430 { |
1223d6401ab2
(QCfile): Move here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
25660
diff
changeset
|
6431 struct frame *sf = SELECTED_FRAME (); |
1223d6401ab2
(QCfile): Move here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
25660
diff
changeset
|
6432 if (FRAME_MESSAGE_BUF (sf)) |
30675
8a516a1f76a7
(message_dolog): Save and protect string "*Messages*" to reuse as buffer name,
Ken Raeburn <raeburn@raeburn.org>
parents:
30652
diff
changeset
|
6433 with_echo_area_buffer (0, 0, truncate_message_1, nchars, Qnil, 0, 0); |
25677
1223d6401ab2
(QCfile): Move here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
25660
diff
changeset
|
6434 } |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6435 } |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6436 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6437 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6438 /* Helper function for truncate_echo_area. Truncate the current |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6439 message to at most NCHARS characters. */ |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6440 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6441 static int |
30413
d5335ebcf501
(with_echo_area_buffer): Take additional EMACS_INT
Gerd Moellmann <gerd@gnu.org>
parents:
30320
diff
changeset
|
6442 truncate_message_1 (nchars, a2, a3, a4) |
30675
8a516a1f76a7
(message_dolog): Save and protect string "*Messages*" to reuse as buffer name,
Ken Raeburn <raeburn@raeburn.org>
parents:
30652
diff
changeset
|
6443 EMACS_INT nchars; |
8a516a1f76a7
(message_dolog): Save and protect string "*Messages*" to reuse as buffer name,
Ken Raeburn <raeburn@raeburn.org>
parents:
30652
diff
changeset
|
6444 Lisp_Object a2; |
8a516a1f76a7
(message_dolog): Save and protect string "*Messages*" to reuse as buffer name,
Ken Raeburn <raeburn@raeburn.org>
parents:
30652
diff
changeset
|
6445 EMACS_INT a3, a4; |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6446 { |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6447 if (BEG + nchars < Z) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6448 del_range (BEG + nchars, Z); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6449 if (Z == BEG) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6450 echo_area_buffer[0] = Qnil; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6451 return 0; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6452 } |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6453 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6454 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6455 /* Set the current message to a substring of S or STRING. |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6456 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6457 If STRING is a Lisp string, set the message to the first NBYTES |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6458 bytes from STRING. NBYTES zero means use the whole string. If |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6459 STRING is multibyte, the message will be displayed multibyte. |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6460 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6461 If S is not null, set the message to the first LEN bytes of S. LEN |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6462 zero means use the whole string. MULTIBYTE_P non-zero means S is |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6463 multibyte. Display the message multibyte in that case. */ |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6464 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6465 void |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6466 set_message (s, string, nbytes, multibyte_p) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6467 char *s; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6468 Lisp_Object string; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6469 int nbytes; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6470 { |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6471 message_enable_multibyte |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6472 = ((s && multibyte_p) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6473 || (STRINGP (string) && STRING_MULTIBYTE (string))); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6474 |
30413
d5335ebcf501
(with_echo_area_buffer): Take additional EMACS_INT
Gerd Moellmann <gerd@gnu.org>
parents:
30320
diff
changeset
|
6475 with_echo_area_buffer (0, -1, set_message_1, |
d5335ebcf501
(with_echo_area_buffer): Take additional EMACS_INT
Gerd Moellmann <gerd@gnu.org>
parents:
30320
diff
changeset
|
6476 (EMACS_INT) s, string, nbytes, multibyte_p); |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6477 message_buf_print = 0; |
31876
de16d989722a
(help_echo_showing_p): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31849
diff
changeset
|
6478 help_echo_showing_p = 0; |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6479 } |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6480 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6481 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6482 /* Helper function for set_message. Arguments have the same meaning |
30413
d5335ebcf501
(with_echo_area_buffer): Take additional EMACS_INT
Gerd Moellmann <gerd@gnu.org>
parents:
30320
diff
changeset
|
6483 as there, with A1 corresponding to S and A2 corresponding to STRING |
d5335ebcf501
(with_echo_area_buffer): Take additional EMACS_INT
Gerd Moellmann <gerd@gnu.org>
parents:
30320
diff
changeset
|
6484 This function is called with the echo area buffer being |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6485 current. */ |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6486 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6487 static int |
30413
d5335ebcf501
(with_echo_area_buffer): Take additional EMACS_INT
Gerd Moellmann <gerd@gnu.org>
parents:
30320
diff
changeset
|
6488 set_message_1 (a1, a2, nbytes, multibyte_p) |
30675
8a516a1f76a7
(message_dolog): Save and protect string "*Messages*" to reuse as buffer name,
Ken Raeburn <raeburn@raeburn.org>
parents:
30652
diff
changeset
|
6489 EMACS_INT a1; |
8a516a1f76a7
(message_dolog): Save and protect string "*Messages*" to reuse as buffer name,
Ken Raeburn <raeburn@raeburn.org>
parents:
30652
diff
changeset
|
6490 Lisp_Object a2; |
8a516a1f76a7
(message_dolog): Save and protect string "*Messages*" to reuse as buffer name,
Ken Raeburn <raeburn@raeburn.org>
parents:
30652
diff
changeset
|
6491 EMACS_INT nbytes, multibyte_p; |
30413
d5335ebcf501
(with_echo_area_buffer): Take additional EMACS_INT
Gerd Moellmann <gerd@gnu.org>
parents:
30320
diff
changeset
|
6492 { |
d5335ebcf501
(with_echo_area_buffer): Take additional EMACS_INT
Gerd Moellmann <gerd@gnu.org>
parents:
30320
diff
changeset
|
6493 char *s = (char *) a1; |
30675
8a516a1f76a7
(message_dolog): Save and protect string "*Messages*" to reuse as buffer name,
Ken Raeburn <raeburn@raeburn.org>
parents:
30652
diff
changeset
|
6494 Lisp_Object string = a2; |
30413
d5335ebcf501
(with_echo_area_buffer): Take additional EMACS_INT
Gerd Moellmann <gerd@gnu.org>
parents:
30320
diff
changeset
|
6495 |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6496 xassert (BEG == Z); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6497 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6498 /* Change multibyteness of the echo buffer appropriately. */ |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6499 if (message_enable_multibyte |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6500 != !NILP (current_buffer->enable_multibyte_characters)) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6501 Fset_buffer_multibyte (message_enable_multibyte ? Qt : Qnil); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6502 |
29634
ac38155fbce6
(message_truncate_lines, Qmessage_truncate_lines): New
Gerd Moellmann <gerd@gnu.org>
parents:
29632
diff
changeset
|
6503 current_buffer->truncate_lines = message_truncate_lines ? Qt : Qnil; |
ac38155fbce6
(message_truncate_lines, Qmessage_truncate_lines): New
Gerd Moellmann <gerd@gnu.org>
parents:
29632
diff
changeset
|
6504 |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6505 /* Insert new message at BEG. */ |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6506 TEMP_SET_PT_BOTH (BEG, BEG_BYTE); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6507 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6508 if (STRINGP (string)) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6509 { |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6510 int nchars; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6511 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6512 if (nbytes == 0) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6513 nbytes = XSTRING (string)->size_byte; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6514 nchars = string_byte_to_char (string, nbytes); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6515 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6516 /* This function takes care of single/multibyte conversion. We |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6517 just have to ensure that the echo area buffer has the right |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6518 setting of enable_multibyte_characters. */ |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6519 insert_from_string (string, 0, 0, nchars, nbytes, 1); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6520 } |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6521 else if (s) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6522 { |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6523 if (nbytes == 0) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6524 nbytes = strlen (s); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6525 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6526 if (multibyte_p && NILP (current_buffer->enable_multibyte_characters)) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6527 { |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6528 /* Convert from multi-byte to single-byte. */ |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6529 int i, c, n; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6530 unsigned char work[1]; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6531 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6532 /* Convert a multibyte string to single-byte. */ |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6533 for (i = 0; i < nbytes; i += n) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6534 { |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6535 c = string_char_and_length (s + i, nbytes - i, &n); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6536 work[0] = (SINGLE_BYTE_CHAR_P (c) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6537 ? c |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6538 : multibyte_char_to_unibyte (c, Qnil)); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6539 insert_1_both (work, 1, 1, 1, 0, 0); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6540 } |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6541 } |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6542 else if (!multibyte_p |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6543 && !NILP (current_buffer->enable_multibyte_characters)) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6544 { |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6545 /* Convert from single-byte to multi-byte. */ |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6546 int i, c, n; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6547 unsigned char *msg = (unsigned char *) s; |
26874
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
6548 unsigned char str[MAX_MULTIBYTE_LENGTH]; |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6549 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6550 /* Convert a single-byte string to multibyte. */ |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6551 for (i = 0; i < nbytes; i++) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6552 { |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6553 c = unibyte_char_to_multibyte (msg[i]); |
26874
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
6554 n = CHAR_STRING (c, str); |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
6555 insert_1_both (str, 1, n, 1, 0, 0); |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6556 } |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6557 } |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6558 else |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6559 insert_1 (s, nbytes, 1, 0, 0); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6560 } |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6561 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6562 return 0; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6563 } |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6564 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6565 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6566 /* Clear messages. CURRENT_P non-zero means clear the current |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6567 message. LAST_DISPLAYED_P non-zero means clear the message |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6568 last displayed. */ |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6569 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6570 void |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6571 clear_message (current_p, last_displayed_p) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6572 int current_p, last_displayed_p; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6573 { |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6574 if (current_p) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6575 echo_area_buffer[0] = Qnil; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6576 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6577 if (last_displayed_p) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6578 echo_area_buffer[1] = Qnil; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6579 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6580 message_buf_print = 0; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6581 } |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6582 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6583 /* Clear garbaged frames. |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6584 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6585 This function is used where the old redisplay called |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6586 redraw_garbaged_frames which in turn called redraw_frame which in |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6587 turn called clear_frame. The call to clear_frame was a source of |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6588 flickering. I believe a clear_frame is not necessary. It should |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6589 suffice in the new redisplay to invalidate all current matrices, |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6590 and ensure a complete redisplay of all windows. */ |
25012 | 6591 |
277 | 6592 static void |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6593 clear_garbaged_frames () |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6594 { |
769 | 6595 if (frame_garbaged) |
277 | 6596 { |
25012 | 6597 Lisp_Object tail, frame; |
6598 | |
6599 FOR_EACH_FRAME (tail, frame) | |
6600 { | |
6601 struct frame *f = XFRAME (frame); | |
6602 | |
6603 if (FRAME_VISIBLE_P (f) && FRAME_GARBAGED_P (f)) | |
6604 { | |
6605 clear_current_matrices (f); | |
6606 f->garbaged = 0; | |
6607 } | |
6608 } | |
6609 | |
769 | 6610 frame_garbaged = 0; |
25012 | 6611 ++windows_or_buffers_changed; |
6612 } | |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6613 } |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6614 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6615 |
25677
1223d6401ab2
(QCfile): Move here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
25660
diff
changeset
|
6616 /* Redisplay the echo area of the selected frame. If UPDATE_FRAME_P |
1223d6401ab2
(QCfile): Move here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
25660
diff
changeset
|
6617 is non-zero update selected_frame. Value is non-zero if the |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6618 mini-windows height has been changed. */ |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6619 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6620 static int |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6621 echo_area_display (update_frame_p) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6622 int update_frame_p; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6623 { |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6624 Lisp_Object mini_window; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6625 struct window *w; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6626 struct frame *f; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6627 int window_height_changed_p = 0; |
25677
1223d6401ab2
(QCfile): Move here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
25660
diff
changeset
|
6628 struct frame *sf = SELECTED_FRAME (); |
1223d6401ab2
(QCfile): Move here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
25660
diff
changeset
|
6629 |
1223d6401ab2
(QCfile): Move here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
25660
diff
changeset
|
6630 mini_window = FRAME_MINIBUF_WINDOW (sf); |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6631 w = XWINDOW (mini_window); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6632 f = XFRAME (WINDOW_FRAME (w)); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6633 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6634 /* Don't display if frame is invisible or not yet initialized. */ |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6635 if (!FRAME_VISIBLE_P (f) || !f->glyphs_initialized_p) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6636 return 0; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6637 |
32752
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32592
diff
changeset
|
6638 /* The terminal frame is used as the first Emacs frame on the Mac OS. */ |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32592
diff
changeset
|
6639 #ifndef macintosh |
27897
a6384a2b5574
(handle_single_display_prop): Use FONT_HEIGHT macro.
Jason Rumney <jasonr@gnu.org>
parents:
27843
diff
changeset
|
6640 #ifdef HAVE_WINDOW_SYSTEM |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6641 /* When Emacs starts, selected_frame may be a visible terminal |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6642 frame, even if we run under a window system. If we let this |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6643 through, a message would be displayed on the terminal. */ |
26203
47d54b67bce2
* xdisp.c (echo_area_display) [HAVE_X_WINDOWS]: Do nothing if
Gerd Moellmann <gerd@gnu.org>
parents:
26197
diff
changeset
|
6644 if (EQ (selected_frame, Vterminal_frame) |
47d54b67bce2
* xdisp.c (echo_area_display) [HAVE_X_WINDOWS]: Do nothing if
Gerd Moellmann <gerd@gnu.org>
parents:
26197
diff
changeset
|
6645 && !NILP (Vwindow_system)) |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6646 return 0; |
27897
a6384a2b5574
(handle_single_display_prop): Use FONT_HEIGHT macro.
Jason Rumney <jasonr@gnu.org>
parents:
27843
diff
changeset
|
6647 #endif /* HAVE_WINDOW_SYSTEM */ |
32752
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32592
diff
changeset
|
6648 #endif |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6649 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6650 /* Redraw garbaged frames. */ |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6651 if (frame_garbaged) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6652 clear_garbaged_frames (); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6653 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6654 if (!NILP (echo_area_buffer[0]) || minibuf_level == 0) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6655 { |
12629
55241c80f448
(echo_area_display): Use selected frame's minibuf window
Richard M. Stallman <rms@gnu.org>
parents:
12598
diff
changeset
|
6656 echo_area_window = mini_window; |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6657 window_height_changed_p = display_echo_area (w); |
25012 | 6658 w->must_be_updated_p = 1; |
25388
b38732c75a65
(redisplay_window): Don't ever test just_this_one_p
Gerd Moellmann <gerd@gnu.org>
parents:
25377
diff
changeset
|
6659 |
33068
a31c3787231b
(echo_area_display): Don't perform a display update from
Gerd Moellmann <gerd@gnu.org>
parents:
32912
diff
changeset
|
6660 /* Update the display, unless called from redisplay_internal. |
a31c3787231b
(echo_area_display): Don't perform a display update from
Gerd Moellmann <gerd@gnu.org>
parents:
32912
diff
changeset
|
6661 Also don't update the screen during redisplay itself. The |
a31c3787231b
(echo_area_display): Don't perform a display update from
Gerd Moellmann <gerd@gnu.org>
parents:
32912
diff
changeset
|
6662 update will happen at the end of redisplay, and an update |
a31c3787231b
(echo_area_display): Don't perform a display update from
Gerd Moellmann <gerd@gnu.org>
parents:
32912
diff
changeset
|
6663 here could cause confusion. */ |
a31c3787231b
(echo_area_display): Don't perform a display update from
Gerd Moellmann <gerd@gnu.org>
parents:
32912
diff
changeset
|
6664 if (update_frame_p && !redisplaying_p) |
25012 | 6665 { |
31338
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
6666 int n = 0; |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
6667 |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
6668 /* If the display update has been interrupted by pending |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
6669 input, update mode lines in the frame. Due to the |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
6670 pending input, it might have been that redisplay hasn't |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
6671 been called, so that mode lines above the echo area are |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
6672 garbaged. This looks odd, so we prevent it here. */ |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
6673 if (!display_completed) |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
6674 n = redisplay_mode_lines (FRAME_ROOT_WINDOW (f), 0); |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
6675 |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
6676 if (window_height_changed_p) |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
6677 { |
34900
9ccc4efae7d4
(echo_area_display): Bind redisplay-dont-pause to t
Gerd Moellmann <gerd@gnu.org>
parents:
34851
diff
changeset
|
6678 /* Must update other windows. Likewise as in other |
9ccc4efae7d4
(echo_area_display): Bind redisplay-dont-pause to t
Gerd Moellmann <gerd@gnu.org>
parents:
34851
diff
changeset
|
6679 cases, don't let this update be interrupted by |
9ccc4efae7d4
(echo_area_display): Bind redisplay-dont-pause to t
Gerd Moellmann <gerd@gnu.org>
parents:
34851
diff
changeset
|
6680 pending input. */ |
9ccc4efae7d4
(echo_area_display): Bind redisplay-dont-pause to t
Gerd Moellmann <gerd@gnu.org>
parents:
34851
diff
changeset
|
6681 int count = BINDING_STACK_SIZE (); |
9ccc4efae7d4
(echo_area_display): Bind redisplay-dont-pause to t
Gerd Moellmann <gerd@gnu.org>
parents:
34851
diff
changeset
|
6682 specbind (Qredisplay_dont_pause, Qt); |
31294
52f31a08e52f
(echo_area_display): Check display_completed instead
Gerd Moellmann <gerd@gnu.org>
parents:
31170
diff
changeset
|
6683 windows_or_buffers_changed = 1; |
25388
b38732c75a65
(redisplay_window): Don't ever test just_this_one_p
Gerd Moellmann <gerd@gnu.org>
parents:
25377
diff
changeset
|
6684 redisplay_internal (0); |
34900
9ccc4efae7d4
(echo_area_display): Bind redisplay-dont-pause to t
Gerd Moellmann <gerd@gnu.org>
parents:
34851
diff
changeset
|
6685 unbind_to (count, Qnil); |
31338
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
6686 } |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
6687 else if (FRAME_WINDOW_P (f) && n == 0) |
25012 | 6688 { |
31294
52f31a08e52f
(echo_area_display): Check display_completed instead
Gerd Moellmann <gerd@gnu.org>
parents:
31170
diff
changeset
|
6689 /* Window configuration is the same as before. |
31338
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
6690 Can do with a display update of the echo area, |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
6691 unless we displayed some mode lines. */ |
25012 | 6692 update_single_window (w, 1); |
6693 rif->flush_display (f); | |
6694 } | |
6695 else | |
6696 update_frame (f, 1, 1); | |
34068
4a200b2a343b
(echo_area_display): If cursor is in the echo area, make
Gerd Moellmann <gerd@gnu.org>
parents:
33950
diff
changeset
|
6697 |
4a200b2a343b
(echo_area_display): If cursor is in the echo area, make
Gerd Moellmann <gerd@gnu.org>
parents:
33950
diff
changeset
|
6698 /* If cursor is in the echo area, make sure that the next |
4a200b2a343b
(echo_area_display): If cursor is in the echo area, make
Gerd Moellmann <gerd@gnu.org>
parents:
33950
diff
changeset
|
6699 redisplay displays the minibuffer, so that the cursor will |
4a200b2a343b
(echo_area_display): If cursor is in the echo area, make
Gerd Moellmann <gerd@gnu.org>
parents:
33950
diff
changeset
|
6700 be replaced with what the minibuffer wants. */ |
4a200b2a343b
(echo_area_display): If cursor is in the echo area, make
Gerd Moellmann <gerd@gnu.org>
parents:
33950
diff
changeset
|
6701 if (cursor_in_echo_area) |
4a200b2a343b
(echo_area_display): If cursor is in the echo area, make
Gerd Moellmann <gerd@gnu.org>
parents:
33950
diff
changeset
|
6702 ++windows_or_buffers_changed; |
25012 | 6703 } |
277 | 6704 } |
12629
55241c80f448
(echo_area_display): Use selected frame's minibuf window
Richard M. Stallman <rms@gnu.org>
parents:
12598
diff
changeset
|
6705 else if (!EQ (mini_window, selected_window)) |
277 | 6706 windows_or_buffers_changed++; |
25388
b38732c75a65
(redisplay_window): Don't ever test just_this_one_p
Gerd Moellmann <gerd@gnu.org>
parents:
25377
diff
changeset
|
6707 |
b38732c75a65
(redisplay_window): Don't ever test just_this_one_p
Gerd Moellmann <gerd@gnu.org>
parents:
25377
diff
changeset
|
6708 /* Last displayed message is now the current message. */ |
25362
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6709 echo_area_buffer[1] = echo_area_buffer[0]; |
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
6710 |
25012 | 6711 /* Prevent redisplay optimization in redisplay_internal by resetting |
6712 this_line_start_pos. This is done because the mini-buffer now | |
6713 displays the message instead of its buffer text. */ | |
12629
55241c80f448
(echo_area_display): Use selected frame's minibuf window
Richard M. Stallman <rms@gnu.org>
parents:
12598
diff
changeset
|
6714 if (EQ (mini_window, selected_window)) |
25012 | 6715 CHARPOS (this_line_start_pos) = 0; |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6716 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
6717 return window_height_changed_p; |
25012 | 6718 } |
6719 | |
6720 | |
14465
0936d5e38928
Comment/whitespace changes.
Richard M. Stallman <rms@gnu.org>
parents:
14299
diff
changeset
|
6721 |
25012 | 6722 /*********************************************************************** |
6723 Frame Titles | |
6724 ***********************************************************************/ | |
6725 | |
6308
f34deea7dc2c
(x_consider_frame_title): New function, extracted from display_mode_line.
Karl Heuer <kwzh@gnu.org>
parents:
6278
diff
changeset
|
6726 |
13419
2a17eca35e88
[HAVE_NTGUI] (set_menu_framebar): Declare external.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13370
diff
changeset
|
6727 #ifdef HAVE_WINDOW_SYSTEM |
25012 | 6728 |
6729 /* A buffer for constructing frame titles in it; allocated from the | |
6730 heap in init_xdisp and resized as needed in store_frame_title_char. */ | |
6731 | |
6732 static char *frame_title_buf; | |
6733 | |
6734 /* The buffer's end, and a current output position in it. */ | |
6735 | |
6736 static char *frame_title_buf_end; | |
8772
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
6737 static char *frame_title_ptr; |
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
6738 |
25012 | 6739 |
6740 /* Store a single character C for the frame title in frame_title_buf. | |
6741 Re-allocate frame_title_buf if necessary. */ | |
6742 | |
6743 static void | |
6744 store_frame_title_char (c) | |
6745 char c; | |
6746 { | |
6747 /* If output position has reached the end of the allocated buffer, | |
6748 double the buffer's size. */ | |
6749 if (frame_title_ptr == frame_title_buf_end) | |
6750 { | |
6751 int len = frame_title_ptr - frame_title_buf; | |
6752 int new_size = 2 * len * sizeof *frame_title_buf; | |
6753 frame_title_buf = (char *) xrealloc (frame_title_buf, new_size); | |
6754 frame_title_buf_end = frame_title_buf + new_size; | |
6755 frame_title_ptr = frame_title_buf + len; | |
6756 } | |
6757 | |
6758 *frame_title_ptr++ = c; | |
6759 } | |
6760 | |
6761 | |
6762 /* Store part of a frame title in frame_title_buf, beginning at | |
6763 frame_title_ptr. STR is the string to store. Do not copy more | |
6764 than PRECISION number of bytes from STR; PRECISION <= 0 means copy | |
6765 the whole string. Pad with spaces until FIELD_WIDTH number of | |
6766 characters have been copied; FIELD_WIDTH <= 0 means don't pad. | |
6767 Called from display_mode_element when it is used to build a frame | |
6768 title. */ | |
6769 | |
8772
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
6770 static int |
25012 | 6771 store_frame_title (str, field_width, precision) |
6772 unsigned char *str; | |
6773 int field_width, precision; | |
6774 { | |
6775 int n = 0; | |
6776 | |
6777 /* Copy at most PRECISION chars from STR. */ | |
6778 while ((precision <= 0 || n < precision) | |
6779 && *str) | |
6780 { | |
6781 store_frame_title_char (*str++); | |
6782 ++n; | |
6783 } | |
6784 | |
6785 /* Fill up with spaces until FIELD_WIDTH reached. */ | |
6786 while (field_width > 0 | |
6787 && n < field_width) | |
6788 { | |
6789 store_frame_title_char (' '); | |
6790 ++n; | |
6791 } | |
6792 | |
6793 return n; | |
6794 } | |
6795 | |
6796 | |
6797 /* Set the title of FRAME, if it has changed. The title format is | |
6798 Vicon_title_format if FRAME is iconified, otherwise it is | |
6799 frame_title_format. */ | |
8772
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
6800 |
6308
f34deea7dc2c
(x_consider_frame_title): New function, extracted from display_mode_line.
Karl Heuer <kwzh@gnu.org>
parents:
6278
diff
changeset
|
6801 static void |
f34deea7dc2c
(x_consider_frame_title): New function, extracted from display_mode_line.
Karl Heuer <kwzh@gnu.org>
parents:
6278
diff
changeset
|
6802 x_consider_frame_title (frame) |
f34deea7dc2c
(x_consider_frame_title): New function, extracted from display_mode_line.
Karl Heuer <kwzh@gnu.org>
parents:
6278
diff
changeset
|
6803 Lisp_Object frame; |
f34deea7dc2c
(x_consider_frame_title): New function, extracted from display_mode_line.
Karl Heuer <kwzh@gnu.org>
parents:
6278
diff
changeset
|
6804 { |
25012 | 6805 struct frame *f = XFRAME (frame); |
6806 | |
6807 if (FRAME_WINDOW_P (f) | |
6808 || FRAME_MINIBUF_ONLY_P (f) | |
6809 || f->explicit_name) | |
6810 { | |
6811 /* Do we have more than one visible frame on this X display? */ | |
6812 Lisp_Object tail; | |
6813 Lisp_Object fmt; | |
6814 struct buffer *obuf; | |
6815 int len; | |
6816 struct it it; | |
6817 | |
25519
5e59e2bd26b5
Use XCAR and XCDR instead of XCONS.
Gerd Moellmann <gerd@gnu.org>
parents:
25500
diff
changeset
|
6818 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail)) |
5e59e2bd26b5
Use XCAR and XCDR instead of XCONS.
Gerd Moellmann <gerd@gnu.org>
parents:
25500
diff
changeset
|
6819 { |
5e59e2bd26b5
Use XCAR and XCDR instead of XCONS.
Gerd Moellmann <gerd@gnu.org>
parents:
25500
diff
changeset
|
6820 struct frame *tf = XFRAME (XCAR (tail)); |
25012 | 6821 |
6822 if (tf != f | |
6823 && FRAME_KBOARD (tf) == FRAME_KBOARD (f) | |
6824 && !FRAME_MINIBUF_ONLY_P (tf) | |
6825 && (FRAME_VISIBLE_P (tf) || FRAME_ICONIFIED_P (tf))) | |
6826 break; | |
6827 } | |
6828 | |
6829 /* Set global variable indicating that multiple frames exist. */ | |
6830 multiple_frames = CONSP (tail); | |
6831 | |
6832 /* Switch to the buffer of selected window of the frame. Set up | |
6833 frame_title_ptr so that display_mode_element will output into it; | |
6834 then display the title. */ | |
6835 obuf = current_buffer; | |
6836 Fset_buffer (XWINDOW (f->selected_window)->buffer); | |
6837 fmt = FRAME_ICONIFIED_P (f) ? Vicon_title_format : Vframe_title_format; | |
6838 frame_title_ptr = frame_title_buf; | |
6839 init_iterator (&it, XWINDOW (f->selected_window), -1, -1, | |
6840 NULL, DEFAULT_FACE_ID); | |
6841 len = display_mode_element (&it, 0, -1, -1, fmt); | |
6842 frame_title_ptr = NULL; | |
6843 set_buffer_internal (obuf); | |
6844 | |
6845 /* Set the title only if it's changed. This avoids consing in | |
6846 the common case where it hasn't. (If it turns out that we've | |
6847 already wasted too much time by walking through the list with | |
6848 display_mode_element, then we might need to optimize at a | |
6849 higher level than this.) */ | |
6850 if (! STRINGP (f->name) | |
6851 || STRING_BYTES (XSTRING (f->name)) != len | |
6852 || bcmp (frame_title_buf, XSTRING (f->name)->data, len) != 0) | |
6853 x_implicitly_set_name (f, make_string (frame_title_buf, len), Qnil); | |
6854 } | |
6855 } | |
6856 | |
6857 #else /* not HAVE_WINDOW_SYSTEM */ | |
6858 | |
8783
226c214398a6
[!HAVE_X_WINDOWS] (frame_title_ptr): define as always null.
Karl Heuer <kwzh@gnu.org>
parents:
8772
diff
changeset
|
6859 #define frame_title_ptr ((char *)0) |
8918
1be99ca9da45
[!HAVE_X_WINDOWS] (store_frame_title): Dummy macro.
Karl Heuer <kwzh@gnu.org>
parents:
8834
diff
changeset
|
6860 #define store_frame_title(str, mincol, maxcol) 0 |
25012 | 6861 |
6862 #endif /* not HAVE_WINDOW_SYSTEM */ | |
6863 | |
6864 | |
6865 | |
277 | 6866 |
25012 | 6867 /*********************************************************************** |
6868 Menu Bars | |
6869 ***********************************************************************/ | |
6870 | |
6871 | |
6872 /* Prepare for redisplay by updating menu-bar item lists when | |
6873 appropriate. This can call eval. */ | |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
6874 |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
6875 void |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
6876 prepare_menu_bars () |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
6877 { |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
6878 int all_windows; |
10667
bacef13bc2ca
(Vwindow_size_change_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10641
diff
changeset
|
6879 struct gcpro gcpro1, gcpro2; |
25012 | 6880 struct frame *f; |
34448
8f8d6aa6af8b
(prepare_menu_bars): Changes for tip_frame being a
Gerd Moellmann <gerd@gnu.org>
parents:
34440
diff
changeset
|
6881 Lisp_Object tooltip_frame; |
25012 | 6882 |
6883 #ifdef HAVE_X_WINDOWS | |
6884 tooltip_frame = tip_frame; | |
6885 #else | |
34448
8f8d6aa6af8b
(prepare_menu_bars): Changes for tip_frame being a
Gerd Moellmann <gerd@gnu.org>
parents:
34440
diff
changeset
|
6886 tooltip_frame = Qnil; |
25012 | 6887 #endif |
6888 | |
6889 /* Update all frame titles based on their buffer names, etc. We do | |
6890 this before the menu bars so that the buffer-menu will show the | |
6891 up-to-date frame titles. */ | |
13419
2a17eca35e88
[HAVE_NTGUI] (set_menu_framebar): Declare external.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13370
diff
changeset
|
6892 #ifdef HAVE_WINDOW_SYSTEM |
13826
cbe1d1a07eb2
(prepare_menu_bars): If update_mode_lines,
Richard M. Stallman <rms@gnu.org>
parents:
13760
diff
changeset
|
6893 if (windows_or_buffers_changed || update_mode_lines) |
11920
d7c32bcc6cc5
(prepare_menu_bars): Update frame titles before menu bars.
Karl Heuer <kwzh@gnu.org>
parents:
11910
diff
changeset
|
6894 { |
d7c32bcc6cc5
(prepare_menu_bars): Update frame titles before menu bars.
Karl Heuer <kwzh@gnu.org>
parents:
11910
diff
changeset
|
6895 Lisp_Object tail, frame; |
d7c32bcc6cc5
(prepare_menu_bars): Update frame titles before menu bars.
Karl Heuer <kwzh@gnu.org>
parents:
11910
diff
changeset
|
6896 |
d7c32bcc6cc5
(prepare_menu_bars): Update frame titles before menu bars.
Karl Heuer <kwzh@gnu.org>
parents:
11910
diff
changeset
|
6897 FOR_EACH_FRAME (tail, frame) |
25012 | 6898 { |
6899 f = XFRAME (frame); | |
34448
8f8d6aa6af8b
(prepare_menu_bars): Changes for tip_frame being a
Gerd Moellmann <gerd@gnu.org>
parents:
34440
diff
changeset
|
6900 if (!EQ (frame, tooltip_frame) |
25012 | 6901 && (FRAME_VISIBLE_P (f) || FRAME_ICONIFIED_P (f))) |
6902 x_consider_frame_title (frame); | |
6903 } | |
6904 } | |
6905 #endif /* HAVE_WINDOW_SYSTEM */ | |
6906 | |
6907 /* Update the menu bar item lists, if appropriate. This has to be | |
6908 done before any actual redisplay or generation of display lines. */ | |
6909 all_windows = (update_mode_lines | |
6910 || buffer_shared > 1 | |
6911 || windows_or_buffers_changed); | |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
6912 if (all_windows) |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
6913 { |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
6914 Lisp_Object tail, frame; |
33600
c5f64497e92c
Use BINDING_STACK_SIZE throughout.
Gerd Moellmann <gerd@gnu.org>
parents:
33594
diff
changeset
|
6915 int count = BINDING_STACK_SIZE (); |
11761
d110042c1d95
(prepare_menu_bars): Save and restore the match data.
Richard M. Stallman <rms@gnu.org>
parents:
11719
diff
changeset
|
6916 |
21179
482ff111ccbc
(message_dolog): Save and restore Vdeactivate_mark.
Richard M. Stallman <rms@gnu.org>
parents:
21028
diff
changeset
|
6917 record_unwind_protect (Fset_match_data, Fmatch_data (Qnil, Qnil)); |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
6918 |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
6919 FOR_EACH_FRAME (tail, frame) |
10667
bacef13bc2ca
(Vwindow_size_change_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10641
diff
changeset
|
6920 { |
25012 | 6921 f = XFRAME (frame); |
6922 | |
6923 /* Ignore tooltip frame. */ | |
34448
8f8d6aa6af8b
(prepare_menu_bars): Changes for tip_frame being a
Gerd Moellmann <gerd@gnu.org>
parents:
34440
diff
changeset
|
6924 if (EQ (frame, tooltip_frame)) |
25012 | 6925 continue; |
6926 | |
6927 /* If a window on this frame changed size, report that to | |
6928 the user and clear the size-change flag. */ | |
6929 if (FRAME_WINDOW_SIZES_CHANGED (f)) | |
10667
bacef13bc2ca
(Vwindow_size_change_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10641
diff
changeset
|
6930 { |
bacef13bc2ca
(Vwindow_size_change_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10641
diff
changeset
|
6931 Lisp_Object functions; |
25012 | 6932 |
6933 /* Clear flag first in case we get an error below. */ | |
6934 FRAME_WINDOW_SIZES_CHANGED (f) = 0; | |
10667
bacef13bc2ca
(Vwindow_size_change_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10641
diff
changeset
|
6935 functions = Vwindow_size_change_functions; |
bacef13bc2ca
(Vwindow_size_change_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10641
diff
changeset
|
6936 GCPRO2 (tail, functions); |
25012 | 6937 |
10667
bacef13bc2ca
(Vwindow_size_change_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10641
diff
changeset
|
6938 while (CONSP (functions)) |
bacef13bc2ca
(Vwindow_size_change_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10641
diff
changeset
|
6939 { |
25012 | 6940 call1 (XCAR (functions), frame); |
6941 functions = XCDR (functions); | |
10667
bacef13bc2ca
(Vwindow_size_change_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10641
diff
changeset
|
6942 } |
bacef13bc2ca
(Vwindow_size_change_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10641
diff
changeset
|
6943 UNGCPRO; |
bacef13bc2ca
(Vwindow_size_change_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10641
diff
changeset
|
6944 } |
25012 | 6945 |
10667
bacef13bc2ca
(Vwindow_size_change_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10641
diff
changeset
|
6946 GCPRO1 (tail); |
25012 | 6947 update_menu_bar (f, 0); |
6948 #ifdef HAVE_WINDOW_SYSTEM | |
25543 | 6949 update_tool_bar (f, 0); |
25012 | 6950 #endif |
10667
bacef13bc2ca
(Vwindow_size_change_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10641
diff
changeset
|
6951 UNGCPRO; |
bacef13bc2ca
(Vwindow_size_change_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10641
diff
changeset
|
6952 } |
11761
d110042c1d95
(prepare_menu_bars): Save and restore the match data.
Richard M. Stallman <rms@gnu.org>
parents:
11719
diff
changeset
|
6953 |
d110042c1d95
(prepare_menu_bars): Save and restore the match data.
Richard M. Stallman <rms@gnu.org>
parents:
11719
diff
changeset
|
6954 unbind_to (count, Qnil); |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
6955 } |
6872
7c12310c8b86
(update_menu_bar): Take frame as arg.
Richard M. Stallman <rms@gnu.org>
parents:
6741
diff
changeset
|
6956 else |
25012 | 6957 { |
25677
1223d6401ab2
(QCfile): Move here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
25660
diff
changeset
|
6958 struct frame *sf = SELECTED_FRAME (); |
1223d6401ab2
(QCfile): Move here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
25660
diff
changeset
|
6959 update_menu_bar (sf, 1); |
25012 | 6960 #ifdef HAVE_WINDOW_SYSTEM |
25677
1223d6401ab2
(QCfile): Move here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
25660
diff
changeset
|
6961 update_tool_bar (sf, 1); |
25012 | 6962 #endif |
6963 } | |
6964 | |
6965 /* Motif needs this. See comment in xmenu.c. Turn it off when | |
6966 pending_menu_activation is not defined. */ | |
15813
c52454296042
(prepare_menu_bars): Conditionalize previous change.
Richard M. Stallman <rms@gnu.org>
parents:
15543
diff
changeset
|
6967 #ifdef USE_X_TOOLKIT |
c52454296042
(prepare_menu_bars): Conditionalize previous change.
Richard M. Stallman <rms@gnu.org>
parents:
15543
diff
changeset
|
6968 pending_menu_activation = 0; |
c52454296042
(prepare_menu_bars): Conditionalize previous change.
Richard M. Stallman <rms@gnu.org>
parents:
15543
diff
changeset
|
6969 #endif |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
6970 } |
25012 | 6971 |
6972 | |
6973 /* Update the menu bar item list for frame F. This has to be done | |
6974 before we start to fill in any display lines, because it can call | |
6975 eval. | |
6976 | |
6977 If SAVE_MATCH_DATA is non-zero, we must save and restore it here. */ | |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
6978 |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
6979 static void |
11761
d110042c1d95
(prepare_menu_bars): Save and restore the match data.
Richard M. Stallman <rms@gnu.org>
parents:
11719
diff
changeset
|
6980 update_menu_bar (f, save_match_data) |
25012 | 6981 struct frame *f; |
11761
d110042c1d95
(prepare_menu_bars): Save and restore the match data.
Richard M. Stallman <rms@gnu.org>
parents:
11719
diff
changeset
|
6982 int save_match_data; |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
6983 { |
6872
7c12310c8b86
(update_menu_bar): Take frame as arg.
Richard M. Stallman <rms@gnu.org>
parents:
6741
diff
changeset
|
6984 Lisp_Object window; |
7c12310c8b86
(update_menu_bar): Take frame as arg.
Richard M. Stallman <rms@gnu.org>
parents:
6741
diff
changeset
|
6985 register struct window *w; |
11761
d110042c1d95
(prepare_menu_bars): Save and restore the match data.
Richard M. Stallman <rms@gnu.org>
parents:
11719
diff
changeset
|
6986 |
6872
7c12310c8b86
(update_menu_bar): Take frame as arg.
Richard M. Stallman <rms@gnu.org>
parents:
6741
diff
changeset
|
6987 window = FRAME_SELECTED_WINDOW (f); |
7c12310c8b86
(update_menu_bar): Take frame as arg.
Richard M. Stallman <rms@gnu.org>
parents:
6741
diff
changeset
|
6988 w = XWINDOW (window); |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
6989 |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
6990 if (update_mode_lines) |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
6991 w->update_mode_line = Qt; |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
6992 |
14265
9bc9be522a4d
(update_menu__ba, redisplay_window) :" Use FRAME_WINDOW_P
Geoff Voelker <voelker@cs.washington.edu>
parents:
14263
diff
changeset
|
6993 if (FRAME_WINDOW_P (f) |
13459
96fdfde22e87
(display_text_line): Get redisplay_end_trigger from window.
Richard M. Stallman <rms@gnu.org>
parents:
13419
diff
changeset
|
6994 ? |
32752
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32592
diff
changeset
|
6995 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined (macintosh) |
7096
a3bf30f1a408
(syms_of_xdisp): Set up Qmenu_bar_update_hook.
Richard M. Stallman <rms@gnu.org>
parents:
6896
diff
changeset
|
6996 FRAME_EXTERNAL_MENU_BAR (f) |
5676
b5027523c90d
Wed Jan 26 12:23:12 1994 Frederic Pierresteguy (fp@mole.gnu.ai.mit.edu)
Fred Pierresteguy <F.Pierresteguy@frcl.bull.fr>
parents:
5658
diff
changeset
|
6997 #else |
7096
a3bf30f1a408
(syms_of_xdisp): Set up Qmenu_bar_update_hook.
Richard M. Stallman <rms@gnu.org>
parents:
6896
diff
changeset
|
6998 FRAME_MENU_BAR_LINES (f) > 0 |
5676
b5027523c90d
Wed Jan 26 12:23:12 1994 Frederic Pierresteguy (fp@mole.gnu.ai.mit.edu)
Fred Pierresteguy <F.Pierresteguy@frcl.bull.fr>
parents:
5658
diff
changeset
|
6999 #endif |
13459
96fdfde22e87
(display_text_line): Get redisplay_end_trigger from window.
Richard M. Stallman <rms@gnu.org>
parents:
13419
diff
changeset
|
7000 : FRAME_MENU_BAR_LINES (f) > 0) |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
7001 { |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
7002 /* If the user has switched buffers or windows, we need to |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
7003 recompute to reflect the new bindings. But we'll |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
7004 recompute when update_mode_lines is set too; that means |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
7005 that people can use force-mode-line-update to request |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
7006 that the menu bar be recomputed. The adverse effect on |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
7007 the rest of the redisplay algorithm is about the same as |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
7008 windows_or_buffers_changed anyway. */ |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
7009 if (windows_or_buffers_changed |
7096
a3bf30f1a408
(syms_of_xdisp): Set up Qmenu_bar_update_hook.
Richard M. Stallman <rms@gnu.org>
parents:
6896
diff
changeset
|
7010 || !NILP (w->update_mode_line) |
15543
1047c2816dd4
(redisplay_internal): Use last_had_star to decide
Richard M. Stallman <rms@gnu.org>
parents:
15382
diff
changeset
|
7011 || ((BUF_SAVE_MODIFF (XBUFFER (w->buffer)) |
1047c2816dd4
(redisplay_internal): Use last_had_star to decide
Richard M. Stallman <rms@gnu.org>
parents:
15382
diff
changeset
|
7012 < BUF_MODIFF (XBUFFER (w->buffer))) |
1047c2816dd4
(redisplay_internal): Use last_had_star to decide
Richard M. Stallman <rms@gnu.org>
parents:
15382
diff
changeset
|
7013 != !NILP (w->last_had_star)) |
12022
497ad07c31c2
(update_menu_bar): Do update if region display has changed.
Karl Heuer <kwzh@gnu.org>
parents:
12017
diff
changeset
|
7014 || ((!NILP (Vtransient_mark_mode) |
497ad07c31c2
(update_menu_bar): Do update if region display has changed.
Karl Heuer <kwzh@gnu.org>
parents:
12017
diff
changeset
|
7015 && !NILP (XBUFFER (w->buffer)->mark_active)) |
497ad07c31c2
(update_menu_bar): Do update if region display has changed.
Karl Heuer <kwzh@gnu.org>
parents:
12017
diff
changeset
|
7016 != !NILP (w->region_showing))) |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
7017 { |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
7018 struct buffer *prev = current_buffer; |
33600
c5f64497e92c
Use BINDING_STACK_SIZE throughout.
Gerd Moellmann <gerd@gnu.org>
parents:
33594
diff
changeset
|
7019 int count = BINDING_STACK_SIZE (); |
11761
d110042c1d95
(prepare_menu_bars): Save and restore the match data.
Richard M. Stallman <rms@gnu.org>
parents:
11719
diff
changeset
|
7020 |
12171
1d5d8a256d88
(update_menu_bar): Use set_buffer_internal_1 to switch bufs.
Karl Heuer <kwzh@gnu.org>
parents:
12141
diff
changeset
|
7021 set_buffer_internal_1 (XBUFFER (w->buffer)); |
12017
0d73575a1c0e
(update_menu_bar): Reverse test of save_match_data.
Karl Heuer <kwzh@gnu.org>
parents:
11971
diff
changeset
|
7022 if (save_match_data) |
21179
482ff111ccbc
(message_dolog): Save and restore Vdeactivate_mark.
Richard M. Stallman <rms@gnu.org>
parents:
21028
diff
changeset
|
7023 record_unwind_protect (Fset_match_data, Fmatch_data (Qnil, Qnil)); |
12171
1d5d8a256d88
(update_menu_bar): Use set_buffer_internal_1 to switch bufs.
Karl Heuer <kwzh@gnu.org>
parents:
12141
diff
changeset
|
7024 if (NILP (Voverriding_local_map_menu_flag)) |
12263
6ceecf7d1ec3
(Qoverriding_terminal_local_map): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
12171
diff
changeset
|
7025 { |
6ceecf7d1ec3
(Qoverriding_terminal_local_map): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
12171
diff
changeset
|
7026 specbind (Qoverriding_terminal_local_map, Qnil); |
6ceecf7d1ec3
(Qoverriding_terminal_local_map): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
12171
diff
changeset
|
7027 specbind (Qoverriding_local_map, Qnil); |
6ceecf7d1ec3
(Qoverriding_terminal_local_map): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
12171
diff
changeset
|
7028 } |
11761
d110042c1d95
(prepare_menu_bars): Save and restore the match data.
Richard M. Stallman <rms@gnu.org>
parents:
11719
diff
changeset
|
7029 |
12141
9265a67ccf1a
(update_menu_bar): Run activate-menubar-hook
Karl Heuer <kwzh@gnu.org>
parents:
12081
diff
changeset
|
7030 /* Run the Lucid hook. */ |
9265a67ccf1a
(update_menu_bar): Run activate-menubar-hook
Karl Heuer <kwzh@gnu.org>
parents:
12081
diff
changeset
|
7031 call1 (Vrun_hooks, Qactivate_menubar_hook); |
25012 | 7032 |
12141
9265a67ccf1a
(update_menu_bar): Run activate-menubar-hook
Karl Heuer <kwzh@gnu.org>
parents:
12081
diff
changeset
|
7033 /* If it has changed current-menubar from previous value, |
25012 | 7034 really recompute the menu-bar from the value. */ |
12141
9265a67ccf1a
(update_menu_bar): Run activate-menubar-hook
Karl Heuer <kwzh@gnu.org>
parents:
12081
diff
changeset
|
7035 if (! NILP (Vlucid_menu_bar_dirty_flag)) |
9265a67ccf1a
(update_menu_bar): Run activate-menubar-hook
Karl Heuer <kwzh@gnu.org>
parents:
12081
diff
changeset
|
7036 call0 (Qrecompute_lucid_menubar); |
25012 | 7037 |
14299 | 7038 safe_run_hooks (Qmenu_bar_update_hook); |
6134
c656768172d2
(update_menu_bar): Change call to menu_bar_items.
Richard M. Stallman <rms@gnu.org>
parents:
6091
diff
changeset
|
7039 FRAME_MENU_BAR_ITEMS (f) = menu_bar_items (FRAME_MENU_BAR_ITEMS (f)); |
25012 | 7040 |
15543
1047c2816dd4
(redisplay_internal): Use last_had_star to decide
Richard M. Stallman <rms@gnu.org>
parents:
15382
diff
changeset
|
7041 /* Redisplay the menu bar in case we changed it. */ |
32752
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32592
diff
changeset
|
7042 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined (macintosh) |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32592
diff
changeset
|
7043 if (FRAME_WINDOW_P (f) |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32592
diff
changeset
|
7044 #if defined (macintosh) |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32592
diff
changeset
|
7045 /* All frames on Mac OS share the same menubar. So only the |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32592
diff
changeset
|
7046 selected frame should be allowed to set it. */ |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32592
diff
changeset
|
7047 && f == SELECTED_FRAME () |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32592
diff
changeset
|
7048 #endif |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32592
diff
changeset
|
7049 ) |
13459
96fdfde22e87
(display_text_line): Get redisplay_end_trigger from window.
Richard M. Stallman <rms@gnu.org>
parents:
13419
diff
changeset
|
7050 set_frame_menubar (f, 0, 0); |
15543
1047c2816dd4
(redisplay_internal): Use last_had_star to decide
Richard M. Stallman <rms@gnu.org>
parents:
15382
diff
changeset
|
7051 else |
1047c2816dd4
(redisplay_internal): Use last_had_star to decide
Richard M. Stallman <rms@gnu.org>
parents:
15382
diff
changeset
|
7052 /* On a terminal screen, the menu bar is an ordinary screen |
25012 | 7053 line, and this makes it get updated. */ |
15543
1047c2816dd4
(redisplay_internal): Use last_had_star to decide
Richard M. Stallman <rms@gnu.org>
parents:
15382
diff
changeset
|
7054 w->update_mode_line = Qt; |
1047c2816dd4
(redisplay_internal): Use last_had_star to decide
Richard M. Stallman <rms@gnu.org>
parents:
15382
diff
changeset
|
7055 #else /* ! (USE_X_TOOLKIT || HAVE_NTGUI) */ |
1047c2816dd4
(redisplay_internal): Use last_had_star to decide
Richard M. Stallman <rms@gnu.org>
parents:
15382
diff
changeset
|
7056 /* In the non-toolkit version, the menu bar is an ordinary screen |
1047c2816dd4
(redisplay_internal): Use last_had_star to decide
Richard M. Stallman <rms@gnu.org>
parents:
15382
diff
changeset
|
7057 line, and this makes it get updated. */ |
1047c2816dd4
(redisplay_internal): Use last_had_star to decide
Richard M. Stallman <rms@gnu.org>
parents:
15382
diff
changeset
|
7058 w->update_mode_line = Qt; |
1047c2816dd4
(redisplay_internal): Use last_had_star to decide
Richard M. Stallman <rms@gnu.org>
parents:
15382
diff
changeset
|
7059 #endif /* ! (USE_X_TOOLKIT || HAVE_NTGUI) */ |
11761
d110042c1d95
(prepare_menu_bars): Save and restore the match data.
Richard M. Stallman <rms@gnu.org>
parents:
11719
diff
changeset
|
7060 |
d110042c1d95
(prepare_menu_bars): Save and restore the match data.
Richard M. Stallman <rms@gnu.org>
parents:
11719
diff
changeset
|
7061 unbind_to (count, Qnil); |
12171
1d5d8a256d88
(update_menu_bar): Use set_buffer_internal_1 to switch bufs.
Karl Heuer <kwzh@gnu.org>
parents:
12141
diff
changeset
|
7062 set_buffer_internal_1 (prev); |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
7063 } |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
7064 } |
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
7065 } |
25012 | 7066 |
7067 | |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
7068 |
25012 | 7069 /*********************************************************************** |
25543 | 7070 Tool-bars |
25012 | 7071 ***********************************************************************/ |
7072 | |
7073 #ifdef HAVE_WINDOW_SYSTEM | |
7074 | |
25543 | 7075 /* Update the tool-bar item list for frame F. This has to be done |
25012 | 7076 before we start to fill in any display lines. Called from |
7077 prepare_menu_bars. If SAVE_MATCH_DATA is non-zero, we must save | |
7078 and restore it here. */ | |
7079 | |
7080 static void | |
25543 | 7081 update_tool_bar (f, save_match_data) |
25012 | 7082 struct frame *f; |
7083 int save_match_data; | |
7084 { | |
25543 | 7085 if (WINDOWP (f->tool_bar_window) |
7086 && XFASTINT (XWINDOW (f->tool_bar_window)->height) > 0) | |
25012 | 7087 { |
7088 Lisp_Object window; | |
7089 struct window *w; | |
7090 | |
7091 window = FRAME_SELECTED_WINDOW (f); | |
7092 w = XWINDOW (window); | |
7093 | |
7094 /* If the user has switched buffers or windows, we need to | |
7095 recompute to reflect the new bindings. But we'll | |
7096 recompute when update_mode_lines is set too; that means | |
7097 that people can use force-mode-line-update to request | |
7098 that the menu bar be recomputed. The adverse effect on | |
7099 the rest of the redisplay algorithm is about the same as | |
7100 windows_or_buffers_changed anyway. */ | |
7101 if (windows_or_buffers_changed | |
7102 || !NILP (w->update_mode_line) | |
7103 || ((BUF_SAVE_MODIFF (XBUFFER (w->buffer)) | |
7104 < BUF_MODIFF (XBUFFER (w->buffer))) | |
7105 != !NILP (w->last_had_star)) | |
7106 || ((!NILP (Vtransient_mark_mode) | |
7107 && !NILP (XBUFFER (w->buffer)->mark_active)) | |
7108 != !NILP (w->region_showing))) | |
7109 { | |
7110 struct buffer *prev = current_buffer; | |
33600
c5f64497e92c
Use BINDING_STACK_SIZE throughout.
Gerd Moellmann <gerd@gnu.org>
parents:
33594
diff
changeset
|
7111 int count = BINDING_STACK_SIZE (); |
25012 | 7112 |
7113 /* Set current_buffer to the buffer of the selected | |
7114 window of the frame, so that we get the right local | |
7115 keymaps. */ | |
7116 set_buffer_internal_1 (XBUFFER (w->buffer)); | |
7117 | |
7118 /* Save match data, if we must. */ | |
7119 if (save_match_data) | |
7120 record_unwind_protect (Fset_match_data, Fmatch_data (Qnil, Qnil)); | |
7121 | |
7122 /* Make sure that we don't accidentally use bogus keymaps. */ | |
7123 if (NILP (Voverriding_local_map_menu_flag)) | |
7124 { | |
7125 specbind (Qoverriding_terminal_local_map, Qnil); | |
7126 specbind (Qoverriding_local_map, Qnil); | |
7127 } | |
7128 | |
25543 | 7129 /* Build desired tool-bar items from keymaps. */ |
33762
07c6230bc933
(update_tool_bar, build_desired_tool_bar_string): Change
Gerd Moellmann <gerd@gnu.org>
parents:
33757
diff
changeset
|
7130 f->tool_bar_items |
07c6230bc933
(update_tool_bar, build_desired_tool_bar_string): Change
Gerd Moellmann <gerd@gnu.org>
parents:
33757
diff
changeset
|
7131 = tool_bar_items (f->tool_bar_items, &f->n_tool_bar_items); |
25012 | 7132 |
25543 | 7133 /* Redisplay the tool-bar in case we changed it. */ |
25012 | 7134 w->update_mode_line = Qt; |
7135 | |
7136 unbind_to (count, Qnil); | |
7137 set_buffer_internal_1 (prev); | |
7138 } | |
7139 } | |
7140 } | |
7141 | |
7142 | |
25543 | 7143 /* Set F->desired_tool_bar_string to a Lisp string representing frame |
33762
07c6230bc933
(update_tool_bar, build_desired_tool_bar_string): Change
Gerd Moellmann <gerd@gnu.org>
parents:
33757
diff
changeset
|
7144 F's desired tool-bar contents. F->tool_bar_items must have |
25012 | 7145 been set up previously by calling prepare_menu_bars. */ |
7146 | |
7147 static void | |
25543 | 7148 build_desired_tool_bar_string (f) |
25012 | 7149 struct frame *f; |
7150 { | |
35246
4e6bbe9c1780
(build_desired_tool_bar_string): Correct the computation
Gerd Moellmann <gerd@gnu.org>
parents:
35200
diff
changeset
|
7151 int i, size, size_needed; |
25012 | 7152 struct gcpro gcpro1, gcpro2, gcpro3; |
7153 Lisp_Object image, plist, props; | |
7154 | |
7155 image = plist = props = Qnil; | |
7156 GCPRO3 (image, plist, props); | |
7157 | |
25543 | 7158 /* Prepare F->desired_tool_bar_string. If we can reuse it, do so. |
25012 | 7159 Otherwise, make a new string. */ |
7160 | |
7161 /* The size of the string we might be able to reuse. */ | |
25543 | 7162 size = (STRINGP (f->desired_tool_bar_string) |
7163 ? XSTRING (f->desired_tool_bar_string)->size | |
25012 | 7164 : 0); |
7165 | |
25543 | 7166 /* Reuse f->desired_tool_bar_string, if possible. */ |
35246
4e6bbe9c1780
(build_desired_tool_bar_string): Correct the computation
Gerd Moellmann <gerd@gnu.org>
parents:
35200
diff
changeset
|
7167 size_needed = f->n_tool_bar_items; |
25012 | 7168 if (size < size_needed) |
28464
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28362
diff
changeset
|
7169 f->desired_tool_bar_string = Fmake_string (make_number (size_needed), |
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28362
diff
changeset
|
7170 make_number (' ')); |
25012 | 7171 else |
7172 { | |
7173 props = list4 (Qdisplay, Qnil, Qmenu_item, Qnil); | |
7174 Fremove_text_properties (make_number (0), make_number (size), | |
25543 | 7175 props, f->desired_tool_bar_string); |
25012 | 7176 } |
7177 | |
7178 /* Put a `display' property on the string for the images to display, | |
25543 | 7179 put a `menu_item' property on tool-bar items with a value that |
7180 is the index of the item in F's tool-bar item vector. */ | |
35246
4e6bbe9c1780
(build_desired_tool_bar_string): Correct the computation
Gerd Moellmann <gerd@gnu.org>
parents:
35200
diff
changeset
|
7181 for (i = 0; i < f->n_tool_bar_items; ++i) |
25012 | 7182 { |
33762
07c6230bc933
(update_tool_bar, build_desired_tool_bar_string): Change
Gerd Moellmann <gerd@gnu.org>
parents:
33757
diff
changeset
|
7183 #define PROP(IDX) AREF (f->tool_bar_items, i * TOOL_BAR_ITEM_NSLOTS + (IDX)) |
25543 | 7184 |
7185 int enabled_p = !NILP (PROP (TOOL_BAR_ITEM_ENABLED_P)); | |
7186 int selected_p = !NILP (PROP (TOOL_BAR_ITEM_SELECTED_P)); | |
35246
4e6bbe9c1780
(build_desired_tool_bar_string): Correct the computation
Gerd Moellmann <gerd@gnu.org>
parents:
35200
diff
changeset
|
7187 int margin, relief, idx, end; |
25012 | 7188 extern Lisp_Object QCrelief, QCmargin, QCalgorithm, Qimage; |
7189 extern Lisp_Object Qlaplace; | |
7190 | |
7191 /* If image is a vector, choose the image according to the | |
7192 button state. */ | |
25543 | 7193 image = PROP (TOOL_BAR_ITEM_IMAGES); |
25012 | 7194 if (VECTORP (image)) |
7195 { | |
7196 if (enabled_p) | |
7197 idx = (selected_p | |
25543 | 7198 ? TOOL_BAR_IMAGE_ENABLED_SELECTED |
7199 : TOOL_BAR_IMAGE_ENABLED_DESELECTED); | |
25012 | 7200 else |
7201 idx = (selected_p | |
25543 | 7202 ? TOOL_BAR_IMAGE_DISABLED_SELECTED |
7203 : TOOL_BAR_IMAGE_DISABLED_DESELECTED); | |
25012 | 7204 |
31650
8b3846ae64fe
(build_desired_tool_bar_string): For a toolbar item in
Gerd Moellmann <gerd@gnu.org>
parents:
31610
diff
changeset
|
7205 xassert (ASIZE (image) >= idx); |
8b3846ae64fe
(build_desired_tool_bar_string): For a toolbar item in
Gerd Moellmann <gerd@gnu.org>
parents:
31610
diff
changeset
|
7206 image = AREF (image, idx); |
8b3846ae64fe
(build_desired_tool_bar_string): For a toolbar item in
Gerd Moellmann <gerd@gnu.org>
parents:
31610
diff
changeset
|
7207 } |
8b3846ae64fe
(build_desired_tool_bar_string): For a toolbar item in
Gerd Moellmann <gerd@gnu.org>
parents:
31610
diff
changeset
|
7208 else |
8b3846ae64fe
(build_desired_tool_bar_string): For a toolbar item in
Gerd Moellmann <gerd@gnu.org>
parents:
31610
diff
changeset
|
7209 idx = -1; |
25012 | 7210 |
7211 /* Ignore invalid image specifications. */ | |
7212 if (!valid_image_p (image)) | |
7213 continue; | |
7214 | |
25543 | 7215 /* Display the tool-bar button pressed, or depressed. */ |
25012 | 7216 plist = Fcopy_sequence (XCDR (image)); |
7217 | |
7218 /* Compute margin and relief to draw. */ | |
25543 | 7219 relief = tool_bar_button_relief > 0 ? tool_bar_button_relief : 3; |
7220 margin = relief + max (0, tool_bar_button_margin); | |
7221 | |
7222 if (auto_raise_tool_bar_buttons_p) | |
25012 | 7223 { |
7224 /* Add a `:relief' property to the image spec if the item is | |
7225 selected. */ | |
7226 if (selected_p) | |
7227 { | |
7228 plist = Fplist_put (plist, QCrelief, make_number (-relief)); | |
7229 margin -= relief; | |
7230 } | |
7231 } | |
7232 else | |
7233 { | |
7234 /* If image is selected, display it pressed, i.e. with a | |
7235 negative relief. If it's not selected, display it with a | |
7236 raised relief. */ | |
7237 plist = Fplist_put (plist, QCrelief, | |
7238 (selected_p | |
7239 ? make_number (-relief) | |
7240 : make_number (relief))); | |
7241 margin -= relief; | |
7242 } | |
7243 | |
7244 /* Put a margin around the image. */ | |
7245 if (margin) | |
7246 plist = Fplist_put (plist, QCmargin, make_number (margin)); | |
7247 | |
31650
8b3846ae64fe
(build_desired_tool_bar_string): For a toolbar item in
Gerd Moellmann <gerd@gnu.org>
parents:
31610
diff
changeset
|
7248 /* If button is not enabled, and we don't have special images |
8b3846ae64fe
(build_desired_tool_bar_string): For a toolbar item in
Gerd Moellmann <gerd@gnu.org>
parents:
31610
diff
changeset
|
7249 for the disabled state, make the image appear disabled by |
25012 | 7250 applying an appropriate algorithm to it. */ |
31650
8b3846ae64fe
(build_desired_tool_bar_string): For a toolbar item in
Gerd Moellmann <gerd@gnu.org>
parents:
31610
diff
changeset
|
7251 if (!enabled_p && idx < 0) |
8b3846ae64fe
(build_desired_tool_bar_string): For a toolbar item in
Gerd Moellmann <gerd@gnu.org>
parents:
31610
diff
changeset
|
7252 plist = Fplist_put (plist, QCalgorithm, Qdisabled); |
25012 | 7253 |
7254 /* Put a `display' text property on the string for the image to | |
7255 display. Put a `menu-item' property on the string that gives | |
25543 | 7256 the start of this item's properties in the tool-bar items |
25012 | 7257 vector. */ |
7258 image = Fcons (Qimage, plist); | |
7259 props = list4 (Qdisplay, image, | |
35246
4e6bbe9c1780
(build_desired_tool_bar_string): Correct the computation
Gerd Moellmann <gerd@gnu.org>
parents:
35200
diff
changeset
|
7260 Qmenu_item, make_number (i * TOOL_BAR_ITEM_NSLOTS)); |
4e6bbe9c1780
(build_desired_tool_bar_string): Correct the computation
Gerd Moellmann <gerd@gnu.org>
parents:
35200
diff
changeset
|
7261 |
4e6bbe9c1780
(build_desired_tool_bar_string): Correct the computation
Gerd Moellmann <gerd@gnu.org>
parents:
35200
diff
changeset
|
7262 /* Let the last image hide all remaining spaces in the tool bar |
4e6bbe9c1780
(build_desired_tool_bar_string): Correct the computation
Gerd Moellmann <gerd@gnu.org>
parents:
35200
diff
changeset
|
7263 string. The string can be longer than needed when we reuse a |
4e6bbe9c1780
(build_desired_tool_bar_string): Correct the computation
Gerd Moellmann <gerd@gnu.org>
parents:
35200
diff
changeset
|
7264 previous string. */ |
4e6bbe9c1780
(build_desired_tool_bar_string): Correct the computation
Gerd Moellmann <gerd@gnu.org>
parents:
35200
diff
changeset
|
7265 if (i + 1 == f->n_tool_bar_items) |
4e6bbe9c1780
(build_desired_tool_bar_string): Correct the computation
Gerd Moellmann <gerd@gnu.org>
parents:
35200
diff
changeset
|
7266 end = XSTRING (f->desired_tool_bar_string)->size; |
4e6bbe9c1780
(build_desired_tool_bar_string): Correct the computation
Gerd Moellmann <gerd@gnu.org>
parents:
35200
diff
changeset
|
7267 else |
4e6bbe9c1780
(build_desired_tool_bar_string): Correct the computation
Gerd Moellmann <gerd@gnu.org>
parents:
35200
diff
changeset
|
7268 end = i + 1; |
4e6bbe9c1780
(build_desired_tool_bar_string): Correct the computation
Gerd Moellmann <gerd@gnu.org>
parents:
35200
diff
changeset
|
7269 Fadd_text_properties (make_number (i), make_number (end), |
25543 | 7270 props, f->desired_tool_bar_string); |
25012 | 7271 #undef PROP |
7272 } | |
7273 | |
7274 UNGCPRO; | |
7275 } | |
7276 | |
7277 | |
25543 | 7278 /* Display one line of the tool-bar of frame IT->f. */ |
25012 | 7279 |
7280 static void | |
25543 | 7281 display_tool_bar_line (it) |
25012 | 7282 struct it *it; |
7283 { | |
7284 struct glyph_row *row = it->glyph_row; | |
7285 int max_x = it->last_visible_x; | |
7286 struct glyph *last; | |
7287 | |
7288 prepare_desired_row (row); | |
7289 row->y = it->current_y; | |
34500
41ad2cf8ccb8
(display_tool_bar_line): Make sure that tool bar
Gerd Moellmann <gerd@gnu.org>
parents:
34479
diff
changeset
|
7290 |
41ad2cf8ccb8
(display_tool_bar_line): Make sure that tool bar
Gerd Moellmann <gerd@gnu.org>
parents:
34479
diff
changeset
|
7291 /* Note that this isn't made use of if the face hasn't a box, |
41ad2cf8ccb8
(display_tool_bar_line): Make sure that tool bar
Gerd Moellmann <gerd@gnu.org>
parents:
34479
diff
changeset
|
7292 so there's no need to check the face here. */ |
41ad2cf8ccb8
(display_tool_bar_line): Make sure that tool bar
Gerd Moellmann <gerd@gnu.org>
parents:
34479
diff
changeset
|
7293 it->start_of_box_run_p = 1; |
25012 | 7294 |
7295 while (it->current_x < max_x) | |
7296 { | |
7297 int x_before, x, n_glyphs_before, i, nglyphs; | |
7298 | |
7299 /* Get the next display element. */ | |
7300 if (!get_next_display_element (it)) | |
7301 break; | |
7302 | |
7303 /* Produce glyphs. */ | |
7304 x_before = it->current_x; | |
7305 n_glyphs_before = it->glyph_row->used[TEXT_AREA]; | |
7306 PRODUCE_GLYPHS (it); | |
7307 | |
7308 nglyphs = it->glyph_row->used[TEXT_AREA] - n_glyphs_before; | |
7309 i = 0; | |
7310 x = x_before; | |
7311 while (i < nglyphs) | |
7312 { | |
7313 struct glyph *glyph = row->glyphs[TEXT_AREA] + n_glyphs_before + i; | |
7314 | |
7315 if (x + glyph->pixel_width > max_x) | |
7316 { | |
7317 /* Glyph doesn't fit on line. */ | |
7318 it->glyph_row->used[TEXT_AREA] = n_glyphs_before + i; | |
7319 it->current_x = x; | |
7320 goto out; | |
7321 } | |
7322 | |
7323 ++it->hpos; | |
7324 x += glyph->pixel_width; | |
7325 ++i; | |
7326 } | |
7327 | |
7328 /* Stop at line ends. */ | |
7329 if (ITERATOR_AT_END_OF_LINE_P (it)) | |
7330 break; | |
7331 | |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
7332 set_iterator_to_next (it, 1); |
25012 | 7333 } |
7334 | |
7335 out:; | |
7336 | |
7337 row->displays_text_p = row->used[TEXT_AREA] != 0; | |
7338 extend_face_to_end_of_line (it); | |
7339 last = row->glyphs[TEXT_AREA] + row->used[TEXT_AREA] - 1; | |
7340 last->right_box_line_p = 1; | |
34500
41ad2cf8ccb8
(display_tool_bar_line): Make sure that tool bar
Gerd Moellmann <gerd@gnu.org>
parents:
34479
diff
changeset
|
7341 if (last == row->glyphs[TEXT_AREA]) |
41ad2cf8ccb8
(display_tool_bar_line): Make sure that tool bar
Gerd Moellmann <gerd@gnu.org>
parents:
34479
diff
changeset
|
7342 last->left_box_line_p = 1; |
25012 | 7343 compute_line_metrics (it); |
7344 | |
25543 | 7345 /* If line is empty, make it occupy the rest of the tool-bar. */ |
25012 | 7346 if (!row->displays_text_p) |
7347 { | |
25188
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
7348 row->height = row->phys_height = it->last_visible_y - row->y; |
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
7349 row->ascent = row->phys_ascent = 0; |
25012 | 7350 } |
7351 | |
7352 row->full_width_p = 1; | |
7353 row->continued_p = 0; | |
7354 row->truncated_on_left_p = 0; | |
7355 row->truncated_on_right_p = 0; | |
7356 | |
7357 it->current_x = it->hpos = 0; | |
7358 it->current_y += row->height; | |
7359 ++it->vpos; | |
7360 ++it->glyph_row; | |
7361 } | |
7362 | |
7363 | |
25543 | 7364 /* Value is the number of screen lines needed to make all tool-bar |
25012 | 7365 items of frame F visible. */ |
7366 | |
7367 static int | |
25543 | 7368 tool_bar_lines_needed (f) |
25012 | 7369 struct frame *f; |
7370 { | |
25543 | 7371 struct window *w = XWINDOW (f->tool_bar_window); |
25012 | 7372 struct it it; |
7373 | |
25543 | 7374 /* Initialize an iterator for iteration over |
7375 F->desired_tool_bar_string in the tool-bar window of frame F. */ | |
7376 init_iterator (&it, w, -1, -1, w->desired_matrix->rows, TOOL_BAR_FACE_ID); | |
25012 | 7377 it.first_visible_x = 0; |
7378 it.last_visible_x = FRAME_WINDOW_WIDTH (f) * CANON_X_UNIT (f); | |
25543 | 7379 reseat_to_string (&it, NULL, f->desired_tool_bar_string, 0, 0, 0, -1); |
25012 | 7380 |
7381 while (!ITERATOR_AT_END_P (&it)) | |
7382 { | |
7383 it.glyph_row = w->desired_matrix->rows; | |
7384 clear_glyph_row (it.glyph_row); | |
25543 | 7385 display_tool_bar_line (&it); |
25012 | 7386 } |
7387 | |
7388 return (it.current_y + CANON_Y_UNIT (f) - 1) / CANON_Y_UNIT (f); | |
7389 } | |
7390 | |
7391 | |
25543 | 7392 /* Display the tool-bar of frame F. Value is non-zero if tool-bar's |
25012 | 7393 height should be changed. */ |
7394 | |
7395 static int | |
25543 | 7396 redisplay_tool_bar (f) |
25012 | 7397 struct frame *f; |
7398 { | |
7399 struct window *w; | |
7400 struct it it; | |
7401 struct glyph_row *row; | |
7402 int change_height_p = 0; | |
7403 | |
25543 | 7404 /* If frame hasn't a tool-bar window or if it is zero-height, don't |
7405 do anything. This means you must start with tool-bar-lines | |
25012 | 7406 non-zero to get the auto-sizing effect. Or in other words, you |
25543 | 7407 can turn off tool-bars by specifying tool-bar-lines zero. */ |
7408 if (!WINDOWP (f->tool_bar_window) | |
7409 || (w = XWINDOW (f->tool_bar_window), | |
25012 | 7410 XFASTINT (w->height) == 0)) |
7411 return 0; | |
7412 | |
25543 | 7413 /* Set up an iterator for the tool-bar window. */ |
7414 init_iterator (&it, w, -1, -1, w->desired_matrix->rows, TOOL_BAR_FACE_ID); | |
25012 | 7415 it.first_visible_x = 0; |
7416 it.last_visible_x = FRAME_WINDOW_WIDTH (f) * CANON_X_UNIT (f); | |
7417 row = it.glyph_row; | |
7418 | |
25543 | 7419 /* Build a string that represents the contents of the tool-bar. */ |
7420 build_desired_tool_bar_string (f); | |
7421 reseat_to_string (&it, NULL, f->desired_tool_bar_string, 0, 0, 0, -1); | |
7422 | |
7423 /* Display as many lines as needed to display all tool-bar items. */ | |
25012 | 7424 while (it.current_y < it.last_visible_y) |
25543 | 7425 display_tool_bar_line (&it); |
7426 | |
7427 /* It doesn't make much sense to try scrolling in the tool-bar | |
25012 | 7428 window, so don't do it. */ |
7429 w->desired_matrix->no_scrolling_p = 1; | |
7430 w->must_be_updated_p = 1; | |
7431 | |
25543 | 7432 if (auto_resize_tool_bars_p) |
25012 | 7433 { |
7434 int nlines; | |
7435 | |
7436 /* If there are blank lines at the end, except for a partially | |
7437 visible blank line at the end that is smaller than | |
25543 | 7438 CANON_Y_UNIT, change the tool-bar's height. */ |
25012 | 7439 row = it.glyph_row - 1; |
7440 if (!row->displays_text_p | |
7441 && row->height >= CANON_Y_UNIT (f)) | |
7442 change_height_p = 1; | |
7443 | |
25543 | 7444 /* If row displays tool-bar items, but is partially visible, |
7445 change the tool-bar's height. */ | |
25012 | 7446 if (row->displays_text_p |
7447 && MATRIX_ROW_BOTTOM_Y (row) > it.last_visible_y) | |
7448 change_height_p = 1; | |
7449 | |
25543 | 7450 /* Resize windows as needed by changing the `tool-bar-lines' |
25012 | 7451 frame parameter. */ |
7452 if (change_height_p | |
25543 | 7453 && (nlines = tool_bar_lines_needed (f), |
25012 | 7454 nlines != XFASTINT (w->height))) |
7455 { | |
25543 | 7456 extern Lisp_Object Qtool_bar_lines; |
25012 | 7457 Lisp_Object frame; |
33099
006a1f5b5f43
(redisplay_tool_bar): Don't set fonts_changed_p if
Gerd Moellmann <gerd@gnu.org>
parents:
33074
diff
changeset
|
7458 int old_height = XFASTINT (w->height); |
25012 | 7459 |
7460 XSETFRAME (frame, f); | |
7461 clear_glyph_matrix (w->desired_matrix); | |
7462 Fmodify_frame_parameters (frame, | |
25543 | 7463 Fcons (Fcons (Qtool_bar_lines, |
25012 | 7464 make_number (nlines)), |
7465 Qnil)); | |
33099
006a1f5b5f43
(redisplay_tool_bar): Don't set fonts_changed_p if
Gerd Moellmann <gerd@gnu.org>
parents:
33074
diff
changeset
|
7466 if (XFASTINT (w->height) != old_height) |
006a1f5b5f43
(redisplay_tool_bar): Don't set fonts_changed_p if
Gerd Moellmann <gerd@gnu.org>
parents:
33074
diff
changeset
|
7467 fonts_changed_p = 1; |
25012 | 7468 } |
7469 } | |
7470 | |
7471 return change_height_p; | |
7472 } | |
7473 | |
7474 | |
25543 | 7475 /* Get information about the tool-bar item which is displayed in GLYPH |
7476 on frame F. Return in *PROP_IDX the index where tool-bar item | |
33762
07c6230bc933
(update_tool_bar, build_desired_tool_bar_string): Change
Gerd Moellmann <gerd@gnu.org>
parents:
33757
diff
changeset
|
7477 properties start in F->tool_bar_items. Value is zero if |
25543 | 7478 GLYPH doesn't display a tool-bar item. */ |
25012 | 7479 |
7480 int | |
25543 | 7481 tool_bar_item_info (f, glyph, prop_idx) |
25012 | 7482 struct frame *f; |
7483 struct glyph *glyph; | |
7484 int *prop_idx; | |
7485 { | |
7486 Lisp_Object prop; | |
7487 int success_p; | |
7488 | |
7489 /* Get the text property `menu-item' at pos. The value of that | |
7490 property is the start index of this item's properties in | |
33762
07c6230bc933
(update_tool_bar, build_desired_tool_bar_string): Change
Gerd Moellmann <gerd@gnu.org>
parents:
33757
diff
changeset
|
7491 F->tool_bar_items. */ |
25012 | 7492 prop = Fget_text_property (make_number (glyph->charpos), |
25543 | 7493 Qmenu_item, f->current_tool_bar_string); |
25012 | 7494 if (INTEGERP (prop)) |
7495 { | |
7496 *prop_idx = XINT (prop); | |
7497 success_p = 1; | |
7498 } | |
7499 else | |
7500 success_p = 0; | |
7501 | |
7502 return success_p; | |
7503 } | |
7504 | |
7505 #endif /* HAVE_WINDOW_SYSTEM */ | |
7506 | |
7507 | |
7508 | |
7509 /************************************************************************ | |
7510 Horizontal scrolling | |
7511 ************************************************************************/ | |
7512 | |
7513 static int hscroll_window_tree P_ ((Lisp_Object)); | |
7514 static int hscroll_windows P_ ((Lisp_Object)); | |
7515 | |
7516 /* For all leaf windows in the window tree rooted at WINDOW, set their | |
7517 hscroll value so that PT is (i) visible in the window, and (ii) so | |
7518 that it is not within a certain margin at the window's left and | |
7519 right border. Value is non-zero if any window's hscroll has been | |
7520 changed. */ | |
7521 | |
7522 static int | |
7523 hscroll_window_tree (window) | |
7524 Lisp_Object window; | |
7525 { | |
7526 int hscrolled_p = 0; | |
7527 | |
7528 while (WINDOWP (window)) | |
7529 { | |
7530 struct window *w = XWINDOW (window); | |
7531 | |
7532 if (WINDOWP (w->hchild)) | |
7533 hscrolled_p |= hscroll_window_tree (w->hchild); | |
7534 else if (WINDOWP (w->vchild)) | |
7535 hscrolled_p |= hscroll_window_tree (w->vchild); | |
7536 else if (w->cursor.vpos >= 0) | |
7537 { | |
7538 int hscroll_margin, text_area_x, text_area_y; | |
7539 int text_area_width, text_area_height; | |
25660
0072098f54df
(resize_mini_window): Add parameter exact_p. Resize
Gerd Moellmann <gerd@gnu.org>
parents:
25643
diff
changeset
|
7540 struct glyph_row *current_cursor_row |
0072098f54df
(resize_mini_window): Add parameter exact_p. Resize
Gerd Moellmann <gerd@gnu.org>
parents:
25643
diff
changeset
|
7541 = MATRIX_ROW (w->current_matrix, w->cursor.vpos); |
0072098f54df
(resize_mini_window): Add parameter exact_p. Resize
Gerd Moellmann <gerd@gnu.org>
parents:
25643
diff
changeset
|
7542 struct glyph_row *desired_cursor_row |
0072098f54df
(resize_mini_window): Add parameter exact_p. Resize
Gerd Moellmann <gerd@gnu.org>
parents:
25643
diff
changeset
|
7543 = MATRIX_ROW (w->desired_matrix, w->cursor.vpos); |
0072098f54df
(resize_mini_window): Add parameter exact_p. Resize
Gerd Moellmann <gerd@gnu.org>
parents:
25643
diff
changeset
|
7544 struct glyph_row *cursor_row |
0072098f54df
(resize_mini_window): Add parameter exact_p. Resize
Gerd Moellmann <gerd@gnu.org>
parents:
25643
diff
changeset
|
7545 = (desired_cursor_row->enabled_p |
0072098f54df
(resize_mini_window): Add parameter exact_p. Resize
Gerd Moellmann <gerd@gnu.org>
parents:
25643
diff
changeset
|
7546 ? desired_cursor_row |
0072098f54df
(resize_mini_window): Add parameter exact_p. Resize
Gerd Moellmann <gerd@gnu.org>
parents:
25643
diff
changeset
|
7547 : current_cursor_row); |
25012 | 7548 |
7549 window_box (w, TEXT_AREA, &text_area_x, &text_area_y, | |
7550 &text_area_width, &text_area_height); | |
7551 | |
7552 /* Scroll when cursor is inside this scroll margin. */ | |
7553 hscroll_margin = 5 * CANON_X_UNIT (XFRAME (w->frame)); | |
7554 | |
7555 if ((XFASTINT (w->hscroll) | |
7556 && w->cursor.x < hscroll_margin) | |
25660
0072098f54df
(resize_mini_window): Add parameter exact_p. Resize
Gerd Moellmann <gerd@gnu.org>
parents:
25643
diff
changeset
|
7557 || (cursor_row->enabled_p |
0072098f54df
(resize_mini_window): Add parameter exact_p. Resize
Gerd Moellmann <gerd@gnu.org>
parents:
25643
diff
changeset
|
7558 && cursor_row->truncated_on_right_p |
25012 | 7559 && (w->cursor.x > text_area_width - hscroll_margin))) |
7560 { | |
7561 struct it it; | |
7562 int hscroll; | |
7563 struct buffer *saved_current_buffer; | |
7564 int pt; | |
7565 | |
7566 /* Find point in a display of infinite width. */ | |
7567 saved_current_buffer = current_buffer; | |
7568 current_buffer = XBUFFER (w->buffer); | |
7569 | |
7570 if (w == XWINDOW (selected_window)) | |
7571 pt = BUF_PT (current_buffer); | |
7572 else | |
7573 { | |
7574 pt = marker_position (w->pointm); | |
7575 pt = max (BEGV, pt); | |
7576 pt = min (ZV, pt); | |
7577 } | |
7578 | |
7579 /* Move iterator to pt starting at cursor_row->start in | |
7580 a line with infinite width. */ | |
7581 init_to_row_start (&it, w, cursor_row); | |
7582 it.last_visible_x = INFINITY; | |
7583 move_it_in_display_line_to (&it, pt, -1, MOVE_TO_POS); | |
7584 current_buffer = saved_current_buffer; | |
7585 | |
7586 /* Center cursor in window. */ | |
7587 hscroll = (max (0, it.current_x - text_area_width / 2) | |
7588 / CANON_X_UNIT (it.f)); | |
34748
e978a3fb2690
(hscroll_window_tree): Take window's min_hscroll
Gerd Moellmann <gerd@gnu.org>
parents:
34743
diff
changeset
|
7589 hscroll = max (hscroll, XFASTINT (w->min_hscroll)); |
25012 | 7590 |
7591 /* Don't call Fset_window_hscroll if value hasn't | |
7592 changed because it will prevent redisplay | |
7593 optimizations. */ | |
7594 if (XFASTINT (w->hscroll) != hscroll) | |
7595 { | |
34748
e978a3fb2690
(hscroll_window_tree): Take window's min_hscroll
Gerd Moellmann <gerd@gnu.org>
parents:
34743
diff
changeset
|
7596 XBUFFER (w->buffer)->prevent_redisplay_optimizations_p = 1; |
e978a3fb2690
(hscroll_window_tree): Take window's min_hscroll
Gerd Moellmann <gerd@gnu.org>
parents:
34743
diff
changeset
|
7597 w->hscroll = make_number (hscroll); |
25012 | 7598 hscrolled_p = 1; |
7599 } | |
7600 } | |
7601 } | |
7602 | |
7603 window = w->next; | |
7604 } | |
7605 | |
7606 /* Value is non-zero if hscroll of any leaf window has been changed. */ | |
7607 return hscrolled_p; | |
7608 } | |
7609 | |
7610 | |
7611 /* Set hscroll so that cursor is visible and not inside horizontal | |
7612 scroll margins for all windows in the tree rooted at WINDOW. See | |
7613 also hscroll_window_tree above. Value is non-zero if any window's | |
7614 hscroll has been changed. If it has, desired matrices on the frame | |
7615 of WINDOW are cleared. */ | |
7616 | |
7617 static int | |
7618 hscroll_windows (window) | |
7619 Lisp_Object window; | |
7620 { | |
28692
a22cc42e941d
(init_iterator): Set iterator's extra_line_spacing
Gerd Moellmann <gerd@gnu.org>
parents:
28652
diff
changeset
|
7621 int hscrolled_p; |
a22cc42e941d
(init_iterator): Set iterator's extra_line_spacing
Gerd Moellmann <gerd@gnu.org>
parents:
28652
diff
changeset
|
7622 |
a22cc42e941d
(init_iterator): Set iterator's extra_line_spacing
Gerd Moellmann <gerd@gnu.org>
parents:
28652
diff
changeset
|
7623 if (automatic_hscrolling_p) |
a22cc42e941d
(init_iterator): Set iterator's extra_line_spacing
Gerd Moellmann <gerd@gnu.org>
parents:
28652
diff
changeset
|
7624 { |
a22cc42e941d
(init_iterator): Set iterator's extra_line_spacing
Gerd Moellmann <gerd@gnu.org>
parents:
28652
diff
changeset
|
7625 hscrolled_p = hscroll_window_tree (window); |
a22cc42e941d
(init_iterator): Set iterator's extra_line_spacing
Gerd Moellmann <gerd@gnu.org>
parents:
28652
diff
changeset
|
7626 if (hscrolled_p) |
a22cc42e941d
(init_iterator): Set iterator's extra_line_spacing
Gerd Moellmann <gerd@gnu.org>
parents:
28652
diff
changeset
|
7627 clear_desired_matrices (XFRAME (WINDOW_FRAME (XWINDOW (window)))); |
a22cc42e941d
(init_iterator): Set iterator's extra_line_spacing
Gerd Moellmann <gerd@gnu.org>
parents:
28652
diff
changeset
|
7628 } |
a22cc42e941d
(init_iterator): Set iterator's extra_line_spacing
Gerd Moellmann <gerd@gnu.org>
parents:
28652
diff
changeset
|
7629 else |
a22cc42e941d
(init_iterator): Set iterator's extra_line_spacing
Gerd Moellmann <gerd@gnu.org>
parents:
28652
diff
changeset
|
7630 hscrolled_p = 0; |
25012 | 7631 return hscrolled_p; |
7632 } | |
7633 | |
7634 | |
7635 | |
7636 /************************************************************************ | |
7637 Redisplay | |
7638 ************************************************************************/ | |
7639 | |
7640 /* Variables holding some state of redisplay if GLYPH_DEBUG is defined | |
7641 to a non-zero value. This is sometimes handy to have in a debugger | |
7642 session. */ | |
7643 | |
7644 #if GLYPH_DEBUG | |
7645 | |
7646 /* First and last unchanged row for try_window_id. */ | |
7647 | |
7648 int debug_first_unchanged_at_end_vpos; | |
7649 int debug_last_unchanged_at_beg_vpos; | |
7650 | |
7651 /* Delta vpos and y. */ | |
7652 | |
7653 int debug_dvpos, debug_dy; | |
7654 | |
7655 /* Delta in characters and bytes for try_window_id. */ | |
7656 | |
7657 int debug_delta, debug_delta_bytes; | |
7658 | |
7659 /* Values of window_end_pos and window_end_vpos at the end of | |
7660 try_window_id. */ | |
7661 | |
7662 int debug_end_pos, debug_end_vpos; | |
7663 | |
7664 /* Append a string to W->desired_matrix->method. FMT is a printf | |
7665 format string. A1...A9 are a supplement for a variable-length | |
7666 argument list. If trace_redisplay_p is non-zero also printf the | |
7667 resulting string to stderr. */ | |
7668 | |
7669 static void | |
7670 debug_method_add (w, fmt, a1, a2, a3, a4, a5, a6, a7, a8, a9) | |
7671 struct window *w; | |
7672 char *fmt; | |
7673 int a1, a2, a3, a4, a5, a6, a7, a8, a9; | |
7674 { | |
7675 char buffer[512]; | |
7676 char *method = w->desired_matrix->method; | |
7677 int len = strlen (method); | |
7678 int size = sizeof w->desired_matrix->method; | |
7679 int remaining = size - len - 1; | |
7680 | |
7681 sprintf (buffer, fmt, a1, a2, a3, a4, a5, a6, a7, a8, a9); | |
7682 if (len && remaining) | |
7683 { | |
7684 method[len] = '|'; | |
7685 --remaining, ++len; | |
7686 } | |
7687 | |
7688 strncpy (method + len, buffer, remaining); | |
7689 | |
7690 if (trace_redisplay_p) | |
7691 fprintf (stderr, "%p (%s): %s\n", | |
7692 w, | |
7693 ((BUFFERP (w->buffer) | |
7694 && STRINGP (XBUFFER (w->buffer)->name)) | |
7695 ? (char *) XSTRING (XBUFFER (w->buffer)->name)->data | |
7696 : "no buffer"), | |
7697 buffer); | |
7698 } | |
7699 | |
7700 #endif /* GLYPH_DEBUG */ | |
7701 | |
7702 | |
7703 /* This counter is used to clear the face cache every once in a while | |
7704 in redisplay_internal. It is incremented for each redisplay. | |
7705 Every CLEAR_FACE_CACHE_COUNT full redisplays, the face cache is | |
7706 cleared. */ | |
7707 | |
7708 #define CLEAR_FACE_CACHE_COUNT 10000 | |
7709 static int clear_face_cache_count; | |
7710 | |
7711 /* Record the previous terminal frame we displayed. */ | |
7712 | |
7713 static struct frame *previous_terminal_frame; | |
7714 | |
7715 /* Non-zero while redisplay_internal is in progress. */ | |
7716 | |
7717 int redisplaying_p; | |
7718 | |
7719 | |
7720 /* Value is non-zero if all changes in window W, which displays | |
7721 current_buffer, are in the text between START and END. START is a | |
7722 buffer position, END is given as a distance from Z. Used in | |
7723 redisplay_internal for display optimization. */ | |
7724 | |
7725 static INLINE int | |
7726 text_outside_line_unchanged_p (w, start, end) | |
7727 struct window *w; | |
7728 int start, end; | |
7729 { | |
7730 int unchanged_p = 1; | |
7731 | |
7732 /* If text or overlays have changed, see where. */ | |
7733 if (XFASTINT (w->last_modified) < MODIFF | |
7734 || XFASTINT (w->last_overlay_modified) < OVERLAY_MODIFF) | |
7735 { | |
7736 /* Gap in the line? */ | |
7737 if (GPT < start || Z - GPT < end) | |
7738 unchanged_p = 0; | |
7739 | |
7740 /* Changes start in front of the line, or end after it? */ | |
7741 if (unchanged_p | |
25377
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
7742 && (BEG_UNCHANGED < start - 1 |
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
7743 || END_UNCHANGED < end)) |
25012 | 7744 unchanged_p = 0; |
7745 | |
7746 /* If selective display, can't optimize if changes start at the | |
7747 beginning of the line. */ | |
7748 if (unchanged_p | |
7749 && INTEGERP (current_buffer->selective_display) | |
7750 && XINT (current_buffer->selective_display) > 0 | |
25377
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
7751 && (BEG_UNCHANGED < start || GPT <= start)) |
25012 | 7752 unchanged_p = 0; |
7753 } | |
7754 | |
7755 return unchanged_p; | |
7756 } | |
7757 | |
7758 | |
7759 /* Do a frame update, taking possible shortcuts into account. This is | |
7760 the main external entry point for redisplay. | |
7761 | |
7762 If the last redisplay displayed an echo area message and that message | |
7763 is no longer requested, we clear the echo area or bring back the | |
7764 mini-buffer if that is in use. */ | |
7765 | |
7766 void | |
7767 redisplay () | |
7768 { | |
7769 redisplay_internal (0); | |
7770 } | |
7771 | |
26874
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7772 /* Return 1 if point moved out of or into a composition. Otherwise |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7773 return 0. PREV_BUF and PREV_PT are the last point buffer and |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7774 position. BUF and PT are the current point buffer and position. */ |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7775 |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7776 int |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7777 check_point_in_composition (prev_buf, prev_pt, buf, pt) |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7778 struct buffer *prev_buf, *buf; |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7779 int prev_pt, pt; |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7780 { |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7781 int start, end; |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7782 Lisp_Object prop; |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7783 Lisp_Object buffer; |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7784 |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7785 XSETBUFFER (buffer, buf); |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7786 /* Check a composition at the last point if point moved within the |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7787 same buffer. */ |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7788 if (prev_buf == buf) |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7789 { |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7790 if (prev_pt == pt) |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7791 /* Point didn't move. */ |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7792 return 0; |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7793 |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7794 if (prev_pt > BUF_BEGV (buf) && prev_pt < BUF_ZV (buf) |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7795 && find_composition (prev_pt, -1, &start, &end, &prop, buffer) |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7796 && COMPOSITION_VALID_P (start, end, prop) |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7797 && start < prev_pt && end > prev_pt) |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7798 /* The last point was within the composition. Return 1 iff |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7799 point moved out of the composition. */ |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7800 return (pt <= start || pt >= end); |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7801 } |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7802 |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7803 /* Check a composition at the current point. */ |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7804 return (pt > BUF_BEGV (buf) && pt < BUF_ZV (buf) |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7805 && find_composition (pt, -1, &start, &end, &prop, buffer) |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7806 && COMPOSITION_VALID_P (start, end, prop) |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7807 && start < pt && end > pt); |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7808 } |
25012 | 7809 |
25377
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
7810 /* Reconsider the setting of B->clip_changed which is displayed |
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
7811 in window W. */ |
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
7812 |
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
7813 static INLINE void |
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
7814 reconsider_clip_changes (w, b) |
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
7815 struct window *w; |
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
7816 struct buffer *b; |
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
7817 { |
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
7818 if (b->prevent_redisplay_optimizations_p) |
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
7819 b->clip_changed = 1; |
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
7820 else if (b->clip_changed |
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
7821 && !NILP (w->window_end_valid) |
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
7822 && w->current_matrix->buffer == b |
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
7823 && w->current_matrix->zv == BUF_ZV (b) |
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
7824 && w->current_matrix->begv == BUF_BEGV (b)) |
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
7825 b->clip_changed = 0; |
26874
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7826 |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7827 /* If display wasn't paused, and W is not a tool bar window, see if |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7828 point has been moved into or out of a composition. In that case, |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7829 we set b->clip_changed to 1 to force updating the screen. If |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7830 b->clip_changed has already been set to 1, we can skip this |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7831 check. */ |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7832 if (!b->clip_changed |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7833 && BUFFERP (w->buffer) && !NILP (w->window_end_valid)) |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7834 { |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7835 int pt; |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7836 |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7837 if (w == XWINDOW (selected_window)) |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7838 pt = BUF_PT (current_buffer); |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7839 else |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7840 pt = marker_position (w->pointm); |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7841 |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7842 if ((w->current_matrix->buffer != XBUFFER (w->buffer) |
28464
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28362
diff
changeset
|
7843 || pt != XINT (w->last_point)) |
26874
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7844 && check_point_in_composition (w->current_matrix->buffer, |
28464
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28362
diff
changeset
|
7845 XINT (w->last_point), |
26874
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7846 XBUFFER (w->buffer), pt)) |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7847 b->clip_changed = 1; |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
7848 } |
25377
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
7849 } |
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
7850 |
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
7851 |
25012 | 7852 /* If PRESERVE_ECHO_AREA is nonzero, it means this redisplay is not in |
7853 response to any user action; therefore, we should preserve the echo | |
7854 area. (Actually, our caller does that job.) Perhaps in the future | |
7855 avoid recentering windows if it is not necessary; currently that | |
7856 causes some problems. */ | |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
7857 |
277 | 7858 static void |
25012 | 7859 redisplay_internal (preserve_echo_area) |
14662
9e8607589f03
(redisplay_internal): Renamed from redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
14614
diff
changeset
|
7860 int preserve_echo_area; |
277 | 7861 { |
25012 | 7862 struct window *w = XWINDOW (selected_window); |
7863 struct frame *f = XFRAME (w->frame); | |
7864 int pause; | |
7865 int must_finish = 0; | |
7866 struct text_pos tlbufpos, tlendpos; | |
7867 int number_of_visible_frames; | |
25316
561aa7ea85a7
(unwind_redisplay): New. Resets flag redisplaying_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25305
diff
changeset
|
7868 int count; |
25677
1223d6401ab2
(QCfile): Move here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
25660
diff
changeset
|
7869 struct frame *sf = SELECTED_FRAME (); |
25012 | 7870 |
7871 /* Non-zero means redisplay has to consider all windows on all | |
7872 frames. Zero means, only selected_window is considered. */ | |
7873 int consider_all_windows_p; | |
7874 | |
7875 TRACE ((stderr, "redisplay_internal %d\n", redisplaying_p)); | |
7876 | |
7877 /* No redisplay if running in batch mode or frame is not yet fully | |
7878 initialized, or redisplay is explicitly turned off by setting | |
7879 Vinhibit_redisplay. */ | |
7880 if (noninteractive | |
7881 || !NILP (Vinhibit_redisplay) | |
7882 || !f->glyphs_initialized_p) | |
7883 return; | |
7884 | |
7885 /* The flag redisplay_performed_directly_p is set by | |
7886 direct_output_for_insert when it already did the whole screen | |
7887 update necessary. */ | |
7888 if (redisplay_performed_directly_p) | |
7889 { | |
7890 redisplay_performed_directly_p = 0; | |
7891 if (!hscroll_windows (selected_window)) | |
7892 return; | |
7893 } | |
7894 | |
7895 #ifdef USE_X_TOOLKIT | |
7896 if (popup_activated ()) | |
7897 return; | |
7898 #endif | |
7899 | |
25316
561aa7ea85a7
(unwind_redisplay): New. Resets flag redisplaying_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25305
diff
changeset
|
7900 /* I don't think this happens but let's be paranoid. */ |
25012 | 7901 if (redisplaying_p) |
7902 return; | |
25316
561aa7ea85a7
(unwind_redisplay): New. Resets flag redisplaying_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25305
diff
changeset
|
7903 |
561aa7ea85a7
(unwind_redisplay): New. Resets flag redisplaying_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25305
diff
changeset
|
7904 /* Record a function that resets redisplaying_p to its old value |
561aa7ea85a7
(unwind_redisplay): New. Resets flag redisplaying_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25305
diff
changeset
|
7905 when we leave this function. */ |
33600
c5f64497e92c
Use BINDING_STACK_SIZE throughout.
Gerd Moellmann <gerd@gnu.org>
parents:
33594
diff
changeset
|
7906 count = BINDING_STACK_SIZE (); |
25316
561aa7ea85a7
(unwind_redisplay): New. Resets flag redisplaying_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25305
diff
changeset
|
7907 record_unwind_protect (unwind_redisplay, make_number (redisplaying_p)); |
25012 | 7908 ++redisplaying_p; |
25316
561aa7ea85a7
(unwind_redisplay): New. Resets flag redisplaying_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25305
diff
changeset
|
7909 |
25012 | 7910 retry: |
31170
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
7911 pause = 0; |
25377
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
7912 reconsider_clip_changes (w, current_buffer); |
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
7913 |
25012 | 7914 /* If new fonts have been loaded that make a glyph matrix adjustment |
7915 necessary, do it. */ | |
7916 if (fonts_changed_p) | |
7917 { | |
7918 adjust_glyphs (NULL); | |
7919 ++windows_or_buffers_changed; | |
7920 fonts_changed_p = 0; | |
7921 } | |
7922 | |
25677
1223d6401ab2
(QCfile): Move here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
25660
diff
changeset
|
7923 if (! FRAME_WINDOW_P (sf) |
1223d6401ab2
(QCfile): Move here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
25660
diff
changeset
|
7924 && previous_terminal_frame != sf) |
25012 | 7925 { |
7926 /* Since frames on an ASCII terminal share the same display | |
7927 area, displaying a different frame means redisplay the whole | |
7928 thing. */ | |
7929 windows_or_buffers_changed++; | |
25677
1223d6401ab2
(QCfile): Move here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
25660
diff
changeset
|
7930 SET_FRAME_GARBAGED (sf); |
1223d6401ab2
(QCfile): Move here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
25660
diff
changeset
|
7931 XSETFRAME (Vterminal_frame, sf); |
1223d6401ab2
(QCfile): Move here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
25660
diff
changeset
|
7932 } |
1223d6401ab2
(QCfile): Move here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
25660
diff
changeset
|
7933 previous_terminal_frame = sf; |
25012 | 7934 |
7935 /* Set the visible flags for all frames. Do this before checking | |
7936 for resized or garbaged frames; they want to know if their frames | |
7937 are visible. See the comment in frame.h for | |
7938 FRAME_SAMPLE_VISIBILITY. */ | |
7939 { | |
7940 Lisp_Object tail, frame; | |
7941 | |
7942 number_of_visible_frames = 0; | |
7943 | |
7944 FOR_EACH_FRAME (tail, frame) | |
7945 { | |
7946 struct frame *f = XFRAME (frame); | |
7947 | |
7948 FRAME_SAMPLE_VISIBILITY (f); | |
7949 if (FRAME_VISIBLE_P (f)) | |
7950 ++number_of_visible_frames; | |
7951 clear_desired_matrices (f); | |
7952 } | |
7953 } | |
7954 | |
7955 /* Notice any pending interrupt request to change frame size. */ | |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
7956 do_pending_window_change (1); |
25012 | 7957 |
7958 /* Clear frames marked as garbaged. */ | |
7959 if (frame_garbaged) | |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
7960 clear_garbaged_frames (); |
25012 | 7961 |
25543 | 7962 /* Build menubar and tool-bar items. */ |
25012 | 7963 prepare_menu_bars (); |
7964 | |
7965 if (windows_or_buffers_changed) | |
7966 update_mode_lines++; | |
7967 | |
7968 /* Detect case that we need to write or remove a star in the mode line. */ | |
7969 if ((SAVE_MODIFF < MODIFF) != !NILP (w->last_had_star)) | |
7970 { | |
7971 w->update_mode_line = Qt; | |
7972 if (buffer_shared > 1) | |
7973 update_mode_lines++; | |
7974 } | |
7975 | |
7976 /* If %c is in the mode line, update it if needed. */ | |
7977 if (!NILP (w->column_number_displayed) | |
7978 /* This alternative quickly identifies a common case | |
7979 where no change is needed. */ | |
7980 && !(PT == XFASTINT (w->last_point) | |
7981 && XFASTINT (w->last_modified) >= MODIFF | |
7982 && XFASTINT (w->last_overlay_modified) >= OVERLAY_MODIFF) | |
7983 && XFASTINT (w->column_number_displayed) != current_column ()) | |
7984 w->update_mode_line = Qt; | |
7985 | |
7986 FRAME_SCROLL_BOTTOM_VPOS (XFRAME (w->frame)) = -1; | |
7987 | |
7988 /* The variable buffer_shared is set in redisplay_window and | |
7989 indicates that we redisplay a buffer in different windows. See | |
7990 there. */ | |
7991 consider_all_windows_p = update_mode_lines || buffer_shared > 1; | |
7992 | |
7993 /* If specs for an arrow have changed, do thorough redisplay | |
7994 to ensure we remove any arrow that should no longer exist. */ | |
7995 if (! EQ (COERCE_MARKER (Voverlay_arrow_position), last_arrow_position) | |
7996 || ! EQ (Voverlay_arrow_string, last_arrow_string)) | |
7997 consider_all_windows_p = windows_or_buffers_changed = 1; | |
7998 | |
7999 /* Normally the message* functions will have already displayed and | |
8000 updated the echo area, but the frame may have been trashed, or | |
8001 the update may have been preempted, so display the echo area | |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
8002 again here. Checking both message buffers captures the case that |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
8003 the echo area should be cleared. */ |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
8004 if (!NILP (echo_area_buffer[0]) || !NILP (echo_area_buffer[1])) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
8005 { |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
8006 int window_height_changed_p = echo_area_display (0); |
25012 | 8007 must_finish = 1; |
25362
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
8008 |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
8009 if (fonts_changed_p) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
8010 goto retry; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
8011 else if (window_height_changed_p) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
8012 { |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
8013 consider_all_windows_p = 1; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
8014 ++update_mode_lines; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
8015 ++windows_or_buffers_changed; |
25377
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
8016 |
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
8017 /* If window configuration was changed, frames may have been |
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
8018 marked garbaged. Clear them or we will experience |
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
8019 surprises wrt scrolling. */ |
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
8020 if (frame_garbaged) |
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
8021 clear_garbaged_frames (); |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
8022 } |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
8023 } |
30942
8f6621d33f0b
(redisplay_internal): Compare windows for equality with
Gerd Moellmann <gerd@gnu.org>
parents:
30761
diff
changeset
|
8024 else if (EQ (selected_window, minibuf_window) |
25362
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
8025 && (current_buffer->clip_changed |
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
8026 || XFASTINT (w->last_modified) < MODIFF |
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
8027 || XFASTINT (w->last_overlay_modified) < OVERLAY_MODIFF) |
25660
0072098f54df
(resize_mini_window): Add parameter exact_p. Resize
Gerd Moellmann <gerd@gnu.org>
parents:
25643
diff
changeset
|
8028 && resize_mini_window (w, 0)) |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
8029 { |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
8030 /* Resized active mini-window to fit the size of what it is |
25362
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
8031 showing if its contents might have changed. */ |
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
8032 must_finish = 1; |
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
8033 consider_all_windows_p = 1; |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
8034 ++windows_or_buffers_changed; |
25362
4b8bf7aa0497
(resize_mini_window): Do it for truncate-lines t as
Gerd Moellmann <gerd@gnu.org>
parents:
25358
diff
changeset
|
8035 ++update_mode_lines; |
25377
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
8036 |
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
8037 /* If window configuration was changed, frames may have been |
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
8038 marked garbaged. Clear them or we will experience |
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
8039 surprises wrt scrolling. */ |
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
8040 if (frame_garbaged) |
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
8041 clear_garbaged_frames (); |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
8042 } |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
8043 |
25012 | 8044 |
8045 /* If showing the region, and mark has changed, we must redisplay | |
8046 the whole window. The assignment to this_line_start_pos prevents | |
8047 the optimization directly below this if-statement. */ | |
8048 if (((!NILP (Vtransient_mark_mode) | |
8049 && !NILP (XBUFFER (w->buffer)->mark_active)) | |
8050 != !NILP (w->region_showing)) | |
8051 || (!NILP (w->region_showing) | |
8052 && !EQ (w->region_showing, | |
8053 Fmarker_position (XBUFFER (w->buffer)->mark)))) | |
8054 CHARPOS (this_line_start_pos) = 0; | |
8055 | |
8056 /* Optimize the case that only the line containing the cursor in the | |
8057 selected window has changed. Variables starting with this_ are | |
8058 set in display_line and record information about the line | |
8059 containing the cursor. */ | |
8060 tlbufpos = this_line_start_pos; | |
8061 tlendpos = this_line_end_pos; | |
8062 if (!consider_all_windows_p | |
8063 && CHARPOS (tlbufpos) > 0 | |
8064 && NILP (w->update_mode_line) | |
8065 && !current_buffer->clip_changed | |
8066 && FRAME_VISIBLE_P (XFRAME (w->frame)) | |
8067 && !FRAME_OBSCURED_P (XFRAME (w->frame)) | |
8068 /* Make sure recorded data applies to current buffer, etc. */ | |
8069 && this_line_buffer == current_buffer | |
8070 && current_buffer == XBUFFER (w->buffer) | |
8071 && NILP (w->force_start) | |
8072 /* Point must be on the line that we have info recorded about. */ | |
8073 && PT >= CHARPOS (tlbufpos) | |
8074 && PT <= Z - CHARPOS (tlendpos) | |
8075 /* All text outside that line, including its final newline, | |
8076 must be unchanged */ | |
8077 && text_outside_line_unchanged_p (w, CHARPOS (tlbufpos), | |
8078 CHARPOS (tlendpos))) | |
8079 { | |
8080 if (CHARPOS (tlbufpos) > BEGV | |
8081 && FETCH_BYTE (BYTEPOS (tlbufpos) - 1) != '\n' | |
8082 && (CHARPOS (tlbufpos) == ZV | |
8083 || FETCH_BYTE (BYTEPOS (tlbufpos)) == '\n')) | |
8084 /* Former continuation line has disappeared by becoming empty */ | |
8085 goto cancel; | |
8086 else if (XFASTINT (w->last_modified) < MODIFF | |
8087 || XFASTINT (w->last_overlay_modified) < OVERLAY_MODIFF | |
8088 || MINI_WINDOW_P (w)) | |
8089 { | |
8090 /* We have to handle the case of continuation around a | |
8091 wide-column character (See the comment in indent.c around | |
8092 line 885). | |
8093 | |
8094 For instance, in the following case: | |
8095 | |
8096 -------- Insert -------- | |
8097 K_A_N_\\ `a' K_A_N_a\ `X_' are wide-column chars. | |
8098 J_I_ ==> J_I_ `^^' are cursors. | |
8099 ^^ ^^ | |
8100 -------- -------- | |
8101 | |
8102 As we have to redraw the line above, we should goto cancel. */ | |
8103 | |
8104 struct it it; | |
8105 int line_height_before = this_line_pixel_height; | |
8106 | |
8107 /* Note that start_display will handle the case that the | |
8108 line starting at tlbufpos is a continuation lines. */ | |
8109 start_display (&it, w, tlbufpos); | |
8110 | |
8111 /* Implementation note: It this still necessary? */ | |
8112 if (it.current_x != this_line_start_x) | |
8113 goto cancel; | |
8114 | |
8115 TRACE ((stderr, "trying display optimization 1\n")); | |
8116 w->cursor.vpos = -1; | |
8117 overlay_arrow_seen = 0; | |
8118 it.vpos = this_line_vpos; | |
8119 it.current_y = this_line_y; | |
8120 it.glyph_row = MATRIX_ROW (w->desired_matrix, this_line_vpos); | |
8121 display_line (&it); | |
8122 | |
8123 /* If line contains point, is not continued, | |
8124 and ends at same distance from eob as before, we win */ | |
8125 if (w->cursor.vpos >= 0 | |
8126 /* Line is not continued, otherwise this_line_start_pos | |
8127 would have been set to 0 in display_line. */ | |
8128 && CHARPOS (this_line_start_pos) | |
8129 /* Line ends as before. */ | |
8130 && CHARPOS (this_line_end_pos) == CHARPOS (tlendpos) | |
8131 /* Line has same height as before. Otherwise other lines | |
8132 would have to be shifted up or down. */ | |
8133 && this_line_pixel_height == line_height_before) | |
8134 { | |
8135 /* If this is not the window's last line, we must adjust | |
8136 the charstarts of the lines below. */ | |
8137 if (it.current_y < it.last_visible_y) | |
8138 { | |
8139 struct glyph_row *row | |
8140 = MATRIX_ROW (w->current_matrix, this_line_vpos + 1); | |
8141 int delta, delta_bytes; | |
8142 | |
8143 if (Z - CHARPOS (tlendpos) == ZV) | |
8144 { | |
8145 /* This line ends at end of (accessible part of) | |
8146 buffer. There is no newline to count. */ | |
8147 delta = (Z | |
8148 - CHARPOS (tlendpos) | |
8149 - MATRIX_ROW_START_CHARPOS (row)); | |
8150 delta_bytes = (Z_BYTE | |
8151 - BYTEPOS (tlendpos) | |
8152 - MATRIX_ROW_START_BYTEPOS (row)); | |
8153 } | |
8154 else | |
8155 { | |
8156 /* This line ends in a newline. Must take | |
8157 account of the newline and the rest of the | |
8158 text that follows. */ | |
8159 delta = (Z | |
8160 - CHARPOS (tlendpos) | |
8161 - MATRIX_ROW_START_CHARPOS (row)); | |
8162 delta_bytes = (Z_BYTE | |
8163 - BYTEPOS (tlendpos) | |
8164 - MATRIX_ROW_START_BYTEPOS (row)); | |
8165 } | |
8166 | |
28709
7606937fa891
(try_window_id) <all changes above window start>: Adjust
Gerd Moellmann <gerd@gnu.org>
parents:
28692
diff
changeset
|
8167 increment_matrix_positions (w->current_matrix, |
7606937fa891
(try_window_id) <all changes above window start>: Adjust
Gerd Moellmann <gerd@gnu.org>
parents:
28692
diff
changeset
|
8168 this_line_vpos + 1, |
7606937fa891
(try_window_id) <all changes above window start>: Adjust
Gerd Moellmann <gerd@gnu.org>
parents:
28692
diff
changeset
|
8169 w->current_matrix->nrows, |
7606937fa891
(try_window_id) <all changes above window start>: Adjust
Gerd Moellmann <gerd@gnu.org>
parents:
28692
diff
changeset
|
8170 delta, delta_bytes); |
25012 | 8171 } |
8172 | |
8173 /* If this row displays text now but previously didn't, | |
8174 or vice versa, w->window_end_vpos may have to be | |
8175 adjusted. */ | |
8176 if ((it.glyph_row - 1)->displays_text_p) | |
8177 { | |
8178 if (XFASTINT (w->window_end_vpos) < this_line_vpos) | |
8179 XSETINT (w->window_end_vpos, this_line_vpos); | |
8180 } | |
8181 else if (XFASTINT (w->window_end_vpos) == this_line_vpos | |
8182 && this_line_vpos > 0) | |
8183 XSETINT (w->window_end_vpos, this_line_vpos - 1); | |
8184 w->window_end_valid = Qnil; | |
8185 | |
8186 /* Update hint: No need to try to scroll in update_window. */ | |
8187 w->desired_matrix->no_scrolling_p = 1; | |
8188 | |
8189 #if GLYPH_DEBUG | |
8190 *w->desired_matrix->method = 0; | |
8191 debug_method_add (w, "optimization 1"); | |
8192 #endif | |
8193 goto update; | |
8194 } | |
8195 else | |
8196 goto cancel; | |
8197 } | |
8198 else if (/* Cursor position hasn't changed. */ | |
8199 PT == XFASTINT (w->last_point) | |
8200 /* Make sure the cursor was last displayed | |
8201 in this window. Otherwise we have to reposition it. */ | |
8202 && 0 <= w->cursor.vpos | |
8203 && XINT (w->height) > w->cursor.vpos) | |
8204 { | |
8205 if (!must_finish) | |
8206 { | |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
8207 do_pending_window_change (1); |
25012 | 8208 |
8209 /* We used to always goto end_of_redisplay here, but this | |
8210 isn't enough if we have a blinking cursor. */ | |
8211 if (w->cursor_off_p == w->last_cursor_off_p) | |
8212 goto end_of_redisplay; | |
8213 } | |
8214 goto update; | |
8215 } | |
8216 /* If highlighting the region, or if the cursor is in the echo area, | |
8217 then we can't just move the cursor. */ | |
8218 else if (! (!NILP (Vtransient_mark_mode) | |
8219 && !NILP (current_buffer->mark_active)) | |
30942
8f6621d33f0b
(redisplay_internal): Compare windows for equality with
Gerd Moellmann <gerd@gnu.org>
parents:
30761
diff
changeset
|
8220 && (EQ (selected_window, current_buffer->last_selected_window) |
25012 | 8221 || highlight_nonselected_windows) |
8222 && NILP (w->region_showing) | |
25305
273b3c17ce68
(Qshow_trailing_whitespace): Removed.
Gerd Moellmann <gerd@gnu.org>
parents:
25258
diff
changeset
|
8223 && NILP (Vshow_trailing_whitespace) |
25012 | 8224 && !cursor_in_echo_area) |
8225 { | |
8226 struct it it; | |
8227 struct glyph_row *row; | |
8228 | |
8229 /* Skip from tlbufpos to PT and see where it is. Note that | |
8230 PT may be in invisible text. If so, we will end at the | |
8231 next visible position. */ | |
8232 init_iterator (&it, w, CHARPOS (tlbufpos), BYTEPOS (tlbufpos), | |
8233 NULL, DEFAULT_FACE_ID); | |
8234 it.current_x = this_line_start_x; | |
8235 it.current_y = this_line_y; | |
8236 it.vpos = this_line_vpos; | |
8237 | |
8238 /* The call to move_it_to stops in front of PT, but | |
8239 moves over before-strings. */ | |
8240 move_it_to (&it, PT, -1, -1, -1, MOVE_TO_POS); | |
8241 | |
8242 if (it.vpos == this_line_vpos | |
8243 && (row = MATRIX_ROW (w->current_matrix, this_line_vpos), | |
8244 row->enabled_p)) | |
8245 { | |
8246 xassert (this_line_vpos == it.vpos); | |
8247 xassert (this_line_y == it.current_y); | |
8248 set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0); | |
8249 goto update; | |
8250 } | |
8251 else | |
8252 goto cancel; | |
8253 } | |
8254 | |
8255 cancel: | |
8256 /* Text changed drastically or point moved off of line. */ | |
8257 SET_MATRIX_ROW_ENABLED_P (w->desired_matrix, this_line_vpos, 0); | |
8258 } | |
8259 | |
8260 CHARPOS (this_line_start_pos) = 0; | |
8261 consider_all_windows_p |= buffer_shared > 1; | |
8262 ++clear_face_cache_count; | |
8263 | |
8264 | |
31170
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8265 /* Build desired matrices, and update the display. If |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8266 consider_all_windows_p is non-zero, do it for all windows on all |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8267 frames. Otherwise do it for selected_window, only. */ |
25012 | 8268 |
8269 if (consider_all_windows_p) | |
8270 { | |
8271 Lisp_Object tail, frame; | |
8272 | |
8273 /* Clear the face cache eventually. */ | |
8274 if (clear_face_cache_count > CLEAR_FACE_CACHE_COUNT) | |
8275 { | |
8276 clear_face_cache (0); | |
8277 clear_face_cache_count = 0; | |
8278 } | |
8279 | |
8280 /* Recompute # windows showing selected buffer. This will be | |
8281 incremented each time such a window is displayed. */ | |
8282 buffer_shared = 0; | |
8283 | |
8284 FOR_EACH_FRAME (tail, frame) | |
8285 { | |
8286 struct frame *f = XFRAME (frame); | |
31170
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8287 |
25677
1223d6401ab2
(QCfile): Move here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
25660
diff
changeset
|
8288 if (FRAME_WINDOW_P (f) || f == sf) |
25012 | 8289 { |
8290 /* Mark all the scroll bars to be removed; we'll redeem | |
8291 the ones we want when we redisplay their windows. */ | |
8292 if (condemn_scroll_bars_hook) | |
34844 | 8293 condemn_scroll_bars_hook (f); |
25012 | 8294 |
8295 if (FRAME_VISIBLE_P (f) && !FRAME_OBSCURED_P (f)) | |
8296 redisplay_windows (FRAME_ROOT_WINDOW (f)); | |
8297 | |
8298 /* Any scroll bars which redisplay_windows should have | |
8299 nuked should now go away. */ | |
8300 if (judge_scroll_bars_hook) | |
34844 | 8301 judge_scroll_bars_hook (f); |
31170
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8302 |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8303 /* If fonts changed, display again. */ |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8304 if (fonts_changed_p) |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8305 goto retry; |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8306 |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8307 if (FRAME_VISIBLE_P (f) && !FRAME_OBSCURED_P (f)) |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8308 { |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8309 /* See if we have to hscroll. */ |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8310 if (hscroll_windows (f->root_window)) |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8311 goto retry; |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8312 |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8313 /* Prevent various kinds of signals during display |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8314 update. stdio is not robust about handling |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8315 signals, which can cause an apparent I/O |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8316 error. */ |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8317 if (interrupt_input) |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8318 unrequest_sigio (); |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8319 stop_polling (); |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8320 |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8321 /* Update the display. */ |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8322 set_window_update_flags (XWINDOW (f->root_window), 1); |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8323 pause |= update_frame (f, 0, 0); |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8324 if (pause) |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8325 break; |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8326 |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8327 mark_window_display_accurate (f->root_window, 1); |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8328 if (frame_up_to_date_hook) |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8329 frame_up_to_date_hook (f); |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8330 } |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8331 } |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8332 } |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8333 } |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8334 else if (FRAME_VISIBLE_P (sf) && !FRAME_OBSCURED_P (sf)) |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8335 { |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8336 Lisp_Object mini_window; |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8337 struct frame *mini_frame; |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8338 |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8339 redisplay_window (selected_window, 1); |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8340 |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8341 /* Compare desired and current matrices, perform output. */ |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8342 update: |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8343 |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8344 /* If fonts changed, display again. */ |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8345 if (fonts_changed_p) |
25660
0072098f54df
(resize_mini_window): Add parameter exact_p. Resize
Gerd Moellmann <gerd@gnu.org>
parents:
25643
diff
changeset
|
8346 goto retry; |
25012 | 8347 |
31170
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8348 /* Prevent various kinds of signals during display update. |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8349 stdio is not robust about handling signals, |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8350 which can cause an apparent I/O error. */ |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8351 if (interrupt_input) |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8352 unrequest_sigio (); |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8353 stop_polling (); |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8354 |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8355 if (FRAME_VISIBLE_P (sf) && !FRAME_OBSCURED_P (sf)) |
25012 | 8356 { |
25660
0072098f54df
(resize_mini_window): Add parameter exact_p. Resize
Gerd Moellmann <gerd@gnu.org>
parents:
25643
diff
changeset
|
8357 if (hscroll_windows (selected_window)) |
0072098f54df
(resize_mini_window): Add parameter exact_p. Resize
Gerd Moellmann <gerd@gnu.org>
parents:
25643
diff
changeset
|
8358 goto retry; |
0072098f54df
(resize_mini_window): Add parameter exact_p. Resize
Gerd Moellmann <gerd@gnu.org>
parents:
25643
diff
changeset
|
8359 |
25012 | 8360 XWINDOW (selected_window)->must_be_updated_p = 1; |
25677
1223d6401ab2
(QCfile): Move here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
25660
diff
changeset
|
8361 pause = update_frame (sf, 0, 0); |
25012 | 8362 } |
8363 | |
8364 /* We may have called echo_area_display at the top of this | |
8365 function. If the echo area is on another frame, that may | |
8366 have put text on a frame other than the selected one, so the | |
8367 above call to update_frame would not have caught it. Catch | |
8368 it here. */ | |
31170
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8369 mini_window = FRAME_MINIBUF_WINDOW (sf); |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8370 mini_frame = XFRAME (WINDOW_FRAME (XWINDOW (mini_window))); |
25012 | 8371 |
31170
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8372 if (mini_frame != sf && FRAME_WINDOW_P (mini_frame)) |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8373 { |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8374 XWINDOW (mini_window)->must_be_updated_p = 1; |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8375 pause |= update_frame (mini_frame, 0, 0); |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8376 if (!pause && hscroll_windows (mini_window)) |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8377 goto retry; |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
8378 } |
25012 | 8379 } |
8380 | |
8381 /* If display was paused because of pending input, make sure we do a | |
8382 thorough update the next time. */ | |
8383 if (pause) | |
8384 { | |
8385 /* Prevent the optimization at the beginning of | |
8386 redisplay_internal that tries a single-line update of the | |
8387 line containing the cursor in the selected window. */ | |
8388 CHARPOS (this_line_start_pos) = 0; | |
8389 | |
8390 /* Let the overlay arrow be updated the next time. */ | |
8391 if (!NILP (last_arrow_position)) | |
8392 { | |
8393 last_arrow_position = Qt; | |
8394 last_arrow_string = Qt; | |
8395 } | |
8396 | |
8397 /* If we pause after scrolling, some rows in the current | |
8398 matrices of some windows are not valid. */ | |
8399 if (!WINDOW_FULL_WIDTH_P (w) | |
8400 && !FRAME_WINDOW_P (XFRAME (w->frame))) | |
8401 update_mode_lines = 1; | |
8402 } | |
8403 | |
8404 /* Now text on frame agrees with windows, so put info into the | |
8405 windows for partial redisplay to follow. */ | |
8406 if (!pause) | |
8407 { | |
8408 register struct buffer *b = XBUFFER (w->buffer); | |
8409 | |
25377
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
8410 BUF_UNCHANGED_MODIFIED (b) = BUF_MODIFF (b); |
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
8411 BUF_OVERLAY_UNCHANGED_MODIFIED (b) = BUF_OVERLAY_MODIFF (b); |
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
8412 BUF_BEG_UNCHANGED (b) = BUF_GPT (b) - BUF_BEG (b); |
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
8413 BUF_END_UNCHANGED (b) = BUF_Z (b) - BUF_GPT (b); |
25012 | 8414 |
8415 if (consider_all_windows_p) | |
25677
1223d6401ab2
(QCfile): Move here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
25660
diff
changeset
|
8416 mark_window_display_accurate (FRAME_ROOT_WINDOW (sf), 1); |
25012 | 8417 else |
8418 { | |
8419 XSETFASTINT (w->last_point, BUF_PT (b)); | |
8420 w->last_cursor = w->cursor; | |
8421 w->last_cursor_off_p = w->cursor_off_p; | |
8422 | |
8423 b->clip_changed = 0; | |
25377
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
8424 b->prevent_redisplay_optimizations_p = 0; |
25012 | 8425 w->update_mode_line = Qnil; |
8426 XSETFASTINT (w->last_modified, BUF_MODIFF (b)); | |
8427 XSETFASTINT (w->last_overlay_modified, BUF_OVERLAY_MODIFF (b)); | |
8428 w->last_had_star | |
8429 = (BUF_MODIFF (XBUFFER (w->buffer)) > BUF_SAVE_MODIFF (XBUFFER (w->buffer)) | |
8430 ? Qt : Qnil); | |
8431 | |
8432 /* Record if we are showing a region, so can make sure to | |
8433 update it fully at next redisplay. */ | |
8434 w->region_showing = (!NILP (Vtransient_mark_mode) | |
30942
8f6621d33f0b
(redisplay_internal): Compare windows for equality with
Gerd Moellmann <gerd@gnu.org>
parents:
30761
diff
changeset
|
8435 && (EQ (selected_window, |
8f6621d33f0b
(redisplay_internal): Compare windows for equality with
Gerd Moellmann <gerd@gnu.org>
parents:
30761
diff
changeset
|
8436 current_buffer->last_selected_window) |
25012 | 8437 || highlight_nonselected_windows) |
8438 && !NILP (XBUFFER (w->buffer)->mark_active) | |
8439 ? Fmarker_position (XBUFFER (w->buffer)->mark) | |
8440 : Qnil); | |
8441 | |
8442 w->window_end_valid = w->buffer; | |
8443 last_arrow_position = COERCE_MARKER (Voverlay_arrow_position); | |
8444 last_arrow_string = Voverlay_arrow_string; | |
8445 if (frame_up_to_date_hook != 0) | |
25677
1223d6401ab2
(QCfile): Move here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
25660
diff
changeset
|
8446 (*frame_up_to_date_hook) (sf); |
25377
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
8447 |
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
8448 w->current_matrix->buffer = b; |
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
8449 w->current_matrix->begv = BUF_BEGV (b); |
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
8450 w->current_matrix->zv = BUF_ZV (b); |
25012 | 8451 } |
28206
07ac059dece0
(handle_single_display_prop): Initialize local `value'.
Gerd Moellmann <gerd@gnu.org>
parents:
28047
diff
changeset
|
8452 |
25012 | 8453 update_mode_lines = 0; |
8454 windows_or_buffers_changed = 0; | |
8455 } | |
8456 | |
8457 /* Start SIGIO interrupts coming again. Having them off during the | |
8458 code above makes it less likely one will discard output, but not | |
8459 impossible, since there might be stuff in the system buffer here. | |
8460 But it is much hairier to try to do anything about that. */ | |
8461 if (interrupt_input) | |
8462 request_sigio (); | |
8463 start_polling (); | |
8464 | |
8465 /* If a frame has become visible which was not before, redisplay | |
8466 again, so that we display it. Expose events for such a frame | |
8467 (which it gets when becoming visible) don't call the parts of | |
8468 redisplay constructing glyphs, so simply exposing a frame won't | |
8469 display anything in this case. So, we have to display these | |
8470 frames here explicitly. */ | |
8471 if (!pause) | |
8472 { | |
8473 Lisp_Object tail, frame; | |
8474 int new_count = 0; | |
8475 | |
8476 FOR_EACH_FRAME (tail, frame) | |
8477 { | |
8478 int this_is_visible = 0; | |
8479 | |
8480 if (XFRAME (frame)->visible) | |
8481 this_is_visible = 1; | |
8482 FRAME_SAMPLE_VISIBILITY (XFRAME (frame)); | |
8483 if (XFRAME (frame)->visible) | |
8484 this_is_visible = 1; | |
8485 | |
8486 if (this_is_visible) | |
8487 new_count++; | |
8488 } | |
8489 | |
8490 if (new_count != number_of_visible_frames) | |
8491 windows_or_buffers_changed++; | |
8492 } | |
8493 | |
8494 /* Change frame size now if a change is pending. */ | |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
8495 do_pending_window_change (1); |
25012 | 8496 |
8497 /* If we just did a pending size change, or have additional | |
8498 visible frames, redisplay again. */ | |
8499 if (windows_or_buffers_changed && !pause) | |
8500 goto retry; | |
8501 | |
8502 end_of_redisplay:; | |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
8503 |
25316
561aa7ea85a7
(unwind_redisplay): New. Resets flag redisplaying_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25305
diff
changeset
|
8504 unbind_to (count, Qnil); |
25012 | 8505 } |
8506 | |
8507 | |
8508 /* Redisplay, but leave alone any recent echo area message unless | |
8509 another message has been requested in its place. | |
8510 | |
8511 This is useful in situations where you need to redisplay but no | |
8512 user action has occurred, making it inappropriate for the message | |
8513 area to be cleared. See tracking_off and | |
8514 wait_reading_process_input for examples of these situations. */ | |
8515 | |
8516 void | |
8517 redisplay_preserve_echo_area () | |
8518 { | |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
8519 if (!NILP (echo_area_buffer[1])) |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
8520 { |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
8521 /* We have a previously displayed message, but no current |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
8522 message. Redisplay the previous message. */ |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
8523 display_last_displayed_message_p = 1; |
25012 | 8524 redisplay_internal (1); |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
8525 display_last_displayed_message_p = 0; |
25012 | 8526 } |
8527 else | |
8528 redisplay_internal (1); | |
8529 } | |
8530 | |
8531 | |
25316
561aa7ea85a7
(unwind_redisplay): New. Resets flag redisplaying_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25305
diff
changeset
|
8532 /* Function registered with record_unwind_protect in |
561aa7ea85a7
(unwind_redisplay): New. Resets flag redisplaying_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25305
diff
changeset
|
8533 redisplay_internal. Clears the flag indicating that a redisplay is |
561aa7ea85a7
(unwind_redisplay): New. Resets flag redisplaying_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25305
diff
changeset
|
8534 in progress. */ |
561aa7ea85a7
(unwind_redisplay): New. Resets flag redisplaying_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25305
diff
changeset
|
8535 |
561aa7ea85a7
(unwind_redisplay): New. Resets flag redisplaying_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25305
diff
changeset
|
8536 static Lisp_Object |
561aa7ea85a7
(unwind_redisplay): New. Resets flag redisplaying_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25305
diff
changeset
|
8537 unwind_redisplay (old_redisplaying_p) |
561aa7ea85a7
(unwind_redisplay): New. Resets flag redisplaying_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25305
diff
changeset
|
8538 Lisp_Object old_redisplaying_p; |
561aa7ea85a7
(unwind_redisplay): New. Resets flag redisplaying_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25305
diff
changeset
|
8539 { |
561aa7ea85a7
(unwind_redisplay): New. Resets flag redisplaying_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25305
diff
changeset
|
8540 redisplaying_p = XFASTINT (old_redisplaying_p); |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
8541 return Qnil; |
25316
561aa7ea85a7
(unwind_redisplay): New. Resets flag redisplaying_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25305
diff
changeset
|
8542 } |
561aa7ea85a7
(unwind_redisplay): New. Resets flag redisplaying_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25305
diff
changeset
|
8543 |
561aa7ea85a7
(unwind_redisplay): New. Resets flag redisplaying_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25305
diff
changeset
|
8544 |
25012 | 8545 /* Mark the display of windows in the window tree rooted at WINDOW as |
8546 accurate or inaccurate. If FLAG is non-zero mark display of WINDOW | |
8547 as accurate. If FLAG is zero arrange for WINDOW to be redisplayed | |
8548 the next time redisplay_internal is called. */ | |
8549 | |
8550 void | |
8551 mark_window_display_accurate (window, accurate_p) | |
8552 Lisp_Object window; | |
8553 int accurate_p; | |
8554 { | |
8555 struct window *w; | |
8556 | |
8557 for (; !NILP (window); window = w->next) | |
8558 { | |
8559 w = XWINDOW (window); | |
8560 | |
8561 if (BUFFERP (w->buffer)) | |
8562 { | |
8563 struct buffer *b = XBUFFER (w->buffer); | |
8564 | |
8565 XSETFASTINT (w->last_modified, | |
8566 accurate_p ? BUF_MODIFF (b) : 0); | |
8567 XSETFASTINT (w->last_overlay_modified, | |
8568 accurate_p ? BUF_OVERLAY_MODIFF (b) : 0); | |
8569 w->last_had_star = (BUF_MODIFF (b) > BUF_SAVE_MODIFF (b) | |
8570 ? Qt : Qnil); | |
8571 | |
8572 #if 0 /* I don't think this is necessary because display_line does it. | |
8573 Let's check it. */ | |
8574 /* Record if we are showing a region, so can make sure to | |
8575 update it fully at next redisplay. */ | |
8576 w->region_showing | |
8577 = (!NILP (Vtransient_mark_mode) | |
8578 && (w == XWINDOW (current_buffer->last_selected_window) | |
8579 || highlight_nonselected_windows) | |
8580 && (!NILP (b->mark_active) | |
8581 ? Fmarker_position (b->mark) | |
8582 : Qnil)); | |
8583 #endif | |
8584 | |
8585 if (accurate_p) | |
8586 { | |
8587 b->clip_changed = 0; | |
25377
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
8588 b->prevent_redisplay_optimizations_p = 0; |
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
8589 w->current_matrix->buffer = b; |
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
8590 w->current_matrix->begv = BUF_BEGV (b); |
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
8591 w->current_matrix->zv = BUF_ZV (b); |
25012 | 8592 w->last_cursor = w->cursor; |
8593 w->last_cursor_off_p = w->cursor_off_p; | |
8594 if (w == XWINDOW (selected_window)) | |
28464
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28362
diff
changeset
|
8595 w->last_point = make_number (BUF_PT (b)); |
25012 | 8596 else |
28464
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28362
diff
changeset
|
8597 w->last_point = make_number (XMARKER (w->pointm)->charpos); |
25012 | 8598 } |
8599 } | |
8600 | |
8601 w->window_end_valid = w->buffer; | |
8602 w->update_mode_line = Qnil; | |
8603 | |
8604 if (!NILP (w->vchild)) | |
8605 mark_window_display_accurate (w->vchild, accurate_p); | |
8606 if (!NILP (w->hchild)) | |
8607 mark_window_display_accurate (w->hchild, accurate_p); | |
8608 } | |
8609 | |
8610 if (accurate_p) | |
8611 { | |
8612 last_arrow_position = COERCE_MARKER (Voverlay_arrow_position); | |
8613 last_arrow_string = Voverlay_arrow_string; | |
8614 } | |
8615 else | |
8616 { | |
8617 /* Force a thorough redisplay the next time by setting | |
8618 last_arrow_position and last_arrow_string to t, which is | |
8619 unequal to any useful value of Voverlay_arrow_... */ | |
8620 last_arrow_position = Qt; | |
8621 last_arrow_string = Qt; | |
8622 } | |
8623 } | |
8624 | |
277 | 8625 |
17317
51b7fded4356
(disp_char_vector): New function to be used from the
Kenichi Handa <handa@m17n.org>
parents:
17179
diff
changeset
|
8626 /* Return value in display table DP (Lisp_Char_Table *) for character |
51b7fded4356
(disp_char_vector): New function to be used from the
Kenichi Handa <handa@m17n.org>
parents:
17179
diff
changeset
|
8627 C. Since a display table doesn't have any parent, we don't have to |
51b7fded4356
(disp_char_vector): New function to be used from the
Kenichi Handa <handa@m17n.org>
parents:
17179
diff
changeset
|
8628 follow parent. Do not call this function directly but use the |
51b7fded4356
(disp_char_vector): New function to be used from the
Kenichi Handa <handa@m17n.org>
parents:
17179
diff
changeset
|
8629 macro DISP_CHAR_VECTOR. */ |
25012 | 8630 |
17317
51b7fded4356
(disp_char_vector): New function to be used from the
Kenichi Handa <handa@m17n.org>
parents:
17179
diff
changeset
|
8631 Lisp_Object |
51b7fded4356
(disp_char_vector): New function to be used from the
Kenichi Handa <handa@m17n.org>
parents:
17179
diff
changeset
|
8632 disp_char_vector (dp, c) |
51b7fded4356
(disp_char_vector): New function to be used from the
Kenichi Handa <handa@m17n.org>
parents:
17179
diff
changeset
|
8633 struct Lisp_Char_Table *dp; |
51b7fded4356
(disp_char_vector): New function to be used from the
Kenichi Handa <handa@m17n.org>
parents:
17179
diff
changeset
|
8634 int c; |
51b7fded4356
(disp_char_vector): New function to be used from the
Kenichi Handa <handa@m17n.org>
parents:
17179
diff
changeset
|
8635 { |
51b7fded4356
(disp_char_vector): New function to be used from the
Kenichi Handa <handa@m17n.org>
parents:
17179
diff
changeset
|
8636 int code[4], i; |
51b7fded4356
(disp_char_vector): New function to be used from the
Kenichi Handa <handa@m17n.org>
parents:
17179
diff
changeset
|
8637 Lisp_Object val; |
51b7fded4356
(disp_char_vector): New function to be used from the
Kenichi Handa <handa@m17n.org>
parents:
17179
diff
changeset
|
8638 |
25012 | 8639 if (SINGLE_BYTE_CHAR_P (c)) |
8640 return (dp->contents[c]); | |
17317
51b7fded4356
(disp_char_vector): New function to be used from the
Kenichi Handa <handa@m17n.org>
parents:
17179
diff
changeset
|
8641 |
29023
af50e87cc257
(get_next_display_element): Handle 8-bit characters
Kenichi Handa <handa@m17n.org>
parents:
28984
diff
changeset
|
8642 SPLIT_CHAR (c, code[0], code[1], code[2]); |
26874
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
8643 if (code[1] < 32) |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
8644 code[1] = -1; |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
8645 else if (code[2] < 32) |
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
8646 code[2] = -1; |
25012 | 8647 |
8648 /* Here, the possible range of code[0] (== charset ID) is | |
8649 128..max_charset. Since the top level char table contains data | |
17317
51b7fded4356
(disp_char_vector): New function to be used from the
Kenichi Handa <handa@m17n.org>
parents:
17179
diff
changeset
|
8650 for multibyte characters after 256th element, we must increment |
25012 | 8651 code[0] by 128 to get a correct index. */ |
17317
51b7fded4356
(disp_char_vector): New function to be used from the
Kenichi Handa <handa@m17n.org>
parents:
17179
diff
changeset
|
8652 code[0] += 128; |
51b7fded4356
(disp_char_vector): New function to be used from the
Kenichi Handa <handa@m17n.org>
parents:
17179
diff
changeset
|
8653 code[3] = -1; /* anchor */ |
51b7fded4356
(disp_char_vector): New function to be used from the
Kenichi Handa <handa@m17n.org>
parents:
17179
diff
changeset
|
8654 |
51b7fded4356
(disp_char_vector): New function to be used from the
Kenichi Handa <handa@m17n.org>
parents:
17179
diff
changeset
|
8655 for (i = 0; code[i] >= 0; i++, dp = XCHAR_TABLE (val)) |
51b7fded4356
(disp_char_vector): New function to be used from the
Kenichi Handa <handa@m17n.org>
parents:
17179
diff
changeset
|
8656 { |
51b7fded4356
(disp_char_vector): New function to be used from the
Kenichi Handa <handa@m17n.org>
parents:
17179
diff
changeset
|
8657 val = dp->contents[code[i]]; |
51b7fded4356
(disp_char_vector): New function to be used from the
Kenichi Handa <handa@m17n.org>
parents:
17179
diff
changeset
|
8658 if (!SUB_CHAR_TABLE_P (val)) |
51b7fded4356
(disp_char_vector): New function to be used from the
Kenichi Handa <handa@m17n.org>
parents:
17179
diff
changeset
|
8659 return (NILP (val) ? dp->defalt : val); |
51b7fded4356
(disp_char_vector): New function to be used from the
Kenichi Handa <handa@m17n.org>
parents:
17179
diff
changeset
|
8660 } |
25012 | 8661 |
8662 /* Here, val is a sub char table. We return the default value of | |
8663 it. */ | |
17317
51b7fded4356
(disp_char_vector): New function to be used from the
Kenichi Handa <handa@m17n.org>
parents:
17179
diff
changeset
|
8664 return (dp->defalt); |
51b7fded4356
(disp_char_vector): New function to be used from the
Kenichi Handa <handa@m17n.org>
parents:
17179
diff
changeset
|
8665 } |
51b7fded4356
(disp_char_vector): New function to be used from the
Kenichi Handa <handa@m17n.org>
parents:
17179
diff
changeset
|
8666 |
25012 | 8667 |
8668 | |
8669 /*********************************************************************** | |
8670 Window Redisplay | |
8671 ***********************************************************************/ | |
8672 | |
8673 /* Redisplay all leaf windows in the window tree rooted at WINDOW. */ | |
8674 | |
8675 static void | |
8676 redisplay_windows (window) | |
8677 Lisp_Object window; | |
8678 { | |
8679 while (!NILP (window)) | |
8680 { | |
8681 struct window *w = XWINDOW (window); | |
8682 | |
8683 if (!NILP (w->hchild)) | |
8684 redisplay_windows (w->hchild); | |
8685 else if (!NILP (w->vchild)) | |
8686 redisplay_windows (w->vchild); | |
8687 else | |
8688 redisplay_window (window, 0); | |
8689 | |
8690 window = w->next; | |
8691 } | |
8692 } | |
8693 | |
8694 | |
8695 /* Set cursor position of W. PT is assumed to be displayed in ROW. | |
8696 DELTA is the number of bytes by which positions recorded in ROW | |
8697 differ from current buffer positions. */ | |
8698 | |
8699 void | |
8700 set_cursor_from_row (w, row, matrix, delta, delta_bytes, dy, dvpos) | |
8701 struct window *w; | |
8702 struct glyph_row *row; | |
8703 struct glyph_matrix *matrix; | |
8704 int delta, delta_bytes, dy, dvpos; | |
8705 { | |
8706 struct glyph *glyph = row->glyphs[TEXT_AREA]; | |
8707 struct glyph *end = glyph + row->used[TEXT_AREA]; | |
8708 int x = row->x; | |
8709 int pt_old = PT - delta; | |
8710 | |
8711 /* Skip over glyphs not having an object at the start of the row. | |
8712 These are special glyphs like truncation marks on terminal | |
8713 frames. */ | |
8714 if (row->displays_text_p) | |
8715 while (glyph < end | |
28464
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28362
diff
changeset
|
8716 && INTEGERP (glyph->object) |
25012 | 8717 && glyph->charpos < 0) |
8718 { | |
8719 x += glyph->pixel_width; | |
8720 ++glyph; | |
8721 } | |
8722 | |
8723 while (glyph < end | |
28464
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28362
diff
changeset
|
8724 && !INTEGERP (glyph->object) |
25012 | 8725 && (!BUFFERP (glyph->object) |
8726 || glyph->charpos < pt_old)) | |
8727 { | |
8728 x += glyph->pixel_width; | |
8729 ++glyph; | |
8730 } | |
8731 | |
8732 w->cursor.hpos = glyph - row->glyphs[TEXT_AREA]; | |
8733 w->cursor.x = x; | |
8734 w->cursor.vpos = MATRIX_ROW_VPOS (row, matrix) + dvpos; | |
8735 w->cursor.y = row->y + dy; | |
8736 | |
8737 if (w == XWINDOW (selected_window)) | |
8738 { | |
8739 if (!row->continued_p | |
8740 && !MATRIX_ROW_CONTINUATION_LINE_P (row) | |
8741 && row->x == 0) | |
8742 { | |
8743 this_line_buffer = XBUFFER (w->buffer); | |
8744 | |
8745 CHARPOS (this_line_start_pos) | |
8746 = MATRIX_ROW_START_CHARPOS (row) + delta; | |
8747 BYTEPOS (this_line_start_pos) | |
8748 = MATRIX_ROW_START_BYTEPOS (row) + delta_bytes; | |
8749 | |
8750 CHARPOS (this_line_end_pos) | |
8751 = Z - (MATRIX_ROW_END_CHARPOS (row) + delta); | |
8752 BYTEPOS (this_line_end_pos) | |
8753 = Z_BYTE - (MATRIX_ROW_END_BYTEPOS (row) + delta_bytes); | |
8754 | |
8755 this_line_y = w->cursor.y; | |
8756 this_line_pixel_height = row->height; | |
8757 this_line_vpos = w->cursor.vpos; | |
8758 this_line_start_x = row->x; | |
8759 } | |
8760 else | |
8761 CHARPOS (this_line_start_pos) = 0; | |
8762 } | |
8763 } | |
8764 | |
8765 | |
8766 /* Run window scroll functions, if any, for WINDOW with new window | |
25643
385bf7dbf253
(run_window_scroll_functions): If hook functions switch
Richard M. Stallman <rms@gnu.org>
parents:
25614
diff
changeset
|
8767 start STARTP. Sets the window start of WINDOW to that position. |
385bf7dbf253
(run_window_scroll_functions): If hook functions switch
Richard M. Stallman <rms@gnu.org>
parents:
25614
diff
changeset
|
8768 |
385bf7dbf253
(run_window_scroll_functions): If hook functions switch
Richard M. Stallman <rms@gnu.org>
parents:
25614
diff
changeset
|
8769 We assume that the window's buffer is really current. */ |
25012 | 8770 |
8771 static INLINE struct text_pos | |
8772 run_window_scroll_functions (window, startp) | |
8773 Lisp_Object window; | |
8774 struct text_pos startp; | |
8775 { | |
8776 struct window *w = XWINDOW (window); | |
8777 SET_MARKER_FROM_TEXT_POS (w->start, startp); | |
25643
385bf7dbf253
(run_window_scroll_functions): If hook functions switch
Richard M. Stallman <rms@gnu.org>
parents:
25614
diff
changeset
|
8778 |
385bf7dbf253
(run_window_scroll_functions): If hook functions switch
Richard M. Stallman <rms@gnu.org>
parents:
25614
diff
changeset
|
8779 if (current_buffer != XBUFFER (w->buffer)) |
385bf7dbf253
(run_window_scroll_functions): If hook functions switch
Richard M. Stallman <rms@gnu.org>
parents:
25614
diff
changeset
|
8780 abort (); |
385bf7dbf253
(run_window_scroll_functions): If hook functions switch
Richard M. Stallman <rms@gnu.org>
parents:
25614
diff
changeset
|
8781 |
25012 | 8782 if (!NILP (Vwindow_scroll_functions)) |
8783 { | |
8784 run_hook_with_args_2 (Qwindow_scroll_functions, window, | |
8785 make_number (CHARPOS (startp))); | |
8786 SET_TEXT_POS_FROM_MARKER (startp, w->start); | |
25643
385bf7dbf253
(run_window_scroll_functions): If hook functions switch
Richard M. Stallman <rms@gnu.org>
parents:
25614
diff
changeset
|
8787 /* In case the hook functions switch buffers. */ |
385bf7dbf253
(run_window_scroll_functions): If hook functions switch
Richard M. Stallman <rms@gnu.org>
parents:
25614
diff
changeset
|
8788 if (current_buffer != XBUFFER (w->buffer)) |
385bf7dbf253
(run_window_scroll_functions): If hook functions switch
Richard M. Stallman <rms@gnu.org>
parents:
25614
diff
changeset
|
8789 set_buffer_internal_1 (XBUFFER (w->buffer)); |
25012 | 8790 } |
8791 | |
8792 return startp; | |
8793 } | |
8794 | |
8795 | |
8796 /* Modify the desired matrix of window W and W->vscroll so that the | |
8797 line containing the cursor is fully visible. */ | |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
8798 |
277 | 8799 static void |
25012 | 8800 make_cursor_line_fully_visible (w) |
8801 struct window *w; | |
8802 { | |
8803 struct glyph_matrix *matrix; | |
8804 struct glyph_row *row; | |
34987
cf1115a9c758
(make_cursor_line_fully_visible): Remove unused variable
Eli Zaretskii <eliz@gnu.org>
parents:
34947
diff
changeset
|
8805 int window_height; |
25012 | 8806 |
8807 /* It's not always possible to find the cursor, e.g, when a window | |
8808 is full of overlay strings. Don't do anything in that case. */ | |
8809 if (w->cursor.vpos < 0) | |
8810 return; | |
8811 | |
8812 matrix = w->desired_matrix; | |
8813 row = MATRIX_ROW (matrix, w->cursor.vpos); | |
8814 | |
30652
4ed1978642cb
(start_display): WHen starting display on a continuation
Gerd Moellmann <gerd@gnu.org>
parents:
30631
diff
changeset
|
8815 /* If the cursor row is not partially visible, there's nothing |
4ed1978642cb
(start_display): WHen starting display on a continuation
Gerd Moellmann <gerd@gnu.org>
parents:
30631
diff
changeset
|
8816 to do. */ |
4ed1978642cb
(start_display): WHen starting display on a continuation
Gerd Moellmann <gerd@gnu.org>
parents:
30631
diff
changeset
|
8817 if (!MATRIX_ROW_PARTIALLY_VISIBLE_P (row)) |
4ed1978642cb
(start_display): WHen starting display on a continuation
Gerd Moellmann <gerd@gnu.org>
parents:
30631
diff
changeset
|
8818 return; |
4ed1978642cb
(start_display): WHen starting display on a continuation
Gerd Moellmann <gerd@gnu.org>
parents:
30631
diff
changeset
|
8819 |
4ed1978642cb
(start_display): WHen starting display on a continuation
Gerd Moellmann <gerd@gnu.org>
parents:
30631
diff
changeset
|
8820 /* If the row the cursor is in is taller than the window's height, |
4ed1978642cb
(start_display): WHen starting display on a continuation
Gerd Moellmann <gerd@gnu.org>
parents:
30631
diff
changeset
|
8821 it's not clear what to do, so do nothing. */ |
4ed1978642cb
(start_display): WHen starting display on a continuation
Gerd Moellmann <gerd@gnu.org>
parents:
30631
diff
changeset
|
8822 window_height = window_box_height (w); |
4ed1978642cb
(start_display): WHen starting display on a continuation
Gerd Moellmann <gerd@gnu.org>
parents:
30631
diff
changeset
|
8823 if (row->height >= window_height) |
4ed1978642cb
(start_display): WHen starting display on a continuation
Gerd Moellmann <gerd@gnu.org>
parents:
30631
diff
changeset
|
8824 return; |
4ed1978642cb
(start_display): WHen starting display on a continuation
Gerd Moellmann <gerd@gnu.org>
parents:
30631
diff
changeset
|
8825 |
4ed1978642cb
(start_display): WHen starting display on a continuation
Gerd Moellmann <gerd@gnu.org>
parents:
30631
diff
changeset
|
8826 if (MATRIX_ROW_PARTIALLY_VISIBLE_AT_TOP_P (w, row)) |
25012 | 8827 { |
8828 int dy = row->height - row->visible_height; | |
8829 w->vscroll = 0; | |
8830 w->cursor.y += dy; | |
8831 shift_glyph_matrix (w, matrix, 0, matrix->nrows, dy); | |
8832 } | |
30652
4ed1978642cb
(start_display): WHen starting display on a continuation
Gerd Moellmann <gerd@gnu.org>
parents:
30631
diff
changeset
|
8833 else /* MATRIX_ROW_PARTIALLY_VISIBLE_AT_BOTTOM_P (w, row)) */ |
25012 | 8834 { |
8835 int dy = - (row->height - row->visible_height); | |
8836 w->vscroll = dy; | |
8837 w->cursor.y += dy; | |
8838 shift_glyph_matrix (w, matrix, 0, matrix->nrows, dy); | |
8839 } | |
30652
4ed1978642cb
(start_display): WHen starting display on a continuation
Gerd Moellmann <gerd@gnu.org>
parents:
30631
diff
changeset
|
8840 |
25012 | 8841 /* When we change the cursor y-position of the selected window, |
8842 change this_line_y as well so that the display optimization for | |
8843 the cursor line of the selected window in redisplay_internal uses | |
8844 the correct y-position. */ | |
8845 if (w == XWINDOW (selected_window)) | |
8846 this_line_y = w->cursor.y; | |
8847 } | |
8848 | |
8849 | |
8850 /* Try scrolling PT into view in window WINDOW. JUST_THIS_ONE_P | |
8851 non-zero means only WINDOW is redisplayed in redisplay_internal. | |
8852 TEMP_SCROLL_STEP has the same meaning as scroll_step, and is used | |
8853 in redisplay_window to bring a partially visible line into view in | |
8854 the case that only the cursor has moved. | |
8855 | |
8856 Value is | |
8857 | |
8858 1 if scrolling succeeded | |
8859 | |
8860 0 if scrolling didn't find point. | |
8861 | |
8862 -1 if new fonts have been loaded so that we must interrupt | |
8863 redisplay, adjust glyph matrices, and try again. */ | |
8864 | |
8865 static int | |
8866 try_scrolling (window, just_this_one_p, scroll_conservatively, | |
8867 scroll_step, temp_scroll_step) | |
277 | 8868 Lisp_Object window; |
25012 | 8869 int just_this_one_p; |
8870 int scroll_conservatively, scroll_step; | |
8871 int temp_scroll_step; | |
8872 { | |
8873 struct window *w = XWINDOW (window); | |
8874 struct frame *f = XFRAME (w->frame); | |
8875 struct text_pos scroll_margin_pos; | |
8876 struct text_pos pos; | |
8877 struct text_pos startp; | |
8878 struct it it; | |
8879 Lisp_Object window_end; | |
8880 int this_scroll_margin; | |
8881 int dy = 0; | |
8882 int scroll_max; | |
32532
61d4de9a4e35
(try_scrolling) <cursor in scroll margin at the bottom>:
Gerd Moellmann <gerd@gnu.org>
parents:
32460
diff
changeset
|
8883 int rc; |
25012 | 8884 int amount_to_scroll = 0; |
8885 Lisp_Object aggressive; | |
277 | 8886 int height; |
25012 | 8887 |
8888 #if GLYPH_DEBUG | |
8889 debug_method_add (w, "try_scrolling"); | |
8890 #endif | |
8891 | |
8892 SET_TEXT_POS_FROM_MARKER (startp, w->start); | |
8893 | |
8894 /* Compute scroll margin height in pixels. We scroll when point is | |
8895 within this distance from the top or bottom of the window. */ | |
8896 if (scroll_margin > 0) | |
8897 { | |
8898 this_scroll_margin = min (scroll_margin, XINT (w->height) / 4); | |
8899 this_scroll_margin *= CANON_Y_UNIT (f); | |
8900 } | |
8901 else | |
8902 this_scroll_margin = 0; | |
8903 | |
8904 /* Compute how much we should try to scroll maximally to bring point | |
8905 into view. */ | |
33490
b714a06b99ec
(try_scrolling): Set scroll_max to max of scroll_* args
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33462
diff
changeset
|
8906 if (scroll_step || scroll_conservatively || temp_scroll_step) |
b714a06b99ec
(try_scrolling): Set scroll_max to max of scroll_* args
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33462
diff
changeset
|
8907 scroll_max = max (scroll_step, |
b714a06b99ec
(try_scrolling): Set scroll_max to max of scroll_* args
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33462
diff
changeset
|
8908 max (scroll_conservatively, temp_scroll_step)); |
25012 | 8909 else if (NUMBERP (current_buffer->scroll_down_aggressively) |
8910 || NUMBERP (current_buffer->scroll_up_aggressively)) | |
8911 /* We're trying to scroll because of aggressive scrolling | |
8912 but no scroll_step is set. Choose an arbitrary one. Maybe | |
8913 there should be a variable for this. */ | |
8914 scroll_max = 10; | |
8915 else | |
8916 scroll_max = 0; | |
8917 scroll_max *= CANON_Y_UNIT (f); | |
8918 | |
8919 /* Decide whether we have to scroll down. Start at the window end | |
8920 and move this_scroll_margin up to find the position of the scroll | |
8921 margin. */ | |
8922 window_end = Fwindow_end (window, Qt); | |
8923 CHARPOS (scroll_margin_pos) = XINT (window_end); | |
8924 BYTEPOS (scroll_margin_pos) = CHAR_TO_BYTE (CHARPOS (scroll_margin_pos)); | |
8925 if (this_scroll_margin) | |
8926 { | |
8927 start_display (&it, w, scroll_margin_pos); | |
8928 move_it_vertically (&it, - this_scroll_margin); | |
8929 scroll_margin_pos = it.current.pos; | |
8930 } | |
8931 | |
8932 if (PT >= CHARPOS (scroll_margin_pos)) | |
8933 { | |
8934 int y0; | |
32532
61d4de9a4e35
(try_scrolling) <cursor in scroll margin at the bottom>:
Gerd Moellmann <gerd@gnu.org>
parents:
32460
diff
changeset
|
8935 #if 0 |
61d4de9a4e35
(try_scrolling) <cursor in scroll margin at the bottom>:
Gerd Moellmann <gerd@gnu.org>
parents:
32460
diff
changeset
|
8936 int line_height; |
61d4de9a4e35
(try_scrolling) <cursor in scroll margin at the bottom>:
Gerd Moellmann <gerd@gnu.org>
parents:
32460
diff
changeset
|
8937 #endif |
25012 | 8938 |
8939 /* Point is in the scroll margin at the bottom of the window, or | |
8940 below. Compute a new window start that makes point visible. */ | |
30744
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
8941 |
25012 | 8942 /* Compute the distance from the scroll margin to PT. |
8943 Give up if the distance is greater than scroll_max. */ | |
8944 start_display (&it, w, scroll_margin_pos); | |
8945 y0 = it.current_y; | |
8946 move_it_to (&it, PT, 0, it.last_visible_y, -1, | |
8947 MOVE_TO_POS | MOVE_TO_X | MOVE_TO_Y); | |
32532
61d4de9a4e35
(try_scrolling) <cursor in scroll margin at the bottom>:
Gerd Moellmann <gerd@gnu.org>
parents:
32460
diff
changeset
|
8948 #if 0 /* Taking the line's height into account here looks wrong. */ |
25012 | 8949 line_height = (it.max_ascent + it.max_descent |
8950 ? it.max_ascent + it.max_descent | |
8951 : last_height); | |
8952 dy = it.current_y + line_height - y0; | |
32532
61d4de9a4e35
(try_scrolling) <cursor in scroll margin at the bottom>:
Gerd Moellmann <gerd@gnu.org>
parents:
32460
diff
changeset
|
8953 #else |
33074
77c2d2616983
(try_scrolling) <PT >= scroll_margin_pos>: Add 1 to the
Gerd Moellmann <gerd@gnu.org>
parents:
33072
diff
changeset
|
8954 /* With a scroll_margin of 0, scroll_margin_pos is at the window |
77c2d2616983
(try_scrolling) <PT >= scroll_margin_pos>: Add 1 to the
Gerd Moellmann <gerd@gnu.org>
parents:
33072
diff
changeset
|
8955 end, which is one line below the window. The iterator's |
77c2d2616983
(try_scrolling) <PT >= scroll_margin_pos>: Add 1 to the
Gerd Moellmann <gerd@gnu.org>
parents:
33072
diff
changeset
|
8956 current_y will be same as y0 in that case, but we have to |
77c2d2616983
(try_scrolling) <PT >= scroll_margin_pos>: Add 1 to the
Gerd Moellmann <gerd@gnu.org>
parents:
33072
diff
changeset
|
8957 scroll a line to make PT visible. That's the reason why 1 is |
77c2d2616983
(try_scrolling) <PT >= scroll_margin_pos>: Add 1 to the
Gerd Moellmann <gerd@gnu.org>
parents:
33072
diff
changeset
|
8958 added below. */ |
77c2d2616983
(try_scrolling) <PT >= scroll_margin_pos>: Add 1 to the
Gerd Moellmann <gerd@gnu.org>
parents:
33072
diff
changeset
|
8959 dy = 1 + it.current_y - y0; |
32532
61d4de9a4e35
(try_scrolling) <cursor in scroll margin at the bottom>:
Gerd Moellmann <gerd@gnu.org>
parents:
32460
diff
changeset
|
8960 #endif |
30744
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
8961 |
25012 | 8962 if (dy > scroll_max) |
8963 return 0; | |
8964 | |
8965 /* Move the window start down. If scrolling conservatively, | |
8966 move it just enough down to make point visible. If | |
8967 scroll_step is set, move it down by scroll_step. */ | |
8968 start_display (&it, w, startp); | |
8969 | |
8970 if (scroll_conservatively) | |
33490
b714a06b99ec
(try_scrolling): Set scroll_max to max of scroll_* args
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33462
diff
changeset
|
8971 amount_to_scroll = |
b714a06b99ec
(try_scrolling): Set scroll_max to max of scroll_* args
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33462
diff
changeset
|
8972 max (dy, CANON_Y_UNIT (f) * max (scroll_step, temp_scroll_step)); |
25012 | 8973 else if (scroll_step || temp_scroll_step) |
8974 amount_to_scroll = scroll_max; | |
8975 else | |
8976 { | |
8977 aggressive = current_buffer->scroll_down_aggressively; | |
8978 height = (WINDOW_DISPLAY_HEIGHT_NO_MODE_LINE (w) | |
25546 | 8979 - WINDOW_DISPLAY_HEADER_LINE_HEIGHT (w)); |
25012 | 8980 if (NUMBERP (aggressive)) |
8981 amount_to_scroll = XFLOATINT (aggressive) * height; | |
8982 } | |
8983 | |
8984 if (amount_to_scroll <= 0) | |
8985 return 0; | |
8986 | |
8987 move_it_vertically (&it, amount_to_scroll); | |
8988 startp = it.current.pos; | |
8989 } | |
8990 else | |
8991 { | |
8992 /* See if point is inside the scroll margin at the top of the | |
8993 window. */ | |
8994 scroll_margin_pos = startp; | |
8995 if (this_scroll_margin) | |
8996 { | |
8997 start_display (&it, w, startp); | |
8998 move_it_vertically (&it, this_scroll_margin); | |
8999 scroll_margin_pos = it.current.pos; | |
9000 } | |
9001 | |
9002 if (PT < CHARPOS (scroll_margin_pos)) | |
9003 { | |
9004 /* Point is in the scroll margin at the top of the window or | |
9005 above what is displayed in the window. */ | |
9006 int y0; | |
9007 | |
9008 /* Compute the vertical distance from PT to the scroll | |
9009 margin position. Give up if distance is greater than | |
9010 scroll_max. */ | |
9011 SET_TEXT_POS (pos, PT, PT_BYTE); | |
9012 start_display (&it, w, pos); | |
9013 y0 = it.current_y; | |
9014 move_it_to (&it, CHARPOS (scroll_margin_pos), 0, | |
9015 it.last_visible_y, -1, | |
9016 MOVE_TO_POS | MOVE_TO_X | MOVE_TO_Y); | |
9017 dy = it.current_y - y0; | |
9018 if (dy > scroll_max) | |
9019 return 0; | |
9020 | |
9021 /* Compute new window start. */ | |
9022 start_display (&it, w, startp); | |
9023 | |
9024 if (scroll_conservatively) | |
33490
b714a06b99ec
(try_scrolling): Set scroll_max to max of scroll_* args
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33462
diff
changeset
|
9025 amount_to_scroll = |
b714a06b99ec
(try_scrolling): Set scroll_max to max of scroll_* args
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33462
diff
changeset
|
9026 max (dy, CANON_Y_UNIT (f) * max (scroll_step, temp_scroll_step)); |
25012 | 9027 else if (scroll_step || temp_scroll_step) |
9028 amount_to_scroll = scroll_max; | |
9029 else | |
9030 { | |
9031 aggressive = current_buffer->scroll_up_aggressively; | |
9032 height = (WINDOW_DISPLAY_HEIGHT_NO_MODE_LINE (w) | |
25546 | 9033 - WINDOW_DISPLAY_HEADER_LINE_HEIGHT (w)); |
25012 | 9034 if (NUMBERP (aggressive)) |
9035 amount_to_scroll = XFLOATINT (aggressive) * height; | |
9036 } | |
9037 | |
9038 if (amount_to_scroll <= 0) | |
9039 return 0; | |
9040 | |
9041 move_it_vertically (&it, - amount_to_scroll); | |
9042 startp = it.current.pos; | |
9043 } | |
9044 } | |
9045 | |
9046 /* Run window scroll functions. */ | |
9047 startp = run_window_scroll_functions (window, startp); | |
9048 | |
9049 /* Display the window. Give up if new fonts are loaded, or if point | |
9050 doesn't appear. */ | |
9051 if (!try_window (window, startp)) | |
9052 rc = -1; | |
9053 else if (w->cursor.vpos < 0) | |
9054 { | |
9055 clear_glyph_matrix (w->desired_matrix); | |
9056 rc = 0; | |
9057 } | |
9058 else | |
9059 { | |
9060 /* Maybe forget recorded base line for line number display. */ | |
9061 if (!just_this_one_p | |
9062 || current_buffer->clip_changed | |
25377
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
9063 || BEG_UNCHANGED < CHARPOS (startp)) |
25012 | 9064 w->base_line_number = Qnil; |
9065 | |
9066 /* If cursor ends up on a partially visible line, shift display | |
9067 lines up or down. */ | |
9068 make_cursor_line_fully_visible (w); | |
9069 rc = 1; | |
9070 } | |
9071 | |
9072 return rc; | |
9073 } | |
9074 | |
9075 | |
9076 /* Compute a suitable window start for window W if display of W starts | |
9077 on a continuation line. Value is non-zero if a new window start | |
9078 was computed. | |
9079 | |
9080 The new window start will be computed, based on W's width, starting | |
9081 from the start of the continued line. It is the start of the | |
9082 screen line with the minimum distance from the old start W->start. */ | |
9083 | |
9084 static int | |
9085 compute_window_start_on_continuation_line (w) | |
9086 struct window *w; | |
9087 { | |
9088 struct text_pos pos, start_pos; | |
9089 int window_start_changed_p = 0; | |
9090 | |
9091 SET_TEXT_POS_FROM_MARKER (start_pos, w->start); | |
9092 | |
9093 /* If window start is on a continuation line... Window start may be | |
9094 < BEGV in case there's invisible text at the start of the | |
9095 buffer (M-x rmail, for example). */ | |
9096 if (CHARPOS (start_pos) > BEGV | |
9097 && FETCH_BYTE (BYTEPOS (start_pos) - 1) != '\n') | |
9098 { | |
9099 struct it it; | |
9100 struct glyph_row *row; | |
25777
dabc57e3628f
(compute_window_start_on_continuation_line): Handle case
Gerd Moellmann <gerd@gnu.org>
parents:
25755
diff
changeset
|
9101 |
dabc57e3628f
(compute_window_start_on_continuation_line): Handle case
Gerd Moellmann <gerd@gnu.org>
parents:
25755
diff
changeset
|
9102 /* Handle the case that the window start is out of range. */ |
dabc57e3628f
(compute_window_start_on_continuation_line): Handle case
Gerd Moellmann <gerd@gnu.org>
parents:
25755
diff
changeset
|
9103 if (CHARPOS (start_pos) < BEGV) |
dabc57e3628f
(compute_window_start_on_continuation_line): Handle case
Gerd Moellmann <gerd@gnu.org>
parents:
25755
diff
changeset
|
9104 SET_TEXT_POS (start_pos, BEGV, BEGV_BYTE); |
dabc57e3628f
(compute_window_start_on_continuation_line): Handle case
Gerd Moellmann <gerd@gnu.org>
parents:
25755
diff
changeset
|
9105 else if (CHARPOS (start_pos) > ZV) |
dabc57e3628f
(compute_window_start_on_continuation_line): Handle case
Gerd Moellmann <gerd@gnu.org>
parents:
25755
diff
changeset
|
9106 SET_TEXT_POS (start_pos, ZV, ZV_BYTE); |
25012 | 9107 |
9108 /* Find the start of the continued line. This should be fast | |
9109 because scan_buffer is fast (newline cache). */ | |
25546 | 9110 row = w->desired_matrix->rows + (WINDOW_WANTS_HEADER_LINE_P (w) ? 1 : 0); |
25012 | 9111 init_iterator (&it, w, CHARPOS (start_pos), BYTEPOS (start_pos), |
9112 row, DEFAULT_FACE_ID); | |
9113 reseat_at_previous_visible_line_start (&it); | |
9114 | |
9115 /* If the line start is "too far" away from the window start, | |
9116 say it takes too much time to compute a new window start. */ | |
9117 if (CHARPOS (start_pos) - IT_CHARPOS (it) | |
9118 < XFASTINT (w->height) * XFASTINT (w->width)) | |
9119 { | |
9120 int min_distance, distance; | |
9121 | |
9122 /* Move forward by display lines to find the new window | |
9123 start. If window width was enlarged, the new start can | |
9124 be expected to be > the old start. If window width was | |
9125 decreased, the new window start will be < the old start. | |
9126 So, we're looking for the display line start with the | |
9127 minimum distance from the old window start. */ | |
9128 pos = it.current.pos; | |
9129 min_distance = INFINITY; | |
9130 while ((distance = abs (CHARPOS (start_pos) - IT_CHARPOS (it))), | |
9131 distance < min_distance) | |
9132 { | |
9133 min_distance = distance; | |
9134 pos = it.current.pos; | |
9135 move_it_by_lines (&it, 1, 0); | |
9136 } | |
9137 | |
9138 /* Set the window start there. */ | |
9139 SET_MARKER_FROM_TEXT_POS (w->start, pos); | |
9140 window_start_changed_p = 1; | |
9141 } | |
9142 } | |
9143 | |
9144 return window_start_changed_p; | |
9145 } | |
9146 | |
9147 | |
30744
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9148 /* Try cursor movement in case text has not changes in window WINDOW, |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9149 with window start STARTP. Value is |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9150 |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9151 1 if successful |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9152 |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9153 0 if this method cannot be used |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9154 |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9155 -1 if we know we have to scroll the display. *SCROLL_STEP is |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9156 set to 1, under certain circumstances, if we want to scroll as |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9157 if scroll-step were set to 1. See the code. */ |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9158 |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9159 static int |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9160 try_cursor_movement (window, startp, scroll_step) |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9161 Lisp_Object window; |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9162 struct text_pos startp; |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9163 int *scroll_step; |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9164 { |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9165 struct window *w = XWINDOW (window); |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9166 struct frame *f = XFRAME (w->frame); |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9167 int rc = 0; |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9168 |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9169 /* Handle case where text has not changed, only point, and it has |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9170 not moved off the frame. */ |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9171 if (/* Point may be in this window. */ |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9172 PT >= CHARPOS (startp) |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9173 /* Selective display hasn't changed. */ |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9174 && !current_buffer->clip_changed |
34440
6fff04f818fa
(try_cursor_movement): Check update_mode_lines instead
Gerd Moellmann <gerd@gnu.org>
parents:
34438
diff
changeset
|
9175 /* Function force-mode-line-update is used to force a thorough |
6fff04f818fa
(try_cursor_movement): Check update_mode_lines instead
Gerd Moellmann <gerd@gnu.org>
parents:
34438
diff
changeset
|
9176 redisplay. It sets either windows_or_buffers_changed or |
6fff04f818fa
(try_cursor_movement): Check update_mode_lines instead
Gerd Moellmann <gerd@gnu.org>
parents:
34438
diff
changeset
|
9177 update_mode_lines. So don't take a shortcut here for these |
6fff04f818fa
(try_cursor_movement): Check update_mode_lines instead
Gerd Moellmann <gerd@gnu.org>
parents:
34438
diff
changeset
|
9178 cases. */ |
6fff04f818fa
(try_cursor_movement): Check update_mode_lines instead
Gerd Moellmann <gerd@gnu.org>
parents:
34438
diff
changeset
|
9179 && !update_mode_lines |
6fff04f818fa
(try_cursor_movement): Check update_mode_lines instead
Gerd Moellmann <gerd@gnu.org>
parents:
34438
diff
changeset
|
9180 && !windows_or_buffers_changed |
30744
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9181 /* Can't use this case if highlighting a region. When a |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9182 region exists, cursor movement has to do more than just |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9183 set the cursor. */ |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9184 && !(!NILP (Vtransient_mark_mode) |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9185 && !NILP (current_buffer->mark_active)) |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9186 && NILP (w->region_showing) |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9187 && NILP (Vshow_trailing_whitespace) |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9188 /* Right after splitting windows, last_point may be nil. */ |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9189 && INTEGERP (w->last_point) |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9190 /* This code is not used for mini-buffer for the sake of the case |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9191 of redisplaying to replace an echo area message; since in |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9192 that case the mini-buffer contents per se are usually |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9193 unchanged. This code is of no real use in the mini-buffer |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9194 since the handling of this_line_start_pos, etc., in redisplay |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9195 handles the same cases. */ |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9196 && !EQ (window, minibuf_window) |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9197 /* When splitting windows or for new windows, it happens that |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9198 redisplay is called with a nil window_end_vpos or one being |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9199 larger than the window. This should really be fixed in |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9200 window.c. I don't have this on my list, now, so we do |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9201 approximately the same as the old redisplay code. --gerd. */ |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9202 && INTEGERP (w->window_end_vpos) |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9203 && XFASTINT (w->window_end_vpos) < w->current_matrix->nrows |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9204 && (FRAME_WINDOW_P (f) |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9205 || !MARKERP (Voverlay_arrow_position) |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9206 || current_buffer != XMARKER (Voverlay_arrow_position)->buffer)) |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9207 { |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9208 int this_scroll_margin; |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9209 struct glyph_row *row; |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9210 |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9211 #if GLYPH_DEBUG |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9212 debug_method_add (w, "cursor movement"); |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9213 #endif |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9214 |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9215 /* Scroll if point within this distance from the top or bottom |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9216 of the window. This is a pixel value. */ |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9217 this_scroll_margin = max (0, scroll_margin); |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9218 this_scroll_margin = min (this_scroll_margin, XFASTINT (w->height) / 4); |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9219 this_scroll_margin *= CANON_Y_UNIT (f); |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9220 |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9221 /* Start with the row the cursor was displayed during the last |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9222 not paused redisplay. Give up if that row is not valid. */ |
31170
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
9223 if (w->last_cursor.vpos < 0 |
84ec8b66d634
(redisplay_internal): If considering all windows on all
Gerd Moellmann <gerd@gnu.org>
parents:
31118
diff
changeset
|
9224 || w->last_cursor.vpos >= w->current_matrix->nrows) |
30744
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9225 rc = -1; |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9226 else |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9227 { |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9228 row = MATRIX_ROW (w->current_matrix, w->last_cursor.vpos); |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9229 if (row->mode_line_p) |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9230 ++row; |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9231 if (!row->enabled_p) |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9232 rc = -1; |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9233 } |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9234 |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9235 if (rc == 0) |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9236 { |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9237 int scroll_p = 0; |
32592
b15e9539194b
(try_cursor_movement): Use cursor_row_p also when
Gerd Moellmann <gerd@gnu.org>
parents:
32590
diff
changeset
|
9238 int last_y = window_text_bottom_y (w) - this_scroll_margin; |
b15e9539194b
(try_cursor_movement): Use cursor_row_p also when
Gerd Moellmann <gerd@gnu.org>
parents:
32590
diff
changeset
|
9239 |
30744
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9240 if (PT > XFASTINT (w->last_point)) |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9241 { |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9242 /* Point has moved forward. */ |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9243 while (MATRIX_ROW_END_CHARPOS (row) < PT |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9244 && MATRIX_ROW_BOTTOM_Y (row) < last_y) |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9245 { |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9246 xassert (row->enabled_p); |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9247 ++row; |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9248 } |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9249 |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9250 /* The end position of a row equals the start position |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9251 of the next row. If PT is there, we would rather |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
9252 display it in the next line. */ |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
9253 while (MATRIX_ROW_BOTTOM_Y (row) < last_y |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
9254 && MATRIX_ROW_END_CHARPOS (row) == PT |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
9255 && !cursor_row_p (w, row)) |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
9256 ++row; |
30744
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9257 |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9258 /* If within the scroll margin, scroll. Note that |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9259 MATRIX_ROW_BOTTOM_Y gives the pixel position at which |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9260 the next line would be drawn, and that |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9261 this_scroll_margin can be zero. */ |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9262 if (MATRIX_ROW_BOTTOM_Y (row) > last_y |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9263 || PT > MATRIX_ROW_END_CHARPOS (row) |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9264 /* Line is completely visible last line in window |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9265 and PT is to be set in the next line. */ |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9266 || (MATRIX_ROW_BOTTOM_Y (row) == last_y |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9267 && PT == MATRIX_ROW_END_CHARPOS (row) |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9268 && !row->ends_at_zv_p |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9269 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row))) |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9270 scroll_p = 1; |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9271 } |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9272 else if (PT < XFASTINT (w->last_point)) |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9273 { |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9274 /* Cursor has to be moved backward. Note that PT >= |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9275 CHARPOS (startp) because of the outer |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9276 if-statement. */ |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9277 while (!row->mode_line_p |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9278 && (MATRIX_ROW_START_CHARPOS (row) > PT |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9279 || (MATRIX_ROW_START_CHARPOS (row) == PT |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9280 && MATRIX_ROW_STARTS_IN_MIDDLE_OF_CHAR_P (row))) |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9281 && (row->y > this_scroll_margin |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9282 || CHARPOS (startp) == BEGV)) |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9283 { |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9284 xassert (row->enabled_p); |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9285 --row; |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9286 } |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9287 |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9288 /* Consider the following case: Window starts at BEGV, |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9289 there is invisible, intangible text at BEGV, so that |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9290 display starts at some point START > BEGV. It can |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9291 happen that we are called with PT somewhere between |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9292 BEGV and START. Try to handle that case. */ |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9293 if (row < w->current_matrix->rows |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9294 || row->mode_line_p) |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9295 { |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9296 row = w->current_matrix->rows; |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9297 if (row->mode_line_p) |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9298 ++row; |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9299 } |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9300 |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9301 /* Due to newlines in overlay strings, we may have to |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9302 skip forward over overlay strings. */ |
32592
b15e9539194b
(try_cursor_movement): Use cursor_row_p also when
Gerd Moellmann <gerd@gnu.org>
parents:
32590
diff
changeset
|
9303 while (MATRIX_ROW_BOTTOM_Y (row) < last_y |
b15e9539194b
(try_cursor_movement): Use cursor_row_p also when
Gerd Moellmann <gerd@gnu.org>
parents:
32590
diff
changeset
|
9304 && MATRIX_ROW_END_CHARPOS (row) == PT |
b15e9539194b
(try_cursor_movement): Use cursor_row_p also when
Gerd Moellmann <gerd@gnu.org>
parents:
32590
diff
changeset
|
9305 && !cursor_row_p (w, row)) |
30744
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9306 ++row; |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9307 |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9308 /* If within the scroll margin, scroll. */ |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9309 if (row->y < this_scroll_margin |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9310 && CHARPOS (startp) != BEGV) |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9311 scroll_p = 1; |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9312 } |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9313 |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9314 if (PT < MATRIX_ROW_START_CHARPOS (row) |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9315 || PT > MATRIX_ROW_END_CHARPOS (row)) |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9316 { |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9317 /* if PT is not in the glyph row, give up. */ |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9318 rc = -1; |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9319 } |
30761
8218291cc912
(try_cursor_movement): Fix handling of cursor in
Gerd Moellmann <gerd@gnu.org>
parents:
30747
diff
changeset
|
9320 else if (MATRIX_ROW_PARTIALLY_VISIBLE_P (row)) |
30744
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9321 { |
34743
c105f9abf6b5
(try_cursor_movement): Fix last change. The real
Gerd Moellmann <gerd@gnu.org>
parents:
34737
diff
changeset
|
9322 if (PT == MATRIX_ROW_END_CHARPOS (row) |
c105f9abf6b5
(try_cursor_movement): Fix last change. The real
Gerd Moellmann <gerd@gnu.org>
parents:
34737
diff
changeset
|
9323 && !row->ends_at_zv_p |
c105f9abf6b5
(try_cursor_movement): Fix last change. The real
Gerd Moellmann <gerd@gnu.org>
parents:
34737
diff
changeset
|
9324 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row)) |
34737
84f309395a36
(try_cursor_movement): If we end on a partially
Gerd Moellmann <gerd@gnu.org>
parents:
34664
diff
changeset
|
9325 rc = -1; |
84f309395a36
(try_cursor_movement): If we end on a partially
Gerd Moellmann <gerd@gnu.org>
parents:
34664
diff
changeset
|
9326 else if (row->height > window_box_height (w)) |
30761
8218291cc912
(try_cursor_movement): Fix handling of cursor in
Gerd Moellmann <gerd@gnu.org>
parents:
30747
diff
changeset
|
9327 { |
34743
c105f9abf6b5
(try_cursor_movement): Fix last change. The real
Gerd Moellmann <gerd@gnu.org>
parents:
34737
diff
changeset
|
9328 /* If we end up in a partially visible line, let's |
c105f9abf6b5
(try_cursor_movement): Fix last change. The real
Gerd Moellmann <gerd@gnu.org>
parents:
34737
diff
changeset
|
9329 make it fully visible, except when it's taller |
c105f9abf6b5
(try_cursor_movement): Fix last change. The real
Gerd Moellmann <gerd@gnu.org>
parents:
34737
diff
changeset
|
9330 than the window, in which case we can't do much |
c105f9abf6b5
(try_cursor_movement): Fix last change. The real
Gerd Moellmann <gerd@gnu.org>
parents:
34737
diff
changeset
|
9331 about it. */ |
30761
8218291cc912
(try_cursor_movement): Fix handling of cursor in
Gerd Moellmann <gerd@gnu.org>
parents:
30747
diff
changeset
|
9332 *scroll_step = 1; |
8218291cc912
(try_cursor_movement): Fix handling of cursor in
Gerd Moellmann <gerd@gnu.org>
parents:
30747
diff
changeset
|
9333 rc = -1; |
8218291cc912
(try_cursor_movement): Fix handling of cursor in
Gerd Moellmann <gerd@gnu.org>
parents:
30747
diff
changeset
|
9334 } |
8218291cc912
(try_cursor_movement): Fix handling of cursor in
Gerd Moellmann <gerd@gnu.org>
parents:
30747
diff
changeset
|
9335 else |
8218291cc912
(try_cursor_movement): Fix handling of cursor in
Gerd Moellmann <gerd@gnu.org>
parents:
30747
diff
changeset
|
9336 { |
8218291cc912
(try_cursor_movement): Fix handling of cursor in
Gerd Moellmann <gerd@gnu.org>
parents:
30747
diff
changeset
|
9337 set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0); |
8218291cc912
(try_cursor_movement): Fix handling of cursor in
Gerd Moellmann <gerd@gnu.org>
parents:
30747
diff
changeset
|
9338 try_window (window, startp); |
8218291cc912
(try_cursor_movement): Fix handling of cursor in
Gerd Moellmann <gerd@gnu.org>
parents:
30747
diff
changeset
|
9339 make_cursor_line_fully_visible (w); |
8218291cc912
(try_cursor_movement): Fix handling of cursor in
Gerd Moellmann <gerd@gnu.org>
parents:
30747
diff
changeset
|
9340 rc = 1; |
8218291cc912
(try_cursor_movement): Fix handling of cursor in
Gerd Moellmann <gerd@gnu.org>
parents:
30747
diff
changeset
|
9341 } |
30744
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9342 } |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9343 else if (scroll_p) |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9344 rc = -1; |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9345 else |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9346 { |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9347 set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0); |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9348 rc = 1; |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9349 } |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9350 } |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9351 } |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9352 |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9353 return rc; |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9354 } |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9355 |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9356 |
25012 | 9357 /* Redisplay leaf window WINDOW. JUST_THIS_ONE_P non-zero means only |
9358 selected_window is redisplayed. */ | |
9359 | |
9360 static void | |
9361 redisplay_window (window, just_this_one_p) | |
9362 Lisp_Object window; | |
9363 int just_this_one_p; | |
9364 { | |
9365 struct window *w = XWINDOW (window); | |
9366 struct frame *f = XFRAME (w->frame); | |
9367 struct buffer *buffer = XBUFFER (w->buffer); | |
277 | 9368 struct buffer *old = current_buffer; |
25012 | 9369 struct text_pos lpoint, opoint, startp; |
9370 int update_mode_line; | |
277 | 9371 int tem; |
25012 | 9372 struct it it; |
9373 /* Record it now because it's overwritten. */ | |
9374 int current_matrix_up_to_date_p = 0; | |
9375 int temp_scroll_step = 0; | |
33600
c5f64497e92c
Use BINDING_STACK_SIZE throughout.
Gerd Moellmann <gerd@gnu.org>
parents:
33594
diff
changeset
|
9376 int count = BINDING_STACK_SIZE (); |
30744
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9377 int rc; |
277 | 9378 |
25012 | 9379 SET_TEXT_POS (lpoint, PT, PT_BYTE); |
9380 opoint = lpoint; | |
9381 | |
9382 /* W must be a leaf window here. */ | |
9383 xassert (!NILP (w->buffer)); | |
9384 #if GLYPH_DEBUG | |
9385 *w->desired_matrix->method = 0; | |
9386 #endif | |
21748
c423e8929f69
(Qinhibit_point_motion_hooks): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
21534
diff
changeset
|
9387 |
c423e8929f69
(Qinhibit_point_motion_hooks): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
21534
diff
changeset
|
9388 specbind (Qinhibit_point_motion_hooks, Qt); |
25377
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
9389 |
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
9390 reconsider_clip_changes (w, buffer); |
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
9391 |
25012 | 9392 /* Has the mode line to be updated? */ |
9393 update_mode_line = (!NILP (w->update_mode_line) | |
9394 || update_mode_lines | |
9395 || buffer->clip_changed); | |
433 | 9396 |
9397 if (MINI_WINDOW_P (w)) | |
9398 { | |
25012 | 9399 if (w == XWINDOW (echo_area_window) |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
9400 && !NILP (echo_area_buffer[0])) |
25012 | 9401 { |
9402 if (update_mode_line) | |
9403 /* We may have to update a tty frame's menu bar or a | |
25543 | 9404 tool-bar. Example `M-x C-h C-h C-g'. */ |
25012 | 9405 goto finish_menu_bars; |
9406 else | |
9407 /* We've already displayed the echo area glyphs in this window. */ | |
9408 goto finish_scroll_bars; | |
9409 } | |
12629
55241c80f448
(echo_area_display): Use selected frame's minibuf window
Richard M. Stallman <rms@gnu.org>
parents:
12598
diff
changeset
|
9410 else if (w != XWINDOW (minibuf_window)) |
433 | 9411 { |
25012 | 9412 /* W is a mini-buffer window, but it's not the currently |
9413 active one, so clear it. */ | |
9414 int yb = window_text_bottom_y (w); | |
9415 struct glyph_row *row; | |
9416 int y; | |
9417 | |
9418 for (y = 0, row = w->desired_matrix->rows; | |
9419 y < yb; | |
9420 y += row->height, ++row) | |
9421 blank_row (w, row, y); | |
1992
37c45885540a
* xdisp.c (redisplay): Protect calls to request_sigio and
Jim Blandy <jimb@redhat.com>
parents:
1873
diff
changeset
|
9422 goto finish_scroll_bars; |
433 | 9423 } |
9424 } | |
277 | 9425 |
25012 | 9426 /* Otherwise set up data on this window; select its buffer and point |
9427 value. */ | |
29445
cb3ad8f8f0ed
(redisplay_window): Always use set_buffer_internal_1.
Gerd Moellmann <gerd@gnu.org>
parents:
29433
diff
changeset
|
9428 /* Really select the buffer, for the sake of buffer-local |
cb3ad8f8f0ed
(redisplay_window): Always use set_buffer_internal_1.
Gerd Moellmann <gerd@gnu.org>
parents:
29433
diff
changeset
|
9429 variables. */ |
cb3ad8f8f0ed
(redisplay_window): Always use set_buffer_internal_1.
Gerd Moellmann <gerd@gnu.org>
parents:
29433
diff
changeset
|
9430 set_buffer_internal_1 (XBUFFER (w->buffer)); |
25012 | 9431 SET_TEXT_POS (opoint, PT, PT_BYTE); |
9432 | |
9433 current_matrix_up_to_date_p | |
9434 = (!NILP (w->window_end_valid) | |
9435 && !current_buffer->clip_changed | |
9436 && XFASTINT (w->last_modified) >= MODIFF | |
9437 && XFASTINT (w->last_overlay_modified) >= OVERLAY_MODIFF); | |
9438 | |
9439 /* When windows_or_buffers_changed is non-zero, we can't rely on | |
9440 the window end being valid, so set it to nil there. */ | |
9441 if (windows_or_buffers_changed) | |
9442 { | |
9443 /* If window starts on a continuation line, maybe adjust the | |
9444 window start in case the window's width changed. */ | |
9445 if (XMARKER (w->start)->buffer == current_buffer) | |
9446 compute_window_start_on_continuation_line (w); | |
9447 | |
9448 w->window_end_valid = Qnil; | |
9449 } | |
9450 | |
9451 /* Some sanity checks. */ | |
9452 CHECK_WINDOW_END (w); | |
9453 if (Z == Z_BYTE && CHARPOS (opoint) != BYTEPOS (opoint)) | |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
9454 abort (); |
25012 | 9455 if (BYTEPOS (opoint) < CHARPOS (opoint)) |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
9456 abort (); |
277 | 9457 |
12472
f92dc5a9194d
(clip_changed): Variable deleted.
Richard M. Stallman <rms@gnu.org>
parents:
12410
diff
changeset
|
9458 /* If %c is in mode line, update it if needed. */ |
f92dc5a9194d
(clip_changed): Variable deleted.
Richard M. Stallman <rms@gnu.org>
parents:
12410
diff
changeset
|
9459 if (!NILP (w->column_number_displayed) |
f92dc5a9194d
(clip_changed): Variable deleted.
Richard M. Stallman <rms@gnu.org>
parents:
12410
diff
changeset
|
9460 /* This alternative quickly identifies a common case |
f92dc5a9194d
(clip_changed): Variable deleted.
Richard M. Stallman <rms@gnu.org>
parents:
12410
diff
changeset
|
9461 where no change is needed. */ |
f92dc5a9194d
(clip_changed): Variable deleted.
Richard M. Stallman <rms@gnu.org>
parents:
12410
diff
changeset
|
9462 && !(PT == XFASTINT (w->last_point) |
16197
952b01cdfa56
(redisplay_internal, mark_window_display_accurate)
Richard M. Stallman <rms@gnu.org>
parents:
16095
diff
changeset
|
9463 && XFASTINT (w->last_modified) >= MODIFF |
952b01cdfa56
(redisplay_internal, mark_window_display_accurate)
Richard M. Stallman <rms@gnu.org>
parents:
16095
diff
changeset
|
9464 && XFASTINT (w->last_overlay_modified) >= OVERLAY_MODIFF) |
12472
f92dc5a9194d
(clip_changed): Variable deleted.
Richard M. Stallman <rms@gnu.org>
parents:
12410
diff
changeset
|
9465 && XFASTINT (w->column_number_displayed) != current_column ()) |
f92dc5a9194d
(clip_changed): Variable deleted.
Richard M. Stallman <rms@gnu.org>
parents:
12410
diff
changeset
|
9466 update_mode_line = 1; |
f92dc5a9194d
(clip_changed): Variable deleted.
Richard M. Stallman <rms@gnu.org>
parents:
12410
diff
changeset
|
9467 |
25012 | 9468 /* Count number of windows showing the selected buffer. An indirect |
9469 buffer counts as its base buffer. */ | |
9470 if (!just_this_one_p) | |
10303
e951e8dddc8b
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
9987
diff
changeset
|
9471 { |
e951e8dddc8b
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
9987
diff
changeset
|
9472 struct buffer *current_base, *window_base; |
e951e8dddc8b
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
9987
diff
changeset
|
9473 current_base = current_buffer; |
e951e8dddc8b
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
9987
diff
changeset
|
9474 window_base = XBUFFER (XWINDOW (selected_window)->buffer); |
e951e8dddc8b
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
9987
diff
changeset
|
9475 if (current_base->base_buffer) |
e951e8dddc8b
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
9987
diff
changeset
|
9476 current_base = current_base->base_buffer; |
e951e8dddc8b
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
9987
diff
changeset
|
9477 if (window_base->base_buffer) |
e951e8dddc8b
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
9987
diff
changeset
|
9478 window_base = window_base->base_buffer; |
e951e8dddc8b
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
9987
diff
changeset
|
9479 if (current_base == window_base) |
e951e8dddc8b
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
9987
diff
changeset
|
9480 buffer_shared++; |
e951e8dddc8b
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
9987
diff
changeset
|
9481 } |
277 | 9482 |
25012 | 9483 /* Point refers normally to the selected window. For any other |
9484 window, set up appropriate value. */ | |
277 | 9485 if (!EQ (window, selected_window)) |
9486 { | |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
9487 int new_pt = XMARKER (w->pointm)->charpos; |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
9488 int new_pt_byte = marker_byte_position (w->pointm); |
8417
3f2854a14982
(redisplay_window): Avoid using SET_PT to change point temporarily.
Richard M. Stallman <rms@gnu.org>
parents:
8386
diff
changeset
|
9489 if (new_pt < BEGV) |
277 | 9490 { |
8417
3f2854a14982
(redisplay_window): Avoid using SET_PT to change point temporarily.
Richard M. Stallman <rms@gnu.org>
parents:
8386
diff
changeset
|
9491 new_pt = BEGV; |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
9492 new_pt_byte = BEGV_BYTE; |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
9493 set_marker_both (w->pointm, Qnil, BEGV, BEGV_BYTE); |
277 | 9494 } |
8417
3f2854a14982
(redisplay_window): Avoid using SET_PT to change point temporarily.
Richard M. Stallman <rms@gnu.org>
parents:
8386
diff
changeset
|
9495 else if (new_pt > (ZV - 1)) |
277 | 9496 { |
8417
3f2854a14982
(redisplay_window): Avoid using SET_PT to change point temporarily.
Richard M. Stallman <rms@gnu.org>
parents:
8386
diff
changeset
|
9497 new_pt = ZV; |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
9498 new_pt_byte = ZV_BYTE; |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
9499 set_marker_both (w->pointm, Qnil, ZV, ZV_BYTE); |
277 | 9500 } |
25012 | 9501 |
8417
3f2854a14982
(redisplay_window): Avoid using SET_PT to change point temporarily.
Richard M. Stallman <rms@gnu.org>
parents:
8386
diff
changeset
|
9502 /* We don't use SET_PT so that the point-motion hooks don't run. */ |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
9503 TEMP_SET_PT_BOTH (new_pt, new_pt_byte); |
277 | 9504 } |
9505 | |
9412
53898786366f
* xdisp.c (redisplay_window): Invalidate width_run_cache, if the
Jim Blandy <jimb@redhat.com>
parents:
9330
diff
changeset
|
9506 /* If any of the character widths specified in the display table |
25012 | 9507 have changed, invalidate the width run cache. It's true that |
9508 this may be a bit late to catch such changes, but the rest of | |
9412
53898786366f
* xdisp.c (redisplay_window): Invalidate width_run_cache, if the
Jim Blandy <jimb@redhat.com>
parents:
9330
diff
changeset
|
9509 redisplay goes (non-fatally) haywire when the display table is |
53898786366f
* xdisp.c (redisplay_window): Invalidate width_run_cache, if the
Jim Blandy <jimb@redhat.com>
parents:
9330
diff
changeset
|
9510 changed, so why should we worry about doing any better? */ |
53898786366f
* xdisp.c (redisplay_window): Invalidate width_run_cache, if the
Jim Blandy <jimb@redhat.com>
parents:
9330
diff
changeset
|
9511 if (current_buffer->width_run_cache) |
53898786366f
* xdisp.c (redisplay_window): Invalidate width_run_cache, if the
Jim Blandy <jimb@redhat.com>
parents:
9330
diff
changeset
|
9512 { |
13188
dc0909e788bd
(redisplay_window, redisplay_window, display_text_line):
Richard M. Stallman <rms@gnu.org>
parents:
13104
diff
changeset
|
9513 struct Lisp_Char_Table *disptab = buffer_display_table (); |
9412
53898786366f
* xdisp.c (redisplay_window): Invalidate width_run_cache, if the
Jim Blandy <jimb@redhat.com>
parents:
9330
diff
changeset
|
9514 |
53898786366f
* xdisp.c (redisplay_window): Invalidate width_run_cache, if the
Jim Blandy <jimb@redhat.com>
parents:
9330
diff
changeset
|
9515 if (! disptab_matches_widthtab (disptab, |
53898786366f
* xdisp.c (redisplay_window): Invalidate width_run_cache, if the
Jim Blandy <jimb@redhat.com>
parents:
9330
diff
changeset
|
9516 XVECTOR (current_buffer->width_table))) |
53898786366f
* xdisp.c (redisplay_window): Invalidate width_run_cache, if the
Jim Blandy <jimb@redhat.com>
parents:
9330
diff
changeset
|
9517 { |
53898786366f
* xdisp.c (redisplay_window): Invalidate width_run_cache, if the
Jim Blandy <jimb@redhat.com>
parents:
9330
diff
changeset
|
9518 invalidate_region_cache (current_buffer, |
53898786366f
* xdisp.c (redisplay_window): Invalidate width_run_cache, if the
Jim Blandy <jimb@redhat.com>
parents:
9330
diff
changeset
|
9519 current_buffer->width_run_cache, |
53898786366f
* xdisp.c (redisplay_window): Invalidate width_run_cache, if the
Jim Blandy <jimb@redhat.com>
parents:
9330
diff
changeset
|
9520 BEG, Z); |
53898786366f
* xdisp.c (redisplay_window): Invalidate width_run_cache, if the
Jim Blandy <jimb@redhat.com>
parents:
9330
diff
changeset
|
9521 recompute_width_table (current_buffer, disptab); |
53898786366f
* xdisp.c (redisplay_window): Invalidate width_run_cache, if the
Jim Blandy <jimb@redhat.com>
parents:
9330
diff
changeset
|
9522 } |
53898786366f
* xdisp.c (redisplay_window): Invalidate width_run_cache, if the
Jim Blandy <jimb@redhat.com>
parents:
9330
diff
changeset
|
9523 } |
53898786366f
* xdisp.c (redisplay_window): Invalidate width_run_cache, if the
Jim Blandy <jimb@redhat.com>
parents:
9330
diff
changeset
|
9524 |
277 | 9525 /* If window-start is screwed up, choose a new one. */ |
9526 if (XMARKER (w->start)->buffer != current_buffer) | |
9527 goto recenter; | |
9528 | |
25012 | 9529 SET_TEXT_POS_FROM_MARKER (startp, w->start); |
277 | 9530 |
16554
f930574421d9
(redisplay_window): Handle optional_new_start.
Richard M. Stallman <rms@gnu.org>
parents:
16527
diff
changeset
|
9531 /* If someone specified a new starting point but did not insist, |
f930574421d9
(redisplay_window): Handle optional_new_start.
Richard M. Stallman <rms@gnu.org>
parents:
16527
diff
changeset
|
9532 check whether it can be used. */ |
26908
c5079639cac1
(redisplay_window) <optional new window start>: Check
Gerd Moellmann <gerd@gnu.org>
parents:
26874
diff
changeset
|
9533 if (!NILP (w->optional_new_start) |
c5079639cac1
(redisplay_window) <optional new window start>: Check
Gerd Moellmann <gerd@gnu.org>
parents:
26874
diff
changeset
|
9534 && CHARPOS (startp) >= BEGV |
c5079639cac1
(redisplay_window) <optional new window start>: Check
Gerd Moellmann <gerd@gnu.org>
parents:
26874
diff
changeset
|
9535 && CHARPOS (startp) <= ZV) |
16554
f930574421d9
(redisplay_window): Handle optional_new_start.
Richard M. Stallman <rms@gnu.org>
parents:
16527
diff
changeset
|
9536 { |
f930574421d9
(redisplay_window): Handle optional_new_start.
Richard M. Stallman <rms@gnu.org>
parents:
16527
diff
changeset
|
9537 w->optional_new_start = Qnil; |
25012 | 9538 start_display (&it, w, startp); |
9539 move_it_to (&it, PT, 0, it.last_visible_y, -1, | |
9540 MOVE_TO_POS | MOVE_TO_X | MOVE_TO_Y); | |
9541 if (IT_CHARPOS (it) == PT) | |
16554
f930574421d9
(redisplay_window): Handle optional_new_start.
Richard M. Stallman <rms@gnu.org>
parents:
16527
diff
changeset
|
9542 w->force_start = Qt; |
f930574421d9
(redisplay_window): Handle optional_new_start.
Richard M. Stallman <rms@gnu.org>
parents:
16527
diff
changeset
|
9543 } |
f930574421d9
(redisplay_window): Handle optional_new_start.
Richard M. Stallman <rms@gnu.org>
parents:
16527
diff
changeset
|
9544 |
433 | 9545 /* Handle case where place to start displaying has been specified, |
2303
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
9546 unless the specified location is outside the accessible range. */ |
25519
5e59e2bd26b5
Use XCAR and XCDR instead of XCONS.
Gerd Moellmann <gerd@gnu.org>
parents:
25500
diff
changeset
|
9547 if (!NILP (w->force_start) |
5e59e2bd26b5
Use XCAR and XCDR instead of XCONS.
Gerd Moellmann <gerd@gnu.org>
parents:
25500
diff
changeset
|
9548 || w->frozen_window_start_p) |
277 | 9549 { |
13833
467bc73e8734
(redisplay_window): Clear force_start field
Richard M. Stallman <rms@gnu.org>
parents:
13826
diff
changeset
|
9550 w->force_start = Qnil; |
25012 | 9551 w->vscroll = 0; |
9552 w->window_end_valid = Qnil; | |
9553 | |
2303
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
9554 /* Forget any recorded base line for line number display. */ |
25012 | 9555 if (!current_matrix_up_to_date_p |
9556 || current_buffer->clip_changed) | |
9557 w->base_line_number = Qnil; | |
9558 | |
13104
ea64c261c72a
(Qwindow_scroll_functions, Vwindow_scroll_functions): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
12921
diff
changeset
|
9559 /* Redisplay the mode line. Select the buffer properly for that. |
ea64c261c72a
(Qwindow_scroll_functions, Vwindow_scroll_functions): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
12921
diff
changeset
|
9560 Also, run the hook window-scroll-functions |
ea64c261c72a
(Qwindow_scroll_functions, Vwindow_scroll_functions): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
12921
diff
changeset
|
9561 because we have scrolled. */ |
13833
467bc73e8734
(redisplay_window): Clear force_start field
Richard M. Stallman <rms@gnu.org>
parents:
13826
diff
changeset
|
9562 /* Note, we do this after clearing force_start because |
467bc73e8734
(redisplay_window): Clear force_start field
Richard M. Stallman <rms@gnu.org>
parents:
13826
diff
changeset
|
9563 if there's an error, it is better to forget about force_start |
467bc73e8734
(redisplay_window): Clear force_start field
Richard M. Stallman <rms@gnu.org>
parents:
13826
diff
changeset
|
9564 than to get into an infinite loop calling the hook functions |
467bc73e8734
(redisplay_window): Clear force_start field
Richard M. Stallman <rms@gnu.org>
parents:
13826
diff
changeset
|
9565 and having them get more errors. */ |
13104
ea64c261c72a
(Qwindow_scroll_functions, Vwindow_scroll_functions): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
12921
diff
changeset
|
9566 if (!update_mode_line |
ea64c261c72a
(Qwindow_scroll_functions, Vwindow_scroll_functions): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
12921
diff
changeset
|
9567 || ! NILP (Vwindow_scroll_functions)) |
10764
a3e635f3501e
(redisplay_window): If we update the mode line,
Richard M. Stallman <rms@gnu.org>
parents:
10688
diff
changeset
|
9568 { |
a3e635f3501e
(redisplay_window): If we update the mode line,
Richard M. Stallman <rms@gnu.org>
parents:
10688
diff
changeset
|
9569 update_mode_line = 1; |
a3e635f3501e
(redisplay_window): If we update the mode line,
Richard M. Stallman <rms@gnu.org>
parents:
10688
diff
changeset
|
9570 w->update_mode_line = Qt; |
25012 | 9571 startp = run_window_scroll_functions (window, startp); |
9572 } | |
9573 | |
9325
6f07f6dfe1ee
(redisplay, mark_window_display_accurate, redisplay_window, try_window,
Karl Heuer <kwzh@gnu.org>
parents:
9283
diff
changeset
|
9574 XSETFASTINT (w->last_modified, 0); |
16197
952b01cdfa56
(redisplay_internal, mark_window_display_accurate)
Richard M. Stallman <rms@gnu.org>
parents:
16095
diff
changeset
|
9575 XSETFASTINT (w->last_overlay_modified, 0); |
25012 | 9576 if (CHARPOS (startp) < BEGV) |
9577 SET_TEXT_POS (startp, BEGV, BEGV_BYTE); | |
9578 else if (CHARPOS (startp) > ZV) | |
9579 SET_TEXT_POS (startp, ZV, ZV_BYTE); | |
9580 | |
9581 /* Redisplay, then check if cursor has been set during the | |
9582 redisplay. Give up if new fonts were loaded. */ | |
9583 if (!try_window (window, startp)) | |
9584 { | |
9585 w->force_start = Qt; | |
9586 clear_glyph_matrix (w->desired_matrix); | |
34844 | 9587 goto finish_scroll_bars; |
25012 | 9588 } |
9589 | |
25519
5e59e2bd26b5
Use XCAR and XCDR instead of XCONS.
Gerd Moellmann <gerd@gnu.org>
parents:
25500
diff
changeset
|
9590 if (w->cursor.vpos < 0 && !w->frozen_window_start_p) |
25012 | 9591 { |
30652
4ed1978642cb
(start_display): WHen starting display on a continuation
Gerd Moellmann <gerd@gnu.org>
parents:
30631
diff
changeset
|
9592 /* If point does not appear, try to move point so it does |
4ed1978642cb
(start_display): WHen starting display on a continuation
Gerd Moellmann <gerd@gnu.org>
parents:
30631
diff
changeset
|
9593 appear. The desired matrix has been built above, so we |
4ed1978642cb
(start_display): WHen starting display on a continuation
Gerd Moellmann <gerd@gnu.org>
parents:
30631
diff
changeset
|
9594 can use it here. */ |
4ed1978642cb
(start_display): WHen starting display on a continuation
Gerd Moellmann <gerd@gnu.org>
parents:
30631
diff
changeset
|
9595 int window_height; |
4ed1978642cb
(start_display): WHen starting display on a continuation
Gerd Moellmann <gerd@gnu.org>
parents:
30631
diff
changeset
|
9596 struct glyph_row *row; |
4ed1978642cb
(start_display): WHen starting display on a continuation
Gerd Moellmann <gerd@gnu.org>
parents:
30631
diff
changeset
|
9597 |
4ed1978642cb
(start_display): WHen starting display on a continuation
Gerd Moellmann <gerd@gnu.org>
parents:
30631
diff
changeset
|
9598 window_height = window_box_height (w) / 2; |
4ed1978642cb
(start_display): WHen starting display on a continuation
Gerd Moellmann <gerd@gnu.org>
parents:
30631
diff
changeset
|
9599 row = MATRIX_FIRST_TEXT_ROW (w->desired_matrix); |
4ed1978642cb
(start_display): WHen starting display on a continuation
Gerd Moellmann <gerd@gnu.org>
parents:
30631
diff
changeset
|
9600 while (MATRIX_ROW_BOTTOM_Y (row) < window_height) |
25012 | 9601 ++row; |
9602 | |
9603 TEMP_SET_PT_BOTH (MATRIX_ROW_START_CHARPOS (row), | |
9604 MATRIX_ROW_START_BYTEPOS (row)); | |
9605 | |
5230
8c30e49ddc04
(message): Use message2, not message1.
Richard M. Stallman <rms@gnu.org>
parents:
5082
diff
changeset
|
9606 if (w != XWINDOW (selected_window)) |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
9607 set_marker_both (w->pointm, Qnil, PT, PT_BYTE); |
25012 | 9608 else if (current_buffer == old) |
9609 SET_TEXT_POS (lpoint, PT, PT_BYTE); | |
9610 | |
9611 set_cursor_from_row (w, row, w->desired_matrix, 0, 0, 0, 0); | |
9612 | |
9613 /* If we are highlighting the region, then we just changed | |
9614 the region, so redisplay to show it. */ | |
9218
db4473eb2265
(redisplay_window): If we set PT, and that alters a region
Richard M. Stallman <rms@gnu.org>
parents:
9104
diff
changeset
|
9615 if (!NILP (Vtransient_mark_mode) |
db4473eb2265
(redisplay_window): If we set PT, and that alters a region
Richard M. Stallman <rms@gnu.org>
parents:
9104
diff
changeset
|
9616 && !NILP (current_buffer->mark_active)) |
9420
836113a97d92
(redisplay_window): Fix Oct 1 change:
Richard M. Stallman <rms@gnu.org>
parents:
9412
diff
changeset
|
9617 { |
25012 | 9618 clear_glyph_matrix (w->desired_matrix); |
9619 if (!try_window (window, startp)) | |
34844 | 9620 goto finish_scroll_bars; |
9420
836113a97d92
(redisplay_window): Fix Oct 1 change:
Richard M. Stallman <rms@gnu.org>
parents:
9412
diff
changeset
|
9621 } |
277 | 9622 } |
25012 | 9623 |
9624 make_cursor_line_fully_visible (w); | |
9625 #if GLYPH_DEBUG | |
9626 debug_method_add (w, "forced window start"); | |
9627 #endif | |
277 | 9628 goto done; |
9629 } | |
9630 | |
25012 | 9631 /* Handle case where text has not changed, only point, and it has |
9632 not moved off the frame. */ | |
9633 if (current_matrix_up_to_date_p | |
30744
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9634 && (rc = try_cursor_movement (window, startp, &temp_scroll_step), |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9635 rc != 0)) |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9636 { |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9637 if (rc == -1) |
25012 | 9638 goto try_to_scroll; |
30744
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9639 else |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9640 goto done; |
6181f12f7f51
(trace_move) [GLYPH_DEBUG]: New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30728
diff
changeset
|
9641 } |
277 | 9642 /* If current starting point was originally the beginning of a line |
9643 but no longer is, find a new starting point. */ | |
485 | 9644 else if (!NILP (w->start_at_line_beg) |
25012 | 9645 && !(CHARPOS (startp) <= BEGV |
9646 || FETCH_BYTE (BYTEPOS (startp) - 1) == '\n')) | |
9647 { | |
9648 #if GLYPH_DEBUG | |
9649 debug_method_add (w, "recenter 1"); | |
9650 #endif | |
277 | 9651 goto recenter; |
9652 } | |
25012 | 9653 |
9654 /* Try scrolling with try_window_id. */ | |
25377
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
9655 else if (/* Windows and buffers haven't changed. */ |
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
9656 !windows_or_buffers_changed |
25012 | 9657 /* Window must be either use window-based redisplay or |
9658 be full width. */ | |
9659 && (FRAME_WINDOW_P (f) | |
25388
b38732c75a65
(redisplay_window): Don't ever test just_this_one_p
Gerd Moellmann <gerd@gnu.org>
parents:
25377
diff
changeset
|
9660 || (line_ins_del_ok && WINDOW_FULL_WIDTH_P (w))) |
25012 | 9661 && !MINI_WINDOW_P (w) |
9662 /* Point is not known NOT to appear in window. */ | |
9663 && PT >= CHARPOS (startp) | |
277 | 9664 && XFASTINT (w->last_modified) |
25012 | 9665 /* Window is not hscrolled. */ |
9666 && XFASTINT (w->hscroll) == 0 | |
9667 /* Selective display has not changed. */ | |
9668 && !current_buffer->clip_changed | |
9669 /* Current matrix is up to date. */ | |
9670 && !NILP (w->window_end_valid) | |
9671 /* Can't use this case if highlighting a region because | |
9672 a cursor movement will do more than just set the cursor. */ | |
2848
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
9673 && !(!NILP (Vtransient_mark_mode) |
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
9674 && !NILP (current_buffer->mark_active)) |
3bcbd1795280
(mark_window_display_accurate): Set region_showing fields.
Richard M. Stallman <rms@gnu.org>
parents:
2766
diff
changeset
|
9675 && NILP (w->region_showing) |
25305
273b3c17ce68
(Qshow_trailing_whitespace): Removed.
Gerd Moellmann <gerd@gnu.org>
parents:
25258
diff
changeset
|
9676 && NILP (Vshow_trailing_whitespace) |
25012 | 9677 /* Overlay arrow position and string not changed. */ |
19205
7448901d6449
(COERCE_MARKER): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19197
diff
changeset
|
9678 && EQ (last_arrow_position, COERCE_MARKER (Voverlay_arrow_position)) |
277 | 9679 && EQ (last_arrow_string, Voverlay_arrow_string) |
25012 | 9680 /* Value is > 0 if update has been done, it is -1 if we |
9681 know that the same window start will not work. It is 0 | |
9682 if unsuccessful for some other reason. */ | |
9683 && (tem = try_window_id (w)) != 0) | |
9684 { | |
9685 #if GLYPH_DEBUG | |
30136
8dc78ef485a4
(try_window_id): If changes are all below what is
Gerd Moellmann <gerd@gnu.org>
parents:
29981
diff
changeset
|
9686 debug_method_add (w, "try_window_id %d", tem); |
25012 | 9687 #endif |
9688 | |
9689 if (fonts_changed_p) | |
34844 | 9690 goto finish_scroll_bars; |
277 | 9691 if (tem > 0) |
9692 goto done; | |
30136
8dc78ef485a4
(try_window_id): If changes are all below what is
Gerd Moellmann <gerd@gnu.org>
parents:
29981
diff
changeset
|
9693 |
25012 | 9694 /* Otherwise try_window_id has returned -1 which means that we |
9695 don't want the alternative below this comment to execute. */ | |
9696 } | |
9697 else if (CHARPOS (startp) >= BEGV | |
9698 && CHARPOS (startp) <= ZV | |
9699 && PT >= CHARPOS (startp) | |
9700 && (CHARPOS (startp) < ZV | |
14662
9e8607589f03
(redisplay_internal): Renamed from redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
14614
diff
changeset
|
9701 /* Avoid starting at end of buffer. */ |
25012 | 9702 || CHARPOS (startp) == BEGV |
16197
952b01cdfa56
(redisplay_internal, mark_window_display_accurate)
Richard M. Stallman <rms@gnu.org>
parents:
16095
diff
changeset
|
9703 || (XFASTINT (w->last_modified) >= MODIFF |
952b01cdfa56
(redisplay_internal, mark_window_display_accurate)
Richard M. Stallman <rms@gnu.org>
parents:
16095
diff
changeset
|
9704 && XFASTINT (w->last_overlay_modified) >= OVERLAY_MODIFF))) |
277 | 9705 { |
25012 | 9706 #if GLYPH_DEBUG |
9707 debug_method_add (w, "same window start"); | |
9708 #endif | |
9709 | |
9710 /* Try to redisplay starting at same place as before. | |
9711 If point has not moved off frame, accept the results. */ | |
9712 if (!current_matrix_up_to_date_p | |
9713 /* Don't use try_window_reusing_current_matrix in this case | |
28206
07ac059dece0
(handle_single_display_prop): Initialize local `value'.
Gerd Moellmann <gerd@gnu.org>
parents:
28047
diff
changeset
|
9714 because a window scroll function can have changed the |
07ac059dece0
(handle_single_display_prop): Initialize local `value'.
Gerd Moellmann <gerd@gnu.org>
parents:
28047
diff
changeset
|
9715 buffer. */ |
25012 | 9716 || !NILP (Vwindow_scroll_functions) |
9717 || MINI_WINDOW_P (w) | |
9718 || !try_window_reusing_current_matrix (w)) | |
9719 { | |
9720 IF_DEBUG (debug_method_add (w, "1")); | |
9721 try_window (window, startp); | |
9722 } | |
9723 | |
9724 if (fonts_changed_p) | |
34844 | 9725 goto finish_scroll_bars; |
25012 | 9726 |
9727 if (w->cursor.vpos >= 0) | |
9728 { | |
9729 if (!just_this_one_p | |
9730 || current_buffer->clip_changed | |
25377
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
9731 || BEG_UNCHANGED < CHARPOS (startp)) |
2303
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
9732 /* Forget any recorded base line for line number display. */ |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
9733 w->base_line_number = Qnil; |
25012 | 9734 |
9735 make_cursor_line_fully_visible (w); | |
2303
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
9736 goto done; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
9737 } |
277 | 9738 else |
25012 | 9739 clear_glyph_matrix (w->desired_matrix); |
9740 } | |
9741 | |
9742 try_to_scroll: | |
277 | 9743 |
9325
6f07f6dfe1ee
(redisplay, mark_window_display_accurate, redisplay_window, try_window,
Karl Heuer <kwzh@gnu.org>
parents:
9283
diff
changeset
|
9744 XSETFASTINT (w->last_modified, 0); |
16197
952b01cdfa56
(redisplay_internal, mark_window_display_accurate)
Richard M. Stallman <rms@gnu.org>
parents:
16095
diff
changeset
|
9745 XSETFASTINT (w->last_overlay_modified, 0); |
25012 | 9746 |
10764
a3e635f3501e
(redisplay_window): If we update the mode line,
Richard M. Stallman <rms@gnu.org>
parents:
10688
diff
changeset
|
9747 /* Redisplay the mode line. Select the buffer properly for that. */ |
a3e635f3501e
(redisplay_window): If we update the mode line,
Richard M. Stallman <rms@gnu.org>
parents:
10688
diff
changeset
|
9748 if (!update_mode_line) |
a3e635f3501e
(redisplay_window): If we update the mode line,
Richard M. Stallman <rms@gnu.org>
parents:
10688
diff
changeset
|
9749 { |
a3e635f3501e
(redisplay_window): If we update the mode line,
Richard M. Stallman <rms@gnu.org>
parents:
10688
diff
changeset
|
9750 update_mode_line = 1; |
a3e635f3501e
(redisplay_window): If we update the mode line,
Richard M. Stallman <rms@gnu.org>
parents:
10688
diff
changeset
|
9751 w->update_mode_line = Qt; |
a3e635f3501e
(redisplay_window): If we update the mode line,
Richard M. Stallman <rms@gnu.org>
parents:
10688
diff
changeset
|
9752 } |
277 | 9753 |
25012 | 9754 /* Try to scroll by specified few lines. */ |
9755 if ((scroll_conservatively | |
9756 || scroll_step | |
9757 || temp_scroll_step | |
9758 || NUMBERP (current_buffer->scroll_up_aggressively) | |
9759 || NUMBERP (current_buffer->scroll_down_aggressively)) | |
22030
484c9b2f6308
(redisplay_window): Handle scroll_step along with
Richard M. Stallman <rms@gnu.org>
parents:
22011
diff
changeset
|
9760 && !current_buffer->clip_changed |
25012 | 9761 && CHARPOS (startp) >= BEGV |
9762 && CHARPOS (startp) <= ZV) | |
9763 { | |
9764 /* The function returns -1 if new fonts were loaded, 1 if | |
9765 successful, 0 if not successful. */ | |
9766 int rc = try_scrolling (window, just_this_one_p, | |
9767 scroll_conservatively, | |
9768 scroll_step, | |
9769 temp_scroll_step); | |
9770 if (rc > 0) | |
9771 goto done; | |
9772 else if (rc < 0) | |
34844 | 9773 goto finish_scroll_bars; |
25012 | 9774 } |
9775 | |
9776 /* Finally, just choose place to start which centers point */ | |
9777 | |
9778 recenter: | |
9779 | |
9780 #if GLYPH_DEBUG | |
9781 debug_method_add (w, "recenter"); | |
9782 #endif | |
9783 | |
9784 /* w->vscroll = 0; */ | |
9785 | |
9786 /* Forget any previously recorded base line for line number display. */ | |
9787 if (!current_matrix_up_to_date_p | |
9788 || current_buffer->clip_changed) | |
9789 w->base_line_number = Qnil; | |
9790 | |
9791 /* Move backward half the height of the window. */ | |
9792 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID); | |
9793 it.current_y = it.last_visible_y; | |
9794 move_it_vertically_backward (&it, it.last_visible_y / 2); | |
9795 xassert (IT_CHARPOS (it) >= BEGV); | |
9796 | |
9797 /* The function move_it_vertically_backward may move over more | |
9798 than the specified y-distance. If it->w is small, e.g. a | |
9799 mini-buffer window, we may end up in front of the window's | |
9800 display area. Start displaying at the start of the line | |
9801 containing PT in this case. */ | |
9802 if (it.current_y <= 0) | |
9803 { | |
9804 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID); | |
9805 move_it_vertically (&it, 0); | |
9806 xassert (IT_CHARPOS (it) <= PT); | |
9807 it.current_y = 0; | |
9808 } | |
9809 | |
9810 it.current_x = it.hpos = 0; | |
9811 | |
9812 /* Set startp here explicitly in case that helps avoid an infinite loop | |
9813 in case the window-scroll-functions functions get errors. */ | |
9814 set_marker_both (w->start, Qnil, IT_CHARPOS (it), IT_BYTEPOS (it)); | |
9815 | |
9816 /* Run scroll hooks. */ | |
9817 startp = run_window_scroll_functions (window, it.current.pos); | |
9818 | |
9819 /* Redisplay the window. */ | |
9820 if (!current_matrix_up_to_date_p | |
9821 || windows_or_buffers_changed | |
9822 /* Don't use try_window_reusing_current_matrix in this case | |
9823 because it can have changed the buffer. */ | |
9824 || !NILP (Vwindow_scroll_functions) | |
9825 || !just_this_one_p | |
9826 || MINI_WINDOW_P (w) | |
9827 || !try_window_reusing_current_matrix (w)) | |
9828 try_window (window, startp); | |
9829 | |
9830 /* If new fonts have been loaded (due to fontsets), give up. We | |
9831 have to start a new redisplay since we need to re-adjust glyph | |
9832 matrices. */ | |
9833 if (fonts_changed_p) | |
34844 | 9834 goto finish_scroll_bars; |
25012 | 9835 |
9836 /* If cursor did not appear assume that the middle of the window is | |
9837 in the first line of the window. Do it again with the next line. | |
9838 (Imagine a window of height 100, displaying two lines of height | |
9839 60. Moving back 50 from it->last_visible_y will end in the first | |
9840 line.) */ | |
9841 if (w->cursor.vpos < 0) | |
9842 { | |
9843 if (!NILP (w->window_end_valid) | |
9844 && PT >= Z - XFASTINT (w->window_end_pos)) | |
9845 { | |
9846 clear_glyph_matrix (w->desired_matrix); | |
9847 move_it_by_lines (&it, 1, 0); | |
9848 try_window (window, it.current.pos); | |
9849 } | |
9850 else if (PT < IT_CHARPOS (it)) | |
9851 { | |
9852 clear_glyph_matrix (w->desired_matrix); | |
9853 move_it_by_lines (&it, -1, 0); | |
9854 try_window (window, it.current.pos); | |
19571
28ab022089b2
(redisplay_window): When trying to scroll conservatively
Richard M. Stallman <rms@gnu.org>
parents:
19562
diff
changeset
|
9855 } |
21845
1bae35c78db2
(redisplay_window): Update STARTP_BYTE alongside with
Andreas Schwab <schwab@suse.de>
parents:
21825
diff
changeset
|
9856 else |
25012 | 9857 { |
9858 /* Not much we can do about it. */ | |
9859 } | |
9860 } | |
9861 | |
9862 /* Consider the following case: Window starts at BEGV, there is | |
9863 invisible, intangible text at BEGV, so that display starts at | |
9864 some point START > BEGV. It can happen that we are called with | |
9865 PT somewhere between BEGV and START. Try to handle that case. */ | |
9866 if (w->cursor.vpos < 0) | |
9867 { | |
9868 struct glyph_row *row = w->current_matrix->rows; | |
9869 if (row->mode_line_p) | |
9870 ++row; | |
9871 set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0); | |
9872 } | |
9873 | |
9874 make_cursor_line_fully_visible (w); | |
9875 | |
25695
9e6edb8bc242
(redisplay_window): Make sure start_at_line_beg
Gerd Moellmann <gerd@gnu.org>
parents:
25693
diff
changeset
|
9876 done: |
9e6edb8bc242
(redisplay_window): Make sure start_at_line_beg
Gerd Moellmann <gerd@gnu.org>
parents:
25693
diff
changeset
|
9877 |
25012 | 9878 SET_TEXT_POS_FROM_MARKER (startp, w->start); |
9879 w->start_at_line_beg = ((CHARPOS (startp) == BEGV | |
9880 || FETCH_BYTE (BYTEPOS (startp) - 1) == '\n') | |
9881 ? Qt : Qnil); | |
9882 | |
9883 /* Display the mode line, if we must. */ | |
10764
a3e635f3501e
(redisplay_window): If we update the mode line,
Richard M. Stallman <rms@gnu.org>
parents:
10688
diff
changeset
|
9884 if ((update_mode_line |
2303
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
9885 /* If window not full width, must redo its mode line |
25012 | 9886 if (a) the window to its side is being redone and |
9887 (b) we do a frame-based redisplay. This is a consequence | |
9888 of how inverted lines are drawn in frame-based redisplay. */ | |
9889 || (!just_this_one_p | |
9890 && !FRAME_WINDOW_P (f) | |
9891 && !WINDOW_FULL_WIDTH_P (w)) | |
9892 /* Line number to display. */ | |
10441
f1fc7b6e5fa4
(redisplay, redisplay_window, display_mode_line, decode_mode_spec): Use window
Karl Heuer <kwzh@gnu.org>
parents:
10416
diff
changeset
|
9893 || INTEGERP (w->base_line_pos) |
25012 | 9894 /* Column number is displayed and different from the one displayed. */ |
10441
f1fc7b6e5fa4
(redisplay, redisplay_window, display_mode_line, decode_mode_spec): Use window
Karl Heuer <kwzh@gnu.org>
parents:
10416
diff
changeset
|
9895 || (!NILP (w->column_number_displayed) |
f1fc7b6e5fa4
(redisplay, redisplay_window, display_mode_line, decode_mode_spec): Use window
Karl Heuer <kwzh@gnu.org>
parents:
10416
diff
changeset
|
9896 && XFASTINT (w->column_number_displayed) != current_column ())) |
25012 | 9897 /* This means that the window has a mode line. */ |
9898 && (WINDOW_WANTS_MODELINE_P (w) | |
25546 | 9899 || WINDOW_WANTS_HEADER_LINE_P (w))) |
25012 | 9900 { |
29291
4849a9a666ab
(redisplay_window): Really switch buffers when
Gerd Moellmann <gerd@gnu.org>
parents:
29191
diff
changeset
|
9901 Lisp_Object old_selected_frame; |
4849a9a666ab
(redisplay_window): Really switch buffers when
Gerd Moellmann <gerd@gnu.org>
parents:
29191
diff
changeset
|
9902 |
4849a9a666ab
(redisplay_window): Really switch buffers when
Gerd Moellmann <gerd@gnu.org>
parents:
29191
diff
changeset
|
9903 old_selected_frame = selected_frame; |
4849a9a666ab
(redisplay_window): Really switch buffers when
Gerd Moellmann <gerd@gnu.org>
parents:
29191
diff
changeset
|
9904 |
4849a9a666ab
(redisplay_window): Really switch buffers when
Gerd Moellmann <gerd@gnu.org>
parents:
29191
diff
changeset
|
9905 XSETFRAME (selected_frame, f); |
25012 | 9906 display_mode_lines (w); |
29291
4849a9a666ab
(redisplay_window): Really switch buffers when
Gerd Moellmann <gerd@gnu.org>
parents:
29191
diff
changeset
|
9907 selected_frame = old_selected_frame; |
25012 | 9908 |
9909 /* If mode line height has changed, arrange for a thorough | |
9910 immediate redisplay using the correct mode line height. */ | |
9911 if (WINDOW_WANTS_MODELINE_P (w) | |
9912 && CURRENT_MODE_LINE_HEIGHT (w) != DESIRED_MODE_LINE_HEIGHT (w)) | |
9913 { | |
9914 fonts_changed_p = 1; | |
9915 MATRIX_MODE_LINE_ROW (w->current_matrix)->height | |
9916 = DESIRED_MODE_LINE_HEIGHT (w); | |
9917 } | |
9918 | |
9919 /* If top line height has changed, arrange for a thorough | |
9920 immediate redisplay using the correct mode line height. */ | |
25546 | 9921 if (WINDOW_WANTS_HEADER_LINE_P (w) |
9922 && CURRENT_HEADER_LINE_HEIGHT (w) != DESIRED_HEADER_LINE_HEIGHT (w)) | |
25012 | 9923 { |
9924 fonts_changed_p = 1; | |
25546 | 9925 MATRIX_HEADER_LINE_ROW (w->current_matrix)->height |
9926 = DESIRED_HEADER_LINE_HEIGHT (w); | |
25012 | 9927 } |
9928 | |
9929 if (fonts_changed_p) | |
34844 | 9930 goto finish_scroll_bars; |
25012 | 9931 } |
9932 | |
9933 if (!line_number_displayed | |
9934 && !BUFFERP (w->base_line_pos)) | |
2303
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
9935 { |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
9936 w->base_line_pos = Qnil; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
9937 w->base_line_number = Qnil; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
9938 } |
277 | 9939 |
25012 | 9940 finish_menu_bars: |
9941 | |
2150
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
9942 /* When we reach a frame's selected window, redo the frame's menu bar. */ |
10764
a3e635f3501e
(redisplay_window): If we update the mode line,
Richard M. Stallman <rms@gnu.org>
parents:
10688
diff
changeset
|
9943 if (update_mode_line |
25012 | 9944 && EQ (FRAME_SELECTED_WINDOW (f), window)) |
9945 { | |
9946 int redisplay_menu_p = 0; | |
9947 | |
9948 if (FRAME_WINDOW_P (f)) | |
9949 { | |
32752
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32592
diff
changeset
|
9950 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined (macintosh) |
25012 | 9951 redisplay_menu_p = FRAME_EXTERNAL_MENU_BAR (f); |
5658
4e3a6baa4750
(display_menu_bar): Add USE_X_TOOLKIT conditional.
Richard M. Stallman <rms@gnu.org>
parents:
5340
diff
changeset
|
9952 #else |
25012 | 9953 redisplay_menu_p = FRAME_MENU_BAR_LINES (f) > 0; |
5658
4e3a6baa4750
(display_menu_bar): Add USE_X_TOOLKIT conditional.
Richard M. Stallman <rms@gnu.org>
parents:
5340
diff
changeset
|
9954 #endif |
25012 | 9955 } |
9956 else | |
9957 redisplay_menu_p = FRAME_MENU_BAR_LINES (f) > 0; | |
9958 | |
9959 if (redisplay_menu_p) | |
9960 display_menu_bar (w); | |
9961 | |
9962 #ifdef HAVE_WINDOW_SYSTEM | |
25543 | 9963 if (WINDOWP (f->tool_bar_window) |
9964 && (FRAME_TOOL_BAR_LINES (f) > 0 | |
9965 || auto_resize_tool_bars_p)) | |
9966 redisplay_tool_bar (f); | |
25012 | 9967 #endif |
9968 } | |
2150
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
9969 |
1992
37c45885540a
* xdisp.c (redisplay): Protect calls to request_sigio and
Jim Blandy <jimb@redhat.com>
parents:
1873
diff
changeset
|
9970 finish_scroll_bars: |
25012 | 9971 |
1992
37c45885540a
* xdisp.c (redisplay): Protect calls to request_sigio and
Jim Blandy <jimb@redhat.com>
parents:
1873
diff
changeset
|
9972 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f)) |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
9973 { |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
9974 int start, end, whole; |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
9975 |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
9976 /* Calculate the start and end positions for the current window. |
2874
80805283464a
* xdisp.c (redisplay_window): Make the scrollbar reflect the
Jim Blandy <jimb@redhat.com>
parents:
2848
diff
changeset
|
9977 At some point, it would be nice to choose between scrollbars |
80805283464a
* xdisp.c (redisplay_window): Make the scrollbar reflect the
Jim Blandy <jimb@redhat.com>
parents:
2848
diff
changeset
|
9978 which reflect the whole buffer size, with special markers |
80805283464a
* xdisp.c (redisplay_window): Make the scrollbar reflect the
Jim Blandy <jimb@redhat.com>
parents:
2848
diff
changeset
|
9979 indicating narrowing, and scrollbars which reflect only the |
80805283464a
* xdisp.c (redisplay_window): Make the scrollbar reflect the
Jim Blandy <jimb@redhat.com>
parents:
2848
diff
changeset
|
9980 visible region. |
80805283464a
* xdisp.c (redisplay_window): Make the scrollbar reflect the
Jim Blandy <jimb@redhat.com>
parents:
2848
diff
changeset
|
9981 |
25012 | 9982 Note that mini-buffers sometimes aren't displaying any text. */ |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
9983 if (!MINI_WINDOW_P (w) |
25012 | 9984 || (w == XWINDOW (minibuf_window) |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
9985 && NILP (echo_area_buffer[0]))) |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
9986 { |
2929
f3c44426bed2
Fix the fix to scrollbar computaaFix the fix to the fix for scrollbar computation.
Jim Blandy <jimb@redhat.com>
parents:
2904
diff
changeset
|
9987 whole = ZV - BEGV; |
11108
ad6e21535db6
(redisplay): Make sure pause is set before used.
Karl Heuer <kwzh@gnu.org>
parents:
11085
diff
changeset
|
9988 start = marker_position (w->start) - BEGV; |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
9989 /* I don't think this is guaranteed to be right. For the |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
9990 moment, we'll pretend it is. */ |
25012 | 9991 end = (Z - XFASTINT (w->window_end_pos)) - BEGV; |
9992 | |
9993 if (end < start) | |
9994 end = start; | |
9995 if (whole < (end - start)) | |
9996 whole = end - start; | |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
9997 } |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
9998 else |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
9999 start = end = whole = 0; |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
10000 |
1992
37c45885540a
* xdisp.c (redisplay): Protect calls to request_sigio and
Jim Blandy <jimb@redhat.com>
parents:
1873
diff
changeset
|
10001 /* Indicate what this scroll bar ought to be displaying now. */ |
34844 | 10002 set_vertical_scroll_bar_hook (w, end - start, whole, start); |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
10003 |
25012 | 10004 /* Note that we actually used the scroll bar attached to this |
10005 window, so it shouldn't be deleted at the end of redisplay. */ | |
34844 | 10006 redeem_scroll_bar_hook (w); |
10007 } | |
25012 | 10008 |
10009 /* Restore current_buffer and value of point in it. */ | |
10010 TEMP_SET_PT_BOTH (CHARPOS (opoint), BYTEPOS (opoint)); | |
29445
cb3ad8f8f0ed
(redisplay_window): Always use set_buffer_internal_1.
Gerd Moellmann <gerd@gnu.org>
parents:
29433
diff
changeset
|
10011 set_buffer_internal_1 (old); |
25012 | 10012 TEMP_SET_PT_BOTH (CHARPOS (lpoint), BYTEPOS (lpoint)); |
21748
c423e8929f69
(Qinhibit_point_motion_hooks): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
21534
diff
changeset
|
10013 |
c423e8929f69
(Qinhibit_point_motion_hooks): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
21534
diff
changeset
|
10014 unbind_to (count, Qnil); |
277 | 10015 } |
25012 | 10016 |
10017 | |
10018 /* Build the complete desired matrix of WINDOW with a window start | |
10019 buffer position POS. Value is non-zero if successful. It is zero | |
10020 if fonts were loaded during redisplay which makes re-adjusting | |
10021 glyph matrices necessary. */ | |
10022 | |
10023 int | |
277 | 10024 try_window (window, pos) |
10025 Lisp_Object window; | |
25012 | 10026 struct text_pos pos; |
10027 { | |
10028 struct window *w = XWINDOW (window); | |
10029 struct it it; | |
10030 struct glyph_row *last_text_row = NULL; | |
10031 | |
10032 /* Make POS the new window start. */ | |
10033 set_marker_both (w->start, Qnil, CHARPOS (pos), BYTEPOS (pos)); | |
10034 | |
10035 /* Mark cursor position as unknown. No overlay arrow seen. */ | |
10036 w->cursor.vpos = -1; | |
277 | 10037 overlay_arrow_seen = 0; |
25012 | 10038 |
10039 /* Initialize iterator and info to start at POS. */ | |
10040 start_display (&it, w, pos); | |
10041 | |
10042 /* Display all lines of W. */ | |
10043 while (it.current_y < it.last_visible_y) | |
10044 { | |
10045 if (display_line (&it)) | |
10046 last_text_row = it.glyph_row - 1; | |
10047 if (fonts_changed_p) | |
10048 return 0; | |
10049 } | |
10050 | |
10051 /* If bottom moved off end of frame, change mode line percentage. */ | |
10052 if (XFASTINT (w->window_end_pos) <= 0 | |
10053 && Z != IT_CHARPOS (it)) | |
277 | 10054 w->update_mode_line = Qt; |
10055 | |
25012 | 10056 /* Set window_end_pos to the offset of the last character displayed |
10057 on the window from the end of current_buffer. Set | |
10058 window_end_vpos to its row number. */ | |
10059 if (last_text_row) | |
10060 { | |
10061 xassert (MATRIX_ROW_DISPLAYS_TEXT_P (last_text_row)); | |
10062 w->window_end_bytepos | |
10063 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_text_row); | |
10064 XSETFASTINT (w->window_end_pos, | |
10065 Z - MATRIX_ROW_END_CHARPOS (last_text_row)); | |
10066 XSETFASTINT (w->window_end_vpos, | |
10067 MATRIX_ROW_VPOS (last_text_row, w->desired_matrix)); | |
10068 xassert (MATRIX_ROW (w->desired_matrix, XFASTINT (w->window_end_vpos)) | |
10069 ->displays_text_p); | |
10070 } | |
10071 else | |
10072 { | |
10073 w->window_end_bytepos = 0; | |
10074 XSETFASTINT (w->window_end_pos, 0); | |
10075 XSETFASTINT (w->window_end_vpos, 0); | |
10076 } | |
10077 | |
277 | 10078 /* But that is not valid info until redisplay finishes. */ |
10079 w->window_end_valid = Qnil; | |
25012 | 10080 return 1; |
10081 } | |
10082 | |
10083 | |
277 | 10084 |
25012 | 10085 /************************************************************************ |
10086 Window redisplay reusing current matrix when buffer has not changed | |
10087 ************************************************************************/ | |
10088 | |
10089 /* Try redisplay of window W showing an unchanged buffer with a | |
10090 different window start than the last time it was displayed by | |
10091 reusing its current matrix. Value is non-zero if successful. | |
10092 W->start is the new window start. */ | |
10093 | |
10094 static int | |
10095 try_window_reusing_current_matrix (w) | |
10096 struct window *w; | |
10097 { | |
10098 struct frame *f = XFRAME (w->frame); | |
10099 struct glyph_row *row, *bottom_row; | |
10100 struct it it; | |
10101 struct run run; | |
10102 struct text_pos start, new_start; | |
10103 int nrows_scrolled, i; | |
10104 struct glyph_row *last_text_row; | |
10105 struct glyph_row *last_reused_text_row; | |
10106 struct glyph_row *start_row; | |
10107 int start_vpos, min_y, max_y; | |
29981
e4256ac89b92
(try_window_reusing_current_matrix): Don't try to reuse
Gerd Moellmann <gerd@gnu.org>
parents:
29960
diff
changeset
|
10108 |
e4256ac89b92
(try_window_reusing_current_matrix): Don't try to reuse
Gerd Moellmann <gerd@gnu.org>
parents:
29960
diff
changeset
|
10109 if (/* This function doesn't handle terminal frames. */ |
e4256ac89b92
(try_window_reusing_current_matrix): Don't try to reuse
Gerd Moellmann <gerd@gnu.org>
parents:
29960
diff
changeset
|
10110 !FRAME_WINDOW_P (f) |
e4256ac89b92
(try_window_reusing_current_matrix): Don't try to reuse
Gerd Moellmann <gerd@gnu.org>
parents:
29960
diff
changeset
|
10111 /* Don't try to reuse the display if windows have been split |
e4256ac89b92
(try_window_reusing_current_matrix): Don't try to reuse
Gerd Moellmann <gerd@gnu.org>
parents:
29960
diff
changeset
|
10112 or such. */ |
e4256ac89b92
(try_window_reusing_current_matrix): Don't try to reuse
Gerd Moellmann <gerd@gnu.org>
parents:
29960
diff
changeset
|
10113 || windows_or_buffers_changed) |
25012 | 10114 return 0; |
10115 | |
10116 /* Can't do this if region may have changed. */ | |
10117 if ((!NILP (Vtransient_mark_mode) | |
10118 && !NILP (current_buffer->mark_active)) | |
25305
273b3c17ce68
(Qshow_trailing_whitespace): Removed.
Gerd Moellmann <gerd@gnu.org>
parents:
25258
diff
changeset
|
10119 || !NILP (w->region_showing) |
273b3c17ce68
(Qshow_trailing_whitespace): Removed.
Gerd Moellmann <gerd@gnu.org>
parents:
25258
diff
changeset
|
10120 || !NILP (Vshow_trailing_whitespace)) |
25012 | 10121 return 0; |
10122 | |
10123 /* If top-line visibility has changed, give up. */ | |
25546 | 10124 if (WINDOW_WANTS_HEADER_LINE_P (w) |
10125 != MATRIX_HEADER_LINE_ROW (w->current_matrix)->mode_line_p) | |
25012 | 10126 return 0; |
10127 | |
10128 /* Give up if old or new display is scrolled vertically. We could | |
10129 make this function handle this, but right now it doesn't. */ | |
10130 start_row = MATRIX_FIRST_TEXT_ROW (w->current_matrix); | |
10131 if (w->vscroll || MATRIX_ROW_PARTIALLY_VISIBLE_P (start_row)) | |
10132 return 0; | |
10133 | |
10134 /* The variable new_start now holds the new window start. The old | |
10135 start `start' can be determined from the current matrix. */ | |
10136 SET_TEXT_POS_FROM_MARKER (new_start, w->start); | |
10137 start = start_row->start.pos; | |
10138 start_vpos = MATRIX_ROW_VPOS (start_row, w->current_matrix); | |
10139 | |
10140 /* Clear the desired matrix for the display below. */ | |
10141 clear_glyph_matrix (w->desired_matrix); | |
10142 | |
10143 if (CHARPOS (new_start) <= CHARPOS (start)) | |
10144 { | |
10145 int first_row_y; | |
10146 | |
10147 IF_DEBUG (debug_method_add (w, "twu1")); | |
10148 | |
10149 /* Display up to a row that can be reused. The variable | |
10150 last_text_row is set to the last row displayed that displays | |
31849
07bedd9c5bdd
(try_window_reusing_current_matrix): More fixes
Gerd Moellmann <gerd@gnu.org>
parents:
31845
diff
changeset
|
10151 text. Note that it.vpos == 0 if or if not there is a |
07bedd9c5bdd
(try_window_reusing_current_matrix): More fixes
Gerd Moellmann <gerd@gnu.org>
parents:
31845
diff
changeset
|
10152 header-line; it's not the same as the MATRIX_ROW_VPOS! */ |
25012 | 10153 start_display (&it, w, new_start); |
10154 first_row_y = it.current_y; | |
10155 w->cursor.vpos = -1; | |
10156 last_text_row = last_reused_text_row = NULL; | |
31849
07bedd9c5bdd
(try_window_reusing_current_matrix): More fixes
Gerd Moellmann <gerd@gnu.org>
parents:
31845
diff
changeset
|
10157 |
25012 | 10158 while (it.current_y < it.last_visible_y |
10159 && IT_CHARPOS (it) < CHARPOS (start) | |
10160 && !fonts_changed_p) | |
10161 if (display_line (&it)) | |
10162 last_text_row = it.glyph_row - 1; | |
10163 | |
10164 /* A value of current_y < last_visible_y means that we stopped | |
10165 at the previous window start, which in turn means that we | |
10166 have at least one reusable row. */ | |
10167 if (it.current_y < it.last_visible_y) | |
10168 { | |
31849
07bedd9c5bdd
(try_window_reusing_current_matrix): More fixes
Gerd Moellmann <gerd@gnu.org>
parents:
31845
diff
changeset
|
10169 /* IT.vpos always starts from 0; it counts text lines. */ |
25012 | 10170 nrows_scrolled = it.vpos; |
10171 | |
10172 /* Find PT if not already found in the lines displayed. */ | |
10173 if (w->cursor.vpos < 0) | |
10174 { | |
10175 int dy = it.current_y - first_row_y; | |
10176 | |
10177 row = MATRIX_FIRST_TEXT_ROW (w->current_matrix); | |
10178 while (MATRIX_ROW_DISPLAYS_TEXT_P (row)) | |
10179 { | |
10180 if (PT >= MATRIX_ROW_START_CHARPOS (row) | |
10181 && PT < MATRIX_ROW_END_CHARPOS (row)) | |
10182 { | |
10183 set_cursor_from_row (w, row, w->current_matrix, 0, 0, | |
10184 dy, nrows_scrolled); | |
10185 break; | |
10186 } | |
10187 | |
10188 if (MATRIX_ROW_BOTTOM_Y (row) + dy >= it.last_visible_y) | |
10189 break; | |
10190 | |
10191 ++row; | |
10192 } | |
10193 | |
10194 /* Give up if point was not found. This shouldn't | |
10195 happen often; not more often than with try_window | |
10196 itself. */ | |
10197 if (w->cursor.vpos < 0) | |
10198 { | |
10199 clear_glyph_matrix (w->desired_matrix); | |
10200 return 0; | |
10201 } | |
10202 } | |
10203 | |
10204 /* Scroll the display. Do it before the current matrix is | |
10205 changed. The problem here is that update has not yet | |
10206 run, i.e. part of the current matrix is not up to date. | |
10207 scroll_run_hook will clear the cursor, and use the | |
10208 current matrix to get the height of the row the cursor is | |
10209 in. */ | |
10210 run.current_y = first_row_y; | |
10211 run.desired_y = it.current_y; | |
10212 run.height = it.last_visible_y - it.current_y; | |
31849
07bedd9c5bdd
(try_window_reusing_current_matrix): More fixes
Gerd Moellmann <gerd@gnu.org>
parents:
31845
diff
changeset
|
10213 |
07bedd9c5bdd
(try_window_reusing_current_matrix): More fixes
Gerd Moellmann <gerd@gnu.org>
parents:
31845
diff
changeset
|
10214 if (run.height > 0 && run.current_y != run.desired_y) |
25012 | 10215 { |
10216 update_begin (f); | |
10217 rif->update_window_begin_hook (w); | |
30159
1b0331a7c724
(try_window_reusing_current_matrix, try_window_id):
Gerd Moellmann <gerd@gnu.org>
parents:
30136
diff
changeset
|
10218 rif->clear_mouse_face (w); |
25012 | 10219 rif->scroll_run_hook (w, &run); |
30159
1b0331a7c724
(try_window_reusing_current_matrix, try_window_id):
Gerd Moellmann <gerd@gnu.org>
parents:
30136
diff
changeset
|
10220 rif->update_window_end_hook (w, 0, 0); |
25012 | 10221 update_end (f); |
10222 } | |
10223 | |
10224 /* Shift current matrix down by nrows_scrolled lines. */ | |
10225 bottom_row = MATRIX_BOTTOM_TEXT_ROW (w->current_matrix, w); | |
10226 rotate_matrix (w->current_matrix, | |
10227 start_vpos, | |
10228 MATRIX_ROW_VPOS (bottom_row, w->current_matrix), | |
10229 nrows_scrolled); | |
10230 | |
34927
2470fec0dd92
(try_window_reusing_current_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34924
diff
changeset
|
10231 /* Disable lines that must be updated. */ |
25012 | 10232 for (i = 0; i < it.vpos; ++i) |
31849
07bedd9c5bdd
(try_window_reusing_current_matrix): More fixes
Gerd Moellmann <gerd@gnu.org>
parents:
31845
diff
changeset
|
10233 (start_row + i)->enabled_p = 0; |
34927
2470fec0dd92
(try_window_reusing_current_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34924
diff
changeset
|
10234 |
25012 | 10235 /* Re-compute Y positions. */ |
25546 | 10236 min_y = WINDOW_DISPLAY_HEADER_LINE_HEIGHT (w); |
25012 | 10237 max_y = it.last_visible_y; |
31849
07bedd9c5bdd
(try_window_reusing_current_matrix): More fixes
Gerd Moellmann <gerd@gnu.org>
parents:
31845
diff
changeset
|
10238 for (row = start_row + nrows_scrolled; |
07bedd9c5bdd
(try_window_reusing_current_matrix): More fixes
Gerd Moellmann <gerd@gnu.org>
parents:
31845
diff
changeset
|
10239 row < bottom_row; |
07bedd9c5bdd
(try_window_reusing_current_matrix): More fixes
Gerd Moellmann <gerd@gnu.org>
parents:
31845
diff
changeset
|
10240 ++row) |
25012 | 10241 { |
10242 row->y = it.current_y; | |
10243 | |
10244 if (row->y < min_y) | |
10245 row->visible_height = row->height - (min_y - row->y); | |
10246 else if (row->y + row->height > max_y) | |
10247 row->visible_height | |
10248 = row->height - (row->y + row->height - max_y); | |
10249 else | |
10250 row->visible_height = row->height; | |
10251 | |
10252 it.current_y += row->height; | |
10253 | |
10254 if (MATRIX_ROW_DISPLAYS_TEXT_P (row)) | |
10255 last_reused_text_row = row; | |
10256 if (MATRIX_ROW_BOTTOM_Y (row) >= it.last_visible_y) | |
10257 break; | |
10258 } | |
34927
2470fec0dd92
(try_window_reusing_current_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34924
diff
changeset
|
10259 |
2470fec0dd92
(try_window_reusing_current_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34924
diff
changeset
|
10260 /* Disable lines in the current matrix which are now |
2470fec0dd92
(try_window_reusing_current_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34924
diff
changeset
|
10261 below the window. */ |
35017
53c3e3f3949b
(try_window_reusing_current_matrix): Fix bug setting
Gerd Moellmann <gerd@gnu.org>
parents:
35005
diff
changeset
|
10262 for (++row; row < bottom_row; ++row) |
34927
2470fec0dd92
(try_window_reusing_current_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34924
diff
changeset
|
10263 row->enabled_p = 0; |
25012 | 10264 } |
10265 | |
10266 /* Update window_end_pos etc.; last_reused_text_row is the last | |
10267 reused row from the current matrix containing text, if any. | |
10268 The value of last_text_row is the last displayed line | |
10269 containing text. */ | |
10270 if (last_reused_text_row) | |
10271 { | |
10272 w->window_end_bytepos | |
10273 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_reused_text_row); | |
10274 XSETFASTINT (w->window_end_pos, | |
10275 Z - MATRIX_ROW_END_CHARPOS (last_reused_text_row)); | |
10276 XSETFASTINT (w->window_end_vpos, | |
10277 MATRIX_ROW_VPOS (last_reused_text_row, | |
10278 w->current_matrix)); | |
10279 } | |
10280 else if (last_text_row) | |
10281 { | |
10282 w->window_end_bytepos | |
10283 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_text_row); | |
10284 XSETFASTINT (w->window_end_pos, | |
10285 Z - MATRIX_ROW_END_CHARPOS (last_text_row)); | |
10286 XSETFASTINT (w->window_end_vpos, | |
10287 MATRIX_ROW_VPOS (last_text_row, w->desired_matrix)); | |
10288 } | |
10289 else | |
10290 { | |
10291 /* This window must be completely empty. */ | |
10292 w->window_end_bytepos = 0; | |
10293 XSETFASTINT (w->window_end_pos, 0); | |
10294 XSETFASTINT (w->window_end_vpos, 0); | |
10295 } | |
10296 w->window_end_valid = Qnil; | |
10297 | |
10298 /* Update hint: don't try scrolling again in update_window. */ | |
10299 w->desired_matrix->no_scrolling_p = 1; | |
10300 | |
10301 #if GLYPH_DEBUG | |
10302 debug_method_add (w, "try_window_reusing_current_matrix 1"); | |
10303 #endif | |
10304 return 1; | |
10305 } | |
10306 else if (CHARPOS (new_start) > CHARPOS (start)) | |
10307 { | |
10308 struct glyph_row *pt_row, *row; | |
10309 struct glyph_row *first_reusable_row; | |
10310 struct glyph_row *first_row_to_display; | |
10311 int dy; | |
10312 int yb = window_text_bottom_y (w); | |
10313 | |
10314 IF_DEBUG (debug_method_add (w, "twu2")); | |
10315 | |
10316 /* Find the row starting at new_start, if there is one. Don't | |
10317 reuse a partially visible line at the end. */ | |
31849
07bedd9c5bdd
(try_window_reusing_current_matrix): More fixes
Gerd Moellmann <gerd@gnu.org>
parents:
31845
diff
changeset
|
10318 first_reusable_row = start_row; |
25012 | 10319 while (first_reusable_row->enabled_p |
10320 && MATRIX_ROW_BOTTOM_Y (first_reusable_row) < yb | |
10321 && (MATRIX_ROW_START_CHARPOS (first_reusable_row) | |
10322 < CHARPOS (new_start))) | |
10323 ++first_reusable_row; | |
10324 | |
10325 /* Give up if there is no row to reuse. */ | |
10326 if (MATRIX_ROW_BOTTOM_Y (first_reusable_row) >= yb | |
25316
561aa7ea85a7
(unwind_redisplay): New. Resets flag redisplaying_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25305
diff
changeset
|
10327 || !first_reusable_row->enabled_p |
561aa7ea85a7
(unwind_redisplay): New. Resets flag redisplaying_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25305
diff
changeset
|
10328 || (MATRIX_ROW_START_CHARPOS (first_reusable_row) |
561aa7ea85a7
(unwind_redisplay): New. Resets flag redisplaying_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25305
diff
changeset
|
10329 != CHARPOS (new_start))) |
25012 | 10330 return 0; |
10331 | |
10332 /* We can reuse fully visible rows beginning with | |
10333 first_reusable_row to the end of the window. Set | |
10334 first_row_to_display to the first row that cannot be reused. | |
10335 Set pt_row to the row containing point, if there is any. */ | |
10336 first_row_to_display = first_reusable_row; | |
10337 pt_row = NULL; | |
10338 while (MATRIX_ROW_BOTTOM_Y (first_row_to_display) < yb) | |
10339 { | |
10340 if (PT >= MATRIX_ROW_START_CHARPOS (first_row_to_display) | |
10341 && PT < MATRIX_ROW_END_CHARPOS (first_row_to_display)) | |
10342 pt_row = first_row_to_display; | |
10343 | |
10344 ++first_row_to_display; | |
10345 } | |
10346 | |
10347 /* Start displaying at the start of first_row_to_display. */ | |
10348 xassert (first_row_to_display->y < yb); | |
10349 init_to_row_start (&it, w, first_row_to_display); | |
31849
07bedd9c5bdd
(try_window_reusing_current_matrix): More fixes
Gerd Moellmann <gerd@gnu.org>
parents:
31845
diff
changeset
|
10350 nrows_scrolled = (MATRIX_ROW_VPOS (first_reusable_row, w->current_matrix) |
07bedd9c5bdd
(try_window_reusing_current_matrix): More fixes
Gerd Moellmann <gerd@gnu.org>
parents:
31845
diff
changeset
|
10351 - start_vpos); |
25012 | 10352 it.vpos = (MATRIX_ROW_VPOS (first_row_to_display, w->current_matrix) |
10353 - nrows_scrolled); | |
31849
07bedd9c5bdd
(try_window_reusing_current_matrix): More fixes
Gerd Moellmann <gerd@gnu.org>
parents:
31845
diff
changeset
|
10354 it.current_y = (first_row_to_display->y - first_reusable_row->y |
07bedd9c5bdd
(try_window_reusing_current_matrix): More fixes
Gerd Moellmann <gerd@gnu.org>
parents:
31845
diff
changeset
|
10355 + WINDOW_DISPLAY_HEADER_LINE_HEIGHT (w)); |
25012 | 10356 |
10357 /* Display lines beginning with first_row_to_display in the | |
10358 desired matrix. Set last_text_row to the last row displayed | |
10359 that displays text. */ | |
10360 it.glyph_row = MATRIX_ROW (w->desired_matrix, it.vpos); | |
10361 if (pt_row == NULL) | |
10362 w->cursor.vpos = -1; | |
10363 last_text_row = NULL; | |
10364 while (it.current_y < it.last_visible_y && !fonts_changed_p) | |
10365 if (display_line (&it)) | |
10366 last_text_row = it.glyph_row - 1; | |
10367 | |
10368 /* Give up If point isn't in a row displayed or reused. */ | |
10369 if (w->cursor.vpos < 0) | |
10370 { | |
10371 clear_glyph_matrix (w->desired_matrix); | |
10372 return 0; | |
10373 } | |
10374 | |
10375 /* If point is in a reused row, adjust y and vpos of the cursor | |
10376 position. */ | |
10377 if (pt_row) | |
10378 { | |
10379 w->cursor.vpos -= MATRIX_ROW_VPOS (first_reusable_row, | |
10380 w->current_matrix); | |
10381 w->cursor.y -= first_reusable_row->y; | |
10382 } | |
10383 | |
10384 /* Scroll the display. */ | |
10385 run.current_y = first_reusable_row->y; | |
25546 | 10386 run.desired_y = WINDOW_DISPLAY_HEADER_LINE_HEIGHT (w); |
25012 | 10387 run.height = it.last_visible_y - run.current_y; |
31826
2c8c52a67b91
(try_window_reusing_current_matrix): Fix computation of
Gerd Moellmann <gerd@gnu.org>
parents:
31650
diff
changeset
|
10388 dy = run.current_y - run.desired_y; |
2c8c52a67b91
(try_window_reusing_current_matrix): Fix computation of
Gerd Moellmann <gerd@gnu.org>
parents:
31650
diff
changeset
|
10389 |
25012 | 10390 if (run.height) |
10391 { | |
10392 struct frame *f = XFRAME (WINDOW_FRAME (w)); | |
10393 update_begin (f); | |
10394 rif->update_window_begin_hook (w); | |
30159
1b0331a7c724
(try_window_reusing_current_matrix, try_window_id):
Gerd Moellmann <gerd@gnu.org>
parents:
30136
diff
changeset
|
10395 rif->clear_mouse_face (w); |
25012 | 10396 rif->scroll_run_hook (w, &run); |
30159
1b0331a7c724
(try_window_reusing_current_matrix, try_window_id):
Gerd Moellmann <gerd@gnu.org>
parents:
30136
diff
changeset
|
10397 rif->update_window_end_hook (w, 0, 0); |
25012 | 10398 update_end (f); |
10399 } | |
10400 | |
10401 /* Adjust Y positions of reused rows. */ | |
10402 bottom_row = MATRIX_BOTTOM_TEXT_ROW (w->current_matrix, w); | |
25546 | 10403 min_y = WINDOW_DISPLAY_HEADER_LINE_HEIGHT (w); |
25012 | 10404 max_y = it.last_visible_y; |
31849
07bedd9c5bdd
(try_window_reusing_current_matrix): More fixes
Gerd Moellmann <gerd@gnu.org>
parents:
31845
diff
changeset
|
10405 for (row = first_reusable_row; row < first_row_to_display; ++row) |
25012 | 10406 { |
10407 row->y -= dy; | |
10408 if (row->y < min_y) | |
10409 row->visible_height = row->height - (min_y - row->y); | |
10410 else if (row->y + row->height > max_y) | |
10411 row->visible_height | |
10412 = row->height - (row->y + row->height - max_y); | |
10413 else | |
10414 row->visible_height = row->height; | |
10415 } | |
10416 | |
10417 /* Disable rows not reused. */ | |
10418 while (row < bottom_row) | |
10419 { | |
10420 row->enabled_p = 0; | |
10421 ++row; | |
10422 } | |
10423 | |
10424 /* Scroll the current matrix. */ | |
10425 xassert (nrows_scrolled > 0); | |
10426 rotate_matrix (w->current_matrix, | |
10427 start_vpos, | |
10428 MATRIX_ROW_VPOS (bottom_row, w->current_matrix), | |
10429 -nrows_scrolled); | |
10430 | |
10431 /* Adjust window end. A null value of last_text_row means that | |
10432 the window end is in reused rows which in turn means that | |
10433 only its vpos can have changed. */ | |
10434 if (last_text_row) | |
10435 { | |
10436 w->window_end_bytepos | |
10437 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_text_row); | |
10438 XSETFASTINT (w->window_end_pos, | |
10439 Z - MATRIX_ROW_END_CHARPOS (last_text_row)); | |
10440 XSETFASTINT (w->window_end_vpos, | |
10441 MATRIX_ROW_VPOS (last_text_row, w->desired_matrix)); | |
10442 } | |
10443 else | |
10444 { | |
10445 XSETFASTINT (w->window_end_vpos, | |
10446 XFASTINT (w->window_end_vpos) - nrows_scrolled); | |
10447 } | |
10448 | |
10449 w->window_end_valid = Qnil; | |
10450 w->desired_matrix->no_scrolling_p = 1; | |
10451 | |
10452 #if GLYPH_DEBUG | |
10453 debug_method_add (w, "try_window_reusing_current_matrix 2"); | |
10454 #endif | |
10455 return 1; | |
10456 } | |
10457 | |
10458 return 0; | |
10459 } | |
10460 | |
10461 | |
10462 | |
10463 /************************************************************************ | |
10464 Window redisplay reusing current matrix when buffer has changed | |
10465 ************************************************************************/ | |
10466 | |
32539
dd4c7d5e1599
(find_last_unchanged_at_beg_row): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
32532
diff
changeset
|
10467 static struct glyph_row *find_last_unchanged_at_beg_row P_ ((struct window *)); |
dd4c7d5e1599
(find_last_unchanged_at_beg_row): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
32532
diff
changeset
|
10468 static struct glyph_row *find_first_unchanged_at_end_row P_ ((struct window *, |
25012 | 10469 int *, int *)); |
10470 static struct glyph_row * | |
10471 find_last_row_displaying_text P_ ((struct glyph_matrix *, struct it *, | |
10472 struct glyph_row *)); | |
10473 | |
10474 | |
10475 /* Return the last row in MATRIX displaying text. If row START is | |
10476 non-null, start searching with that row. IT gives the dimensions | |
10477 of the display. Value is null if matrix is empty; otherwise it is | |
10478 a pointer to the row found. */ | |
10479 | |
10480 static struct glyph_row * | |
10481 find_last_row_displaying_text (matrix, it, start) | |
10482 struct glyph_matrix *matrix; | |
10483 struct it *it; | |
10484 struct glyph_row *start; | |
10485 { | |
10486 struct glyph_row *row, *row_found; | |
10487 | |
10488 /* Set row_found to the last row in IT->w's current matrix | |
10489 displaying text. The loop looks funny but think of partially | |
10490 visible lines. */ | |
10491 row_found = NULL; | |
10492 row = start ? start : MATRIX_FIRST_TEXT_ROW (matrix); | |
10493 while (MATRIX_ROW_DISPLAYS_TEXT_P (row)) | |
10494 { | |
10495 xassert (row->enabled_p); | |
10496 row_found = row; | |
10497 if (MATRIX_ROW_BOTTOM_Y (row) >= it->last_visible_y) | |
10498 break; | |
10499 ++row; | |
10500 } | |
10501 | |
10502 return row_found; | |
10503 } | |
10504 | |
10505 | |
10506 /* Return the last row in the current matrix of W that is not affected | |
10507 by changes at the start of current_buffer that occurred since the | |
10508 last time W was redisplayed. Value is null if no such row exists. | |
10509 | |
10510 The global variable beg_unchanged has to contain the number of | |
10511 bytes unchanged at the start of current_buffer. BEG + | |
10512 beg_unchanged is the buffer position of the first changed byte in | |
10513 current_buffer. Characters at positions < BEG + beg_unchanged are | |
10514 at the same buffer positions as they were when the current matrix | |
10515 was built. */ | |
10516 | |
10517 static struct glyph_row * | |
32539
dd4c7d5e1599
(find_last_unchanged_at_beg_row): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
32532
diff
changeset
|
10518 find_last_unchanged_at_beg_row (w) |
25012 | 10519 struct window *w; |
10520 { | |
25377
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
10521 int first_changed_pos = BEG + BEG_UNCHANGED; |
25012 | 10522 struct glyph_row *row; |
10523 struct glyph_row *row_found = NULL; | |
10524 int yb = window_text_bottom_y (w); | |
10525 | |
10526 /* Find the last row displaying unchanged text. */ | |
10527 row = MATRIX_FIRST_TEXT_ROW (w->current_matrix); | |
10528 while (MATRIX_ROW_DISPLAYS_TEXT_P (row) | |
10529 && MATRIX_ROW_START_CHARPOS (row) < first_changed_pos) | |
10530 { | |
10531 if (/* If row ends before first_changed_pos, it is unchanged, | |
10532 except in some case. */ | |
10533 MATRIX_ROW_END_CHARPOS (row) <= first_changed_pos | |
10534 /* When row ends in ZV and we write at ZV it is not | |
10535 unchanged. */ | |
10536 && !row->ends_at_zv_p | |
10537 /* When first_changed_pos is the end of a continued line, | |
10538 row is not unchanged because it may be no longer | |
10539 continued. */ | |
10540 && !(MATRIX_ROW_END_CHARPOS (row) == first_changed_pos | |
10541 && row->continued_p)) | |
10542 row_found = row; | |
10543 | |
10544 /* Stop if last visible row. */ | |
10545 if (MATRIX_ROW_BOTTOM_Y (row) >= yb) | |
10546 break; | |
10547 | |
10548 ++row; | |
10549 } | |
10550 | |
10551 return row_found; | |
10552 } | |
10553 | |
10554 | |
10555 /* Find the first glyph row in the current matrix of W that is not | |
10556 affected by changes at the end of current_buffer since the last | |
10557 time the window was redisplayed. Return in *DELTA the number of | |
25388
b38732c75a65
(redisplay_window): Don't ever test just_this_one_p
Gerd Moellmann <gerd@gnu.org>
parents:
25377
diff
changeset
|
10558 chars by which buffer positions in unchanged text at the end of |
b38732c75a65
(redisplay_window): Don't ever test just_this_one_p
Gerd Moellmann <gerd@gnu.org>
parents:
25377
diff
changeset
|
10559 current_buffer must be adjusted. Return in *DELTA_BYTES the |
b38732c75a65
(redisplay_window): Don't ever test just_this_one_p
Gerd Moellmann <gerd@gnu.org>
parents:
25377
diff
changeset
|
10560 corresponding number of bytes. Value is null if no such row |
b38732c75a65
(redisplay_window): Don't ever test just_this_one_p
Gerd Moellmann <gerd@gnu.org>
parents:
25377
diff
changeset
|
10561 exists, i.e. all rows are affected by changes. */ |
25012 | 10562 |
10563 static struct glyph_row * | |
32539
dd4c7d5e1599
(find_last_unchanged_at_beg_row): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
32532
diff
changeset
|
10564 find_first_unchanged_at_end_row (w, delta, delta_bytes) |
25012 | 10565 struct window *w; |
10566 int *delta, *delta_bytes; | |
10567 { | |
10568 struct glyph_row *row; | |
10569 struct glyph_row *row_found = NULL; | |
10570 | |
10571 *delta = *delta_bytes = 0; | |
10572 | |
32539
dd4c7d5e1599
(find_last_unchanged_at_beg_row): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
32532
diff
changeset
|
10573 /* Display must not have been paused, otherwise the current matrix |
dd4c7d5e1599
(find_last_unchanged_at_beg_row): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
32532
diff
changeset
|
10574 is not up to date. */ |
dd4c7d5e1599
(find_last_unchanged_at_beg_row): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
32532
diff
changeset
|
10575 if (NILP (w->window_end_valid)) |
dd4c7d5e1599
(find_last_unchanged_at_beg_row): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
32532
diff
changeset
|
10576 abort (); |
dd4c7d5e1599
(find_last_unchanged_at_beg_row): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
32532
diff
changeset
|
10577 |
dd4c7d5e1599
(find_last_unchanged_at_beg_row): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
32532
diff
changeset
|
10578 /* A value of window_end_pos >= END_UNCHANGED means that the window |
25012 | 10579 end is in the range of changed text. If so, there is no |
10580 unchanged row at the end of W's current matrix. */ | |
25377
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
10581 if (XFASTINT (w->window_end_pos) >= END_UNCHANGED) |
25012 | 10582 return NULL; |
10583 | |
10584 /* Set row to the last row in W's current matrix displaying text. */ | |
10585 row = MATRIX_ROW (w->current_matrix, XFASTINT (w->window_end_vpos)); | |
10586 | |
10587 /* If matrix is entirely empty, no unchanged row exists. */ | |
10588 if (MATRIX_ROW_DISPLAYS_TEXT_P (row)) | |
10589 { | |
10590 /* The value of row is the last glyph row in the matrix having a | |
10591 meaningful buffer position in it. The end position of row | |
10592 corresponds to window_end_pos. This allows us to translate | |
10593 buffer positions in the current matrix to current buffer | |
10594 positions for characters not in changed text. */ | |
10595 int Z_old = MATRIX_ROW_END_CHARPOS (row) + XFASTINT (w->window_end_pos); | |
10596 int Z_BYTE_old = MATRIX_ROW_END_BYTEPOS (row) + w->window_end_bytepos; | |
10597 int last_unchanged_pos, last_unchanged_pos_old; | |
10598 struct glyph_row *first_text_row | |
10599 = MATRIX_FIRST_TEXT_ROW (w->current_matrix); | |
10600 | |
10601 *delta = Z - Z_old; | |
10602 *delta_bytes = Z_BYTE - Z_BYTE_old; | |
10603 | |
10604 /* Set last_unchanged_pos to the buffer position of the last | |
10605 character in the buffer that has not been changed. Z is the | |
10606 index + 1 of the last byte in current_buffer, i.e. by | |
10607 subtracting end_unchanged we get the index of the last | |
10608 unchanged character, and we have to add BEG to get its buffer | |
10609 position. */ | |
25377
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
10610 last_unchanged_pos = Z - END_UNCHANGED + BEG; |
25012 | 10611 last_unchanged_pos_old = last_unchanged_pos - *delta; |
10612 | |
10613 /* Search backward from ROW for a row displaying a line that | |
10614 starts at a minimum position >= last_unchanged_pos_old. */ | |
32539
dd4c7d5e1599
(find_last_unchanged_at_beg_row): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
32532
diff
changeset
|
10615 for (; row > first_text_row; --row) |
dd4c7d5e1599
(find_last_unchanged_at_beg_row): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
32532
diff
changeset
|
10616 { |
dd4c7d5e1599
(find_last_unchanged_at_beg_row): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
32532
diff
changeset
|
10617 if (!row->enabled_p || !MATRIX_ROW_DISPLAYS_TEXT_P (row)) |
dd4c7d5e1599
(find_last_unchanged_at_beg_row): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
32532
diff
changeset
|
10618 abort (); |
25012 | 10619 |
10620 if (MATRIX_ROW_START_CHARPOS (row) >= last_unchanged_pos_old) | |
10621 row_found = row; | |
32539
dd4c7d5e1599
(find_last_unchanged_at_beg_row): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
32532
diff
changeset
|
10622 } |
dd4c7d5e1599
(find_last_unchanged_at_beg_row): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
32532
diff
changeset
|
10623 } |
dd4c7d5e1599
(find_last_unchanged_at_beg_row): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
32532
diff
changeset
|
10624 |
dd4c7d5e1599
(find_last_unchanged_at_beg_row): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
32532
diff
changeset
|
10625 if (row_found && !MATRIX_ROW_DISPLAYS_TEXT_P (row_found)) |
dd4c7d5e1599
(find_last_unchanged_at_beg_row): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
32532
diff
changeset
|
10626 abort (); |
dd4c7d5e1599
(find_last_unchanged_at_beg_row): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
32532
diff
changeset
|
10627 |
25012 | 10628 return row_found; |
10629 } | |
10630 | |
10631 | |
10632 /* Make sure that glyph rows in the current matrix of window W | |
10633 reference the same glyph memory as corresponding rows in the | |
10634 frame's frame matrix. This function is called after scrolling W's | |
10635 current matrix on a terminal frame in try_window_id and | |
10636 try_window_reusing_current_matrix. */ | |
10637 | |
10638 static void | |
10639 sync_frame_with_window_matrix_rows (w) | |
10640 struct window *w; | |
10641 { | |
10642 struct frame *f = XFRAME (w->frame); | |
10643 struct glyph_row *window_row, *window_row_end, *frame_row; | |
10644 | |
10645 /* Preconditions: W must be a leaf window and full-width. Its frame | |
10646 must have a frame matrix. */ | |
10647 xassert (NILP (w->hchild) && NILP (w->vchild)); | |
10648 xassert (WINDOW_FULL_WIDTH_P (w)); | |
10649 xassert (!FRAME_WINDOW_P (f)); | |
10650 | |
10651 /* If W is a full-width window, glyph pointers in W's current matrix | |
10652 have, by definition, to be the same as glyph pointers in the | |
10653 corresponding frame matrix. */ | |
10654 window_row = w->current_matrix->rows; | |
10655 window_row_end = window_row + w->current_matrix->nrows; | |
10656 frame_row = f->current_matrix->rows + XFASTINT (w->top); | |
10657 while (window_row < window_row_end) | |
10658 { | |
10659 int area; | |
25778
9a6099957160
(sync_frame_with_window_matrix_rows): Disable frame rows
Gerd Moellmann <gerd@gnu.org>
parents:
25777
diff
changeset
|
10660 |
25012 | 10661 for (area = LEFT_MARGIN_AREA; area <= LAST_AREA; ++area) |
10662 frame_row->glyphs[area] = window_row->glyphs[area]; | |
25778
9a6099957160
(sync_frame_with_window_matrix_rows): Disable frame rows
Gerd Moellmann <gerd@gnu.org>
parents:
25777
diff
changeset
|
10663 |
9a6099957160
(sync_frame_with_window_matrix_rows): Disable frame rows
Gerd Moellmann <gerd@gnu.org>
parents:
25777
diff
changeset
|
10664 /* Disable frame rows whose corresponding window rows have |
9a6099957160
(sync_frame_with_window_matrix_rows): Disable frame rows
Gerd Moellmann <gerd@gnu.org>
parents:
25777
diff
changeset
|
10665 been disabled in try_window_id. */ |
9a6099957160
(sync_frame_with_window_matrix_rows): Disable frame rows
Gerd Moellmann <gerd@gnu.org>
parents:
25777
diff
changeset
|
10666 if (!window_row->enabled_p) |
9a6099957160
(sync_frame_with_window_matrix_rows): Disable frame rows
Gerd Moellmann <gerd@gnu.org>
parents:
25777
diff
changeset
|
10667 frame_row->enabled_p = 0; |
9a6099957160
(sync_frame_with_window_matrix_rows): Disable frame rows
Gerd Moellmann <gerd@gnu.org>
parents:
25777
diff
changeset
|
10668 |
25012 | 10669 ++window_row, ++frame_row; |
10670 } | |
10671 } | |
10672 | |
10673 | |
25543 | 10674 /* Find the glyph row in window W containing CHARPOS. Consider all |
10675 rows between START and END (not inclusive). END null means search | |
10676 all rows to the end of the display area of W. Value is the row | |
10677 containing CHARPOS or null. */ | |
10678 | |
10679 static struct glyph_row * | |
10680 row_containing_pos (w, charpos, start, end) | |
10681 struct window *w; | |
10682 int charpos; | |
10683 struct glyph_row *start, *end; | |
10684 { | |
10685 struct glyph_row *row = start; | |
10686 int last_y; | |
10687 | |
10688 /* If we happen to start on a header-line, skip that. */ | |
10689 if (row->mode_line_p) | |
10690 ++row; | |
10691 | |
10692 if ((end && row >= end) || !row->enabled_p) | |
10693 return NULL; | |
10694 | |
10695 last_y = window_text_bottom_y (w); | |
10696 | |
10697 while ((end == NULL || row < end) | |
10698 && (MATRIX_ROW_END_CHARPOS (row) < charpos | |
10699 /* The end position of a row equals the start | |
10700 position of the next row. If CHARPOS is there, we | |
10701 would rather display it in the next line, except | |
10702 when this line ends in ZV. */ | |
10703 || (MATRIX_ROW_END_CHARPOS (row) == charpos | |
10704 && (MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row) | |
10705 || !row->ends_at_zv_p))) | |
10706 && MATRIX_ROW_BOTTOM_Y (row) < last_y) | |
10707 ++row; | |
10708 | |
10709 /* Give up if CHARPOS not found. */ | |
10710 if ((end && row >= end) | |
10711 || charpos < MATRIX_ROW_START_CHARPOS (row) | |
10712 || charpos > MATRIX_ROW_END_CHARPOS (row)) | |
10713 row = NULL; | |
10714 | |
10715 return row; | |
10716 } | |
10717 | |
10718 | |
25012 | 10719 /* Try to redisplay window W by reusing its existing display. W's |
10720 current matrix must be up to date when this function is called, | |
10721 i.e. window_end_valid must not be nil. | |
10722 | |
10723 Value is | |
10724 | |
10725 1 if display has been updated | |
10726 0 if otherwise unsuccessful | |
10727 -1 if redisplay with same window start is known not to succeed | |
10728 | |
10729 The following steps are performed: | |
10730 | |
10731 1. Find the last row in the current matrix of W that is not | |
10732 affected by changes at the start of current_buffer. If no such row | |
10733 is found, give up. | |
10734 | |
10735 2. Find the first row in W's current matrix that is not affected by | |
10736 changes at the end of current_buffer. Maybe there is no such row. | |
10737 | |
10738 3. Display lines beginning with the row + 1 found in step 1 to the | |
10739 row found in step 2 or, if step 2 didn't find a row, to the end of | |
10740 the window. | |
10741 | |
10742 4. If cursor is not known to appear on the window, give up. | |
10743 | |
10744 5. If display stopped at the row found in step 2, scroll the | |
10745 display and current matrix as needed. | |
10746 | |
10747 6. Maybe display some lines at the end of W, if we must. This can | |
10748 happen under various circumstances, like a partially visible line | |
10749 becoming fully visible, or because newly displayed lines are displayed | |
10750 in smaller font sizes. | |
10751 | |
10752 7. Update W's window end information. */ | |
10753 | |
10754 /* Check that window end is what we expect it to be. */ | |
277 | 10755 |
10756 static int | |
25012 | 10757 try_window_id (w) |
10758 struct window *w; | |
10759 { | |
10760 struct frame *f = XFRAME (w->frame); | |
10761 struct glyph_matrix *current_matrix = w->current_matrix; | |
10762 struct glyph_matrix *desired_matrix = w->desired_matrix; | |
10763 struct glyph_row *last_unchanged_at_beg_row; | |
10764 struct glyph_row *first_unchanged_at_end_row; | |
10765 struct glyph_row *row; | |
10766 struct glyph_row *bottom_row; | |
10767 int bottom_vpos; | |
10768 struct it it; | |
10769 int delta = 0, delta_bytes = 0, stop_pos, dvpos, dy; | |
10770 struct text_pos start_pos; | |
10771 struct run run; | |
10772 int first_unchanged_at_end_vpos = 0; | |
10773 struct glyph_row *last_text_row, *last_text_row_at_end; | |
10774 struct text_pos start; | |
10775 | |
10776 SET_TEXT_POS_FROM_MARKER (start, w->start); | |
10777 | |
10778 /* Check pre-conditions. Window end must be valid, otherwise | |
10779 the current matrix would not be up to date. */ | |
10780 xassert (!NILP (w->window_end_valid)); | |
10781 xassert (FRAME_WINDOW_P (XFRAME (w->frame)) | |
10782 || (line_ins_del_ok && WINDOW_FULL_WIDTH_P (w))); | |
10783 | |
10784 /* Make sure beg_unchanged and end_unchanged are up to date. Do it | |
10785 only if buffer has really changed. The reason is that the gap is | |
10786 initially at Z for freshly visited files. The code below would | |
10787 set end_unchanged to 0 in that case. */ | |
27990
723662ab7db4
(try_window_id): Recompute unchanged information if
Gerd Moellmann <gerd@gnu.org>
parents:
27897
diff
changeset
|
10788 if (MODIFF > SAVE_MODIFF |
723662ab7db4
(try_window_id): Recompute unchanged information if
Gerd Moellmann <gerd@gnu.org>
parents:
27897
diff
changeset
|
10789 /* This seems to happen sometimes after saving a buffer. */ |
723662ab7db4
(try_window_id): Recompute unchanged information if
Gerd Moellmann <gerd@gnu.org>
parents:
27897
diff
changeset
|
10790 || BEG_UNCHANGED + END_UNCHANGED > Z_BYTE) |
25012 | 10791 { |
25377
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
10792 if (GPT - BEG < BEG_UNCHANGED) |
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
10793 BEG_UNCHANGED = GPT - BEG; |
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
10794 if (Z - GPT < END_UNCHANGED) |
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
10795 END_UNCHANGED = Z - GPT; |
25012 | 10796 } |
27540
d26783d86d5f
(Ftrace_to_stderr) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27118
diff
changeset
|
10797 |
25012 | 10798 /* If window starts after a line end, and the last change is in |
10799 front of that newline, then changes don't affect the display. | |
28709
7606937fa891
(try_window_id) <all changes above window start>: Adjust
Gerd Moellmann <gerd@gnu.org>
parents:
28692
diff
changeset
|
10800 This case happens with stealth-fontification. Note that although |
7606937fa891
(try_window_id) <all changes above window start>: Adjust
Gerd Moellmann <gerd@gnu.org>
parents:
28692
diff
changeset
|
10801 the display is unchanged, glyph positions in the matrix have to |
7606937fa891
(try_window_id) <all changes above window start>: Adjust
Gerd Moellmann <gerd@gnu.org>
parents:
28692
diff
changeset
|
10802 be adjusted, of course. */ |
25012 | 10803 row = MATRIX_ROW (w->current_matrix, XFASTINT (w->window_end_vpos)); |
10804 if (CHARPOS (start) > BEGV | |
25377
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
10805 && Z - END_UNCHANGED < CHARPOS (start) - 1 |
25012 | 10806 && FETCH_BYTE (BYTEPOS (start) - 1) == '\n' |
10807 && PT < MATRIX_ROW_END_CHARPOS (row)) | |
10808 { | |
28709
7606937fa891
(try_window_id) <all changes above window start>: Adjust
Gerd Moellmann <gerd@gnu.org>
parents:
28692
diff
changeset
|
10809 struct glyph_row *r0 = MATRIX_FIRST_TEXT_ROW (current_matrix); |
7606937fa891
(try_window_id) <all changes above window start>: Adjust
Gerd Moellmann <gerd@gnu.org>
parents:
28692
diff
changeset
|
10810 int delta = CHARPOS (start) - MATRIX_ROW_START_CHARPOS (r0); |
7606937fa891
(try_window_id) <all changes above window start>: Adjust
Gerd Moellmann <gerd@gnu.org>
parents:
28692
diff
changeset
|
10811 |
7606937fa891
(try_window_id) <all changes above window start>: Adjust
Gerd Moellmann <gerd@gnu.org>
parents:
28692
diff
changeset
|
10812 if (delta) |
7606937fa891
(try_window_id) <all changes above window start>: Adjust
Gerd Moellmann <gerd@gnu.org>
parents:
28692
diff
changeset
|
10813 { |
7606937fa891
(try_window_id) <all changes above window start>: Adjust
Gerd Moellmann <gerd@gnu.org>
parents:
28692
diff
changeset
|
10814 struct glyph_row *r1 = MATRIX_BOTTOM_TEXT_ROW (current_matrix, w); |
7606937fa891
(try_window_id) <all changes above window start>: Adjust
Gerd Moellmann <gerd@gnu.org>
parents:
28692
diff
changeset
|
10815 int delta_bytes = BYTEPOS (start) - MATRIX_ROW_START_BYTEPOS (r0); |
7606937fa891
(try_window_id) <all changes above window start>: Adjust
Gerd Moellmann <gerd@gnu.org>
parents:
28692
diff
changeset
|
10816 |
7606937fa891
(try_window_id) <all changes above window start>: Adjust
Gerd Moellmann <gerd@gnu.org>
parents:
28692
diff
changeset
|
10817 increment_matrix_positions (w->current_matrix, |
7606937fa891
(try_window_id) <all changes above window start>: Adjust
Gerd Moellmann <gerd@gnu.org>
parents:
28692
diff
changeset
|
10818 MATRIX_ROW_VPOS (r0, current_matrix), |
7606937fa891
(try_window_id) <all changes above window start>: Adjust
Gerd Moellmann <gerd@gnu.org>
parents:
28692
diff
changeset
|
10819 MATRIX_ROW_VPOS (r1, current_matrix), |
7606937fa891
(try_window_id) <all changes above window start>: Adjust
Gerd Moellmann <gerd@gnu.org>
parents:
28692
diff
changeset
|
10820 delta, delta_bytes); |
7606937fa891
(try_window_id) <all changes above window start>: Adjust
Gerd Moellmann <gerd@gnu.org>
parents:
28692
diff
changeset
|
10821 } |
7606937fa891
(try_window_id) <all changes above window start>: Adjust
Gerd Moellmann <gerd@gnu.org>
parents:
28692
diff
changeset
|
10822 |
7606937fa891
(try_window_id) <all changes above window start>: Adjust
Gerd Moellmann <gerd@gnu.org>
parents:
28692
diff
changeset
|
10823 #if 0 /* If changes are all in front of the window start, the |
7606937fa891
(try_window_id) <all changes above window start>: Adjust
Gerd Moellmann <gerd@gnu.org>
parents:
28692
diff
changeset
|
10824 distance of the last displayed glyph from Z hasn't |
7606937fa891
(try_window_id) <all changes above window start>: Adjust
Gerd Moellmann <gerd@gnu.org>
parents:
28692
diff
changeset
|
10825 changed. */ |
25012 | 10826 w->window_end_pos |
10827 = make_number (Z - MATRIX_ROW_END_CHARPOS (row)); | |
10828 w->window_end_bytepos | |
28464
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28362
diff
changeset
|
10829 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (row); |
28709
7606937fa891
(try_window_id) <all changes above window start>: Adjust
Gerd Moellmann <gerd@gnu.org>
parents:
28692
diff
changeset
|
10830 #endif |
7606937fa891
(try_window_id) <all changes above window start>: Adjust
Gerd Moellmann <gerd@gnu.org>
parents:
28692
diff
changeset
|
10831 |
34438
524c7ecc8ef4
(try_window_id) <all changes above window start>:
Gerd Moellmann <gerd@gnu.org>
parents:
34288
diff
changeset
|
10832 row = row_containing_pos (w, PT, r0, NULL); |
524c7ecc8ef4
(try_window_id) <all changes above window start>:
Gerd Moellmann <gerd@gnu.org>
parents:
34288
diff
changeset
|
10833 if (row == NULL) |
524c7ecc8ef4
(try_window_id) <all changes above window start>:
Gerd Moellmann <gerd@gnu.org>
parents:
34288
diff
changeset
|
10834 return 0; |
524c7ecc8ef4
(try_window_id) <all changes above window start>:
Gerd Moellmann <gerd@gnu.org>
parents:
34288
diff
changeset
|
10835 |
524c7ecc8ef4
(try_window_id) <all changes above window start>:
Gerd Moellmann <gerd@gnu.org>
parents:
34288
diff
changeset
|
10836 set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0); |
25012 | 10837 return 1; |
10838 } | |
10839 | |
10840 /* Return quickly if changes are all below what is displayed in the | |
10841 window, and if PT is in the window. */ | |
25377
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
10842 if (BEG_UNCHANGED > MATRIX_ROW_END_CHARPOS (row) |
25012 | 10843 && PT < MATRIX_ROW_END_CHARPOS (row)) |
10844 { | |
10845 /* We have to update window end positions because the buffer's | |
10846 size has changed. */ | |
10847 w->window_end_pos | |
10848 = make_number (Z - MATRIX_ROW_END_CHARPOS (row)); | |
10849 w->window_end_bytepos | |
28464
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28362
diff
changeset
|
10850 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (row); |
30136
8dc78ef485a4
(try_window_id): If changes are all below what is
Gerd Moellmann <gerd@gnu.org>
parents:
29981
diff
changeset
|
10851 |
8dc78ef485a4
(try_window_id): If changes are all below what is
Gerd Moellmann <gerd@gnu.org>
parents:
29981
diff
changeset
|
10852 row = MATRIX_FIRST_TEXT_ROW (w->current_matrix); |
8dc78ef485a4
(try_window_id): If changes are all below what is
Gerd Moellmann <gerd@gnu.org>
parents:
29981
diff
changeset
|
10853 row = row_containing_pos (w, PT, row, NULL); |
8dc78ef485a4
(try_window_id): If changes are all below what is
Gerd Moellmann <gerd@gnu.org>
parents:
29981
diff
changeset
|
10854 set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0); |
8dc78ef485a4
(try_window_id): If changes are all below what is
Gerd Moellmann <gerd@gnu.org>
parents:
29981
diff
changeset
|
10855 return 2; |
25012 | 10856 } |
10857 | |
10858 /* Check that window start agrees with the start of the first glyph | |
10859 row in its current matrix. Check this after we know the window | |
10860 start is not in changed text, otherwise positions would not be | |
10861 comparable. */ | |
10862 row = MATRIX_FIRST_TEXT_ROW (w->current_matrix); | |
10863 if (!TEXT_POS_EQUAL_P (start, row->start.pos)) | |
10864 return 0; | |
10865 | |
10866 /* Compute the position at which we have to start displaying new | |
10867 lines. Some of the lines at the top of the window might be | |
10868 reusable because they are not displaying changed text. Find the | |
10869 last row in W's current matrix not affected by changes at the | |
10870 start of current_buffer. Value is null if changes start in the | |
10871 first line of window. */ | |
32539
dd4c7d5e1599
(find_last_unchanged_at_beg_row): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
32532
diff
changeset
|
10872 last_unchanged_at_beg_row = find_last_unchanged_at_beg_row (w); |
25012 | 10873 if (last_unchanged_at_beg_row) |
10874 { | |
33898
93b22ccc23e2
(try_window_id): Avoid starting to display in the moddle
Gerd Moellmann <gerd@gnu.org>
parents:
33863
diff
changeset
|
10875 /* Avoid starting to display in the moddle of a character, a TAB |
93b22ccc23e2
(try_window_id): Avoid starting to display in the moddle
Gerd Moellmann <gerd@gnu.org>
parents:
33863
diff
changeset
|
10876 for instance. This is easier than to set up the iterator |
93b22ccc23e2
(try_window_id): Avoid starting to display in the moddle
Gerd Moellmann <gerd@gnu.org>
parents:
33863
diff
changeset
|
10877 exactly, and it's not a frequent case, so the additional |
93b22ccc23e2
(try_window_id): Avoid starting to display in the moddle
Gerd Moellmann <gerd@gnu.org>
parents:
33863
diff
changeset
|
10878 effort wouldn't really pay off. */ |
93b22ccc23e2
(try_window_id): Avoid starting to display in the moddle
Gerd Moellmann <gerd@gnu.org>
parents:
33863
diff
changeset
|
10879 while (MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (last_unchanged_at_beg_row) |
93b22ccc23e2
(try_window_id): Avoid starting to display in the moddle
Gerd Moellmann <gerd@gnu.org>
parents:
33863
diff
changeset
|
10880 && last_unchanged_at_beg_row > w->current_matrix->rows) |
93b22ccc23e2
(try_window_id): Avoid starting to display in the moddle
Gerd Moellmann <gerd@gnu.org>
parents:
33863
diff
changeset
|
10881 --last_unchanged_at_beg_row; |
93b22ccc23e2
(try_window_id): Avoid starting to display in the moddle
Gerd Moellmann <gerd@gnu.org>
parents:
33863
diff
changeset
|
10882 |
93b22ccc23e2
(try_window_id): Avoid starting to display in the moddle
Gerd Moellmann <gerd@gnu.org>
parents:
33863
diff
changeset
|
10883 if (MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (last_unchanged_at_beg_row)) |
93b22ccc23e2
(try_window_id): Avoid starting to display in the moddle
Gerd Moellmann <gerd@gnu.org>
parents:
33863
diff
changeset
|
10884 return 0; |
93b22ccc23e2
(try_window_id): Avoid starting to display in the moddle
Gerd Moellmann <gerd@gnu.org>
parents:
33863
diff
changeset
|
10885 |
25012 | 10886 init_to_row_end (&it, w, last_unchanged_at_beg_row); |
10887 start_pos = it.current.pos; | |
10888 | |
10889 /* Start displaying new lines in the desired matrix at the same | |
10890 vpos we would use in the current matrix, i.e. below | |
10891 last_unchanged_at_beg_row. */ | |
10892 it.vpos = 1 + MATRIX_ROW_VPOS (last_unchanged_at_beg_row, | |
10893 current_matrix); | |
10894 it.glyph_row = MATRIX_ROW (desired_matrix, it.vpos); | |
10895 it.current_y = MATRIX_ROW_BOTTOM_Y (last_unchanged_at_beg_row); | |
10896 | |
10897 xassert (it.hpos == 0 && it.current_x == 0); | |
10898 } | |
277 | 10899 else |
25012 | 10900 { |
10901 /* There are no reusable lines at the start of the window. | |
10902 Start displaying in the first line. */ | |
10903 start_display (&it, w, start); | |
10904 start_pos = it.current.pos; | |
10905 } | |
10906 | |
10907 /* Find the first row that is not affected by changes at the end of | |
10908 the buffer. Value will be null if there is no unchanged row, in | |
10909 which case we must redisplay to the end of the window. delta | |
10910 will be set to the value by which buffer positions beginning with | |
10911 first_unchanged_at_end_row have to be adjusted due to text | |
10912 changes. */ | |
10913 first_unchanged_at_end_row | |
32539
dd4c7d5e1599
(find_last_unchanged_at_beg_row): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
32532
diff
changeset
|
10914 = find_first_unchanged_at_end_row (w, &delta, &delta_bytes); |
25012 | 10915 IF_DEBUG (debug_delta = delta); |
10916 IF_DEBUG (debug_delta_bytes = delta_bytes); | |
10917 | |
10918 /* Set stop_pos to the buffer position up to which we will have to | |
10919 display new lines. If first_unchanged_at_end_row != NULL, this | |
10920 is the buffer position of the start of the line displayed in that | |
10921 row. For first_unchanged_at_end_row == NULL, use 0 to indicate | |
10922 that we don't stop at a buffer position. */ | |
10923 stop_pos = 0; | |
10924 if (first_unchanged_at_end_row) | |
10925 { | |
10926 xassert (last_unchanged_at_beg_row == NULL | |
10927 || first_unchanged_at_end_row >= last_unchanged_at_beg_row); | |
10928 | |
10929 /* If this is a continuation line, move forward to the next one | |
10930 that isn't. Changes in lines above affect this line. | |
10931 Caution: this may move first_unchanged_at_end_row to a row | |
10932 not displaying text. */ | |
10933 while (MATRIX_ROW_CONTINUATION_LINE_P (first_unchanged_at_end_row) | |
10934 && MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row) | |
10935 && (MATRIX_ROW_BOTTOM_Y (first_unchanged_at_end_row) | |
10936 < it.last_visible_y)) | |
10937 ++first_unchanged_at_end_row; | |
10938 | |
10939 if (!MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row) | |
10940 || (MATRIX_ROW_BOTTOM_Y (first_unchanged_at_end_row) | |
10941 >= it.last_visible_y)) | |
10942 first_unchanged_at_end_row = NULL; | |
10943 else | |
10944 { | |
10945 stop_pos = (MATRIX_ROW_START_CHARPOS (first_unchanged_at_end_row) | |
10946 + delta); | |
10947 first_unchanged_at_end_vpos | |
10948 = MATRIX_ROW_VPOS (first_unchanged_at_end_row, current_matrix); | |
25377
d32d09a601e8
(redisplay_internal): Clear garbaged frames after
Gerd Moellmann <gerd@gnu.org>
parents:
25362
diff
changeset
|
10949 xassert (stop_pos >= Z - END_UNCHANGED); |
25012 | 10950 } |
10951 } | |
10952 else if (last_unchanged_at_beg_row == NULL) | |
10953 return 0; | |
10954 | |
10955 | |
10956 #if GLYPH_DEBUG | |
10957 | |
10958 /* Either there is no unchanged row at the end, or the one we have | |
10959 now displays text. This is a necessary condition for the window | |
10960 end pos calculation at the end of this function. */ | |
10961 xassert (first_unchanged_at_end_row == NULL | |
10962 || MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row)); | |
10963 | |
10964 debug_last_unchanged_at_beg_vpos | |
10965 = (last_unchanged_at_beg_row | |
10966 ? MATRIX_ROW_VPOS (last_unchanged_at_beg_row, current_matrix) | |
10967 : -1); | |
10968 debug_first_unchanged_at_end_vpos = first_unchanged_at_end_vpos; | |
10969 | |
10970 #endif /* GLYPH_DEBUG != 0 */ | |
10971 | |
10972 | |
10973 /* Display new lines. Set last_text_row to the last new line | |
10974 displayed which has text on it, i.e. might end up as being the | |
10975 line where the window_end_vpos is. */ | |
10976 w->cursor.vpos = -1; | |
10977 last_text_row = NULL; | |
277 | 10978 overlay_arrow_seen = 0; |
25012 | 10979 while (it.current_y < it.last_visible_y |
10980 && !fonts_changed_p | |
10981 && (first_unchanged_at_end_row == NULL | |
10982 || IT_CHARPOS (it) < stop_pos)) | |
10983 { | |
10984 if (display_line (&it)) | |
10985 last_text_row = it.glyph_row - 1; | |
10986 } | |
10987 | |
10988 if (fonts_changed_p) | |
10989 return -1; | |
10990 | |
10991 | |
10992 /* Compute differences in buffer positions, y-positions etc. for | |
10993 lines reused at the bottom of the window. Compute what we can | |
10994 scroll. */ | |
25493
28588533d342
(try_window_id): Reset first_unchanged_at_end_row
Gerd Moellmann <gerd@gnu.org>
parents:
25463
diff
changeset
|
10995 if (first_unchanged_at_end_row |
28588533d342
(try_window_id): Reset first_unchanged_at_end_row
Gerd Moellmann <gerd@gnu.org>
parents:
25463
diff
changeset
|
10996 /* No lines reused because we displayed everything up to the |
28588533d342
(try_window_id): Reset first_unchanged_at_end_row
Gerd Moellmann <gerd@gnu.org>
parents:
25463
diff
changeset
|
10997 bottom of the window. */ |
28588533d342
(try_window_id): Reset first_unchanged_at_end_row
Gerd Moellmann <gerd@gnu.org>
parents:
25463
diff
changeset
|
10998 && it.current_y < it.last_visible_y) |
25012 | 10999 { |
11000 dvpos = (it.vpos | |
11001 - MATRIX_ROW_VPOS (first_unchanged_at_end_row, | |
11002 current_matrix)); | |
11003 dy = it.current_y - first_unchanged_at_end_row->y; | |
11004 run.current_y = first_unchanged_at_end_row->y; | |
11005 run.desired_y = run.current_y + dy; | |
11006 run.height = it.last_visible_y - max (run.current_y, run.desired_y); | |
11007 } | |
11008 else | |
25493
28588533d342
(try_window_id): Reset first_unchanged_at_end_row
Gerd Moellmann <gerd@gnu.org>
parents:
25463
diff
changeset
|
11009 { |
28588533d342
(try_window_id): Reset first_unchanged_at_end_row
Gerd Moellmann <gerd@gnu.org>
parents:
25463
diff
changeset
|
11010 delta = dvpos = dy = run.current_y = run.desired_y = run.height = 0; |
28588533d342
(try_window_id): Reset first_unchanged_at_end_row
Gerd Moellmann <gerd@gnu.org>
parents:
25463
diff
changeset
|
11011 first_unchanged_at_end_row = NULL; |
28588533d342
(try_window_id): Reset first_unchanged_at_end_row
Gerd Moellmann <gerd@gnu.org>
parents:
25463
diff
changeset
|
11012 } |
25012 | 11013 IF_DEBUG (debug_dvpos = dvpos; debug_dy = dy); |
11014 | |
25394
ed9fe1a2c8ae
(try_window_id): Remove typo.
Gerd Moellmann <gerd@gnu.org>
parents:
25393
diff
changeset
|
11015 |
25012 | 11016 /* Find the cursor if not already found. We have to decide whether |
11017 PT will appear on this window (it sometimes doesn't, but this is | |
11018 not a very frequent case.) This decision has to be made before | |
11019 the current matrix is altered. A value of cursor.vpos < 0 means | |
11020 that PT is either in one of the lines beginning at | |
11021 first_unchanged_at_end_row or below the window. Don't care for | |
11022 lines that might be displayed later at the window end; as | |
11023 mentioned, this is not a frequent case. */ | |
11024 if (w->cursor.vpos < 0) | |
11025 { | |
11026 /* Cursor in unchanged rows at the top? */ | |
11027 if (PT < CHARPOS (start_pos) | |
11028 && last_unchanged_at_beg_row) | |
11029 { | |
25543 | 11030 row = row_containing_pos (w, PT, |
11031 MATRIX_FIRST_TEXT_ROW (w->current_matrix), | |
11032 last_unchanged_at_beg_row + 1); | |
31493
900897103eb2
(try_window_id): When trying to locate cursor in
Gerd Moellmann <gerd@gnu.org>
parents:
31338
diff
changeset
|
11033 if (row) |
900897103eb2
(try_window_id): When trying to locate cursor in
Gerd Moellmann <gerd@gnu.org>
parents:
31338
diff
changeset
|
11034 set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0); |
25012 | 11035 } |
11036 | |
11037 /* Start from first_unchanged_at_end_row looking for PT. */ | |
11038 else if (first_unchanged_at_end_row) | |
11039 { | |
25543 | 11040 row = row_containing_pos (w, PT - delta, |
11041 first_unchanged_at_end_row, NULL); | |
11042 if (row) | |
25393
9aff86718a20
(try_window_id): Recognize case that PT == ZV and in
Gerd Moellmann <gerd@gnu.org>
parents:
25388
diff
changeset
|
11043 set_cursor_from_row (w, row, w->current_matrix, delta, |
9aff86718a20
(try_window_id): Recognize case that PT == ZV and in
Gerd Moellmann <gerd@gnu.org>
parents:
25388
diff
changeset
|
11044 delta_bytes, dy, dvpos); |
25012 | 11045 } |
11046 | |
11047 /* Give up if cursor was not found. */ | |
11048 if (w->cursor.vpos < 0) | |
11049 { | |
11050 clear_glyph_matrix (w->desired_matrix); | |
11051 return -1; | |
11052 } | |
11053 } | |
11054 | |
11055 /* Don't let the cursor end in the scroll margins. */ | |
11056 { | |
11057 int this_scroll_margin, cursor_height; | |
11058 | |
11059 this_scroll_margin = max (0, scroll_margin); | |
11060 this_scroll_margin = min (this_scroll_margin, | |
11061 XFASTINT (w->height) / 4); | |
11062 this_scroll_margin *= CANON_Y_UNIT (it.f); | |
11063 cursor_height = MATRIX_ROW (w->desired_matrix, w->cursor.vpos)->height; | |
11064 | |
11065 if ((w->cursor.y < this_scroll_margin | |
11066 && CHARPOS (start) > BEGV) | |
11067 /* Don't take scroll margin into account at the bottom because | |
11068 old redisplay didn't do it either. */ | |
11069 || w->cursor.y + cursor_height > it.last_visible_y) | |
11070 { | |
11071 w->cursor.vpos = -1; | |
11072 clear_glyph_matrix (w->desired_matrix); | |
11073 return -1; | |
11074 } | |
11075 } | |
11076 | |
11077 /* Scroll the display. Do it before changing the current matrix so | |
11078 that xterm.c doesn't get confused about where the cursor glyph is | |
11079 found. */ | |
28539
918f12c5c8e3
(setup_echo_area_for_printing): Choose an echo
Gerd Moellmann <gerd@gnu.org>
parents:
28464
diff
changeset
|
11080 if (dy && run.height) |
25012 | 11081 { |
11082 update_begin (f); | |
11083 | |
11084 if (FRAME_WINDOW_P (f)) | |
11085 { | |
11086 rif->update_window_begin_hook (w); | |
30159
1b0331a7c724
(try_window_reusing_current_matrix, try_window_id):
Gerd Moellmann <gerd@gnu.org>
parents:
30136
diff
changeset
|
11087 rif->clear_mouse_face (w); |
25012 | 11088 rif->scroll_run_hook (w, &run); |
30159
1b0331a7c724
(try_window_reusing_current_matrix, try_window_id):
Gerd Moellmann <gerd@gnu.org>
parents:
30136
diff
changeset
|
11089 rif->update_window_end_hook (w, 0, 0); |
25012 | 11090 } |
11091 else | |
11092 { | |
11093 /* Terminal frame. In this case, dvpos gives the number of | |
11094 lines to scroll by; dvpos < 0 means scroll up. */ | |
11095 int first_unchanged_at_end_vpos | |
11096 = MATRIX_ROW_VPOS (first_unchanged_at_end_row, w->current_matrix); | |
11097 int from = XFASTINT (w->top) + first_unchanged_at_end_vpos; | |
11098 int end = XFASTINT (w->top) + window_internal_height (w); | |
11099 | |
11100 /* Perform the operation on the screen. */ | |
11101 if (dvpos > 0) | |
6684
b5dc04567426
(display_text_line): Rename startp to leftmargin.
Richard M. Stallman <rms@gnu.org>
parents:
6661
diff
changeset
|
11102 { |
25012 | 11103 /* Scroll last_unchanged_at_beg_row to the end of the |
11104 window down dvpos lines. */ | |
11105 set_terminal_window (end); | |
11106 | |
11107 /* On dumb terminals delete dvpos lines at the end | |
11108 before inserting dvpos empty lines. */ | |
11109 if (!scroll_region_ok) | |
11110 ins_del_lines (end - dvpos, -dvpos); | |
11111 | |
11112 /* Insert dvpos empty lines in front of | |
11113 last_unchanged_at_beg_row. */ | |
11114 ins_del_lines (from, dvpos); | |
11115 } | |
11116 else if (dvpos < 0) | |
11117 { | |
11118 /* Scroll up last_unchanged_at_beg_vpos to the end of | |
11119 the window to last_unchanged_at_beg_vpos - |dvpos|. */ | |
11120 set_terminal_window (end); | |
11121 | |
11122 /* Delete dvpos lines in front of | |
11123 last_unchanged_at_beg_vpos. ins_del_lines will set | |
11124 the cursor to the given vpos and emit |dvpos| delete | |
11125 line sequences. */ | |
11126 ins_del_lines (from + dvpos, dvpos); | |
11127 | |
11128 /* On a dumb terminal insert dvpos empty lines at the | |
11129 end. */ | |
11130 if (!scroll_region_ok) | |
11131 ins_del_lines (end + dvpos, -dvpos); | |
6684
b5dc04567426
(display_text_line): Rename startp to leftmargin.
Richard M. Stallman <rms@gnu.org>
parents:
6661
diff
changeset
|
11132 } |
25012 | 11133 |
11134 set_terminal_window (0); | |
11135 } | |
11136 | |
11137 update_end (f); | |
11138 } | |
11139 | |
25493
28588533d342
(try_window_id): Reset first_unchanged_at_end_row
Gerd Moellmann <gerd@gnu.org>
parents:
25463
diff
changeset
|
11140 /* Shift reused rows of the current matrix to the right position. |
28588533d342
(try_window_id): Reset first_unchanged_at_end_row
Gerd Moellmann <gerd@gnu.org>
parents:
25463
diff
changeset
|
11141 BOTTOM_ROW is the last + 1 row in the current matrix reserved for |
28588533d342
(try_window_id): Reset first_unchanged_at_end_row
Gerd Moellmann <gerd@gnu.org>
parents:
25463
diff
changeset
|
11142 text. */ |
28588533d342
(try_window_id): Reset first_unchanged_at_end_row
Gerd Moellmann <gerd@gnu.org>
parents:
25463
diff
changeset
|
11143 bottom_row = MATRIX_BOTTOM_TEXT_ROW (current_matrix, w); |
28588533d342
(try_window_id): Reset first_unchanged_at_end_row
Gerd Moellmann <gerd@gnu.org>
parents:
25463
diff
changeset
|
11144 bottom_vpos = MATRIX_ROW_VPOS (bottom_row, current_matrix); |
25012 | 11145 if (dvpos < 0) |
11146 { | |
11147 rotate_matrix (current_matrix, first_unchanged_at_end_vpos + dvpos, | |
11148 bottom_vpos, dvpos); | |
11149 enable_glyph_matrix_rows (current_matrix, bottom_vpos + dvpos, | |
11150 bottom_vpos, 0); | |
11151 } | |
11152 else if (dvpos > 0) | |
11153 { | |
11154 rotate_matrix (current_matrix, first_unchanged_at_end_vpos, | |
11155 bottom_vpos, dvpos); | |
11156 enable_glyph_matrix_rows (current_matrix, first_unchanged_at_end_vpos, | |
11157 first_unchanged_at_end_vpos + dvpos, 0); | |
11158 } | |
11159 | |
11160 /* For frame-based redisplay, make sure that current frame and window | |
11161 matrix are in sync with respect to glyph memory. */ | |
11162 if (!FRAME_WINDOW_P (f)) | |
11163 sync_frame_with_window_matrix_rows (w); | |
11164 | |
11165 /* Adjust buffer positions in reused rows. */ | |
11166 if (delta) | |
28709
7606937fa891
(try_window_id) <all changes above window start>: Adjust
Gerd Moellmann <gerd@gnu.org>
parents:
28692
diff
changeset
|
11167 increment_matrix_positions (current_matrix, |
7606937fa891
(try_window_id) <all changes above window start>: Adjust
Gerd Moellmann <gerd@gnu.org>
parents:
28692
diff
changeset
|
11168 first_unchanged_at_end_vpos + dvpos, |
7606937fa891
(try_window_id) <all changes above window start>: Adjust
Gerd Moellmann <gerd@gnu.org>
parents:
28692
diff
changeset
|
11169 bottom_vpos, delta, delta_bytes); |
25012 | 11170 |
11171 /* Adjust Y positions. */ | |
11172 if (dy) | |
11173 shift_glyph_matrix (w, current_matrix, | |
11174 first_unchanged_at_end_vpos + dvpos, | |
11175 bottom_vpos, dy); | |
11176 | |
11177 if (first_unchanged_at_end_row) | |
11178 first_unchanged_at_end_row += dvpos; | |
11179 | |
11180 /* If scrolling up, there may be some lines to display at the end of | |
11181 the window. */ | |
11182 last_text_row_at_end = NULL; | |
11183 if (dy < 0) | |
11184 { | |
11185 /* Set last_row to the glyph row in the current matrix where the | |
11186 window end line is found. It has been moved up or down in | |
11187 the matrix by dvpos. */ | |
11188 int last_vpos = XFASTINT (w->window_end_vpos) + dvpos; | |
11189 struct glyph_row *last_row = MATRIX_ROW (current_matrix, last_vpos); | |
11190 | |
11191 /* If last_row is the window end line, it should display text. */ | |
11192 xassert (last_row->displays_text_p); | |
11193 | |
11194 /* If window end line was partially visible before, begin | |
11195 displaying at that line. Otherwise begin displaying with the | |
11196 line following it. */ | |
11197 if (MATRIX_ROW_BOTTOM_Y (last_row) - dy >= it.last_visible_y) | |
11198 { | |
11199 init_to_row_start (&it, w, last_row); | |
11200 it.vpos = last_vpos; | |
11201 it.current_y = last_row->y; | |
11202 } | |
11203 else | |
11204 { | |
11205 init_to_row_end (&it, w, last_row); | |
11206 it.vpos = 1 + last_vpos; | |
11207 it.current_y = MATRIX_ROW_BOTTOM_Y (last_row); | |
11208 ++last_row; | |
11209 } | |
11210 | |
11211 /* We may start in a continuation line. If so, we have to get | |
11212 the right continuation_lines_width and current_x. */ | |
11213 it.continuation_lines_width = last_row->continuation_lines_width; | |
11214 it.hpos = it.current_x = 0; | |
11215 | |
11216 /* Display the rest of the lines at the window end. */ | |
11217 it.glyph_row = MATRIX_ROW (desired_matrix, it.vpos); | |
11218 while (it.current_y < it.last_visible_y | |
11219 && !fonts_changed_p) | |
11220 { | |
11221 /* Is it always sure that the display agrees with lines in | |
11222 the current matrix? I don't think so, so we mark rows | |
11223 displayed invalid in the current matrix by setting their | |
11224 enabled_p flag to zero. */ | |
11225 MATRIX_ROW (w->current_matrix, it.vpos)->enabled_p = 0; | |
11226 if (display_line (&it)) | |
11227 last_text_row_at_end = it.glyph_row - 1; | |
11228 } | |
11229 } | |
11230 | |
11231 /* Update window_end_pos and window_end_vpos. */ | |
11232 if (first_unchanged_at_end_row | |
11233 && first_unchanged_at_end_row->y < it.last_visible_y | |
11234 && !last_text_row_at_end) | |
11235 { | |
11236 /* Window end line if one of the preserved rows from the current | |
11237 matrix. Set row to the last row displaying text in current | |
11238 matrix starting at first_unchanged_at_end_row, after | |
11239 scrolling. */ | |
11240 xassert (first_unchanged_at_end_row->displays_text_p); | |
11241 row = find_last_row_displaying_text (w->current_matrix, &it, | |
11242 first_unchanged_at_end_row); | |
11243 xassert (row && MATRIX_ROW_DISPLAYS_TEXT_P (row)); | |
11244 | |
11245 XSETFASTINT (w->window_end_pos, Z - MATRIX_ROW_END_CHARPOS (row)); | |
11246 w->window_end_bytepos = Z_BYTE - MATRIX_ROW_END_BYTEPOS (row); | |
11247 XSETFASTINT (w->window_end_vpos, | |
11248 MATRIX_ROW_VPOS (row, w->current_matrix)); | |
11249 } | |
11250 else if (last_text_row_at_end) | |
11251 { | |
11252 XSETFASTINT (w->window_end_pos, | |
11253 Z - MATRIX_ROW_END_CHARPOS (last_text_row_at_end)); | |
11254 w->window_end_bytepos | |
11255 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_text_row_at_end); | |
11256 XSETFASTINT (w->window_end_vpos, | |
11257 MATRIX_ROW_VPOS (last_text_row_at_end, desired_matrix)); | |
11258 } | |
11259 else if (last_text_row) | |
11260 { | |
11261 /* We have displayed either to the end of the window or at the | |
11262 end of the window, i.e. the last row with text is to be found | |
11263 in the desired matrix. */ | |
11264 XSETFASTINT (w->window_end_pos, | |
11265 Z - MATRIX_ROW_END_CHARPOS (last_text_row)); | |
11266 w->window_end_bytepos | |
11267 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_text_row); | |
11268 XSETFASTINT (w->window_end_vpos, | |
11269 MATRIX_ROW_VPOS (last_text_row, desired_matrix)); | |
11270 } | |
11271 else if (first_unchanged_at_end_row == NULL | |
11272 && last_text_row == NULL | |
11273 && last_text_row_at_end == NULL) | |
11274 { | |
11275 /* Displayed to end of window, but no line containing text was | |
11276 displayed. Lines were deleted at the end of the window. */ | |
11277 int vpos; | |
25546 | 11278 int header_line_p = WINDOW_WANTS_HEADER_LINE_P (w) ? 1 : 0; |
25012 | 11279 |
11280 for (vpos = XFASTINT (w->window_end_vpos); vpos > 0; --vpos) | |
25546 | 11281 if ((w->desired_matrix->rows[vpos + header_line_p].enabled_p |
11282 && w->desired_matrix->rows[vpos + header_line_p].displays_text_p) | |
11283 || (!w->desired_matrix->rows[vpos + header_line_p].enabled_p | |
11284 && w->current_matrix->rows[vpos + header_line_p].displays_text_p)) | |
25012 | 11285 break; |
11286 | |
11287 w->window_end_vpos = make_number (vpos); | |
11288 } | |
11289 else | |
11290 abort (); | |
11291 | |
11292 IF_DEBUG (debug_end_pos = XFASTINT (w->window_end_pos); | |
11293 debug_end_vpos = XFASTINT (w->window_end_vpos)); | |
11294 | |
11295 /* Record that display has not been completed. */ | |
277 | 11296 w->window_end_valid = Qnil; |
25012 | 11297 w->desired_matrix->no_scrolling_p = 1; |
30136
8dc78ef485a4
(try_window_id): If changes are all below what is
Gerd Moellmann <gerd@gnu.org>
parents:
29981
diff
changeset
|
11298 return 3; |
277 | 11299 } |
25012 | 11300 |
11301 | |
11302 | |
11303 /*********************************************************************** | |
11304 More debugging support | |
11305 ***********************************************************************/ | |
11306 | |
11307 #if GLYPH_DEBUG | |
11308 | |
34789
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11309 void dump_glyph_row P_ ((struct glyph_matrix *, int, int)); |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11310 void dump_glyph_matrix P_ ((struct glyph_matrix *, int)); |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11311 |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11312 |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11313 /* Dump the contents of glyph matrix MATRIX on stderr. |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11314 |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11315 GLYPHS 0 means don't show glyph contents. |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11316 GLYPHS 1 means show glyphs in short form |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11317 GLYPHS > 1 means show glyphs in long form. */ |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11318 |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11319 void |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11320 dump_glyph_matrix (matrix, glyphs) |
25012 | 11321 struct glyph_matrix *matrix; |
34789
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11322 int glyphs; |
25012 | 11323 { |
11324 int i; | |
11325 for (i = 0; i < matrix->nrows; ++i) | |
34789
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11326 dump_glyph_row (matrix, i, glyphs); |
25012 | 11327 } |
11328 | |
11329 | |
11330 /* Dump the contents of glyph row at VPOS in MATRIX to stderr. | |
34789
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11331 GLYPHS 0 means don't show glyph contents. |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11332 GLYPHS 1 means show glyphs in short form |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11333 GLYPHS > 1 means show glyphs in long form. */ |
25012 | 11334 |
11335 void | |
34789
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11336 dump_glyph_row (matrix, vpos, glyphs) |
25012 | 11337 struct glyph_matrix *matrix; |
34789
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11338 int vpos, glyphs; |
25012 | 11339 { |
11340 struct glyph_row *row; | |
11341 | |
11342 if (vpos < 0 || vpos >= matrix->nrows) | |
11343 return; | |
11344 | |
11345 row = MATRIX_ROW (matrix, vpos); | |
34789
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11346 |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11347 if (glyphs != 1) |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11348 { |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11349 fprintf (stderr, "Row Start End Used oEI><O\\CTZFes X Y W H V A P\n"); |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11350 fprintf (stderr, "=======================================================================\n"); |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11351 |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11352 fprintf (stderr, "%3d %5d %5d %4d %1.1d%1.1d%1.1d%1.1d%1.1d%1.1d\ |
31506
a1d733428491
(dump_glyph_row): Fix printf format string.
Gerd Moellmann <gerd@gnu.org>
parents:
31493
diff
changeset
|
11353 %1.1d%1.1d%1.1d%1.1d%1.1d%1.1d%1.1d %4d %4d %4d %4d %4d %4d %4d\n", |
34789
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11354 row - matrix->rows, |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11355 MATRIX_ROW_START_CHARPOS (row), |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11356 MATRIX_ROW_END_CHARPOS (row), |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11357 row->used[TEXT_AREA], |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11358 row->contains_overlapping_glyphs_p, |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11359 row->enabled_p, |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11360 row->inverse_p, |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11361 row->truncated_on_left_p, |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11362 row->truncated_on_right_p, |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11363 row->overlay_arrow_p, |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11364 row->continued_p, |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11365 MATRIX_ROW_CONTINUATION_LINE_P (row), |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11366 row->displays_text_p, |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11367 row->ends_at_zv_p, |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11368 row->fill_line_p, |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11369 row->ends_in_middle_of_char_p, |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11370 row->starts_in_middle_of_char_p, |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11371 row->x, |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11372 row->y, |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11373 row->pixel_width, |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11374 row->height, |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11375 row->visible_height, |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11376 row->ascent, |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11377 row->phys_ascent); |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11378 fprintf (stderr, "%9d %5d\n", row->start.overlay_string_index, |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11379 row->end.overlay_string_index); |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11380 fprintf (stderr, "%9d %5d\n", |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11381 CHARPOS (row->start.string_pos), |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11382 CHARPOS (row->end.string_pos)); |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11383 fprintf (stderr, "%9d %5d\n", row->start.dpvec_index, |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11384 row->end.dpvec_index); |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11385 } |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11386 |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11387 if (glyphs > 1) |
25012 | 11388 { |
11389 struct glyph *glyph, *glyph_end; | |
11390 int prev_had_glyphs_p; | |
11391 | |
11392 glyph = row->glyphs[TEXT_AREA]; | |
11393 glyph_end = glyph + row->used[TEXT_AREA]; | |
11394 | |
11395 /* Glyph for a line end in text. */ | |
11396 if (glyph == glyph_end && glyph->charpos > 0) | |
11397 ++glyph_end; | |
11398 | |
11399 if (glyph < glyph_end) | |
11400 { | |
29817
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
11401 fprintf (stderr, " Glyph Type Pos O W Code C Face LR\n"); |
25012 | 11402 prev_had_glyphs_p = 1; |
11403 } | |
11404 else | |
11405 prev_had_glyphs_p = 0; | |
11406 | |
11407 while (glyph < glyph_end) | |
11408 { | |
11409 if (glyph->type == CHAR_GLYPH) | |
11410 { | |
11411 fprintf (stderr, | |
29817
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
11412 " %5d %4c %6d %c %3d 0x%05x %c %4d %1.1d%1.1d\n", |
25012 | 11413 glyph - row->glyphs[TEXT_AREA], |
11414 'C', | |
11415 glyph->charpos, | |
29817
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
11416 (BUFFERP (glyph->object) |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
11417 ? 'B' |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
11418 : (STRINGP (glyph->object) |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
11419 ? 'S' |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
11420 : '-')), |
25012 | 11421 glyph->pixel_width, |
27000
d7f15cd9c4ad
All codes adjusted for the change of struct glyph.
Kenichi Handa <handa@m17n.org>
parents:
26908
diff
changeset
|
11422 glyph->u.ch, |
d7f15cd9c4ad
All codes adjusted for the change of struct glyph.
Kenichi Handa <handa@m17n.org>
parents:
26908
diff
changeset
|
11423 (glyph->u.ch < 0x80 && glyph->u.ch >= ' ' |
d7f15cd9c4ad
All codes adjusted for the change of struct glyph.
Kenichi Handa <handa@m17n.org>
parents:
26908
diff
changeset
|
11424 ? glyph->u.ch |
25012 | 11425 : '.'), |
27000
d7f15cd9c4ad
All codes adjusted for the change of struct glyph.
Kenichi Handa <handa@m17n.org>
parents:
26908
diff
changeset
|
11426 glyph->face_id, |
25012 | 11427 glyph->left_box_line_p, |
11428 glyph->right_box_line_p); | |
11429 } | |
11430 else if (glyph->type == STRETCH_GLYPH) | |
11431 { | |
11432 fprintf (stderr, | |
29817
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
11433 " %5d %4c %6d %c %3d 0x%05x %c %4d %1.1d%1.1d\n", |
25012 | 11434 glyph - row->glyphs[TEXT_AREA], |
11435 'S', | |
11436 glyph->charpos, | |
29817
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
11437 (BUFFERP (glyph->object) |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
11438 ? 'B' |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
11439 : (STRINGP (glyph->object) |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
11440 ? 'S' |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
11441 : '-')), |
25012 | 11442 glyph->pixel_width, |
11443 0, | |
11444 '.', | |
27015
526f3b2398ce
(dump_glyph_row): Adapt to changes in struct glyph.
Gerd Moellmann <gerd@gnu.org>
parents:
27011
diff
changeset
|
11445 glyph->face_id, |
25012 | 11446 glyph->left_box_line_p, |
11447 glyph->right_box_line_p); | |
11448 } | |
11449 else if (glyph->type == IMAGE_GLYPH) | |
11450 { | |
11451 fprintf (stderr, | |
29817
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
11452 " %5d %4c %6d %c %3d 0x%05x %c %4d %1.1d%1.1d\n", |
25012 | 11453 glyph - row->glyphs[TEXT_AREA], |
11454 'I', | |
11455 glyph->charpos, | |
29817
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
11456 (BUFFERP (glyph->object) |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
11457 ? 'B' |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
11458 : (STRINGP (glyph->object) |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
11459 ? 'S' |
6c3a17ddb763
(single_display_prop_intangible_p)
Gerd Moellmann <gerd@gnu.org>
parents:
29748
diff
changeset
|
11460 : '-')), |
25012 | 11461 glyph->pixel_width, |
27000
d7f15cd9c4ad
All codes adjusted for the change of struct glyph.
Kenichi Handa <handa@m17n.org>
parents:
26908
diff
changeset
|
11462 glyph->u.img_id, |
25012 | 11463 '.', |
27015
526f3b2398ce
(dump_glyph_row): Adapt to changes in struct glyph.
Gerd Moellmann <gerd@gnu.org>
parents:
27011
diff
changeset
|
11464 glyph->face_id, |
25012 | 11465 glyph->left_box_line_p, |
11466 glyph->right_box_line_p); | |
11467 } | |
11468 ++glyph; | |
11469 } | |
11470 } | |
34789
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11471 else if (glyphs == 1) |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11472 { |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11473 char *s = (char *) alloca (row->used[TEXT_AREA] + 1); |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11474 int i; |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11475 |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11476 for (i = 0; i < row->used[TEXT_AREA]; ++i) |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11477 { |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11478 struct glyph *glyph = row->glyphs[TEXT_AREA] + i; |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11479 if (glyph->type == CHAR_GLYPH |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11480 && glyph->u.ch < 0x80 |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11481 && glyph->u.ch >= ' ') |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11482 s[i] = glyph->u.ch; |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11483 else |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11484 s[i] = '.'; |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11485 } |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11486 |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11487 s[i] = '\0'; |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11488 fprintf (stderr, "%3d: (%d) '%s'\n", vpos, row->enabled_p, s); |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11489 } |
25012 | 11490 } |
11491 | |
11492 | |
11493 DEFUN ("dump-glyph-matrix", Fdump_glyph_matrix, | |
11494 Sdump_glyph_matrix, 0, 1, "p", | |
11495 "Dump the current matrix of the selected window to stderr.\n\ | |
34789
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11496 Shows contents of glyph row structures. With non-nil\n\ |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11497 parameter GLYPHS, dump glyphs as well. If GLYPHS is 1 show\n\ |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11498 glyphs in short form, otherwise show glyphs in long form.") |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11499 (glyphs) |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11500 Lisp_Object glyphs; |
25012 | 11501 { |
11502 struct window *w = XWINDOW (selected_window); | |
11503 struct buffer *buffer = XBUFFER (w->buffer); | |
11504 | |
11505 fprintf (stderr, "PT = %d, BEGV = %d. ZV = %d\n", | |
11506 BUF_PT (buffer), BUF_BEGV (buffer), BUF_ZV (buffer)); | |
11507 fprintf (stderr, "Cursor x = %d, y = %d, hpos = %d, vpos = %d\n", | |
11508 w->cursor.x, w->cursor.y, w->cursor.hpos, w->cursor.vpos); | |
11509 fprintf (stderr, "=============================================\n"); | |
34789
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11510 dump_glyph_matrix (w->current_matrix, |
7ebf09eda05e
(dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
Gerd Moellmann <gerd@gnu.org>
parents:
34748
diff
changeset
|
11511 NILP (glyphs) ? 0 : XINT (glyphs)); |
25012 | 11512 return Qnil; |
11513 } | |
11514 | |
11515 | |
34801
803bee3aa2bd
(Fdump_glyph_row) [GLYPH_DEBUG]: Add optional arg
Gerd Moellmann <gerd@gnu.org>
parents:
34789
diff
changeset
|
11516 DEFUN ("dump-glyph-row", Fdump_glyph_row, Sdump_glyph_row, 1, 2, "", |
803bee3aa2bd
(Fdump_glyph_row) [GLYPH_DEBUG]: Add optional arg
Gerd Moellmann <gerd@gnu.org>
parents:
34789
diff
changeset
|
11517 "Dump glyph row ROW to stderr.\n\ |
803bee3aa2bd
(Fdump_glyph_row) [GLYPH_DEBUG]: Add optional arg
Gerd Moellmann <gerd@gnu.org>
parents:
34789
diff
changeset
|
11518 GLYPH 0 means don't dump glyphs.\n\ |
803bee3aa2bd
(Fdump_glyph_row) [GLYPH_DEBUG]: Add optional arg
Gerd Moellmann <gerd@gnu.org>
parents:
34789
diff
changeset
|
11519 GLYPH 1 means dump glyphs in short form.\n\ |
34802 | 11520 GLYPH > 1 or omitted means dump glyphs in long form.") |
34801
803bee3aa2bd
(Fdump_glyph_row) [GLYPH_DEBUG]: Add optional arg
Gerd Moellmann <gerd@gnu.org>
parents:
34789
diff
changeset
|
11521 (row, glyphs) |
803bee3aa2bd
(Fdump_glyph_row) [GLYPH_DEBUG]: Add optional arg
Gerd Moellmann <gerd@gnu.org>
parents:
34789
diff
changeset
|
11522 Lisp_Object row, glyphs; |
25012 | 11523 { |
11524 CHECK_NUMBER (row, 0); | |
34801
803bee3aa2bd
(Fdump_glyph_row) [GLYPH_DEBUG]: Add optional arg
Gerd Moellmann <gerd@gnu.org>
parents:
34789
diff
changeset
|
11525 dump_glyph_row (XWINDOW (selected_window)->current_matrix, |
803bee3aa2bd
(Fdump_glyph_row) [GLYPH_DEBUG]: Add optional arg
Gerd Moellmann <gerd@gnu.org>
parents:
34789
diff
changeset
|
11526 XINT (row), |
803bee3aa2bd
(Fdump_glyph_row) [GLYPH_DEBUG]: Add optional arg
Gerd Moellmann <gerd@gnu.org>
parents:
34789
diff
changeset
|
11527 INTEGERP (glyphs) ? XINT (glyphs) : 2); |
25012 | 11528 return Qnil; |
11529 } | |
11530 | |
11531 | |
25543 | 11532 DEFUN ("dump-tool-bar-row", Fdump_tool_bar_row, Sdump_tool_bar_row, |
25012 | 11533 0, 0, "", "") |
11534 () | |
11535 { | |
25677
1223d6401ab2
(QCfile): Move here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
25660
diff
changeset
|
11536 struct frame *sf = SELECTED_FRAME (); |
1223d6401ab2
(QCfile): Move here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
25660
diff
changeset
|
11537 struct glyph_matrix *m = (XWINDOW (sf->tool_bar_window) |
25012 | 11538 ->current_matrix); |
11539 dump_glyph_row (m, 0, 1); | |
11540 return Qnil; | |
11541 } | |
11542 | |
11543 | |
11544 DEFUN ("trace-redisplay-toggle", Ftrace_redisplay_toggle, | |
11545 Strace_redisplay_toggle, 0, 0, "", | |
11546 "Toggle tracing of redisplay.") | |
11547 () | |
11548 { | |
11549 trace_redisplay_p = !trace_redisplay_p; | |
11550 return Qnil; | |
11551 } | |
27540
d26783d86d5f
(Ftrace_to_stderr) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27118
diff
changeset
|
11552 |
d26783d86d5f
(Ftrace_to_stderr) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27118
diff
changeset
|
11553 |
d26783d86d5f
(Ftrace_to_stderr) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27118
diff
changeset
|
11554 DEFUN ("trace-to-stderr", Ftrace_to_stderr, Strace_to_stderr, 1, 1, "", |
d26783d86d5f
(Ftrace_to_stderr) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27118
diff
changeset
|
11555 "Print STRING to stderr.") |
d26783d86d5f
(Ftrace_to_stderr) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27118
diff
changeset
|
11556 (string) |
d26783d86d5f
(Ftrace_to_stderr) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27118
diff
changeset
|
11557 Lisp_Object string; |
d26783d86d5f
(Ftrace_to_stderr) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27118
diff
changeset
|
11558 { |
d26783d86d5f
(Ftrace_to_stderr) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27118
diff
changeset
|
11559 CHECK_STRING (string, 0); |
d26783d86d5f
(Ftrace_to_stderr) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27118
diff
changeset
|
11560 fprintf (stderr, "%s", XSTRING (string)->data); |
d26783d86d5f
(Ftrace_to_stderr) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27118
diff
changeset
|
11561 return Qnil; |
d26783d86d5f
(Ftrace_to_stderr) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27118
diff
changeset
|
11562 } |
25012 | 11563 |
11564 #endif /* GLYPH_DEBUG */ | |
11565 | |
11566 | |
277 | 11567 |
25012 | 11568 /*********************************************************************** |
11569 Building Desired Matrix Rows | |
11570 ***********************************************************************/ | |
11571 | |
11572 /* Return a temporary glyph row holding the glyphs of an overlay | |
11573 arrow. Only used for non-window-redisplay windows. */ | |
11574 | |
11575 static struct glyph_row * | |
11576 get_overlay_arrow_glyph_row (w) | |
11577 struct window *w; | |
11578 { | |
11579 struct frame *f = XFRAME (WINDOW_FRAME (w)); | |
11580 struct buffer *buffer = XBUFFER (w->buffer); | |
11581 struct buffer *old = current_buffer; | |
11582 unsigned char *arrow_string = XSTRING (Voverlay_arrow_string)->data; | |
11583 int arrow_len = XSTRING (Voverlay_arrow_string)->size; | |
11584 unsigned char *arrow_end = arrow_string + arrow_len; | |
11585 unsigned char *p; | |
11586 struct it it; | |
11587 int multibyte_p; | |
11588 int n_glyphs_before; | |
11589 | |
11590 set_buffer_temp (buffer); | |
11591 init_iterator (&it, w, -1, -1, &scratch_glyph_row, DEFAULT_FACE_ID); | |
11592 it.glyph_row->used[TEXT_AREA] = 0; | |
11593 SET_TEXT_POS (it.position, 0, 0); | |
11594 | |
11595 multibyte_p = !NILP (buffer->enable_multibyte_characters); | |
11596 p = arrow_string; | |
11597 while (p < arrow_end) | |
11598 { | |
11599 Lisp_Object face, ilisp; | |
11600 | |
11601 /* Get the next character. */ | |
11602 if (multibyte_p) | |
25096
1af1088d3812
(string_char_and_length): New. Use it everywhere
Gerd Moellmann <gerd@gnu.org>
parents:
25063
diff
changeset
|
11603 it.c = string_char_and_length (p, arrow_len, &it.len); |
25012 | 11604 else |
11605 it.c = *p, it.len = 1; | |
11606 p += it.len; | |
11607 | |
11608 /* Get its face. */ | |
11609 XSETFASTINT (ilisp, p - arrow_string); | |
11610 face = Fget_text_property (ilisp, Qface, Voverlay_arrow_string); | |
11611 it.face_id = compute_char_face (f, it.c, face); | |
11612 | |
11613 /* Compute its width, get its glyphs. */ | |
11614 n_glyphs_before = it.glyph_row->used[TEXT_AREA]; | |
25243
d74ff22998b4
(get_overlay_arrow_glyph_row): Set the charpos of
Gerd Moellmann <gerd@gnu.org>
parents:
25242
diff
changeset
|
11615 SET_TEXT_POS (it.position, -1, -1); |
25012 | 11616 PRODUCE_GLYPHS (&it); |
11617 | |
11618 /* If this character doesn't fit any more in the line, we have | |
11619 to remove some glyphs. */ | |
11620 if (it.current_x > it.last_visible_x) | |
11621 { | |
11622 it.glyph_row->used[TEXT_AREA] = n_glyphs_before; | |
11623 break; | |
11624 } | |
11625 } | |
11626 | |
11627 set_buffer_temp (old); | |
11628 return it.glyph_row; | |
11629 } | |
11630 | |
11631 | |
11632 /* Insert truncation glyphs at the start of IT->glyph_row. Truncation | |
11633 glyphs are only inserted for terminal frames since we can't really | |
11634 win with truncation glyphs when partially visible glyphs are | |
11635 involved. Which glyphs to insert is determined by | |
11636 produce_special_glyphs. */ | |
11637 | |
11638 static void | |
11639 insert_left_trunc_glyphs (it) | |
11640 struct it *it; | |
11641 { | |
11642 struct it truncate_it; | |
11643 struct glyph *from, *end, *to, *toend; | |
11644 | |
11645 xassert (!FRAME_WINDOW_P (it->f)); | |
11646 | |
11647 /* Get the truncation glyphs. */ | |
11648 truncate_it = *it; | |
11649 truncate_it.current_x = 0; | |
11650 truncate_it.face_id = DEFAULT_FACE_ID; | |
11651 truncate_it.glyph_row = &scratch_glyph_row; | |
11652 truncate_it.glyph_row->used[TEXT_AREA] = 0; | |
11653 CHARPOS (truncate_it.position) = BYTEPOS (truncate_it.position) = -1; | |
28464
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28362
diff
changeset
|
11654 truncate_it.object = make_number (0); |
25012 | 11655 produce_special_glyphs (&truncate_it, IT_TRUNCATION); |
11656 | |
11657 /* Overwrite glyphs from IT with truncation glyphs. */ | |
11658 from = truncate_it.glyph_row->glyphs[TEXT_AREA]; | |
11659 end = from + truncate_it.glyph_row->used[TEXT_AREA]; | |
11660 to = it->glyph_row->glyphs[TEXT_AREA]; | |
11661 toend = to + it->glyph_row->used[TEXT_AREA]; | |
11662 | |
11663 while (from < end) | |
11664 *to++ = *from++; | |
11665 | |
11666 /* There may be padding glyphs left over. Remove them. */ | |
11667 from = to; | |
11668 while (from < toend && CHAR_GLYPH_PADDING_P (*from)) | |
11669 ++from; | |
11670 while (from < toend) | |
11671 *to++ = *from++; | |
11672 | |
11673 it->glyph_row->used[TEXT_AREA] = to - it->glyph_row->glyphs[TEXT_AREA]; | |
11674 } | |
11675 | |
11676 | |
11677 /* Compute the pixel height and width of IT->glyph_row. | |
11678 | |
11679 Most of the time, ascent and height of a display line will be equal | |
11680 to the max_ascent and max_height values of the display iterator | |
11681 structure. This is not the case if | |
11682 | |
11683 1. We hit ZV without displaying anything. In this case, max_ascent | |
11684 and max_height will be zero. | |
11685 | |
11686 2. We have some glyphs that don't contribute to the line height. | |
11687 (The glyph row flag contributes_to_line_height_p is for future | |
11688 pixmap extensions). | |
11689 | |
11690 The first case is easily covered by using default values because in | |
11691 these cases, the line height does not really matter, except that it | |
11692 must not be zero. */ | |
11693 | |
11694 static void | |
11695 compute_line_metrics (it) | |
11696 struct it *it; | |
11697 { | |
11698 struct glyph_row *row = it->glyph_row; | |
11699 int area, i; | |
11700 | |
11701 if (FRAME_WINDOW_P (it->f)) | |
11702 { | |
25546 | 11703 int i, header_line_height; |
25012 | 11704 |
11705 /* The line may consist of one space only, that was added to | |
11706 place the cursor on it. If so, the row's height hasn't been | |
11707 computed yet. */ | |
11708 if (row->height == 0) | |
11709 { | |
11710 if (it->max_ascent + it->max_descent == 0) | |
25188
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
11711 it->max_descent = it->max_phys_descent = CANON_Y_UNIT (it->f); |
25012 | 11712 row->ascent = it->max_ascent; |
11713 row->height = it->max_ascent + it->max_descent; | |
25188
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
11714 row->phys_ascent = it->max_phys_ascent; |
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
11715 row->phys_height = it->max_phys_ascent + it->max_phys_descent; |
25012 | 11716 } |
11717 | |
11718 /* Compute the width of this line. */ | |
11719 row->pixel_width = row->x; | |
11720 for (i = 0; i < row->used[TEXT_AREA]; ++i) | |
11721 row->pixel_width += row->glyphs[TEXT_AREA][i].pixel_width; | |
11722 | |
11723 xassert (row->pixel_width >= 0); | |
11724 xassert (row->ascent >= 0 && row->height > 0); | |
11725 | |
25188
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
11726 row->overlapping_p = (MATRIX_ROW_OVERLAPS_SUCC_P (row) |
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
11727 || MATRIX_ROW_OVERLAPS_PRED_P (row)); |
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
11728 |
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
11729 /* If first line's physical ascent is larger than its logical |
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
11730 ascent, use the physical ascent, and make the row taller. |
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
11731 This makes accented characters fully visible. */ |
30652
4ed1978642cb
(start_display): WHen starting display on a continuation
Gerd Moellmann <gerd@gnu.org>
parents:
30631
diff
changeset
|
11732 if (row == MATRIX_FIRST_TEXT_ROW (it->w->desired_matrix) |
25188
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
11733 && row->phys_ascent > row->ascent) |
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
11734 { |
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
11735 row->height += row->phys_ascent - row->ascent; |
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
11736 row->ascent = row->phys_ascent; |
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
11737 } |
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
11738 |
25012 | 11739 /* Compute how much of the line is visible. */ |
11740 row->visible_height = row->height; | |
11741 | |
25546 | 11742 header_line_height = WINDOW_DISPLAY_HEADER_LINE_HEIGHT (it->w); |
11743 if (row->y < header_line_height) | |
11744 row->visible_height -= header_line_height - row->y; | |
25012 | 11745 else |
11746 { | |
11747 int max_y = WINDOW_DISPLAY_HEIGHT_NO_MODE_LINE (it->w); | |
11748 if (row->y + row->height > max_y) | |
11749 row->visible_height -= row->y + row->height - max_y; | |
11750 } | |
11751 } | |
6415
35917d3d0952
(fix_glyph, display_text_line, copy_part_of_rope, display_mode_line): Handle
Karl Heuer <kwzh@gnu.org>
parents:
6372
diff
changeset
|
11752 else |
25012 | 11753 { |
11754 row->pixel_width = row->used[TEXT_AREA]; | |
25188
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
11755 row->ascent = row->phys_ascent = 0; |
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
11756 row->height = row->phys_height = row->visible_height = 1; |
25012 | 11757 } |
11758 | |
11759 /* Compute a hash code for this row. */ | |
11760 row->hash = 0; | |
11761 for (area = LEFT_MARGIN_AREA; area < LAST_AREA; ++area) | |
11762 for (i = 0; i < row->used[area]; ++i) | |
11763 row->hash = ((((row->hash << 4) + (row->hash >> 24)) & 0x0fffffff) | |
11764 + row->glyphs[area][i].u.val | |
27000
d7f15cd9c4ad
All codes adjusted for the change of struct glyph.
Kenichi Handa <handa@m17n.org>
parents:
26908
diff
changeset
|
11765 + row->glyphs[area][i].face_id |
d7f15cd9c4ad
All codes adjusted for the change of struct glyph.
Kenichi Handa <handa@m17n.org>
parents:
26908
diff
changeset
|
11766 + row->glyphs[area][i].padding_p |
25012 | 11767 + (row->glyphs[area][i].type << 2)); |
11768 | |
11769 it->max_ascent = it->max_descent = 0; | |
25188
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
11770 it->max_phys_ascent = it->max_phys_descent = 0; |
25012 | 11771 } |
11772 | |
11773 | |
11774 /* Append one space to the glyph row of iterator IT if doing a | |
11775 window-based redisplay. DEFAULT_FACE_P non-zero means let the | |
11776 space have the default face, otherwise let it have the same face as | |
26255
4ebced8747b7
(append_space): Return non-zero if space was appended.
Gerd Moellmann <gerd@gnu.org>
parents:
26203
diff
changeset
|
11777 IT->face_id. Value is non-zero if a space was added. |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
11778 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
11779 This function is called to make sure that there is always one glyph |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
11780 at the end of a glyph row that the cursor can be set on under |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
11781 window-systems. (If there weren't such a glyph we would not know |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
11782 how wide and tall a box cursor should be displayed). |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
11783 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
11784 At the same time this space let's a nicely handle clearing to the |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
11785 end of the line if the row ends in italic text. */ |
25012 | 11786 |
26255
4ebced8747b7
(append_space): Return non-zero if space was appended.
Gerd Moellmann <gerd@gnu.org>
parents:
26203
diff
changeset
|
11787 static int |
25012 | 11788 append_space (it, default_face_p) |
11789 struct it *it; | |
11790 int default_face_p; | |
11791 { | |
11792 if (FRAME_WINDOW_P (it->f)) | |
11793 { | |
11794 int n = it->glyph_row->used[TEXT_AREA]; | |
11795 | |
11796 if (it->glyph_row->glyphs[TEXT_AREA] + n | |
11797 < it->glyph_row->glyphs[1 + TEXT_AREA]) | |
11798 { | |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
11799 /* Save some values that must not be changed. |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
11800 Must save IT->c and IT->len because otherwise |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
11801 ITERATOR_AT_END_P wouldn't work anymore after |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
11802 append_space has been called. */ |
34987
cf1115a9c758
(make_cursor_line_fully_visible): Remove unused variable
Eli Zaretskii <eliz@gnu.org>
parents:
34947
diff
changeset
|
11803 enum display_element_type saved_what = it->what; |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
11804 int saved_c = it->c, saved_len = it->len; |
25012 | 11805 int saved_x = it->current_x; |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
11806 int saved_face_id = it->face_id; |
25012 | 11807 struct text_pos saved_pos; |
11808 Lisp_Object saved_object; | |
28228
84be12f331b8
(charset_at_position): Function removed.
Kenichi Handa <handa@m17n.org>
parents:
28206
diff
changeset
|
11809 struct face *face; |
25012 | 11810 |
11811 saved_object = it->object; | |
11812 saved_pos = it->position; | |
11813 | |
11814 it->what = IT_CHARACTER; | |
11815 bzero (&it->position, sizeof it->position); | |
28464
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28362
diff
changeset
|
11816 it->object = make_number (0); |
25012 | 11817 it->c = ' '; |
11818 it->len = 1; | |
11819 | |
11820 if (default_face_p) | |
11821 it->face_id = DEFAULT_FACE_ID; | |
34225
b5cdf1bb6bb8
(next_element_from_ellipsis): Save face before selective
Gerd Moellmann <gerd@gnu.org>
parents:
34068
diff
changeset
|
11822 else if (it->face_before_selective_p) |
b5cdf1bb6bb8
(next_element_from_ellipsis): Save face before selective
Gerd Moellmann <gerd@gnu.org>
parents:
34068
diff
changeset
|
11823 it->face_id = it->saved_face_id; |
28228
84be12f331b8
(charset_at_position): Function removed.
Kenichi Handa <handa@m17n.org>
parents:
28206
diff
changeset
|
11824 face = FACE_FROM_ID (it->f, it->face_id); |
84be12f331b8
(charset_at_position): Function removed.
Kenichi Handa <handa@m17n.org>
parents:
28206
diff
changeset
|
11825 it->face_id = FACE_FOR_CHAR (it->f, face, 0); |
25012 | 11826 |
11827 PRODUCE_GLYPHS (it); | |
11828 | |
11829 it->current_x = saved_x; | |
11830 it->object = saved_object; | |
11831 it->position = saved_pos; | |
11832 it->what = saved_what; | |
11833 it->face_id = saved_face_id; | |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
11834 it->len = saved_len; |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
11835 it->c = saved_c; |
26255
4ebced8747b7
(append_space): Return non-zero if space was appended.
Gerd Moellmann <gerd@gnu.org>
parents:
26203
diff
changeset
|
11836 return 1; |
4ebced8747b7
(append_space): Return non-zero if space was appended.
Gerd Moellmann <gerd@gnu.org>
parents:
26203
diff
changeset
|
11837 } |
4ebced8747b7
(append_space): Return non-zero if space was appended.
Gerd Moellmann <gerd@gnu.org>
parents:
26203
diff
changeset
|
11838 } |
4ebced8747b7
(append_space): Return non-zero if space was appended.
Gerd Moellmann <gerd@gnu.org>
parents:
26203
diff
changeset
|
11839 |
4ebced8747b7
(append_space): Return non-zero if space was appended.
Gerd Moellmann <gerd@gnu.org>
parents:
26203
diff
changeset
|
11840 return 0; |
25012 | 11841 } |
11842 | |
11843 | |
11844 /* Extend the face of the last glyph in the text area of IT->glyph_row | |
11845 to the end of the display line. Called from display_line. | |
11846 If the glyph row is empty, add a space glyph to it so that we | |
11847 know the face to draw. Set the glyph row flag fill_line_p. */ | |
11848 | |
11849 static void | |
11850 extend_face_to_end_of_line (it) | |
11851 struct it *it; | |
11852 { | |
11853 struct face *face; | |
11854 struct frame *f = it->f; | |
11855 | |
11856 /* If line is already filled, do nothing. */ | |
11857 if (it->current_x >= it->last_visible_x) | |
11858 return; | |
11859 | |
11860 /* Face extension extends the background and box of IT->face_id | |
11861 to the end of the line. If the background equals the background | |
34225
b5cdf1bb6bb8
(next_element_from_ellipsis): Save face before selective
Gerd Moellmann <gerd@gnu.org>
parents:
34068
diff
changeset
|
11862 of the frame, we don't have to do anything. */ |
b5cdf1bb6bb8
(next_element_from_ellipsis): Save face before selective
Gerd Moellmann <gerd@gnu.org>
parents:
34068
diff
changeset
|
11863 if (it->face_before_selective_p) |
b5cdf1bb6bb8
(next_element_from_ellipsis): Save face before selective
Gerd Moellmann <gerd@gnu.org>
parents:
34068
diff
changeset
|
11864 face = FACE_FROM_ID (it->f, it->saved_face_id); |
b5cdf1bb6bb8
(next_element_from_ellipsis): Save face before selective
Gerd Moellmann <gerd@gnu.org>
parents:
34068
diff
changeset
|
11865 else |
b5cdf1bb6bb8
(next_element_from_ellipsis): Save face before selective
Gerd Moellmann <gerd@gnu.org>
parents:
34068
diff
changeset
|
11866 face = FACE_FROM_ID (f, it->face_id); |
b5cdf1bb6bb8
(next_element_from_ellipsis): Save face before selective
Gerd Moellmann <gerd@gnu.org>
parents:
34068
diff
changeset
|
11867 |
25012 | 11868 if (FRAME_WINDOW_P (f) |
11869 && face->box == FACE_NO_BOX | |
11870 && face->background == FRAME_BACKGROUND_PIXEL (f) | |
11871 && !face->stipple) | |
11872 return; | |
11873 | |
11874 /* Set the glyph row flag indicating that the face of the last glyph | |
11875 in the text area has to be drawn to the end of the text area. */ | |
11876 it->glyph_row->fill_line_p = 1; | |
11877 | |
28228
84be12f331b8
(charset_at_position): Function removed.
Kenichi Handa <handa@m17n.org>
parents:
28206
diff
changeset
|
11878 /* If current character of IT is not ASCII, make sure we have the |
84be12f331b8
(charset_at_position): Function removed.
Kenichi Handa <handa@m17n.org>
parents:
28206
diff
changeset
|
11879 ASCII face. This will be automatically undone the next time |
84be12f331b8
(charset_at_position): Function removed.
Kenichi Handa <handa@m17n.org>
parents:
28206
diff
changeset
|
11880 get_next_display_element returns a multibyte character. Note |
84be12f331b8
(charset_at_position): Function removed.
Kenichi Handa <handa@m17n.org>
parents:
28206
diff
changeset
|
11881 that the character will always be single byte in unibyte text. */ |
84be12f331b8
(charset_at_position): Function removed.
Kenichi Handa <handa@m17n.org>
parents:
28206
diff
changeset
|
11882 if (!SINGLE_BYTE_CHAR_P (it->c)) |
84be12f331b8
(charset_at_position): Function removed.
Kenichi Handa <handa@m17n.org>
parents:
28206
diff
changeset
|
11883 { |
84be12f331b8
(charset_at_position): Function removed.
Kenichi Handa <handa@m17n.org>
parents:
28206
diff
changeset
|
11884 it->face_id = FACE_FOR_CHAR (f, face, 0); |
25012 | 11885 } |
11886 | |
11887 if (FRAME_WINDOW_P (f)) | |
11888 { | |
11889 /* If the row is empty, add a space with the current face of IT, | |
11890 so that we know which face to draw. */ | |
11891 if (it->glyph_row->used[TEXT_AREA] == 0) | |
11892 { | |
11893 it->glyph_row->glyphs[TEXT_AREA][0] = space_glyph; | |
27000
d7f15cd9c4ad
All codes adjusted for the change of struct glyph.
Kenichi Handa <handa@m17n.org>
parents:
26908
diff
changeset
|
11894 it->glyph_row->glyphs[TEXT_AREA][0].face_id = it->face_id; |
25012 | 11895 it->glyph_row->used[TEXT_AREA] = 1; |
11896 } | |
11897 } | |
11898 else | |
11899 { | |
11900 /* Save some values that must not be changed. */ | |
11901 int saved_x = it->current_x; | |
11902 struct text_pos saved_pos; | |
11903 Lisp_Object saved_object; | |
34987
cf1115a9c758
(make_cursor_line_fully_visible): Remove unused variable
Eli Zaretskii <eliz@gnu.org>
parents:
34947
diff
changeset
|
11904 enum display_element_type saved_what = it->what; |
34225
b5cdf1bb6bb8
(next_element_from_ellipsis): Save face before selective
Gerd Moellmann <gerd@gnu.org>
parents:
34068
diff
changeset
|
11905 int saved_face_id = it->face_id; |
25012 | 11906 |
11907 saved_object = it->object; | |
11908 saved_pos = it->position; | |
11909 | |
11910 it->what = IT_CHARACTER; | |
11911 bzero (&it->position, sizeof it->position); | |
28464
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28362
diff
changeset
|
11912 it->object = make_number (0); |
25012 | 11913 it->c = ' '; |
11914 it->len = 1; | |
34225
b5cdf1bb6bb8
(next_element_from_ellipsis): Save face before selective
Gerd Moellmann <gerd@gnu.org>
parents:
34068
diff
changeset
|
11915 it->face_id = face->id; |
25012 | 11916 |
11917 PRODUCE_GLYPHS (it); | |
11918 | |
11919 while (it->current_x <= it->last_visible_x) | |
11920 PRODUCE_GLYPHS (it); | |
11921 | |
11922 /* Don't count these blanks really. It would let us insert a left | |
11923 truncation glyph below and make us set the cursor on them, maybe. */ | |
11924 it->current_x = saved_x; | |
11925 it->object = saved_object; | |
11926 it->position = saved_pos; | |
11927 it->what = saved_what; | |
34225
b5cdf1bb6bb8
(next_element_from_ellipsis): Save face before selective
Gerd Moellmann <gerd@gnu.org>
parents:
34068
diff
changeset
|
11928 it->face_id = saved_face_id; |
25012 | 11929 } |
11930 } | |
11931 | |
11932 | |
11933 /* Value is non-zero if text starting at CHARPOS in current_buffer is | |
11934 trailing whitespace. */ | |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
11935 |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
11936 static int |
25012 | 11937 trailing_whitespace_p (charpos) |
11938 int charpos; | |
11939 { | |
11940 int bytepos = CHAR_TO_BYTE (charpos); | |
11941 int c = 0; | |
11942 | |
11943 while (bytepos < ZV_BYTE | |
11944 && (c = FETCH_CHAR (bytepos), | |
11945 c == ' ' || c == '\t')) | |
11946 ++bytepos; | |
11947 | |
25305
273b3c17ce68
(Qshow_trailing_whitespace): Removed.
Gerd Moellmann <gerd@gnu.org>
parents:
25258
diff
changeset
|
11948 if (bytepos >= ZV_BYTE || c == '\n' || c == '\r') |
273b3c17ce68
(Qshow_trailing_whitespace): Removed.
Gerd Moellmann <gerd@gnu.org>
parents:
25258
diff
changeset
|
11949 { |
273b3c17ce68
(Qshow_trailing_whitespace): Removed.
Gerd Moellmann <gerd@gnu.org>
parents:
25258
diff
changeset
|
11950 if (bytepos != PT_BYTE) |
273b3c17ce68
(Qshow_trailing_whitespace): Removed.
Gerd Moellmann <gerd@gnu.org>
parents:
25258
diff
changeset
|
11951 return 1; |
273b3c17ce68
(Qshow_trailing_whitespace): Removed.
Gerd Moellmann <gerd@gnu.org>
parents:
25258
diff
changeset
|
11952 } |
273b3c17ce68
(Qshow_trailing_whitespace): Removed.
Gerd Moellmann <gerd@gnu.org>
parents:
25258
diff
changeset
|
11953 return 0; |
25012 | 11954 } |
11955 | |
11956 | |
11957 /* Highlight trailing whitespace, if any, in ROW. */ | |
11958 | |
11959 void | |
11960 highlight_trailing_whitespace (f, row) | |
11961 struct frame *f; | |
11962 struct glyph_row *row; | |
11963 { | |
11964 int used = row->used[TEXT_AREA]; | |
11965 | |
11966 if (used) | |
11967 { | |
11968 struct glyph *start = row->glyphs[TEXT_AREA]; | |
11969 struct glyph *glyph = start + used - 1; | |
11970 | |
11971 /* Skip over the space glyph inserted to display the | |
11972 cursor at the end of a line. */ | |
11973 if (glyph->type == CHAR_GLYPH | |
27000
d7f15cd9c4ad
All codes adjusted for the change of struct glyph.
Kenichi Handa <handa@m17n.org>
parents:
26908
diff
changeset
|
11974 && glyph->u.ch == ' ' |
28464
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28362
diff
changeset
|
11975 && INTEGERP (glyph->object)) |
25012 | 11976 --glyph; |
11977 | |
11978 /* If last glyph is a space or stretch, and it's trailing | |
11979 whitespace, set the face of all trailing whitespace glyphs in | |
11980 IT->glyph_row to `trailing-whitespace'. */ | |
11981 if (glyph >= start | |
11982 && BUFFERP (glyph->object) | |
11983 && (glyph->type == STRETCH_GLYPH | |
11984 || (glyph->type == CHAR_GLYPH | |
27000
d7f15cd9c4ad
All codes adjusted for the change of struct glyph.
Kenichi Handa <handa@m17n.org>
parents:
26908
diff
changeset
|
11985 && glyph->u.ch == ' ')) |
25012 | 11986 && trailing_whitespace_p (glyph->charpos)) |
11987 { | |
28228
84be12f331b8
(charset_at_position): Function removed.
Kenichi Handa <handa@m17n.org>
parents:
28206
diff
changeset
|
11988 int face_id = lookup_named_face (f, Qtrailing_whitespace, 0); |
25012 | 11989 |
11990 while (glyph >= start | |
11991 && BUFFERP (glyph->object) | |
11992 && (glyph->type == STRETCH_GLYPH | |
11993 || (glyph->type == CHAR_GLYPH | |
27000
d7f15cd9c4ad
All codes adjusted for the change of struct glyph.
Kenichi Handa <handa@m17n.org>
parents:
26908
diff
changeset
|
11994 && glyph->u.ch == ' '))) |
d7f15cd9c4ad
All codes adjusted for the change of struct glyph.
Kenichi Handa <handa@m17n.org>
parents:
26908
diff
changeset
|
11995 (glyph--)->face_id = face_id; |
25012 | 11996 } |
11997 } | |
11998 } | |
11999 | |
12000 | |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
12001 /* Value is non-zero if glyph row ROW in window W should be |
33916
907c3073ae28
(forward_to_next_line_start): If already on a newline,
Gerd Moellmann <gerd@gnu.org>
parents:
33898
diff
changeset
|
12002 used to hold the cursor. */ |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
12003 |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
12004 static int |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
12005 cursor_row_p (w, row) |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
12006 struct window *w; |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
12007 struct glyph_row *row; |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
12008 { |
32590
04def897a1c6
(cursor_row_p): Take continued lines into account.
Gerd Moellmann <gerd@gnu.org>
parents:
32585
diff
changeset
|
12009 int cursor_row_p = 1; |
04def897a1c6
(cursor_row_p): Take continued lines into account.
Gerd Moellmann <gerd@gnu.org>
parents:
32585
diff
changeset
|
12010 |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
12011 if (PT == MATRIX_ROW_END_CHARPOS (row)) |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
12012 { |
32590
04def897a1c6
(cursor_row_p): Take continued lines into account.
Gerd Moellmann <gerd@gnu.org>
parents:
32585
diff
changeset
|
12013 /* If the row ends with a newline from a string, we don't want |
04def897a1c6
(cursor_row_p): Take continued lines into account.
Gerd Moellmann <gerd@gnu.org>
parents:
32585
diff
changeset
|
12014 the cursor there (if the row is continued it doesn't end in a |
04def897a1c6
(cursor_row_p): Take continued lines into account.
Gerd Moellmann <gerd@gnu.org>
parents:
32585
diff
changeset
|
12015 newline). */ |
04def897a1c6
(cursor_row_p): Take continued lines into account.
Gerd Moellmann <gerd@gnu.org>
parents:
32585
diff
changeset
|
12016 if (CHARPOS (row->end.string_pos) >= 0 |
04def897a1c6
(cursor_row_p): Take continued lines into account.
Gerd Moellmann <gerd@gnu.org>
parents:
32585
diff
changeset
|
12017 || MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row)) |
04def897a1c6
(cursor_row_p): Take continued lines into account.
Gerd Moellmann <gerd@gnu.org>
parents:
32585
diff
changeset
|
12018 cursor_row_p = row->continued_p; |
04def897a1c6
(cursor_row_p): Take continued lines into account.
Gerd Moellmann <gerd@gnu.org>
parents:
32585
diff
changeset
|
12019 |
04def897a1c6
(cursor_row_p): Take continued lines into account.
Gerd Moellmann <gerd@gnu.org>
parents:
32585
diff
changeset
|
12020 /* If the row ends at ZV, display the cursor at the end of that |
04def897a1c6
(cursor_row_p): Take continued lines into account.
Gerd Moellmann <gerd@gnu.org>
parents:
32585
diff
changeset
|
12021 row instead of at the start of the row below. */ |
04def897a1c6
(cursor_row_p): Take continued lines into account.
Gerd Moellmann <gerd@gnu.org>
parents:
32585
diff
changeset
|
12022 else if (row->ends_at_zv_p) |
04def897a1c6
(cursor_row_p): Take continued lines into account.
Gerd Moellmann <gerd@gnu.org>
parents:
32585
diff
changeset
|
12023 cursor_row_p = 1; |
04def897a1c6
(cursor_row_p): Take continued lines into account.
Gerd Moellmann <gerd@gnu.org>
parents:
32585
diff
changeset
|
12024 else |
04def897a1c6
(cursor_row_p): Take continued lines into account.
Gerd Moellmann <gerd@gnu.org>
parents:
32585
diff
changeset
|
12025 cursor_row_p = 0; |
04def897a1c6
(cursor_row_p): Take continued lines into account.
Gerd Moellmann <gerd@gnu.org>
parents:
32585
diff
changeset
|
12026 } |
04def897a1c6
(cursor_row_p): Take continued lines into account.
Gerd Moellmann <gerd@gnu.org>
parents:
32585
diff
changeset
|
12027 |
04def897a1c6
(cursor_row_p): Take continued lines into account.
Gerd Moellmann <gerd@gnu.org>
parents:
32585
diff
changeset
|
12028 return cursor_row_p; |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
12029 } |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
12030 |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
12031 |
25012 | 12032 /* Construct the glyph row IT->glyph_row in the desired matrix of |
12033 IT->w from text at the current position of IT. See dispextern.h | |
12034 for an overview of struct it. Value is non-zero if | |
12035 IT->glyph_row displays text, as opposed to a line displaying ZV | |
12036 only. */ | |
12037 | |
12038 static int | |
12039 display_line (it) | |
12040 struct it *it; | |
12041 { | |
12042 struct glyph_row *row = it->glyph_row; | |
12043 | |
12044 /* We always start displaying at hpos zero even if hscrolled. */ | |
12045 xassert (it->hpos == 0 && it->current_x == 0); | |
12046 | |
12047 /* We must not display in a row that's not a text row. */ | |
12048 xassert (MATRIX_ROW_VPOS (row, it->w->desired_matrix) | |
12049 < it->w->desired_matrix->nrows); | |
12050 | |
12051 /* Is IT->w showing the region? */ | |
12052 it->w->region_showing = it->region_beg_charpos > 0 ? Qt : Qnil; | |
12053 | |
12054 /* Clear the result glyph row and enable it. */ | |
12055 prepare_desired_row (row); | |
12056 | |
12057 row->y = it->current_y; | |
12058 row->start = it->current; | |
12059 row->continuation_lines_width = it->continuation_lines_width; | |
12060 row->displays_text_p = 1; | |
29473
80835e075d87
(display_line): Set row's and iterator's
Gerd Moellmann <gerd@gnu.org>
parents:
29461
diff
changeset
|
12061 row->starts_in_middle_of_char_p = it->starts_in_middle_of_char_p; |
80835e075d87
(display_line): Set row's and iterator's
Gerd Moellmann <gerd@gnu.org>
parents:
29461
diff
changeset
|
12062 it->starts_in_middle_of_char_p = 0; |
277 | 12063 |
2766
aa7b6f6aa20a
* xdisp.c (copy_rope, copy_part_of_rope): Add face argument.
Jim Blandy <jimb@redhat.com>
parents:
2754
diff
changeset
|
12064 /* Arrange the overlays nicely for our purposes. Usually, we call |
25012 | 12065 display_line on only one line at a time, in which case this |
2766
aa7b6f6aa20a
* xdisp.c (copy_rope, copy_part_of_rope): Add face argument.
Jim Blandy <jimb@redhat.com>
parents:
2754
diff
changeset
|
12066 can't really hurt too much, or we call it on lines which appear |
aa7b6f6aa20a
* xdisp.c (copy_rope, copy_part_of_rope): Add face argument.
Jim Blandy <jimb@redhat.com>
parents:
2754
diff
changeset
|
12067 one after another in the buffer, in which case all calls to |
aa7b6f6aa20a
* xdisp.c (copy_rope, copy_part_of_rope): Add face argument.
Jim Blandy <jimb@redhat.com>
parents:
2754
diff
changeset
|
12068 recenter_overlay_lists but the first will be pretty cheap. */ |
25012 | 12069 recenter_overlay_lists (current_buffer, IT_CHARPOS (*it)); |
12070 | |
12071 /* Move over display elements that are not visible because we are | |
12072 hscrolled. This may stop at an x-position < IT->first_visible_x | |
12073 if the first glyph is partially visible or if we hit a line end. */ | |
12074 if (it->current_x < it->first_visible_x) | |
12075 move_it_in_display_line_to (it, ZV, it->first_visible_x, | |
12076 MOVE_TO_POS | MOVE_TO_X); | |
12077 | |
12078 /* Get the initial row height. This is either the height of the | |
12079 text hscrolled, if there is any, or zero. */ | |
12080 row->ascent = it->max_ascent; | |
12081 row->height = it->max_ascent + it->max_descent; | |
25188
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
12082 row->phys_ascent = it->max_phys_ascent; |
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
12083 row->phys_height = it->max_phys_ascent + it->max_phys_descent; |
25012 | 12084 |
12085 /* Loop generating characters. The loop is left with IT on the next | |
12086 character to display. */ | |
12087 while (1) | |
12088 { | |
12089 int n_glyphs_before, hpos_before, x_before; | |
12090 int x, i, nglyphs; | |
31506
a1d733428491
(dump_glyph_row): Fix printf format string.
Gerd Moellmann <gerd@gnu.org>
parents:
31493
diff
changeset
|
12091 int ascent = 0, descent = 0, phys_ascent = 0, phys_descent = 0; |
30652
4ed1978642cb
(start_display): WHen starting display on a continuation
Gerd Moellmann <gerd@gnu.org>
parents:
30631
diff
changeset
|
12092 |
25012 | 12093 /* Retrieve the next thing to display. Value is zero if end of |
12094 buffer reached. */ | |
12095 if (!get_next_display_element (it)) | |
12096 { | |
12097 /* Maybe add a space at the end of this line that is used to | |
26301
12ddeb9a6efd
(display_line): Set charpos of first glyph in blank
Gerd Moellmann <gerd@gnu.org>
parents:
26258
diff
changeset
|
12098 display the cursor there under X. Set the charpos of the |
12ddeb9a6efd
(display_line): Set charpos of first glyph in blank
Gerd Moellmann <gerd@gnu.org>
parents:
26258
diff
changeset
|
12099 first glyph of blank lines not corresponding to any text |
12ddeb9a6efd
(display_line): Set charpos of first glyph in blank
Gerd Moellmann <gerd@gnu.org>
parents:
26258
diff
changeset
|
12100 to -1. */ |
12ddeb9a6efd
(display_line): Set charpos of first glyph in blank
Gerd Moellmann <gerd@gnu.org>
parents:
26258
diff
changeset
|
12101 if ((append_space (it, 1) && row->used[TEXT_AREA] == 1) |
12ddeb9a6efd
(display_line): Set charpos of first glyph in blank
Gerd Moellmann <gerd@gnu.org>
parents:
26258
diff
changeset
|
12102 || row->used[TEXT_AREA] == 0) |
12ddeb9a6efd
(display_line): Set charpos of first glyph in blank
Gerd Moellmann <gerd@gnu.org>
parents:
26258
diff
changeset
|
12103 { |
25012 | 12104 row->glyphs[TEXT_AREA]->charpos = -1; |
12105 row->displays_text_p = 0; | |
12106 | |
12107 if (!NILP (XBUFFER (it->w->buffer)->indicate_empty_lines)) | |
12108 row->indicate_empty_line_p = 1; | |
12109 } | |
12110 | |
12111 it->continuation_lines_width = 0; | |
12112 row->ends_at_zv_p = 1; | |
12113 break; | |
12114 } | |
12115 | |
12116 /* Now, get the metrics of what we want to display. This also | |
12117 generates glyphs in `row' (which is IT->glyph_row). */ | |
12118 n_glyphs_before = row->used[TEXT_AREA]; | |
12119 x = it->current_x; | |
28723
67ffd6aa22da
(display_line): If lines are continued, restore
Gerd Moellmann <gerd@gnu.org>
parents:
28709
diff
changeset
|
12120 |
67ffd6aa22da
(display_line): If lines are continued, restore
Gerd Moellmann <gerd@gnu.org>
parents:
28709
diff
changeset
|
12121 /* Remember the line height so far in case the next element doesn't |
67ffd6aa22da
(display_line): If lines are continued, restore
Gerd Moellmann <gerd@gnu.org>
parents:
28709
diff
changeset
|
12122 fit on the line. */ |
67ffd6aa22da
(display_line): If lines are continued, restore
Gerd Moellmann <gerd@gnu.org>
parents:
28709
diff
changeset
|
12123 if (!it->truncate_lines_p) |
67ffd6aa22da
(display_line): If lines are continued, restore
Gerd Moellmann <gerd@gnu.org>
parents:
28709
diff
changeset
|
12124 { |
67ffd6aa22da
(display_line): If lines are continued, restore
Gerd Moellmann <gerd@gnu.org>
parents:
28709
diff
changeset
|
12125 ascent = it->max_ascent; |
67ffd6aa22da
(display_line): If lines are continued, restore
Gerd Moellmann <gerd@gnu.org>
parents:
28709
diff
changeset
|
12126 descent = it->max_descent; |
67ffd6aa22da
(display_line): If lines are continued, restore
Gerd Moellmann <gerd@gnu.org>
parents:
28709
diff
changeset
|
12127 phys_ascent = it->max_phys_ascent; |
67ffd6aa22da
(display_line): If lines are continued, restore
Gerd Moellmann <gerd@gnu.org>
parents:
28709
diff
changeset
|
12128 phys_descent = it->max_phys_descent; |
67ffd6aa22da
(display_line): If lines are continued, restore
Gerd Moellmann <gerd@gnu.org>
parents:
28709
diff
changeset
|
12129 } |
67ffd6aa22da
(display_line): If lines are continued, restore
Gerd Moellmann <gerd@gnu.org>
parents:
28709
diff
changeset
|
12130 |
25012 | 12131 PRODUCE_GLYPHS (it); |
12132 | |
12133 /* If this display element was in marginal areas, continue with | |
12134 the next one. */ | |
12135 if (it->area != TEXT_AREA) | |
12136 { | |
12137 row->ascent = max (row->ascent, it->max_ascent); | |
12138 row->height = max (row->height, it->max_ascent + it->max_descent); | |
25188
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
12139 row->phys_ascent = max (row->phys_ascent, it->max_phys_ascent); |
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
12140 row->phys_height = max (row->phys_height, |
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
12141 it->max_phys_ascent + it->max_phys_descent); |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
12142 set_iterator_to_next (it, 1); |
25012 | 12143 continue; |
12144 } | |
12145 | |
12146 /* Does the display element fit on the line? If we truncate | |
12147 lines, we should draw past the right edge of the window. If | |
12148 we don't truncate, we want to stop so that we can display the | |
12149 continuation glyph before the right margin. If lines are | |
12150 continued, there are two possible strategies for characters | |
12151 resulting in more than 1 glyph (e.g. tabs): Display as many | |
12152 glyphs as possible in this line and leave the rest for the | |
12153 continuation line, or display the whole element in the next | |
12154 line. Original redisplay did the former, so we do it also. */ | |
12155 nglyphs = row->used[TEXT_AREA] - n_glyphs_before; | |
12156 hpos_before = it->hpos; | |
12157 x_before = x; | |
12158 | |
12159 if (nglyphs == 1 | |
12160 && it->current_x < it->last_visible_x) | |
12161 { | |
12162 ++it->hpos; | |
12163 row->ascent = max (row->ascent, it->max_ascent); | |
12164 row->height = max (row->height, it->max_ascent + it->max_descent); | |
25188
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
12165 row->phys_ascent = max (row->phys_ascent, it->max_phys_ascent); |
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
12166 row->phys_height = max (row->phys_height, |
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
12167 it->max_phys_ascent + it->max_phys_descent); |
25012 | 12168 if (it->current_x - it->pixel_width < it->first_visible_x) |
12169 row->x = x - it->first_visible_x; | |
12170 } | |
12171 else | |
12172 { | |
12173 int new_x; | |
12174 struct glyph *glyph; | |
12175 | |
12176 for (i = 0; i < nglyphs; ++i, x = new_x) | |
12177 { | |
12178 glyph = row->glyphs[TEXT_AREA] + n_glyphs_before + i; | |
12179 new_x = x + glyph->pixel_width; | |
12180 | |
12181 if (/* Lines are continued. */ | |
12182 !it->truncate_lines_p | |
12183 && (/* Glyph doesn't fit on the line. */ | |
12184 new_x > it->last_visible_x | |
12185 /* Or it fits exactly on a window system frame. */ | |
12186 || (new_x == it->last_visible_x | |
12187 && FRAME_WINDOW_P (it->f)))) | |
11854
637c5283e74b
(zv_strings_seen): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
11810
diff
changeset
|
12188 { |
25012 | 12189 /* End of a continued line. */ |
12190 | |
12191 if (it->hpos == 0 | |
12192 || (new_x == it->last_visible_x | |
12193 && FRAME_WINDOW_P (it->f))) | |
11854
637c5283e74b
(zv_strings_seen): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
11810
diff
changeset
|
12194 { |
28723
67ffd6aa22da
(display_line): If lines are continued, restore
Gerd Moellmann <gerd@gnu.org>
parents:
28709
diff
changeset
|
12195 /* Current glyph is the only one on the line or |
67ffd6aa22da
(display_line): If lines are continued, restore
Gerd Moellmann <gerd@gnu.org>
parents:
28709
diff
changeset
|
12196 fits exactly on the line. We must continue |
67ffd6aa22da
(display_line): If lines are continued, restore
Gerd Moellmann <gerd@gnu.org>
parents:
28709
diff
changeset
|
12197 the line because we can't draw the cursor |
67ffd6aa22da
(display_line): If lines are continued, restore
Gerd Moellmann <gerd@gnu.org>
parents:
28709
diff
changeset
|
12198 after the glyph. */ |
25012 | 12199 row->continued_p = 1; |
12200 it->current_x = new_x; | |
12201 it->continuation_lines_width += new_x; | |
12202 ++it->hpos; | |
12203 if (i == nglyphs - 1) | |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
12204 set_iterator_to_next (it, 1); |
11854
637c5283e74b
(zv_strings_seen): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
11810
diff
changeset
|
12205 } |
29461
159e43bc7e3c
(display_line): Revert change of 2000-06-06. Treat
Gerd Moellmann <gerd@gnu.org>
parents:
29449
diff
changeset
|
12206 else if (CHAR_GLYPH_PADDING_P (*glyph) |
159e43bc7e3c
(display_line): Revert change of 2000-06-06. Treat
Gerd Moellmann <gerd@gnu.org>
parents:
29449
diff
changeset
|
12207 && !FRAME_WINDOW_P (it->f)) |
159e43bc7e3c
(display_line): Revert change of 2000-06-06. Treat
Gerd Moellmann <gerd@gnu.org>
parents:
29449
diff
changeset
|
12208 { |
159e43bc7e3c
(display_line): Revert change of 2000-06-06. Treat
Gerd Moellmann <gerd@gnu.org>
parents:
29449
diff
changeset
|
12209 /* A padding glyph that doesn't fit on this line. |
159e43bc7e3c
(display_line): Revert change of 2000-06-06. Treat
Gerd Moellmann <gerd@gnu.org>
parents:
29449
diff
changeset
|
12210 This means the whole character doesn't fit |
159e43bc7e3c
(display_line): Revert change of 2000-06-06. Treat
Gerd Moellmann <gerd@gnu.org>
parents:
29449
diff
changeset
|
12211 on the line. */ |
159e43bc7e3c
(display_line): Revert change of 2000-06-06. Treat
Gerd Moellmann <gerd@gnu.org>
parents:
29449
diff
changeset
|
12212 row->used[TEXT_AREA] = n_glyphs_before; |
159e43bc7e3c
(display_line): Revert change of 2000-06-06. Treat
Gerd Moellmann <gerd@gnu.org>
parents:
29449
diff
changeset
|
12213 |
159e43bc7e3c
(display_line): Revert change of 2000-06-06. Treat
Gerd Moellmann <gerd@gnu.org>
parents:
29449
diff
changeset
|
12214 /* Fill the rest of the row with continuation |
159e43bc7e3c
(display_line): Revert change of 2000-06-06. Treat
Gerd Moellmann <gerd@gnu.org>
parents:
29449
diff
changeset
|
12215 glyphs like in 20.x. */ |
159e43bc7e3c
(display_line): Revert change of 2000-06-06. Treat
Gerd Moellmann <gerd@gnu.org>
parents:
29449
diff
changeset
|
12216 while (row->glyphs[TEXT_AREA] + row->used[TEXT_AREA] |
159e43bc7e3c
(display_line): Revert change of 2000-06-06. Treat
Gerd Moellmann <gerd@gnu.org>
parents:
29449
diff
changeset
|
12217 < row->glyphs[1 + TEXT_AREA]) |
159e43bc7e3c
(display_line): Revert change of 2000-06-06. Treat
Gerd Moellmann <gerd@gnu.org>
parents:
29449
diff
changeset
|
12218 produce_special_glyphs (it, IT_CONTINUATION); |
159e43bc7e3c
(display_line): Revert change of 2000-06-06. Treat
Gerd Moellmann <gerd@gnu.org>
parents:
29449
diff
changeset
|
12219 |
159e43bc7e3c
(display_line): Revert change of 2000-06-06. Treat
Gerd Moellmann <gerd@gnu.org>
parents:
29449
diff
changeset
|
12220 row->continued_p = 1; |
159e43bc7e3c
(display_line): Revert change of 2000-06-06. Treat
Gerd Moellmann <gerd@gnu.org>
parents:
29449
diff
changeset
|
12221 it->current_x = x_before; |
159e43bc7e3c
(display_line): Revert change of 2000-06-06. Treat
Gerd Moellmann <gerd@gnu.org>
parents:
29449
diff
changeset
|
12222 it->continuation_lines_width += x_before; |
159e43bc7e3c
(display_line): Revert change of 2000-06-06. Treat
Gerd Moellmann <gerd@gnu.org>
parents:
29449
diff
changeset
|
12223 |
159e43bc7e3c
(display_line): Revert change of 2000-06-06. Treat
Gerd Moellmann <gerd@gnu.org>
parents:
29449
diff
changeset
|
12224 /* Restore the height to what it was before the |
159e43bc7e3c
(display_line): Revert change of 2000-06-06. Treat
Gerd Moellmann <gerd@gnu.org>
parents:
29449
diff
changeset
|
12225 element not fitting on the line. */ |
159e43bc7e3c
(display_line): Revert change of 2000-06-06. Treat
Gerd Moellmann <gerd@gnu.org>
parents:
29449
diff
changeset
|
12226 it->max_ascent = ascent; |
159e43bc7e3c
(display_line): Revert change of 2000-06-06. Treat
Gerd Moellmann <gerd@gnu.org>
parents:
29449
diff
changeset
|
12227 it->max_descent = descent; |
159e43bc7e3c
(display_line): Revert change of 2000-06-06. Treat
Gerd Moellmann <gerd@gnu.org>
parents:
29449
diff
changeset
|
12228 it->max_phys_ascent = phys_ascent; |
159e43bc7e3c
(display_line): Revert change of 2000-06-06. Treat
Gerd Moellmann <gerd@gnu.org>
parents:
29449
diff
changeset
|
12229 it->max_phys_descent = phys_descent; |
159e43bc7e3c
(display_line): Revert change of 2000-06-06. Treat
Gerd Moellmann <gerd@gnu.org>
parents:
29449
diff
changeset
|
12230 } |
25012 | 12231 else |
12232 { | |
12233 /* Display element draws past the right edge of | |
12234 the window. Restore positions to values | |
12235 before the element. The next line starts | |
12236 with current_x before the glyph that could | |
12237 not be displayed, so that TAB works right. */ | |
12238 row->used[TEXT_AREA] = n_glyphs_before + i; | |
12239 | |
12240 /* Display continuation glyphs. */ | |
12241 if (!FRAME_WINDOW_P (it->f)) | |
12242 produce_special_glyphs (it, IT_CONTINUATION); | |
12243 row->continued_p = 1; | |
12244 | |
12245 it->current_x = x; | |
12246 it->continuation_lines_width += x; | |
29473
80835e075d87
(display_line): Set row's and iterator's
Gerd Moellmann <gerd@gnu.org>
parents:
29461
diff
changeset
|
12247 if (nglyphs > 1 && i > 0) |
80835e075d87
(display_line): Set row's and iterator's
Gerd Moellmann <gerd@gnu.org>
parents:
29461
diff
changeset
|
12248 { |
80835e075d87
(display_line): Set row's and iterator's
Gerd Moellmann <gerd@gnu.org>
parents:
29461
diff
changeset
|
12249 row->ends_in_middle_of_char_p = 1; |
80835e075d87
(display_line): Set row's and iterator's
Gerd Moellmann <gerd@gnu.org>
parents:
29461
diff
changeset
|
12250 it->starts_in_middle_of_char_p = 1; |
80835e075d87
(display_line): Set row's and iterator's
Gerd Moellmann <gerd@gnu.org>
parents:
29461
diff
changeset
|
12251 } |
28723
67ffd6aa22da
(display_line): If lines are continued, restore
Gerd Moellmann <gerd@gnu.org>
parents:
28709
diff
changeset
|
12252 |
67ffd6aa22da
(display_line): If lines are continued, restore
Gerd Moellmann <gerd@gnu.org>
parents:
28709
diff
changeset
|
12253 /* Restore the height to what it was before the |
67ffd6aa22da
(display_line): If lines are continued, restore
Gerd Moellmann <gerd@gnu.org>
parents:
28709
diff
changeset
|
12254 element not fitting on the line. */ |
67ffd6aa22da
(display_line): If lines are continued, restore
Gerd Moellmann <gerd@gnu.org>
parents:
28709
diff
changeset
|
12255 it->max_ascent = ascent; |
67ffd6aa22da
(display_line): If lines are continued, restore
Gerd Moellmann <gerd@gnu.org>
parents:
28709
diff
changeset
|
12256 it->max_descent = descent; |
67ffd6aa22da
(display_line): If lines are continued, restore
Gerd Moellmann <gerd@gnu.org>
parents:
28709
diff
changeset
|
12257 it->max_phys_ascent = phys_ascent; |
67ffd6aa22da
(display_line): If lines are continued, restore
Gerd Moellmann <gerd@gnu.org>
parents:
28709
diff
changeset
|
12258 it->max_phys_descent = phys_descent; |
25012 | 12259 } |
28723
67ffd6aa22da
(display_line): If lines are continued, restore
Gerd Moellmann <gerd@gnu.org>
parents:
28709
diff
changeset
|
12260 |
25012 | 12261 break; |
11854
637c5283e74b
(zv_strings_seen): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
11810
diff
changeset
|
12262 } |
25012 | 12263 else if (new_x > it->first_visible_x) |
17017
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
12264 { |
25012 | 12265 /* Increment number of glyphs actually displayed. */ |
12266 ++it->hpos; | |
12267 | |
12268 if (x < it->first_visible_x) | |
12269 /* Glyph is partially visible, i.e. row starts at | |
12270 negative X position. */ | |
12271 row->x = x - it->first_visible_x; | |
17017
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
12272 } |
25012 | 12273 else |
11854
637c5283e74b
(zv_strings_seen): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
11810
diff
changeset
|
12274 { |
25012 | 12275 /* Glyph is completely off the left margin of the |
12276 window. This should not happen because of the | |
12277 move_it_in_display_line at the start of | |
12278 this function. */ | |
12279 abort (); | |
11854
637c5283e74b
(zv_strings_seen): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
11810
diff
changeset
|
12280 } |
637c5283e74b
(zv_strings_seen): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
11810
diff
changeset
|
12281 } |
25012 | 12282 |
12283 row->ascent = max (row->ascent, it->max_ascent); | |
12284 row->height = max (row->height, it->max_ascent + it->max_descent); | |
25188
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
12285 row->phys_ascent = max (row->phys_ascent, it->max_phys_ascent); |
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
12286 row->phys_height = max (row->phys_height, |
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
12287 it->max_phys_ascent + it->max_phys_descent); |
25012 | 12288 |
12289 /* End of this display line if row is continued. */ | |
12290 if (row->continued_p) | |
12291 break; | |
12292 } | |
12293 | |
12294 /* Is this a line end? If yes, we're also done, after making | |
12295 sure that a non-default face is extended up to the right | |
12296 margin of the window. */ | |
12297 if (ITERATOR_AT_END_OF_LINE_P (it)) | |
12298 { | |
12299 int used_before = row->used[TEXT_AREA]; | |
12300 | |
12301 /* Add a space at the end of the line that is used to | |
12302 display the cursor there. */ | |
12303 append_space (it, 0); | |
12304 | |
12305 /* Extend the face to the end of the line. */ | |
12306 extend_face_to_end_of_line (it); | |
12307 | |
12308 /* Make sure we have the position. */ | |
12309 if (used_before == 0) | |
12310 row->glyphs[TEXT_AREA]->charpos = CHARPOS (it->position); | |
12311 | |
12312 /* Consume the line end. This skips over invisible lines. */ | |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
12313 set_iterator_to_next (it, 1); |
25012 | 12314 it->continuation_lines_width = 0; |
2754
af06c054b48f
(display_text_line): Use break; to exit loop at eol.
Richard M. Stallman <rms@gnu.org>
parents:
2742
diff
changeset
|
12315 break; |
277 | 12316 } |
25012 | 12317 |
12318 /* Proceed with next display element. Note that this skips | |
12319 over lines invisible because of selective display. */ | |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
12320 set_iterator_to_next (it, 1); |
25012 | 12321 |
12322 /* If we truncate lines, we are done when the last displayed | |
12323 glyphs reach past the right margin of the window. */ | |
12324 if (it->truncate_lines_p | |
12325 && (FRAME_WINDOW_P (it->f) | |
12326 ? (it->current_x >= it->last_visible_x) | |
12327 : (it->current_x > it->last_visible_x))) | |
12328 { | |
12329 /* Maybe add truncation glyphs. */ | |
12330 if (!FRAME_WINDOW_P (it->f)) | |
17017
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
12331 { |
35200
13258951565d
(display_line): On ttys, produce more than one
Gerd Moellmann <gerd@gnu.org>
parents:
35174
diff
changeset
|
12332 int i, n; |
13258951565d
(display_line): On ttys, produce more than one
Gerd Moellmann <gerd@gnu.org>
parents:
35174
diff
changeset
|
12333 |
13258951565d
(display_line): On ttys, produce more than one
Gerd Moellmann <gerd@gnu.org>
parents:
35174
diff
changeset
|
12334 for (i = row->used[TEXT_AREA] - 1; i > 0; --i) |
13258951565d
(display_line): On ttys, produce more than one
Gerd Moellmann <gerd@gnu.org>
parents:
35174
diff
changeset
|
12335 if (!CHAR_GLYPH_PADDING_P (row->glyphs[TEXT_AREA][i])) |
13258951565d
(display_line): On ttys, produce more than one
Gerd Moellmann <gerd@gnu.org>
parents:
35174
diff
changeset
|
12336 break; |
13258951565d
(display_line): On ttys, produce more than one
Gerd Moellmann <gerd@gnu.org>
parents:
35174
diff
changeset
|
12337 |
13258951565d
(display_line): On ttys, produce more than one
Gerd Moellmann <gerd@gnu.org>
parents:
35174
diff
changeset
|
12338 for (n = row->used[TEXT_AREA]; i < n; ++i) |
13258951565d
(display_line): On ttys, produce more than one
Gerd Moellmann <gerd@gnu.org>
parents:
35174
diff
changeset
|
12339 { |
13258951565d
(display_line): On ttys, produce more than one
Gerd Moellmann <gerd@gnu.org>
parents:
35174
diff
changeset
|
12340 row->used[TEXT_AREA] = i; |
13258951565d
(display_line): On ttys, produce more than one
Gerd Moellmann <gerd@gnu.org>
parents:
35174
diff
changeset
|
12341 produce_special_glyphs (it, IT_TRUNCATION); |
13258951565d
(display_line): On ttys, produce more than one
Gerd Moellmann <gerd@gnu.org>
parents:
35174
diff
changeset
|
12342 } |
277 | 12343 } |
25012 | 12344 |
12345 row->truncated_on_right_p = 1; | |
12346 it->continuation_lines_width = 0; | |
25188
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
12347 reseat_at_next_visible_line_start (it, 0); |
25012 | 12348 row->ends_at_zv_p = FETCH_BYTE (IT_BYTEPOS (*it) - 1) != '\n'; |
12349 it->hpos = hpos_before; | |
12350 it->current_x = x_before; | |
12351 break; | |
12352 } | |
12353 } | |
12354 | |
12355 /* If line is not empty and hscrolled, maybe insert truncation glyphs | |
12356 at the left window margin. */ | |
12357 if (it->first_visible_x | |
12358 && IT_CHARPOS (*it) != MATRIX_ROW_START_CHARPOS (row)) | |
12359 { | |
12360 if (!FRAME_WINDOW_P (it->f)) | |
12361 insert_left_trunc_glyphs (it); | |
12362 row->truncated_on_left_p = 1; | |
12363 } | |
12364 | |
12365 /* If the start of this line is the overlay arrow-position, then | |
12366 mark this glyph row as the one containing the overlay arrow. | |
12367 This is clearly a mess with variable size fonts. It would be | |
12368 better to let it be displayed like cursors under X. */ | |
9104
610e18fd64a9
(redisplay, mark_window_display_accurate, try_window_id, display_text_line,
Karl Heuer <kwzh@gnu.org>
parents:
9088
diff
changeset
|
12369 if (MARKERP (Voverlay_arrow_position) |
277 | 12370 && current_buffer == XMARKER (Voverlay_arrow_position)->buffer |
25012 | 12371 && (MATRIX_ROW_START_CHARPOS (row) |
12372 == marker_position (Voverlay_arrow_position)) | |
9104
610e18fd64a9
(redisplay, mark_window_display_accurate, try_window_id, display_text_line,
Karl Heuer <kwzh@gnu.org>
parents:
9088
diff
changeset
|
12373 && STRINGP (Voverlay_arrow_string) |
277 | 12374 && ! overlay_arrow_seen) |
12375 { | |
25012 | 12376 /* Overlay arrow in window redisplay is a bitmap. */ |
12377 if (!FRAME_WINDOW_P (it->f)) | |
12378 { | |
12379 struct glyph_row *arrow_row = get_overlay_arrow_glyph_row (it->w); | |
12380 struct glyph *glyph = arrow_row->glyphs[TEXT_AREA]; | |
12381 struct glyph *arrow_end = glyph + arrow_row->used[TEXT_AREA]; | |
12382 struct glyph *p = row->glyphs[TEXT_AREA]; | |
12383 struct glyph *p2, *end; | |
12384 | |
12385 /* Copy the arrow glyphs. */ | |
12386 while (glyph < arrow_end) | |
12387 *p++ = *glyph++; | |
12388 | |
12389 /* Throw away padding glyphs. */ | |
12390 p2 = p; | |
12391 end = row->glyphs[TEXT_AREA] + row->used[TEXT_AREA]; | |
12392 while (p2 < end && CHAR_GLYPH_PADDING_P (*p2)) | |
12393 ++p2; | |
12394 if (p2 > p) | |
8471
64c299dd51b8
(display_text_line): Use the face properties of the overlay arrow, if any.
Richard M. Stallman <rms@gnu.org>
parents:
8417
diff
changeset
|
12395 { |
25012 | 12396 while (p2 < end) |
12397 *p++ = *p2++; | |
12398 row->used[TEXT_AREA] = p2 - row->glyphs[TEXT_AREA]; | |
8471
64c299dd51b8
(display_text_line): Use the face properties of the overlay arrow, if any.
Richard M. Stallman <rms@gnu.org>
parents:
8417
diff
changeset
|
12399 } |
25012 | 12400 } |
12401 | |
277 | 12402 overlay_arrow_seen = 1; |
25012 | 12403 row->overlay_arrow_p = 1; |
12404 } | |
12405 | |
12406 /* Compute pixel dimensions of this line. */ | |
12407 compute_line_metrics (it); | |
12408 | |
12409 /* Remember the position at which this line ends. */ | |
12410 row->end = it->current; | |
12411 | |
29481
b36d76033c9d
(display_line): Fix code deciding in which line to
Gerd Moellmann <gerd@gnu.org>
parents:
29473
diff
changeset
|
12412 /* Maybe set the cursor. */ |
25012 | 12413 if (it->w->cursor.vpos < 0 |
12414 && PT >= MATRIX_ROW_START_CHARPOS (row) | |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
12415 && PT <= MATRIX_ROW_END_CHARPOS (row) |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
12416 && cursor_row_p (it->w, row)) |
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
12417 set_cursor_from_row (it->w, row, it->w->desired_matrix, 0, 0, 0, 0); |
25012 | 12418 |
12419 /* Highlight trailing whitespace. */ | |
25305
273b3c17ce68
(Qshow_trailing_whitespace): Removed.
Gerd Moellmann <gerd@gnu.org>
parents:
25258
diff
changeset
|
12420 if (!NILP (Vshow_trailing_whitespace)) |
25012 | 12421 highlight_trailing_whitespace (it->f, it->glyph_row); |
12422 | |
12423 /* Prepare for the next line. This line starts horizontally at (X | |
12424 HPOS) = (0 0). Vertical positions are incremented. As a | |
12425 convenience for the caller, IT->glyph_row is set to the next | |
12426 row to be used. */ | |
12427 it->current_x = it->hpos = 0; | |
12428 it->current_y += row->height; | |
12429 ++it->vpos; | |
12430 ++it->glyph_row; | |
12431 return row->displays_text_p; | |
12432 } | |
12433 | |
12434 | |
277 | 12435 |
25012 | 12436 /*********************************************************************** |
12437 Menu Bar | |
12438 ***********************************************************************/ | |
12439 | |
12440 /* Redisplay the menu bar in the frame for window W. | |
12441 | |
12442 The menu bar of X frames that don't have X toolkit support is | |
12443 displayed in a special window W->frame->menu_bar_window. | |
12444 | |
12445 The menu bar of terminal frames is treated specially as far as | |
12446 glyph matrices are concerned. Menu bar lines are not part of | |
12447 windows, so the update is done directly on the frame matrix rows | |
12448 for the menu bar. */ | |
2150
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
12449 |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
12450 static void |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
12451 display_menu_bar (w) |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
12452 struct window *w; |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
12453 { |
25012 | 12454 struct frame *f = XFRAME (WINDOW_FRAME (w)); |
12455 struct it it; | |
12456 Lisp_Object items; | |
6134
c656768172d2
(update_menu_bar): Change call to menu_bar_items.
Richard M. Stallman <rms@gnu.org>
parents:
6091
diff
changeset
|
12457 int i; |
2150
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
12458 |
25012 | 12459 /* Don't do all this for graphical frames. */ |
13511
a0fd601c9d5b
(display_menu_bar): Fix backwards conditional.
Richard M. Stallman <rms@gnu.org>
parents:
13459
diff
changeset
|
12460 #ifdef HAVE_NTGUI |
15245
4bfe3c580496
(display_menu_bar) [HAVE_NTGUI]: Enable the display of
Karl Heuer <kwzh@gnu.org>
parents:
15111
diff
changeset
|
12461 if (!NILP (Vwindow_system)) |
4bfe3c580496
(display_menu_bar) [HAVE_NTGUI]: Enable the display of
Karl Heuer <kwzh@gnu.org>
parents:
15111
diff
changeset
|
12462 return; |
13511
a0fd601c9d5b
(display_menu_bar): Fix backwards conditional.
Richard M. Stallman <rms@gnu.org>
parents:
13459
diff
changeset
|
12463 #endif |
25012 | 12464 #ifdef USE_X_TOOLKIT |
12465 if (FRAME_X_P (f)) | |
12466 return; | |
12467 #endif | |
32752
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32592
diff
changeset
|
12468 #ifdef macintosh |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32592
diff
changeset
|
12469 if (FRAME_MAC_P (f)) |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32592
diff
changeset
|
12470 return; |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
32592
diff
changeset
|
12471 #endif |
13511
a0fd601c9d5b
(display_menu_bar): Fix backwards conditional.
Richard M. Stallman <rms@gnu.org>
parents:
13459
diff
changeset
|
12472 |
a0fd601c9d5b
(display_menu_bar): Fix backwards conditional.
Richard M. Stallman <rms@gnu.org>
parents:
13459
diff
changeset
|
12473 #ifdef USE_X_TOOLKIT |
25012 | 12474 xassert (!FRAME_WINDOW_P (f)); |
25882
42efd343a3f8
(display_menu_bar): Use MENU_FACE_ID instead of
Gerd Moellmann <gerd@gnu.org>
parents:
25832
diff
changeset
|
12475 init_iterator (&it, w, -1, -1, f->desired_matrix->rows, MENU_FACE_ID); |
25012 | 12476 it.first_visible_x = 0; |
12477 it.last_visible_x = FRAME_WINDOW_WIDTH (f) * CANON_X_UNIT (f); | |
12478 #else /* not USE_X_TOOLKIT */ | |
12479 if (FRAME_WINDOW_P (f)) | |
12480 { | |
12481 /* Menu bar lines are displayed in the desired matrix of the | |
12482 dummy window menu_bar_window. */ | |
12483 struct window *menu_w; | |
12484 xassert (WINDOWP (f->menu_bar_window)); | |
12485 menu_w = XWINDOW (f->menu_bar_window); | |
12486 init_iterator (&it, menu_w, -1, -1, menu_w->desired_matrix->rows, | |
25882
42efd343a3f8
(display_menu_bar): Use MENU_FACE_ID instead of
Gerd Moellmann <gerd@gnu.org>
parents:
25832
diff
changeset
|
12487 MENU_FACE_ID); |
25012 | 12488 it.first_visible_x = 0; |
12489 it.last_visible_x = FRAME_WINDOW_WIDTH (f) * CANON_X_UNIT (f); | |
12490 } | |
12491 else | |
12492 { | |
12493 /* This is a TTY frame, i.e. character hpos/vpos are used as | |
12494 pixel x/y. */ | |
12495 init_iterator (&it, w, -1, -1, f->desired_matrix->rows, | |
25882
42efd343a3f8
(display_menu_bar): Use MENU_FACE_ID instead of
Gerd Moellmann <gerd@gnu.org>
parents:
25832
diff
changeset
|
12496 MENU_FACE_ID); |
25012 | 12497 it.first_visible_x = 0; |
12498 it.last_visible_x = FRAME_WIDTH (f); | |
12499 } | |
12500 #endif /* not USE_X_TOOLKIT */ | |
12501 | |
33840
e8b1a1d28ff4
(display_menu_bar, display_mode_line): Change the way we
Miles Bader <miles@gnu.org>
parents:
33824
diff
changeset
|
12502 if (! mode_line_inverse_video) |
e8b1a1d28ff4
(display_menu_bar, display_mode_line): Change the way we
Miles Bader <miles@gnu.org>
parents:
33824
diff
changeset
|
12503 /* Force the menu-bar to be displayed in the default face. */ |
e8b1a1d28ff4
(display_menu_bar, display_mode_line): Change the way we
Miles Bader <miles@gnu.org>
parents:
33824
diff
changeset
|
12504 it.base_face_id = it.face_id = DEFAULT_FACE_ID; |
e8b1a1d28ff4
(display_menu_bar, display_mode_line): Change the way we
Miles Bader <miles@gnu.org>
parents:
33824
diff
changeset
|
12505 |
25012 | 12506 /* Clear all rows of the menu bar. */ |
12507 for (i = 0; i < FRAME_MENU_BAR_LINES (f); ++i) | |
12508 { | |
12509 struct glyph_row *row = it.glyph_row + i; | |
12510 clear_glyph_row (row); | |
12511 row->enabled_p = 1; | |
12512 row->full_width_p = 1; | |
12513 } | |
12514 | |
12515 /* Display all items of the menu bar. */ | |
12516 items = FRAME_MENU_BAR_ITEMS (it.f); | |
15111
6a5ae152de0d
(display_menu_bar): FRAME_MENU_BAR_ITEMS now has four elements per item.
Richard M. Stallman <rms@gnu.org>
parents:
15038
diff
changeset
|
12517 for (i = 0; i < XVECTOR (items)->size; i += 4) |
2150
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
12518 { |
25012 | 12519 Lisp_Object string; |
12520 | |
12521 /* Stop at nil string. */ | |
6134
c656768172d2
(update_menu_bar): Change call to menu_bar_items.
Richard M. Stallman <rms@gnu.org>
parents:
6091
diff
changeset
|
12522 string = XVECTOR (items)->contents[i + 1]; |
c656768172d2
(update_menu_bar): Change call to menu_bar_items.
Richard M. Stallman <rms@gnu.org>
parents:
6091
diff
changeset
|
12523 if (NILP (string)) |
c656768172d2
(update_menu_bar): Change call to menu_bar_items.
Richard M. Stallman <rms@gnu.org>
parents:
6091
diff
changeset
|
12524 break; |
c656768172d2
(update_menu_bar): Change call to menu_bar_items.
Richard M. Stallman <rms@gnu.org>
parents:
6091
diff
changeset
|
12525 |
25012 | 12526 /* Remember where item was displayed. */ |
12527 XSETFASTINT (XVECTOR (items)->contents[i + 3], it.hpos); | |
12528 | |
12529 /* Display the item, pad with one space. */ | |
12530 if (it.current_x < it.last_visible_x) | |
12531 display_string (NULL, string, Qnil, 0, 0, &it, | |
12532 XSTRING (string)->size + 1, 0, 0, -1); | |
12533 } | |
2189
cb92d253a599
(display_menu_bar): Assume FRAME_MENU_BAR_ITEMS already set.
Richard M. Stallman <rms@gnu.org>
parents:
2150
diff
changeset
|
12534 |
cb92d253a599
(display_menu_bar): Assume FRAME_MENU_BAR_ITEMS already set.
Richard M. Stallman <rms@gnu.org>
parents:
2150
diff
changeset
|
12535 /* Fill out the line with spaces. */ |
25012 | 12536 if (it.current_x < it.last_visible_x) |
12537 display_string ("", Qnil, Qnil, 0, 0, &it, -1, 0, 0, -1); | |
12538 | |
12539 /* Compute the total height of the lines. */ | |
12540 compute_line_metrics (&it); | |
12541 } | |
12542 | |
12543 | |
2150
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
12544 |
25012 | 12545 /*********************************************************************** |
12546 Mode Line | |
12547 ***********************************************************************/ | |
12548 | |
31338
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12549 /* Redisplay mode lines in the window tree whose root is WINDOW. If |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12550 FORCE is non-zero, redisplay mode lines unconditionally. |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12551 Otherwise, redisplay only mode lines that are garbaged. Value is |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12552 the number of windows whose mode lines were redisplayed. */ |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12553 |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12554 static int |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12555 redisplay_mode_lines (window, force) |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12556 Lisp_Object window; |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12557 int force; |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12558 { |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12559 int nwindows = 0; |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12560 |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12561 while (!NILP (window)) |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12562 { |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12563 struct window *w = XWINDOW (window); |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12564 |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12565 if (WINDOWP (w->hchild)) |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12566 nwindows += redisplay_mode_lines (w->hchild, force); |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12567 else if (WINDOWP (w->vchild)) |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12568 nwindows += redisplay_mode_lines (w->vchild, force); |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12569 else if (force |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12570 || FRAME_GARBAGED_P (XFRAME (w->frame)) |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12571 || !MATRIX_MODE_LINE_ROW (w->current_matrix)->enabled_p) |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12572 { |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12573 Lisp_Object old_selected_frame; |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12574 struct text_pos lpoint; |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12575 struct buffer *old = current_buffer; |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12576 |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12577 /* Set the window's buffer for the mode line display. */ |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12578 SET_TEXT_POS (lpoint, PT, PT_BYTE); |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12579 set_buffer_internal_1 (XBUFFER (w->buffer)); |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12580 |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12581 /* Point refers normally to the selected window. For any |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12582 other window, set up appropriate value. */ |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12583 if (!EQ (window, selected_window)) |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12584 { |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12585 struct text_pos pt; |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12586 |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12587 SET_TEXT_POS_FROM_MARKER (pt, w->pointm); |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12588 if (CHARPOS (pt) < BEGV) |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12589 TEMP_SET_PT_BOTH (BEGV, BEGV_BYTE); |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12590 else if (CHARPOS (pt) > (ZV - 1)) |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12591 TEMP_SET_PT_BOTH (ZV, ZV_BYTE); |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12592 else |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12593 TEMP_SET_PT_BOTH (CHARPOS (pt), BYTEPOS (pt)); |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12594 } |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12595 |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12596 /* Temporarily set up the selected frame. */ |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12597 old_selected_frame = selected_frame; |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12598 selected_frame = w->frame; |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12599 |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12600 /* Display mode lines. */ |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12601 clear_glyph_matrix (w->desired_matrix); |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12602 if (display_mode_lines (w)) |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12603 { |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12604 ++nwindows; |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12605 w->must_be_updated_p = 1; |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12606 } |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12607 |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12608 /* Restore old settings. */ |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12609 selected_frame = old_selected_frame; |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12610 set_buffer_internal_1 (old); |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12611 TEMP_SET_PT_BOTH (CHARPOS (lpoint), BYTEPOS (lpoint)); |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12612 } |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12613 |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12614 window = w->next; |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12615 } |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12616 |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12617 return nwindows; |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12618 } |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12619 |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12620 |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12621 /* Display the mode and/or top line of window W. Value is the number |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12622 of mode lines displayed. */ |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12623 |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12624 static int |
25012 | 12625 display_mode_lines (w) |
277 | 12626 struct window *w; |
12627 { | |
31338
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12628 int n = 0; |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12629 |
25012 | 12630 /* These will be set while the mode line specs are processed. */ |
2303
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
12631 line_number_displayed = 0; |
10441
f1fc7b6e5fa4
(redisplay, redisplay_window, display_mode_line, decode_mode_spec): Use window
Karl Heuer <kwzh@gnu.org>
parents:
10416
diff
changeset
|
12632 w->column_number_displayed = Qnil; |
2303
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
12633 |
25012 | 12634 if (WINDOW_WANTS_MODELINE_P (w)) |
31338
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12635 { |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12636 display_mode_line (w, MODE_LINE_FACE_ID, |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12637 current_buffer->mode_line_format); |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12638 ++n; |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12639 } |
25546 | 12640 |
12641 if (WINDOW_WANTS_HEADER_LINE_P (w)) | |
31338
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12642 { |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12643 display_mode_line (w, HEADER_LINE_FACE_ID, |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12644 current_buffer->header_line_format); |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12645 ++n; |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12646 } |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12647 |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
12648 return n; |
25012 | 12649 } |
12650 | |
12651 | |
12652 /* Display mode or top line of window W. FACE_ID specifies which line | |
25546 | 12653 to display; it is either MODE_LINE_FACE_ID or HEADER_LINE_FACE_ID. |
33462
d8cd8e1bc659
(current_mode_line_height, current_header_line_height):
Gerd Moellmann <gerd@gnu.org>
parents:
33453
diff
changeset
|
12654 FORMAT is the mode line format to display. Value is the pixel |
d8cd8e1bc659
(current_mode_line_height, current_header_line_height):
Gerd Moellmann <gerd@gnu.org>
parents:
33453
diff
changeset
|
12655 height of the mode line displayed. */ |
d8cd8e1bc659
(current_mode_line_height, current_header_line_height):
Gerd Moellmann <gerd@gnu.org>
parents:
33453
diff
changeset
|
12656 |
d8cd8e1bc659
(current_mode_line_height, current_header_line_height):
Gerd Moellmann <gerd@gnu.org>
parents:
33453
diff
changeset
|
12657 static int |
25012 | 12658 display_mode_line (w, face_id, format) |
12659 struct window *w; | |
12660 enum face_id face_id; | |
12661 Lisp_Object format; | |
12662 { | |
12663 struct it it; | |
12664 struct face *face; | |
12665 | |
12666 init_iterator (&it, w, -1, -1, NULL, face_id); | |
12667 prepare_desired_row (it.glyph_row); | |
12668 | |
33840
e8b1a1d28ff4
(display_menu_bar, display_mode_line): Change the way we
Miles Bader <miles@gnu.org>
parents:
33824
diff
changeset
|
12669 if (! mode_line_inverse_video) |
e8b1a1d28ff4
(display_menu_bar, display_mode_line): Change the way we
Miles Bader <miles@gnu.org>
parents:
33824
diff
changeset
|
12670 /* Force the mode-line to be displayed in the default face. */ |
e8b1a1d28ff4
(display_menu_bar, display_mode_line): Change the way we
Miles Bader <miles@gnu.org>
parents:
33824
diff
changeset
|
12671 it.base_face_id = it.face_id = DEFAULT_FACE_ID; |
e8b1a1d28ff4
(display_menu_bar, display_mode_line): Change the way we
Miles Bader <miles@gnu.org>
parents:
33824
diff
changeset
|
12672 |
25012 | 12673 /* Temporarily make frame's keyboard the current kboard so that |
12674 kboard-local variables in the mode_line_format will get the right | |
12675 values. */ | |
12676 push_frame_kboard (it.f); | |
12677 display_mode_element (&it, 0, 0, 0, format); | |
11354
17f7be3e2443
(display_mode_line): Use push_frame_kboard, pop_frame_kboard.
Richard M. Stallman <rms@gnu.org>
parents:
11291
diff
changeset
|
12678 pop_frame_kboard (); |
17f7be3e2443
(display_mode_line): Use push_frame_kboard, pop_frame_kboard.
Richard M. Stallman <rms@gnu.org>
parents:
11291
diff
changeset
|
12679 |
25012 | 12680 /* Fill up with spaces. */ |
12681 display_string (" ", Qnil, Qnil, 0, 0, &it, 10000, -1, -1, 0); | |
12682 | |
12683 compute_line_metrics (&it); | |
12684 it.glyph_row->full_width_p = 1; | |
12685 it.glyph_row->mode_line_p = 1; | |
33840
e8b1a1d28ff4
(display_menu_bar, display_mode_line): Change the way we
Miles Bader <miles@gnu.org>
parents:
33824
diff
changeset
|
12686 it.glyph_row->inverse_p = 0; |
25012 | 12687 it.glyph_row->continued_p = 0; |
12688 it.glyph_row->truncated_on_left_p = 0; | |
12689 it.glyph_row->truncated_on_right_p = 0; | |
12690 | |
12691 /* Make a 3D mode-line have a shadow at its right end. */ | |
12692 face = FACE_FROM_ID (it.f, face_id); | |
12693 extend_face_to_end_of_line (&it); | |
12694 if (face->box != FACE_NO_BOX) | |
12695 { | |
12696 struct glyph *last = (it.glyph_row->glyphs[TEXT_AREA] | |
12697 + it.glyph_row->used[TEXT_AREA] - 1); | |
12698 last->right_box_line_p = 1; | |
12699 } | |
33462
d8cd8e1bc659
(current_mode_line_height, current_header_line_height):
Gerd Moellmann <gerd@gnu.org>
parents:
33453
diff
changeset
|
12700 |
d8cd8e1bc659
(current_mode_line_height, current_header_line_height):
Gerd Moellmann <gerd@gnu.org>
parents:
33453
diff
changeset
|
12701 return it.glyph_row->height; |
25012 | 12702 } |
12703 | |
12704 | |
12705 /* Contribute ELT to the mode line for window IT->w. How it | |
12706 translates into text depends on its data type. | |
12707 | |
12708 IT describes the display environment in which we display, as usual. | |
277 | 12709 |
12710 DEPTH is the depth in recursion. It is used to prevent | |
12711 infinite recursion here. | |
12712 | |
25012 | 12713 FIELD_WIDTH is the number of characters the display of ELT should |
12714 occupy in the mode line, and PRECISION is the maximum number of | |
12715 characters to display from ELT's representation. See | |
12716 display_string for details. * | |
12717 | |
12718 Returns the hpos of the end of the text generated by ELT. */ | |
277 | 12719 |
12720 static int | |
25012 | 12721 display_mode_element (it, depth, field_width, precision, elt) |
12722 struct it *it; | |
277 | 12723 int depth; |
25012 | 12724 int field_width, precision; |
12725 Lisp_Object elt; | |
12726 { | |
12727 int n = 0, field, prec; | |
12728 | |
277 | 12729 tail_recurse: |
12730 if (depth > 10) | |
12731 goto invalid; | |
12732 | |
12733 depth++; | |
12734 | |
10457
2ab3bd0288a9
Change all occurences of SWITCH_ENUM_BUG to use SWITCH_ENUM_CAST instead.
Karl Heuer <kwzh@gnu.org>
parents:
10442
diff
changeset
|
12735 switch (SWITCH_ENUM_CAST (XTYPE (elt))) |
277 | 12736 { |
12737 case Lisp_String: | |
12738 { | |
12739 /* A string: output it and check for %-constructs within it. */ | |
25012 | 12740 unsigned char c; |
12741 unsigned char *this = XSTRING (elt)->data; | |
12742 unsigned char *lisp_string = this; | |
12743 | |
12744 while ((precision <= 0 || n < precision) | |
12745 && *this | |
12746 && (frame_title_ptr | |
12747 || it->current_x < it->last_visible_x)) | |
277 | 12748 { |
12749 unsigned char *last = this; | |
25012 | 12750 |
12751 /* Advance to end of string or next format specifier. */ | |
277 | 12752 while ((c = *this++) != '\0' && c != '%') |
12753 ; | |
25012 | 12754 |
277 | 12755 if (this - 1 != last) |
12756 { | |
25012 | 12757 /* Output to end of string or up to '%'. Field width |
12758 is length of string. Don't output more than | |
12759 PRECISION allows us. */ | |
12760 prec = --this - last; | |
12761 if (precision > 0 && prec > precision - n) | |
12762 prec = precision - n; | |
12763 | |
8772
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
12764 if (frame_title_ptr) |
25012 | 12765 n += store_frame_title (last, prec, prec); |
8772
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
12766 else |
25012 | 12767 n += display_string (NULL, elt, Qnil, 0, last - lisp_string, |
12768 it, 0, prec, 0, -1); | |
277 | 12769 } |
12770 else /* c == '%' */ | |
12771 { | |
25012 | 12772 unsigned char *percent_position = this; |
12773 | |
12774 /* Get the specified minimum width. Zero means | |
12775 don't pad. */ | |
12776 field = 0; | |
277 | 12777 while ((c = *this++) >= '0' && c <= '9') |
25012 | 12778 field = field * 10 + c - '0'; |
12779 | |
12780 /* Don't pad beyond the total padding allowed. */ | |
12781 if (field_width - n > 0 && field > field_width - n) | |
12782 field = field_width - n; | |
12783 | |
12784 /* Note that either PRECISION <= 0 or N < PRECISION. */ | |
12785 prec = precision - n; | |
12786 | |
277 | 12787 if (c == 'M') |
25012 | 12788 n += display_mode_element (it, depth, field, prec, |
12789 Vglobal_mode_string); | |
277 | 12790 else if (c != 0) |
8772
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
12791 { |
25012 | 12792 unsigned char *spec |
12793 = decode_mode_spec (it->w, c, field, prec); | |
12794 | |
8772
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
12795 if (frame_title_ptr) |
25012 | 12796 n += store_frame_title (spec, field, prec); |
8772
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
12797 else |
25012 | 12798 { |
12799 int nglyphs_before | |
12800 = it->glyph_row->used[TEXT_AREA]; | |
12801 int charpos | |
12802 = percent_position - XSTRING (elt)->data; | |
12803 int nwritten | |
12804 = display_string (spec, Qnil, elt, charpos, 0, it, | |
12805 field, prec, 0, -1); | |
12806 | |
12807 /* Assign to the glyphs written above the | |
12808 string where the `%x' came from, position | |
12809 of the `%'. */ | |
12810 if (nwritten > 0) | |
12811 { | |
12812 struct glyph *glyph | |
12813 = (it->glyph_row->glyphs[TEXT_AREA] | |
12814 + nglyphs_before); | |
12815 int i; | |
12816 | |
12817 for (i = 0; i < nwritten; ++i) | |
12818 { | |
12819 glyph[i].object = elt; | |
12820 glyph[i].charpos = charpos; | |
12821 } | |
12822 | |
12823 n += nwritten; | |
12824 } | |
12825 } | |
8772
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
12826 } |
277 | 12827 } |
12828 } | |
12829 } | |
12830 break; | |
12831 | |
12832 case Lisp_Symbol: | |
12833 /* A symbol: process the value of the symbol recursively | |
12834 as if it appeared here directly. Avoid error if symbol void. | |
12835 Special case: if value of symbol is a string, output the string | |
12836 literally. */ | |
12837 { | |
12838 register Lisp_Object tem; | |
12839 tem = Fboundp (elt); | |
485 | 12840 if (!NILP (tem)) |
277 | 12841 { |
12842 tem = Fsymbol_value (elt); | |
12843 /* If value is a string, output that string literally: | |
12844 don't check for % within it. */ | |
9104
610e18fd64a9
(redisplay, mark_window_display_accurate, try_window_id, display_text_line,
Karl Heuer <kwzh@gnu.org>
parents:
9088
diff
changeset
|
12845 if (STRINGP (tem)) |
8772
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
12846 { |
25012 | 12847 prec = XSTRING (tem)->size; |
12848 if (precision > 0 && prec > precision - n) | |
12849 prec = precision - n; | |
8772
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
12850 if (frame_title_ptr) |
25012 | 12851 n += store_frame_title (XSTRING (tem)->data, -1, prec); |
8772
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
12852 else |
25012 | 12853 n += display_string (NULL, tem, Qnil, 0, 0, it, |
12854 0, prec, 0, -1); | |
8772
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
12855 } |
277 | 12856 else if (!EQ (tem, elt)) |
25012 | 12857 { |
12858 /* Give up right away for nil or t. */ | |
12859 elt = tem; | |
12860 goto tail_recurse; | |
12861 } | |
277 | 12862 } |
12863 } | |
12864 break; | |
12865 | |
12866 case Lisp_Cons: | |
12867 { | |
12868 register Lisp_Object car, tem; | |
12869 | |
12870 /* A cons cell: three distinct cases. | |
12871 If first element is a string or a cons, process all the elements | |
12872 and effectively concatenate them. | |
12873 If first element is a negative number, truncate displaying cdr to | |
12874 at most that many characters. If positive, pad (with spaces) | |
12875 to at least that many characters. | |
12876 If first element is a symbol, process the cadr or caddr recursively | |
12877 according to whether the symbol's value is non-nil or nil. */ | |
25519
5e59e2bd26b5
Use XCAR and XCDR instead of XCONS.
Gerd Moellmann <gerd@gnu.org>
parents:
25500
diff
changeset
|
12878 car = XCAR (elt); |
25012 | 12879 if (EQ (car, QCeval) && CONSP (XCDR (elt))) |
12880 { | |
12881 /* An element of the form (:eval FORM) means evaluate FORM | |
12882 and use the result as mode line elements. */ | |
12883 struct gcpro gcpro1; | |
12884 Lisp_Object spec; | |
12885 | |
32175
e5d99e8cbd94
(handle_single_display_prop): Use safe_call1.
Gerd Moellmann <gerd@gnu.org>
parents:
31931
diff
changeset
|
12886 spec = safe_eval (XCAR (XCDR (elt))); |
25012 | 12887 GCPRO1 (spec); |
12888 n += display_mode_element (it, depth, field_width - n, | |
12889 precision - n, spec); | |
12890 UNGCPRO; | |
12891 } | |
12892 else if (SYMBOLP (car)) | |
277 | 12893 { |
12894 tem = Fboundp (car); | |
25519
5e59e2bd26b5
Use XCAR and XCDR instead of XCONS.
Gerd Moellmann <gerd@gnu.org>
parents:
25500
diff
changeset
|
12895 elt = XCDR (elt); |
9104
610e18fd64a9
(redisplay, mark_window_display_accurate, try_window_id, display_text_line,
Karl Heuer <kwzh@gnu.org>
parents:
9088
diff
changeset
|
12896 if (!CONSP (elt)) |
277 | 12897 goto invalid; |
12898 /* elt is now the cdr, and we know it is a cons cell. | |
12899 Use its car if CAR has a non-nil value. */ | |
485 | 12900 if (!NILP (tem)) |
277 | 12901 { |
12902 tem = Fsymbol_value (car); | |
485 | 12903 if (!NILP (tem)) |
25519
5e59e2bd26b5
Use XCAR and XCDR instead of XCONS.
Gerd Moellmann <gerd@gnu.org>
parents:
25500
diff
changeset
|
12904 { |
5e59e2bd26b5
Use XCAR and XCDR instead of XCONS.
Gerd Moellmann <gerd@gnu.org>
parents:
25500
diff
changeset
|
12905 elt = XCAR (elt); |
5e59e2bd26b5
Use XCAR and XCDR instead of XCONS.
Gerd Moellmann <gerd@gnu.org>
parents:
25500
diff
changeset
|
12906 goto tail_recurse; |
5e59e2bd26b5
Use XCAR and XCDR instead of XCONS.
Gerd Moellmann <gerd@gnu.org>
parents:
25500
diff
changeset
|
12907 } |
277 | 12908 } |
12909 /* Symbol's value is nil (or symbol is unbound) | |
12910 Get the cddr of the original list | |
12911 and if possible find the caddr and use that. */ | |
25519
5e59e2bd26b5
Use XCAR and XCDR instead of XCONS.
Gerd Moellmann <gerd@gnu.org>
parents:
25500
diff
changeset
|
12912 elt = XCDR (elt); |
485 | 12913 if (NILP (elt)) |
277 | 12914 break; |
9104
610e18fd64a9
(redisplay, mark_window_display_accurate, try_window_id, display_text_line,
Karl Heuer <kwzh@gnu.org>
parents:
9088
diff
changeset
|
12915 else if (!CONSP (elt)) |
277 | 12916 goto invalid; |
25519
5e59e2bd26b5
Use XCAR and XCDR instead of XCONS.
Gerd Moellmann <gerd@gnu.org>
parents:
25500
diff
changeset
|
12917 elt = XCAR (elt); |
277 | 12918 goto tail_recurse; |
12919 } | |
9104
610e18fd64a9
(redisplay, mark_window_display_accurate, try_window_id, display_text_line,
Karl Heuer <kwzh@gnu.org>
parents:
9088
diff
changeset
|
12920 else if (INTEGERP (car)) |
277 | 12921 { |
12922 register int lim = XINT (car); | |
25519
5e59e2bd26b5
Use XCAR and XCDR instead of XCONS.
Gerd Moellmann <gerd@gnu.org>
parents:
25500
diff
changeset
|
12923 elt = XCDR (elt); |
277 | 12924 if (lim < 0) |
25012 | 12925 { |
12926 /* Negative int means reduce maximum width. */ | |
12927 if (precision <= 0) | |
12928 precision = -lim; | |
12929 else | |
12930 precision = min (precision, -lim); | |
12931 } | |
277 | 12932 else if (lim > 0) |
12933 { | |
12934 /* Padding specified. Don't let it be more than | |
12935 current maximum. */ | |
25012 | 12936 if (precision > 0) |
12937 lim = min (precision, lim); | |
12938 | |
277 | 12939 /* If that's more padding than already wanted, queue it. |
12940 But don't reduce padding already specified even if | |
12941 that is beyond the current truncation point. */ | |
25012 | 12942 field_width = max (lim, field_width); |
277 | 12943 } |
12944 goto tail_recurse; | |
12945 } | |
9104
610e18fd64a9
(redisplay, mark_window_display_accurate, try_window_id, display_text_line,
Karl Heuer <kwzh@gnu.org>
parents:
9088
diff
changeset
|
12946 else if (STRINGP (car) || CONSP (car)) |
277 | 12947 { |
12948 register int limit = 50; | |
25012 | 12949 /* Limit is to protect against circular lists. */ |
12950 while (CONSP (elt) | |
12951 && --limit > 0 | |
12952 && (precision <= 0 || n < precision)) | |
277 | 12953 { |
25012 | 12954 n += display_mode_element (it, depth, field_width - n, |
25519
5e59e2bd26b5
Use XCAR and XCDR instead of XCONS.
Gerd Moellmann <gerd@gnu.org>
parents:
25500
diff
changeset
|
12955 precision - n, XCAR (elt)); |
5e59e2bd26b5
Use XCAR and XCDR instead of XCONS.
Gerd Moellmann <gerd@gnu.org>
parents:
25500
diff
changeset
|
12956 elt = XCDR (elt); |
277 | 12957 } |
12958 } | |
12959 } | |
12960 break; | |
12961 | |
12962 default: | |
12963 invalid: | |
8772
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
12964 if (frame_title_ptr) |
25012 | 12965 n += store_frame_title ("*invalid*", 0, precision - n); |
8772
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
12966 else |
25012 | 12967 n += display_string ("*invalid*", Qnil, Qnil, 0, 0, it, 0, |
12968 precision - n, 0, 0); | |
12969 return n; | |
12970 } | |
12971 | |
12972 /* Pad to FIELD_WIDTH. */ | |
12973 if (field_width > 0 && n < field_width) | |
12974 { | |
12975 if (frame_title_ptr) | |
12976 n += store_frame_title ("", field_width - n, 0); | |
12977 else | |
12978 n += display_string ("", Qnil, Qnil, 0, 0, it, field_width - n, | |
12979 0, 0, 0); | |
12980 } | |
12981 | |
12982 return n; | |
12983 } | |
12984 | |
12985 | |
12598
43ebbbe0299f
(decode_mode_spec): New arg spec_width.
Richard M. Stallman <rms@gnu.org>
parents:
12493
diff
changeset
|
12986 /* Write a null-terminated, right justified decimal representation of |
43ebbbe0299f
(decode_mode_spec): New arg spec_width.
Richard M. Stallman <rms@gnu.org>
parents:
12493
diff
changeset
|
12987 the positive integer D to BUF using a minimal field width WIDTH. */ |
43ebbbe0299f
(decode_mode_spec): New arg spec_width.
Richard M. Stallman <rms@gnu.org>
parents:
12493
diff
changeset
|
12988 |
43ebbbe0299f
(decode_mode_spec): New arg spec_width.
Richard M. Stallman <rms@gnu.org>
parents:
12493
diff
changeset
|
12989 static void |
43ebbbe0299f
(decode_mode_spec): New arg spec_width.
Richard M. Stallman <rms@gnu.org>
parents:
12493
diff
changeset
|
12990 pint2str (buf, width, d) |
43ebbbe0299f
(decode_mode_spec): New arg spec_width.
Richard M. Stallman <rms@gnu.org>
parents:
12493
diff
changeset
|
12991 register char *buf; |
43ebbbe0299f
(decode_mode_spec): New arg spec_width.
Richard M. Stallman <rms@gnu.org>
parents:
12493
diff
changeset
|
12992 register int width; |
43ebbbe0299f
(decode_mode_spec): New arg spec_width.
Richard M. Stallman <rms@gnu.org>
parents:
12493
diff
changeset
|
12993 register int d; |
43ebbbe0299f
(decode_mode_spec): New arg spec_width.
Richard M. Stallman <rms@gnu.org>
parents:
12493
diff
changeset
|
12994 { |
43ebbbe0299f
(decode_mode_spec): New arg spec_width.
Richard M. Stallman <rms@gnu.org>
parents:
12493
diff
changeset
|
12995 register char *p = buf; |
43ebbbe0299f
(decode_mode_spec): New arg spec_width.
Richard M. Stallman <rms@gnu.org>
parents:
12493
diff
changeset
|
12996 |
43ebbbe0299f
(decode_mode_spec): New arg spec_width.
Richard M. Stallman <rms@gnu.org>
parents:
12493
diff
changeset
|
12997 if (d <= 0) |
25012 | 12998 *p++ = '0'; |
12598
43ebbbe0299f
(decode_mode_spec): New arg spec_width.
Richard M. Stallman <rms@gnu.org>
parents:
12493
diff
changeset
|
12999 else |
25012 | 13000 { |
12598
43ebbbe0299f
(decode_mode_spec): New arg spec_width.
Richard M. Stallman <rms@gnu.org>
parents:
12493
diff
changeset
|
13001 while (d > 0) |
25012 | 13002 { |
12598
43ebbbe0299f
(decode_mode_spec): New arg spec_width.
Richard M. Stallman <rms@gnu.org>
parents:
12493
diff
changeset
|
13003 *p++ = d % 10 + '0'; |
43ebbbe0299f
(decode_mode_spec): New arg spec_width.
Richard M. Stallman <rms@gnu.org>
parents:
12493
diff
changeset
|
13004 d /= 10; |
25012 | 13005 } |
13006 } | |
13007 | |
13008 for (width -= (int) (p - buf); width > 0; --width) | |
13009 *p++ = ' '; | |
12598
43ebbbe0299f
(decode_mode_spec): New arg spec_width.
Richard M. Stallman <rms@gnu.org>
parents:
12493
diff
changeset
|
13010 *p-- = '\0'; |
43ebbbe0299f
(decode_mode_spec): New arg spec_width.
Richard M. Stallman <rms@gnu.org>
parents:
12493
diff
changeset
|
13011 while (p > buf) |
25012 | 13012 { |
12598
43ebbbe0299f
(decode_mode_spec): New arg spec_width.
Richard M. Stallman <rms@gnu.org>
parents:
12493
diff
changeset
|
13013 d = *buf; |
43ebbbe0299f
(decode_mode_spec): New arg spec_width.
Richard M. Stallman <rms@gnu.org>
parents:
12493
diff
changeset
|
13014 *buf++ = *p; |
43ebbbe0299f
(decode_mode_spec): New arg spec_width.
Richard M. Stallman <rms@gnu.org>
parents:
12493
diff
changeset
|
13015 *p-- = d; |
25012 | 13016 } |
13017 } | |
13018 | |
13019 /* Set a mnemonic character for coding_system (Lisp symbol) in BUF. | |
17017
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13020 If EOL_FLAG is 1, set also a mnemonic character for end-of-line |
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13021 type of CODING_SYSTEM. Return updated pointer into BUF. */ |
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13022 |
24868
de2065294ca3
(invalid_eol_type): Make it unsigned.
Karl Heuer <kwzh@gnu.org>
parents:
24711
diff
changeset
|
13023 static unsigned char invalid_eol_type[] = "(*invalid*)"; |
24199
204d0a24ddf5
(decode_mode_spec_coding): Display the EOL type as a string.
Eli Zaretskii <eliz@gnu.org>
parents:
24040
diff
changeset
|
13024 |
17017
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13025 static char * |
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13026 decode_mode_spec_coding (coding_system, buf, eol_flag) |
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13027 Lisp_Object coding_system; |
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13028 register char *buf; |
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13029 int eol_flag; |
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13030 { |
18525
92d4f44969c6
(decode_mode_spec_coding): Clean up handling of eol conversions.
Richard M. Stallman <rms@gnu.org>
parents:
18458
diff
changeset
|
13031 Lisp_Object val; |
19045
59ccb8fd4ee1
(redisplay_window): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
19015
diff
changeset
|
13032 int multibyte = !NILP (current_buffer->enable_multibyte_characters); |
24215
6e1f6e29422a
(decode_mode_spec_coding): Fix previous change.
Eli Zaretskii <eliz@gnu.org>
parents:
24199
diff
changeset
|
13033 unsigned char *eol_str; |
6e1f6e29422a
(decode_mode_spec_coding): Fix previous change.
Eli Zaretskii <eliz@gnu.org>
parents:
24199
diff
changeset
|
13034 int eol_str_len; |
6e1f6e29422a
(decode_mode_spec_coding): Fix previous change.
Eli Zaretskii <eliz@gnu.org>
parents:
24199
diff
changeset
|
13035 /* The EOL conversion we are using. */ |
6e1f6e29422a
(decode_mode_spec_coding): Fix previous change.
Eli Zaretskii <eliz@gnu.org>
parents:
24199
diff
changeset
|
13036 Lisp_Object eoltype; |
18525
92d4f44969c6
(decode_mode_spec_coding): Clean up handling of eol conversions.
Richard M. Stallman <rms@gnu.org>
parents:
18458
diff
changeset
|
13037 |
27721
c2a9f4621f9a
(decode_mode_spec_coding): Delete superfluous code.
Kenichi Handa <handa@m17n.org>
parents:
27681
diff
changeset
|
13038 val = Fget (coding_system, Qcoding_system); |
31610
29c6825c59a8
(handle_fontified_prop): While running fontification
Gerd Moellmann <gerd@gnu.org>
parents:
31506
diff
changeset
|
13039 eoltype = Qnil; |
27721
c2a9f4621f9a
(decode_mode_spec_coding): Delete superfluous code.
Kenichi Handa <handa@m17n.org>
parents:
27681
diff
changeset
|
13040 |
c2a9f4621f9a
(decode_mode_spec_coding): Delete superfluous code.
Kenichi Handa <handa@m17n.org>
parents:
27681
diff
changeset
|
13041 if (!VECTORP (val)) /* Not yet decided. */ |
17017
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13042 { |
19045
59ccb8fd4ee1
(redisplay_window): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
19015
diff
changeset
|
13043 if (multibyte) |
59ccb8fd4ee1
(redisplay_window): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
19015
diff
changeset
|
13044 *buf++ = '-'; |
18677
7648eb8e46d2
(decode_mode_spec_coding): Really don't display
Richard M. Stallman <rms@gnu.org>
parents:
18653
diff
changeset
|
13045 if (eol_flag) |
24215
6e1f6e29422a
(decode_mode_spec_coding): Fix previous change.
Eli Zaretskii <eliz@gnu.org>
parents:
24199
diff
changeset
|
13046 eoltype = eol_mnemonic_undecided; |
18525
92d4f44969c6
(decode_mode_spec_coding): Clean up handling of eol conversions.
Richard M. Stallman <rms@gnu.org>
parents:
18458
diff
changeset
|
13047 /* Don't mention EOL conversion if it isn't decided. */ |
17017
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13048 } |
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13049 else |
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13050 { |
18525
92d4f44969c6
(decode_mode_spec_coding): Clean up handling of eol conversions.
Richard M. Stallman <rms@gnu.org>
parents:
18458
diff
changeset
|
13051 Lisp_Object eolvalue; |
92d4f44969c6
(decode_mode_spec_coding): Clean up handling of eol conversions.
Richard M. Stallman <rms@gnu.org>
parents:
18458
diff
changeset
|
13052 |
92d4f44969c6
(decode_mode_spec_coding): Clean up handling of eol conversions.
Richard M. Stallman <rms@gnu.org>
parents:
18458
diff
changeset
|
13053 eolvalue = Fget (coding_system, Qeol_type); |
92d4f44969c6
(decode_mode_spec_coding): Clean up handling of eol conversions.
Richard M. Stallman <rms@gnu.org>
parents:
18458
diff
changeset
|
13054 |
19045
59ccb8fd4ee1
(redisplay_window): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
19015
diff
changeset
|
13055 if (multibyte) |
59ccb8fd4ee1
(redisplay_window): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
19015
diff
changeset
|
13056 *buf++ = XFASTINT (XVECTOR (val)->contents[1]); |
59ccb8fd4ee1
(redisplay_window): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
19015
diff
changeset
|
13057 |
17017
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13058 if (eol_flag) |
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13059 { |
18525
92d4f44969c6
(decode_mode_spec_coding): Clean up handling of eol conversions.
Richard M. Stallman <rms@gnu.org>
parents:
18458
diff
changeset
|
13060 /* The EOL conversion that is normal on this system. */ |
92d4f44969c6
(decode_mode_spec_coding): Clean up handling of eol conversions.
Richard M. Stallman <rms@gnu.org>
parents:
18458
diff
changeset
|
13061 |
92d4f44969c6
(decode_mode_spec_coding): Clean up handling of eol conversions.
Richard M. Stallman <rms@gnu.org>
parents:
18458
diff
changeset
|
13062 if (NILP (eolvalue)) /* Not yet decided. */ |
92d4f44969c6
(decode_mode_spec_coding): Clean up handling of eol conversions.
Richard M. Stallman <rms@gnu.org>
parents:
18458
diff
changeset
|
13063 eoltype = eol_mnemonic_undecided; |
92d4f44969c6
(decode_mode_spec_coding): Clean up handling of eol conversions.
Richard M. Stallman <rms@gnu.org>
parents:
18458
diff
changeset
|
13064 else if (VECTORP (eolvalue)) /* Not yet decided. */ |
92d4f44969c6
(decode_mode_spec_coding): Clean up handling of eol conversions.
Richard M. Stallman <rms@gnu.org>
parents:
18458
diff
changeset
|
13065 eoltype = eol_mnemonic_undecided; |
92d4f44969c6
(decode_mode_spec_coding): Clean up handling of eol conversions.
Richard M. Stallman <rms@gnu.org>
parents:
18458
diff
changeset
|
13066 else /* INTEGERP (eolvalue) -- 0:LF, 1:CRLF, 2:CR */ |
92d4f44969c6
(decode_mode_spec_coding): Clean up handling of eol conversions.
Richard M. Stallman <rms@gnu.org>
parents:
18458
diff
changeset
|
13067 eoltype = (XFASTINT (eolvalue) == 0 |
92d4f44969c6
(decode_mode_spec_coding): Clean up handling of eol conversions.
Richard M. Stallman <rms@gnu.org>
parents:
18458
diff
changeset
|
13068 ? eol_mnemonic_unix |
92d4f44969c6
(decode_mode_spec_coding): Clean up handling of eol conversions.
Richard M. Stallman <rms@gnu.org>
parents:
18458
diff
changeset
|
13069 : (XFASTINT (eolvalue) == 1 |
92d4f44969c6
(decode_mode_spec_coding): Clean up handling of eol conversions.
Richard M. Stallman <rms@gnu.org>
parents:
18458
diff
changeset
|
13070 ? eol_mnemonic_dos : eol_mnemonic_mac)); |
17017
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13071 } |
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13072 } |
25012 | 13073 |
24215
6e1f6e29422a
(decode_mode_spec_coding): Fix previous change.
Eli Zaretskii <eliz@gnu.org>
parents:
24199
diff
changeset
|
13074 if (eol_flag) |
6e1f6e29422a
(decode_mode_spec_coding): Fix previous change.
Eli Zaretskii <eliz@gnu.org>
parents:
24199
diff
changeset
|
13075 { |
6e1f6e29422a
(decode_mode_spec_coding): Fix previous change.
Eli Zaretskii <eliz@gnu.org>
parents:
24199
diff
changeset
|
13076 /* Mention the EOL conversion if it is not the usual one. */ |
6e1f6e29422a
(decode_mode_spec_coding): Fix previous change.
Eli Zaretskii <eliz@gnu.org>
parents:
24199
diff
changeset
|
13077 if (STRINGP (eoltype)) |
6e1f6e29422a
(decode_mode_spec_coding): Fix previous change.
Eli Zaretskii <eliz@gnu.org>
parents:
24199
diff
changeset
|
13078 { |
6e1f6e29422a
(decode_mode_spec_coding): Fix previous change.
Eli Zaretskii <eliz@gnu.org>
parents:
24199
diff
changeset
|
13079 eol_str = XSTRING (eoltype)->data; |
6e1f6e29422a
(decode_mode_spec_coding): Fix previous change.
Eli Zaretskii <eliz@gnu.org>
parents:
24199
diff
changeset
|
13080 eol_str_len = XSTRING (eoltype)->size; |
6e1f6e29422a
(decode_mode_spec_coding): Fix previous change.
Eli Zaretskii <eliz@gnu.org>
parents:
24199
diff
changeset
|
13081 } |
24511
6dbea1df5686
(decode_mode_spec_coding): Handle integer value in
Kenichi Handa <handa@m17n.org>
parents:
24487
diff
changeset
|
13082 else if (INTEGERP (eoltype) |
6dbea1df5686
(decode_mode_spec_coding): Handle integer value in
Kenichi Handa <handa@m17n.org>
parents:
24487
diff
changeset
|
13083 && CHAR_VALID_P (XINT (eoltype), 0)) |
6dbea1df5686
(decode_mode_spec_coding): Handle integer value in
Kenichi Handa <handa@m17n.org>
parents:
24487
diff
changeset
|
13084 { |
27721
c2a9f4621f9a
(decode_mode_spec_coding): Delete superfluous code.
Kenichi Handa <handa@m17n.org>
parents:
27681
diff
changeset
|
13085 eol_str = (unsigned char *) alloca (MAX_MULTIBYTE_LENGTH); |
26874
e45f9a84fca0
(it_props): Add an entry for composition.
Kenichi Handa <handa@m17n.org>
parents:
26570
diff
changeset
|
13086 eol_str_len = CHAR_STRING (XINT (eoltype), eol_str); |
24511
6dbea1df5686
(decode_mode_spec_coding): Handle integer value in
Kenichi Handa <handa@m17n.org>
parents:
24487
diff
changeset
|
13087 } |
24215
6e1f6e29422a
(decode_mode_spec_coding): Fix previous change.
Eli Zaretskii <eliz@gnu.org>
parents:
24199
diff
changeset
|
13088 else |
6e1f6e29422a
(decode_mode_spec_coding): Fix previous change.
Eli Zaretskii <eliz@gnu.org>
parents:
24199
diff
changeset
|
13089 { |
6e1f6e29422a
(decode_mode_spec_coding): Fix previous change.
Eli Zaretskii <eliz@gnu.org>
parents:
24199
diff
changeset
|
13090 eol_str = invalid_eol_type; |
6e1f6e29422a
(decode_mode_spec_coding): Fix previous change.
Eli Zaretskii <eliz@gnu.org>
parents:
24199
diff
changeset
|
13091 eol_str_len = sizeof (invalid_eol_type) - 1; |
6e1f6e29422a
(decode_mode_spec_coding): Fix previous change.
Eli Zaretskii <eliz@gnu.org>
parents:
24199
diff
changeset
|
13092 } |
24511
6dbea1df5686
(decode_mode_spec_coding): Handle integer value in
Kenichi Handa <handa@m17n.org>
parents:
24487
diff
changeset
|
13093 bcopy (eol_str, buf, eol_str_len); |
24215
6e1f6e29422a
(decode_mode_spec_coding): Fix previous change.
Eli Zaretskii <eliz@gnu.org>
parents:
24199
diff
changeset
|
13094 buf += eol_str_len; |
6e1f6e29422a
(decode_mode_spec_coding): Fix previous change.
Eli Zaretskii <eliz@gnu.org>
parents:
24199
diff
changeset
|
13095 } |
6e1f6e29422a
(decode_mode_spec_coding): Fix previous change.
Eli Zaretskii <eliz@gnu.org>
parents:
24199
diff
changeset
|
13096 |
17017
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13097 return buf; |
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13098 } |
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13099 |
277 | 13100 /* Return a string for the output of a mode line %-spec for window W, |
25012 | 13101 generated by character C. PRECISION >= 0 means don't return a |
13102 string longer than that value. FIELD_WIDTH > 0 means pad the | |
13103 string returned with spaces to that value. */ | |
277 | 13104 |
1017
d42877206c0a
* xdisp.c (display_mode_line): Use x_implicitly_set_name here.
Jim Blandy <jimb@redhat.com>
parents:
973
diff
changeset
|
13105 static char lots_of_dashes[] = "--------------------------------------------------------------------------------------------------------------------------------------------"; |
d42877206c0a
* xdisp.c (display_mode_line): Use x_implicitly_set_name here.
Jim Blandy <jimb@redhat.com>
parents:
973
diff
changeset
|
13106 |
277 | 13107 static char * |
25012 | 13108 decode_mode_spec (w, c, field_width, precision) |
277 | 13109 struct window *w; |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26018
diff
changeset
|
13110 register int c; |
25012 | 13111 int field_width, precision; |
277 | 13112 { |
6518
07ecb7a5c916
(x_consider_frame_title, decode_mode_spec): Use assignment, not initialization.
Karl Heuer <kwzh@gnu.org>
parents:
6415
diff
changeset
|
13113 Lisp_Object obj; |
25012 | 13114 struct frame *f = XFRAME (WINDOW_FRAME (w)); |
13115 char *decode_mode_spec_buf = f->decode_mode_spec_buffer; | |
8772
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
13116 struct buffer *b = XBUFFER (w->buffer); |
277 | 13117 |
6518
07ecb7a5c916
(x_consider_frame_title, decode_mode_spec): Use assignment, not initialization.
Karl Heuer <kwzh@gnu.org>
parents:
6415
diff
changeset
|
13118 obj = Qnil; |
277 | 13119 |
13120 switch (c) | |
13121 { | |
11291
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13122 case '*': |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13123 if (!NILP (b->read_only)) |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13124 return "%"; |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13125 if (BUF_MODIFF (b) > BUF_SAVE_MODIFF (b)) |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13126 return "*"; |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13127 return "-"; |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13128 |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13129 case '+': |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13130 /* This differs from %* only for a modified read-only buffer. */ |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13131 if (BUF_MODIFF (b) > BUF_SAVE_MODIFF (b)) |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13132 return "*"; |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13133 if (!NILP (b->read_only)) |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13134 return "%"; |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13135 return "-"; |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13136 |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13137 case '&': |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13138 /* This differs from %* in ignoring read-only-ness. */ |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13139 if (BUF_MODIFF (b) > BUF_SAVE_MODIFF (b)) |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13140 return "*"; |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13141 return "-"; |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13142 |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13143 case '%': |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13144 return "%"; |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13145 |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13146 case '[': |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13147 { |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13148 int i; |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13149 char *p; |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13150 |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13151 if (command_loop_level > 5) |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13152 return "[[[... "; |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13153 p = decode_mode_spec_buf; |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13154 for (i = 0; i < command_loop_level; i++) |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13155 *p++ = '['; |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13156 *p = 0; |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13157 return decode_mode_spec_buf; |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13158 } |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13159 |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13160 case ']': |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13161 { |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13162 int i; |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13163 char *p; |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13164 |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13165 if (command_loop_level > 5) |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13166 return " ...]]]"; |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13167 p = decode_mode_spec_buf; |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13168 for (i = 0; i < command_loop_level; i++) |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13169 *p++ = ']'; |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13170 *p = 0; |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13171 return decode_mode_spec_buf; |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13172 } |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13173 |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13174 case '-': |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13175 { |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13176 register int i; |
25012 | 13177 |
13178 /* Let lots_of_dashes be a string of infinite length. */ | |
13179 if (field_width <= 0 | |
13180 || field_width > sizeof (lots_of_dashes)) | |
13181 { | |
13182 for (i = 0; i < FRAME_MESSAGE_BUF_SIZE (f) - 1; ++i) | |
13183 decode_mode_spec_buf[i] = '-'; | |
13184 decode_mode_spec_buf[i] = '\0'; | |
13185 return decode_mode_spec_buf; | |
13186 } | |
11291
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13187 else |
25012 | 13188 return lots_of_dashes; |
11291
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13189 } |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13190 |
277 | 13191 case 'b': |
8772
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
13192 obj = b->name; |
277 | 13193 break; |
13194 | |
11291
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13195 case 'c': |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13196 { |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13197 int col = current_column (); |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13198 XSETFASTINT (w->column_number_displayed, col); |
25012 | 13199 pint2str (decode_mode_spec_buf, field_width, col); |
11291
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13200 return decode_mode_spec_buf; |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13201 } |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13202 |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13203 case 'F': |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13204 /* %F displays the frame name. */ |
25012 | 13205 if (!NILP (f->title)) |
15038
2376256a0204
(decode_mode_spec): Use frame F, not selected frame.
Richard M. Stallman <rms@gnu.org>
parents:
15037
diff
changeset
|
13206 return (char *) XSTRING (f->title)->data; |
15382
274f64e997f0
(redisplay_internal): Use FRAME_WINDOW_P.
Richard M. Stallman <rms@gnu.org>
parents:
15381
diff
changeset
|
13207 if (f->explicit_name || ! FRAME_WINDOW_P (f)) |
15038
2376256a0204
(decode_mode_spec): Use frame F, not selected frame.
Richard M. Stallman <rms@gnu.org>
parents:
15037
diff
changeset
|
13208 return (char *) XSTRING (f->name)->data; |
12348
7d39ee7e0ca3
(decode_mode_spec) [!MULTI_FRAME]: Handle %F properly.
Richard M. Stallman <rms@gnu.org>
parents:
12293
diff
changeset
|
13209 return "Emacs"; |
11291
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13210 |
277 | 13211 case 'f': |
8772
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
13212 obj = b->filename; |
277 | 13213 break; |
13214 | |
2303
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13215 case 'l': |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13216 { |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13217 int startpos = XMARKER (w->start)->charpos; |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13218 int startpos_byte = marker_byte_position (w->start); |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13219 int line, linepos, linepos_byte, topline; |
2303
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13220 int nlines, junk; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13221 int height = XFASTINT (w->height); |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13222 |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13223 /* If we decided that this buffer isn't suitable for line numbers, |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13224 don't forget that too fast. */ |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13225 if (EQ (w->base_line_pos, w->buffer)) |
12598
43ebbbe0299f
(decode_mode_spec): New arg spec_width.
Richard M. Stallman <rms@gnu.org>
parents:
12493
diff
changeset
|
13226 goto no_value; |
16463
c6a338fd1938
(decode_mode_spec): In the `L' case,
Richard M. Stallman <rms@gnu.org>
parents:
16397
diff
changeset
|
13227 /* But do forget it, if the window shows a different buffer now. */ |
c6a338fd1938
(decode_mode_spec): In the `L' case,
Richard M. Stallman <rms@gnu.org>
parents:
16397
diff
changeset
|
13228 else if (BUFFERP (w->base_line_pos)) |
c6a338fd1938
(decode_mode_spec): In the `L' case,
Richard M. Stallman <rms@gnu.org>
parents:
16397
diff
changeset
|
13229 w->base_line_pos = Qnil; |
2303
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13230 |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13231 /* If the buffer is very big, don't waste time. */ |
29698
9ad6e18de5f7
* xdisp.c (decode_mode_spec): Fix sense of test whether Vline_number_display_limit is an integer.
Ken Raeburn <raeburn@raeburn.org>
parents:
29697
diff
changeset
|
13232 if (INTEGERP (Vline_number_display_limit) |
29632
96d83d5a48b3
(Vline_number_display_limit): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
29515
diff
changeset
|
13233 && BUF_ZV (b) - BUF_BEGV (b) > XINT (Vline_number_display_limit)) |
2303
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13234 { |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13235 w->base_line_pos = Qnil; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13236 w->base_line_number = Qnil; |
12598
43ebbbe0299f
(decode_mode_spec): New arg spec_width.
Richard M. Stallman <rms@gnu.org>
parents:
12493
diff
changeset
|
13237 goto no_value; |
2303
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13238 } |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13239 |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13240 if (!NILP (w->base_line_number) |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13241 && !NILP (w->base_line_pos) |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13242 && XFASTINT (w->base_line_pos) <= startpos) |
2303
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13243 { |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13244 line = XFASTINT (w->base_line_number); |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13245 linepos = XFASTINT (w->base_line_pos); |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13246 linepos_byte = buf_charpos_to_bytepos (b, linepos); |
2303
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13247 } |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13248 else |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13249 { |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13250 line = 1; |
8772
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
13251 linepos = BUF_BEGV (b); |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13252 linepos_byte = BUF_BEGV_BYTE (b); |
2303
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13253 } |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13254 |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13255 /* Count lines from base line to window start position. */ |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13256 nlines = display_count_lines (linepos, linepos_byte, |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13257 startpos_byte, |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13258 startpos, &junk); |
2303
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13259 |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13260 topline = nlines + line; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13261 |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13262 /* Determine a new base line, if the old one is too close |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13263 or too far away, or if we did not have one. |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13264 "Too close" means it's plausible a scroll-down would |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13265 go back past it. */ |
8772
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
13266 if (startpos == BUF_BEGV (b)) |
2303
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13267 { |
9325
6f07f6dfe1ee
(redisplay, mark_window_display_accurate, redisplay_window, try_window,
Karl Heuer <kwzh@gnu.org>
parents:
9283
diff
changeset
|
13268 XSETFASTINT (w->base_line_number, topline); |
6f07f6dfe1ee
(redisplay, mark_window_display_accurate, redisplay_window, try_window,
Karl Heuer <kwzh@gnu.org>
parents:
9283
diff
changeset
|
13269 XSETFASTINT (w->base_line_pos, BUF_BEGV (b)); |
2303
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13270 } |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13271 else if (nlines < height + 25 || nlines > height * 3 + 50 |
8772
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
13272 || linepos == BUF_BEGV (b)) |
2303
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13273 { |
8772
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
13274 int limit = BUF_BEGV (b); |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13275 int limit_byte = BUF_BEGV_BYTE (b); |
2303
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13276 int position; |
25258
8eefac3ecebf
(line_number_display_limit_width): New var.
Karl Heuer <kwzh@gnu.org>
parents:
25243
diff
changeset
|
13277 int distance = (height * 2 + 30) * line_number_display_limit_width; |
2303
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13278 |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13279 if (startpos - distance > limit) |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13280 { |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13281 limit = startpos - distance; |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13282 limit_byte = CHAR_TO_BYTE (limit); |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13283 } |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13284 |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13285 nlines = display_count_lines (startpos, startpos_byte, |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13286 limit_byte, |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13287 - (height * 2 + 30), |
2303
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13288 &position); |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13289 /* If we couldn't find the lines we wanted within |
25258
8eefac3ecebf
(line_number_display_limit_width): New var.
Karl Heuer <kwzh@gnu.org>
parents:
25243
diff
changeset
|
13290 line_number_display_limit_width chars per line, |
2303
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13291 give up on line numbers for this window. */ |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13292 if (position == limit_byte && limit == startpos - distance) |
2303
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13293 { |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13294 w->base_line_pos = w->buffer; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13295 w->base_line_number = Qnil; |
12598
43ebbbe0299f
(decode_mode_spec): New arg spec_width.
Richard M. Stallman <rms@gnu.org>
parents:
12493
diff
changeset
|
13296 goto no_value; |
2303
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13297 } |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13298 |
9325
6f07f6dfe1ee
(redisplay, mark_window_display_accurate, redisplay_window, try_window,
Karl Heuer <kwzh@gnu.org>
parents:
9283
diff
changeset
|
13299 XSETFASTINT (w->base_line_number, topline - nlines); |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13300 XSETFASTINT (w->base_line_pos, BYTE_TO_CHAR (position)); |
2303
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13301 } |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13302 |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13303 /* Now count lines from the start pos to point. */ |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13304 nlines = display_count_lines (startpos, startpos_byte, |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13305 PT_BYTE, PT, &junk); |
2303
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13306 |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13307 /* Record that we did display the line number. */ |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13308 line_number_displayed = 1; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13309 |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13310 /* Make the string to show. */ |
25012 | 13311 pint2str (decode_mode_spec_buf, field_width, topline + nlines); |
2303
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13312 return decode_mode_spec_buf; |
12598
43ebbbe0299f
(decode_mode_spec): New arg spec_width.
Richard M. Stallman <rms@gnu.org>
parents:
12493
diff
changeset
|
13313 no_value: |
43ebbbe0299f
(decode_mode_spec): New arg spec_width.
Richard M. Stallman <rms@gnu.org>
parents:
12493
diff
changeset
|
13314 { |
43ebbbe0299f
(decode_mode_spec): New arg spec_width.
Richard M. Stallman <rms@gnu.org>
parents:
12493
diff
changeset
|
13315 char* p = decode_mode_spec_buf; |
25012 | 13316 int pad = field_width - 2; |
13317 while (pad-- > 0) | |
13318 *p++ = ' '; | |
13319 *p++ = '?'; | |
29697
f24d81dfa064
* xdisp.c (decode_mode_spec): In "no_value" case, do NUL termination of string.
Ken Raeburn <raeburn@raeburn.org>
parents:
29643
diff
changeset
|
13320 *p++ = '?'; |
f24d81dfa064
* xdisp.c (decode_mode_spec): In "no_value" case, do NUL termination of string.
Ken Raeburn <raeburn@raeburn.org>
parents:
29643
diff
changeset
|
13321 *p = '\0'; |
12598
43ebbbe0299f
(decode_mode_spec): New arg spec_width.
Richard M. Stallman <rms@gnu.org>
parents:
12493
diff
changeset
|
13322 return decode_mode_spec_buf; |
43ebbbe0299f
(decode_mode_spec): New arg spec_width.
Richard M. Stallman <rms@gnu.org>
parents:
12493
diff
changeset
|
13323 } |
2303
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13324 } |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13325 break; |
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
13326 |
277 | 13327 case 'm': |
8772
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
13328 obj = b->mode_name; |
277 | 13329 break; |
13330 | |
13331 case 'n': | |
8772
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
13332 if (BUF_BEGV (b) > BUF_BEG (b) || BUF_ZV (b) < BUF_Z (b)) |
277 | 13333 return " Narrow"; |
13334 break; | |
13335 | |
13336 case 'p': | |
13337 { | |
13338 int pos = marker_position (w->start); | |
8772
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
13339 int total = BUF_ZV (b) - BUF_BEGV (b); |
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
13340 |
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
13341 if (XFASTINT (w->window_end_pos) <= BUF_Z (b) - BUF_ZV (b)) |
277 | 13342 { |
8772
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
13343 if (pos <= BUF_BEGV (b)) |
277 | 13344 return "All"; |
13345 else | |
13346 return "Bottom"; | |
13347 } | |
8772
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
13348 else if (pos <= BUF_BEGV (b)) |
277 | 13349 return "Top"; |
13350 else | |
13351 { | |
13655
5dd2d988f3c3
(decode_mode_spec): For p and P, avoid overflow with large buffer sizes.
Richard M. Stallman <rms@gnu.org>
parents:
13584
diff
changeset
|
13352 if (total > 1000000) |
5dd2d988f3c3
(decode_mode_spec): For p and P, avoid overflow with large buffer sizes.
Richard M. Stallman <rms@gnu.org>
parents:
13584
diff
changeset
|
13353 /* Do it differently for a large value, to avoid overflow. */ |
5dd2d988f3c3
(decode_mode_spec): For p and P, avoid overflow with large buffer sizes.
Richard M. Stallman <rms@gnu.org>
parents:
13584
diff
changeset
|
13354 total = ((pos - BUF_BEGV (b)) + (total / 100) - 1) / (total / 100); |
5dd2d988f3c3
(decode_mode_spec): For p and P, avoid overflow with large buffer sizes.
Richard M. Stallman <rms@gnu.org>
parents:
13584
diff
changeset
|
13355 else |
5dd2d988f3c3
(decode_mode_spec): For p and P, avoid overflow with large buffer sizes.
Richard M. Stallman <rms@gnu.org>
parents:
13584
diff
changeset
|
13356 total = ((pos - BUF_BEGV (b)) * 100 + total - 1) / total; |
277 | 13357 /* We can't normally display a 3-digit number, |
13358 so get us a 2-digit number that is close. */ | |
13359 if (total == 100) | |
13360 total = 99; | |
13361 sprintf (decode_mode_spec_buf, "%2d%%", total); | |
13362 return decode_mode_spec_buf; | |
13363 } | |
13364 } | |
13365 | |
5903
0aea60a8c2d5
(decode_mode_spec): Implement `P'.
Richard M. Stallman <rms@gnu.org>
parents:
5883
diff
changeset
|
13366 /* Display percentage of size above the bottom of the screen. */ |
0aea60a8c2d5
(decode_mode_spec): Implement `P'.
Richard M. Stallman <rms@gnu.org>
parents:
5883
diff
changeset
|
13367 case 'P': |
0aea60a8c2d5
(decode_mode_spec): Implement `P'.
Richard M. Stallman <rms@gnu.org>
parents:
5883
diff
changeset
|
13368 { |
0aea60a8c2d5
(decode_mode_spec): Implement `P'.
Richard M. Stallman <rms@gnu.org>
parents:
5883
diff
changeset
|
13369 int toppos = marker_position (w->start); |
8772
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
13370 int botpos = BUF_Z (b) - XFASTINT (w->window_end_pos); |
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
13371 int total = BUF_ZV (b) - BUF_BEGV (b); |
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
13372 |
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
13373 if (botpos >= BUF_ZV (b)) |
5903
0aea60a8c2d5
(decode_mode_spec): Implement `P'.
Richard M. Stallman <rms@gnu.org>
parents:
5883
diff
changeset
|
13374 { |
8772
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
13375 if (toppos <= BUF_BEGV (b)) |
5903
0aea60a8c2d5
(decode_mode_spec): Implement `P'.
Richard M. Stallman <rms@gnu.org>
parents:
5883
diff
changeset
|
13376 return "All"; |
0aea60a8c2d5
(decode_mode_spec): Implement `P'.
Richard M. Stallman <rms@gnu.org>
parents:
5883
diff
changeset
|
13377 else |
0aea60a8c2d5
(decode_mode_spec): Implement `P'.
Richard M. Stallman <rms@gnu.org>
parents:
5883
diff
changeset
|
13378 return "Bottom"; |
0aea60a8c2d5
(decode_mode_spec): Implement `P'.
Richard M. Stallman <rms@gnu.org>
parents:
5883
diff
changeset
|
13379 } |
0aea60a8c2d5
(decode_mode_spec): Implement `P'.
Richard M. Stallman <rms@gnu.org>
parents:
5883
diff
changeset
|
13380 else |
0aea60a8c2d5
(decode_mode_spec): Implement `P'.
Richard M. Stallman <rms@gnu.org>
parents:
5883
diff
changeset
|
13381 { |
13655
5dd2d988f3c3
(decode_mode_spec): For p and P, avoid overflow with large buffer sizes.
Richard M. Stallman <rms@gnu.org>
parents:
13584
diff
changeset
|
13382 if (total > 1000000) |
5dd2d988f3c3
(decode_mode_spec): For p and P, avoid overflow with large buffer sizes.
Richard M. Stallman <rms@gnu.org>
parents:
13584
diff
changeset
|
13383 /* Do it differently for a large value, to avoid overflow. */ |
5dd2d988f3c3
(decode_mode_spec): For p and P, avoid overflow with large buffer sizes.
Richard M. Stallman <rms@gnu.org>
parents:
13584
diff
changeset
|
13384 total = ((botpos - BUF_BEGV (b)) + (total / 100) - 1) / (total / 100); |
5dd2d988f3c3
(decode_mode_spec): For p and P, avoid overflow with large buffer sizes.
Richard M. Stallman <rms@gnu.org>
parents:
13584
diff
changeset
|
13385 else |
5dd2d988f3c3
(decode_mode_spec): For p and P, avoid overflow with large buffer sizes.
Richard M. Stallman <rms@gnu.org>
parents:
13584
diff
changeset
|
13386 total = ((botpos - BUF_BEGV (b)) * 100 + total - 1) / total; |
5903
0aea60a8c2d5
(decode_mode_spec): Implement `P'.
Richard M. Stallman <rms@gnu.org>
parents:
5883
diff
changeset
|
13387 /* We can't normally display a 3-digit number, |
0aea60a8c2d5
(decode_mode_spec): Implement `P'.
Richard M. Stallman <rms@gnu.org>
parents:
5883
diff
changeset
|
13388 so get us a 2-digit number that is close. */ |
0aea60a8c2d5
(decode_mode_spec): Implement `P'.
Richard M. Stallman <rms@gnu.org>
parents:
5883
diff
changeset
|
13389 if (total == 100) |
0aea60a8c2d5
(decode_mode_spec): Implement `P'.
Richard M. Stallman <rms@gnu.org>
parents:
5883
diff
changeset
|
13390 total = 99; |
8772
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
13391 if (toppos <= BUF_BEGV (b)) |
5903
0aea60a8c2d5
(decode_mode_spec): Implement `P'.
Richard M. Stallman <rms@gnu.org>
parents:
5883
diff
changeset
|
13392 sprintf (decode_mode_spec_buf, "Top%2d%%", total); |
0aea60a8c2d5
(decode_mode_spec): Implement `P'.
Richard M. Stallman <rms@gnu.org>
parents:
5883
diff
changeset
|
13393 else |
0aea60a8c2d5
(decode_mode_spec): Implement `P'.
Richard M. Stallman <rms@gnu.org>
parents:
5883
diff
changeset
|
13394 sprintf (decode_mode_spec_buf, "%2d%%", total); |
0aea60a8c2d5
(decode_mode_spec): Implement `P'.
Richard M. Stallman <rms@gnu.org>
parents:
5883
diff
changeset
|
13395 return decode_mode_spec_buf; |
0aea60a8c2d5
(decode_mode_spec): Implement `P'.
Richard M. Stallman <rms@gnu.org>
parents:
5883
diff
changeset
|
13396 } |
0aea60a8c2d5
(decode_mode_spec): Implement `P'.
Richard M. Stallman <rms@gnu.org>
parents:
5883
diff
changeset
|
13397 } |
0aea60a8c2d5
(decode_mode_spec): Implement `P'.
Richard M. Stallman <rms@gnu.org>
parents:
5883
diff
changeset
|
13398 |
11291
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13399 case 's': |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13400 /* status of process */ |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13401 obj = Fget_buffer_process (w->buffer); |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13402 if (NILP (obj)) |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13403 return "no process"; |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13404 #ifdef subprocesses |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13405 obj = Fsymbol_name (Fprocess_status (obj)); |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13406 #endif |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13407 break; |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13408 |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13409 case 't': /* indicate TEXT or BINARY */ |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13410 #ifdef MODE_LINE_BINARY_TEXT |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13411 return MODE_LINE_BINARY_TEXT (b); |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13412 #else |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13413 return "T"; |
856fe1d1f30d
(redisplay): Don't call update_frame for non-selected termcap frame.
Richard M. Stallman <rms@gnu.org>
parents:
11284
diff
changeset
|
13414 #endif |
17017
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13415 |
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13416 case 'z': |
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13417 /* coding-system (not including end-of-line format) */ |
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13418 case 'Z': |
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13419 /* coding-system (including end-of-line type) */ |
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13420 { |
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13421 int eol_flag = (c == 'Z'); |
18761
756cb4d82a49
(decode_mode_spec): Initialize and use `p' (for the termcap case).
Richard M. Stallman <rms@gnu.org>
parents:
18752
diff
changeset
|
13422 char *p = decode_mode_spec_buf; |
17017
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13423 |
19562
318a3a6a8ff5
(decode_mode_spec): For %Z and %z, put keyboard and
Richard M. Stallman <rms@gnu.org>
parents:
19478
diff
changeset
|
13424 if (! FRAME_WINDOW_P (f)) |
17017
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13425 { |
18652
8873a10882dc
(display_menu_bar): Always pass W to display_string.
Richard M. Stallman <rms@gnu.org>
parents:
18525
diff
changeset
|
13426 /* No need to mention EOL here--the terminal never needs |
8873a10882dc
(display_menu_bar): Always pass W to display_string.
Richard M. Stallman <rms@gnu.org>
parents:
18525
diff
changeset
|
13427 to do EOL conversion. */ |
8873a10882dc
(display_menu_bar): Always pass W to display_string.
Richard M. Stallman <rms@gnu.org>
parents:
18525
diff
changeset
|
13428 p = decode_mode_spec_coding (keyboard_coding.symbol, p, 0); |
8873a10882dc
(display_menu_bar): Always pass W to display_string.
Richard M. Stallman <rms@gnu.org>
parents:
18525
diff
changeset
|
13429 p = decode_mode_spec_coding (terminal_coding.symbol, p, 0); |
17017
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13430 } |
18684
76bdd57b476d
(decode_mode_spec) <z,Z>: Display buffer coding system
Richard M. Stallman <rms@gnu.org>
parents:
18677
diff
changeset
|
13431 p = decode_mode_spec_coding (b->buffer_file_coding_system, |
18761
756cb4d82a49
(decode_mode_spec): Initialize and use `p' (for the termcap case).
Richard M. Stallman <rms@gnu.org>
parents:
18752
diff
changeset
|
13432 p, eol_flag); |
18684
76bdd57b476d
(decode_mode_spec) <z,Z>: Display buffer coding system
Richard M. Stallman <rms@gnu.org>
parents:
18677
diff
changeset
|
13433 |
18652
8873a10882dc
(display_menu_bar): Always pass W to display_string.
Richard M. Stallman <rms@gnu.org>
parents:
18525
diff
changeset
|
13434 #if 0 /* This proves to be annoying; I think we can do without. -- rms. */ |
17017
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13435 #ifdef subprocesses |
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13436 obj = Fget_buffer_process (Fcurrent_buffer ()); |
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13437 if (PROCESSP (obj)) |
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13438 { |
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13439 p = decode_mode_spec_coding (XPROCESS (obj)->decode_coding_system, |
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13440 p, eol_flag); |
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13441 p = decode_mode_spec_coding (XPROCESS (obj)->encode_coding_system, |
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13442 p, eol_flag); |
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13443 } |
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13444 #endif /* subprocesses */ |
18652
8873a10882dc
(display_menu_bar): Always pass W to display_string.
Richard M. Stallman <rms@gnu.org>
parents:
18525
diff
changeset
|
13445 #endif /* 0 */ |
17017
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13446 *p = 0; |
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13447 return decode_mode_spec_buf; |
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13448 } |
277 | 13449 } |
8772
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
13450 |
9104
610e18fd64a9
(redisplay, mark_window_display_accurate, try_window_id, display_text_line,
Karl Heuer <kwzh@gnu.org>
parents:
9088
diff
changeset
|
13451 if (STRINGP (obj)) |
277 | 13452 return (char *) XSTRING (obj)->data; |
13453 else | |
13454 return ""; | |
13455 } | |
25012 | 13456 |
13457 | |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13458 /* Count up to COUNT lines starting from START / START_BYTE. |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13459 But don't go beyond LIMIT_BYTE. |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13460 Return the number of lines thus found (always nonnegative). |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13461 |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13462 Set *BYTE_POS_PTR to 1 if we found COUNT lines, 0 if we hit LIMIT. */ |
8622
4ce43042e7ad
(display_scan_buffer): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8594
diff
changeset
|
13463 |
4ce43042e7ad
(display_scan_buffer): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8594
diff
changeset
|
13464 static int |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13465 display_count_lines (start, start_byte, limit_byte, count, byte_pos_ptr) |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13466 int start, start_byte, limit_byte, count; |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13467 int *byte_pos_ptr; |
8622
4ce43042e7ad
(display_scan_buffer): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8594
diff
changeset
|
13468 { |
4ce43042e7ad
(display_scan_buffer): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8594
diff
changeset
|
13469 register unsigned char *cursor; |
4ce43042e7ad
(display_scan_buffer): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8594
diff
changeset
|
13470 unsigned char *base; |
4ce43042e7ad
(display_scan_buffer): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8594
diff
changeset
|
13471 |
4ce43042e7ad
(display_scan_buffer): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8594
diff
changeset
|
13472 register int ceiling; |
4ce43042e7ad
(display_scan_buffer): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8594
diff
changeset
|
13473 register unsigned char *ceiling_addr; |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13474 int orig_count = count; |
8622
4ce43042e7ad
(display_scan_buffer): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8594
diff
changeset
|
13475 |
4ce43042e7ad
(display_scan_buffer): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8594
diff
changeset
|
13476 /* If we are not in selective display mode, |
4ce43042e7ad
(display_scan_buffer): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8594
diff
changeset
|
13477 check only for newlines. */ |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13478 int selective_display = (!NILP (current_buffer->selective_display) |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13479 && !INTEGERP (current_buffer->selective_display)); |
8622
4ce43042e7ad
(display_scan_buffer): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8594
diff
changeset
|
13480 |
4ce43042e7ad
(display_scan_buffer): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8594
diff
changeset
|
13481 if (count > 0) |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13482 { |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13483 while (start_byte < limit_byte) |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13484 { |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13485 ceiling = BUFFER_CEILING_OF (start_byte); |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13486 ceiling = min (limit_byte - 1, ceiling); |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13487 ceiling_addr = BYTE_POS_ADDR (ceiling) + 1; |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13488 base = (cursor = BYTE_POS_ADDR (start_byte)); |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13489 while (1) |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13490 { |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13491 if (selective_display) |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13492 while (*cursor != '\n' && *cursor != 015 && ++cursor != ceiling_addr) |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13493 ; |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13494 else |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13495 while (*cursor != '\n' && ++cursor != ceiling_addr) |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13496 ; |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13497 |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13498 if (cursor != ceiling_addr) |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13499 { |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13500 if (--count == 0) |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13501 { |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13502 start_byte += cursor - base + 1; |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13503 *byte_pos_ptr = start_byte; |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13504 return orig_count; |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13505 } |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13506 else |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13507 if (++cursor == ceiling_addr) |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13508 break; |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13509 } |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13510 else |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13511 break; |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13512 } |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13513 start_byte += cursor - base; |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13514 } |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13515 } |
8622
4ce43042e7ad
(display_scan_buffer): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8594
diff
changeset
|
13516 else |
4ce43042e7ad
(display_scan_buffer): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8594
diff
changeset
|
13517 { |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13518 while (start_byte > limit_byte) |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13519 { |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13520 ceiling = BUFFER_FLOOR_OF (start_byte - 1); |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13521 ceiling = max (limit_byte, ceiling); |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13522 ceiling_addr = BYTE_POS_ADDR (ceiling) - 1; |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13523 base = (cursor = BYTE_POS_ADDR (start_byte - 1) + 1); |
8622
4ce43042e7ad
(display_scan_buffer): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8594
diff
changeset
|
13524 while (1) |
4ce43042e7ad
(display_scan_buffer): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8594
diff
changeset
|
13525 { |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13526 if (selective_display) |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13527 while (--cursor != ceiling_addr |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13528 && *cursor != '\n' && *cursor != 015) |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13529 ; |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13530 else |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13531 while (--cursor != ceiling_addr && *cursor != '\n') |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13532 ; |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13533 |
8622
4ce43042e7ad
(display_scan_buffer): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8594
diff
changeset
|
13534 if (cursor != ceiling_addr) |
4ce43042e7ad
(display_scan_buffer): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8594
diff
changeset
|
13535 { |
4ce43042e7ad
(display_scan_buffer): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8594
diff
changeset
|
13536 if (++count == 0) |
4ce43042e7ad
(display_scan_buffer): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8594
diff
changeset
|
13537 { |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13538 start_byte += cursor - base + 1; |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13539 *byte_pos_ptr = start_byte; |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13540 /* When scanning backwards, we should |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13541 not count the newline posterior to which we stop. */ |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13542 return - orig_count - 1; |
8622
4ce43042e7ad
(display_scan_buffer): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8594
diff
changeset
|
13543 } |
4ce43042e7ad
(display_scan_buffer): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8594
diff
changeset
|
13544 } |
4ce43042e7ad
(display_scan_buffer): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8594
diff
changeset
|
13545 else |
4ce43042e7ad
(display_scan_buffer): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8594
diff
changeset
|
13546 break; |
4ce43042e7ad
(display_scan_buffer): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8594
diff
changeset
|
13547 } |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13548 /* Here we add 1 to compensate for the last decrement |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13549 of CURSOR, which took it past the valid range. */ |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13550 start_byte += cursor - base + 1; |
8622
4ce43042e7ad
(display_scan_buffer): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8594
diff
changeset
|
13551 } |
4ce43042e7ad
(display_scan_buffer): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8594
diff
changeset
|
13552 } |
4ce43042e7ad
(display_scan_buffer): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8594
diff
changeset
|
13553 |
20536
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13554 *byte_pos_ptr = limit_byte; |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13555 |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13556 if (count < 0) |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13557 return - orig_count + count; |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13558 return orig_count - count; |
8f88438d9f61
(redisplay_internal): Use scan_newline.
Richard M. Stallman <rms@gnu.org>
parents:
20521
diff
changeset
|
13559 |
8622
4ce43042e7ad
(display_scan_buffer): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8594
diff
changeset
|
13560 } |
25012 | 13561 |
13562 | |
277 | 13563 |
25012 | 13564 /*********************************************************************** |
13565 Displaying strings | |
13566 ***********************************************************************/ | |
13567 | |
13568 /* Display a NUL-terminated string, starting with index START. | |
13569 | |
13570 If STRING is non-null, display that C string. Otherwise, the Lisp | |
13571 string LISP_STRING is displayed. | |
13572 | |
13573 If FACE_STRING is not nil, FACE_STRING_POS is a position in | |
13574 FACE_STRING. Display STRING or LISP_STRING with the face at | |
13575 FACE_STRING_POS in FACE_STRING: | |
13576 | |
13577 Display the string in the environment given by IT, but use the | |
13578 standard display table, temporarily. | |
13579 | |
13580 FIELD_WIDTH is the minimum number of output glyphs to produce. | |
13581 If STRING has fewer characters than FIELD_WIDTH, pad to the right | |
13582 with spaces. If STRING has more characters, more than FIELD_WIDTH | |
13583 glyphs will be produced. FIELD_WIDTH <= 0 means don't pad. | |
13584 | |
13585 PRECISION is the maximum number of characters to output from | |
13586 STRING. PRECISION < 0 means don't truncate the string. | |
13587 | |
13588 This is roughly equivalent to printf format specifiers: | |
13589 | |
13590 FIELD_WIDTH PRECISION PRINTF | |
13591 ---------------------------------------- | |
13592 -1 -1 %s | |
13593 -1 10 %.10s | |
13594 10 -1 %10s | |
13595 20 10 %20.10s | |
13596 | |
13597 MULTIBYTE zero means do not display multibyte chars, > 0 means do | |
13598 display them, and < 0 means obey the current buffer's value of | |
13599 enable_multibyte_characters. | |
13600 | |
13601 Value is the number of glyphs produced. */ | |
277 | 13602 |
13603 static int | |
25012 | 13604 display_string (string, lisp_string, face_string, face_string_pos, |
13605 start, it, field_width, precision, max_x, multibyte) | |
277 | 13606 unsigned char *string; |
25012 | 13607 Lisp_Object lisp_string; |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26018
diff
changeset
|
13608 Lisp_Object face_string; |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26018
diff
changeset
|
13609 int face_string_pos; |
25012 | 13610 int start; |
13611 struct it *it; | |
13612 int field_width, precision, max_x; | |
19915
0ee6d171e8af
When redisplaying the echo area, use the value
Richard M. Stallman <rms@gnu.org>
parents:
19789
diff
changeset
|
13613 int multibyte; |
277 | 13614 { |
25012 | 13615 int hpos_at_start = it->hpos; |
13616 int saved_face_id = it->face_id; | |
13617 struct glyph_row *row = it->glyph_row; | |
13618 | |
13619 /* Initialize the iterator IT for iteration over STRING beginning | |
13620 with index START. We assume that IT may be modified here (which | |
13621 means that display_line has to do something when displaying a | |
13622 mini-buffer prompt, which it does). */ | |
13623 reseat_to_string (it, string, lisp_string, start, | |
13624 precision, field_width, multibyte); | |
13625 | |
13626 /* If displaying STRING, set up the face of the iterator | |
13627 from LISP_STRING, if that's given. */ | |
13628 if (STRINGP (face_string)) | |
13629 { | |
13630 int endptr; | |
13631 struct face *face; | |
13632 | |
13633 it->face_id | |
13634 = face_at_string_position (it->w, face_string, face_string_pos, | |
13635 0, it->region_beg_charpos, | |
13636 it->region_end_charpos, | |
13637 &endptr, it->base_face_id); | |
13638 face = FACE_FROM_ID (it->f, it->face_id); | |
13639 it->face_box_p = face->box != FACE_NO_BOX; | |
13640 } | |
13641 | |
13642 /* Set max_x to the maximum allowed X position. Don't let it go | |
13643 beyond the right edge of the window. */ | |
13644 if (max_x <= 0) | |
13645 max_x = it->last_visible_x; | |
13646 else | |
13647 max_x = min (max_x, it->last_visible_x); | |
13648 | |
13649 /* Skip over display elements that are not visible. because IT->w is | |
13650 hscrolled. */ | |
13651 if (it->current_x < it->first_visible_x) | |
13652 move_it_in_display_line_to (it, 100000, it->first_visible_x, | |
13653 MOVE_TO_POS | MOVE_TO_X); | |
13654 | |
13655 row->ascent = it->max_ascent; | |
13656 row->height = it->max_ascent + it->max_descent; | |
25188
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
13657 row->phys_ascent = it->max_phys_ascent; |
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
13658 row->phys_height = it->max_phys_ascent + it->max_phys_descent; |
25012 | 13659 |
13660 /* This condition is for the case that we are called with current_x | |
13661 past last_visible_x. */ | |
13662 while (it->current_x < max_x) | |
13663 { | |
13664 int x_before, x, n_glyphs_before, i, nglyphs; | |
13665 | |
13666 /* Get the next display element. */ | |
13667 if (!get_next_display_element (it)) | |
13668 break; | |
13669 | |
13670 /* Produce glyphs. */ | |
13671 x_before = it->current_x; | |
13672 n_glyphs_before = it->glyph_row->used[TEXT_AREA]; | |
13673 PRODUCE_GLYPHS (it); | |
13674 | |
13675 nglyphs = it->glyph_row->used[TEXT_AREA] - n_glyphs_before; | |
13676 i = 0; | |
13677 x = x_before; | |
13678 while (i < nglyphs) | |
13679 { | |
13680 struct glyph *glyph = row->glyphs[TEXT_AREA] + n_glyphs_before + i; | |
13681 | |
13682 if (!it->truncate_lines_p | |
13683 && x + glyph->pixel_width > max_x) | |
5800
295e342614a4
(fix_glyph): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5739
diff
changeset
|
13684 { |
25012 | 13685 /* End of continued line or max_x reached. */ |
13686 it->glyph_row->used[TEXT_AREA] = n_glyphs_before + i; | |
13687 it->current_x = x; | |
13688 break; | |
277 | 13689 } |
25012 | 13690 else if (x + glyph->pixel_width > it->first_visible_x) |
13691 { | |
13692 /* Glyph is at least partially visible. */ | |
13693 ++it->hpos; | |
13694 if (x < it->first_visible_x) | |
13695 it->glyph_row->x = x - it->first_visible_x; | |
13696 } | |
13697 else | |
17017
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13698 { |
25012 | 13699 /* Glyph is off the left margin of the display area. |
13700 Should not happen. */ | |
13701 abort (); | |
17017
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13702 } |
23647
d87960db41e9
(display_text_line): Check validity of a multibyte
Kenichi Handa <handa@m17n.org>
parents:
23417
diff
changeset
|
13703 |
25012 | 13704 row->ascent = max (row->ascent, it->max_ascent); |
13705 row->height = max (row->height, it->max_ascent + it->max_descent); | |
25188
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
13706 row->phys_ascent = max (row->phys_ascent, it->max_phys_ascent); |
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
13707 row->phys_height = max (row->phys_height, |
6849f435f6e8
(compute_line_metrics): If first line's physical ascent
Gerd Moellmann <gerd@gnu.org>
parents:
25098
diff
changeset
|
13708 it->max_phys_ascent + it->max_phys_descent); |
25012 | 13709 x += glyph->pixel_width; |
13710 ++i; | |
13711 } | |
13712 | |
13713 /* Stop if max_x reached. */ | |
13714 if (i < nglyphs) | |
13715 break; | |
13716 | |
13717 /* Stop at line ends. */ | |
13718 if (ITERATOR_AT_END_OF_LINE_P (it)) | |
13719 { | |
13720 it->continuation_lines_width = 0; | |
13721 break; | |
13722 } | |
13723 | |
32460
5d2167f8c6a6
(cursor_row_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32175
diff
changeset
|
13724 set_iterator_to_next (it, 1); |
25012 | 13725 |
13726 /* Stop if truncating at the right edge. */ | |
13727 if (it->truncate_lines_p | |
13728 && it->current_x >= it->last_visible_x) | |
13729 { | |
13730 /* Add truncation mark, but don't do it if the line is | |
13731 truncated at a padding space. */ | |
13732 if (IT_CHARPOS (*it) < it->string_nchars) | |
17017
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13733 { |
25012 | 13734 if (!FRAME_WINDOW_P (it->f)) |
13735 produce_special_glyphs (it, IT_TRUNCATION); | |
13736 it->glyph_row->truncated_on_right_p = 1; | |
17017
667a3686a447
(display_text_line): Introduce new local variable
Karl Heuer <kwzh@gnu.org>
parents:
16927
diff
changeset
|
13737 } |
25012 | 13738 break; |
13739 } | |
13740 } | |
13741 | |
13742 /* Maybe insert a truncation at the left. */ | |
13743 if (it->first_visible_x | |
13744 && IT_CHARPOS (*it) > 0) | |
13745 { | |
13746 if (!FRAME_WINDOW_P (it->f)) | |
13747 insert_left_trunc_glyphs (it); | |
13748 it->glyph_row->truncated_on_left_p = 1; | |
13749 } | |
13750 | |
13751 it->face_id = saved_face_id; | |
13752 | |
13753 /* Value is number of columns displayed. */ | |
13754 return it->hpos - hpos_at_start; | |
13755 } | |
13756 | |
13757 | |
277 | 13758 |
25012 | 13759 /* This is like a combination of memq and assq. Return 1 if PROPVAL |
13760 appears as an element of LIST or as the car of an element of LIST. | |
13761 If PROPVAL is a list, compare each element against LIST in that | |
13762 way, and return 1 if any element of PROPVAL is found in LIST. | |
13763 Otherwise return 0. This function cannot quit. */ | |
10965
1ade2d8b0ae9
(display_text_line): When setting selective_rlen,
Richard M. Stallman <rms@gnu.org>
parents:
10911
diff
changeset
|
13764 |
1ade2d8b0ae9
(display_text_line): When setting selective_rlen,
Richard M. Stallman <rms@gnu.org>
parents:
10911
diff
changeset
|
13765 int |
1ade2d8b0ae9
(display_text_line): When setting selective_rlen,
Richard M. Stallman <rms@gnu.org>
parents:
10911
diff
changeset
|
13766 invisible_p (propval, list) |
1ade2d8b0ae9
(display_text_line): When setting selective_rlen,
Richard M. Stallman <rms@gnu.org>
parents:
10911
diff
changeset
|
13767 register Lisp_Object propval; |
1ade2d8b0ae9
(display_text_line): When setting selective_rlen,
Richard M. Stallman <rms@gnu.org>
parents:
10911
diff
changeset
|
13768 Lisp_Object list; |
1ade2d8b0ae9
(display_text_line): When setting selective_rlen,
Richard M. Stallman <rms@gnu.org>
parents:
10911
diff
changeset
|
13769 { |
11066
2a3d961889b4
(invisible_p, invisible_ellipsis_p): Handle list
Richard M. Stallman <rms@gnu.org>
parents:
11065
diff
changeset
|
13770 register Lisp_Object tail, proptail; |
31338
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
13771 |
25519
5e59e2bd26b5
Use XCAR and XCDR instead of XCONS.
Gerd Moellmann <gerd@gnu.org>
parents:
25500
diff
changeset
|
13772 for (tail = list; CONSP (tail); tail = XCDR (tail)) |
10965
1ade2d8b0ae9
(display_text_line): When setting selective_rlen,
Richard M. Stallman <rms@gnu.org>
parents:
10911
diff
changeset
|
13773 { |
1ade2d8b0ae9
(display_text_line): When setting selective_rlen,
Richard M. Stallman <rms@gnu.org>
parents:
10911
diff
changeset
|
13774 register Lisp_Object tem; |
25519
5e59e2bd26b5
Use XCAR and XCDR instead of XCONS.
Gerd Moellmann <gerd@gnu.org>
parents:
25500
diff
changeset
|
13775 tem = XCAR (tail); |
10965
1ade2d8b0ae9
(display_text_line): When setting selective_rlen,
Richard M. Stallman <rms@gnu.org>
parents:
10911
diff
changeset
|
13776 if (EQ (propval, tem)) |
1ade2d8b0ae9
(display_text_line): When setting selective_rlen,
Richard M. Stallman <rms@gnu.org>
parents:
10911
diff
changeset
|
13777 return 1; |
25519
5e59e2bd26b5
Use XCAR and XCDR instead of XCONS.
Gerd Moellmann <gerd@gnu.org>
parents:
25500
diff
changeset
|
13778 if (CONSP (tem) && EQ (propval, XCAR (tem))) |
10965
1ade2d8b0ae9
(display_text_line): When setting selective_rlen,
Richard M. Stallman <rms@gnu.org>
parents:
10911
diff
changeset
|
13779 return 1; |
1ade2d8b0ae9
(display_text_line): When setting selective_rlen,
Richard M. Stallman <rms@gnu.org>
parents:
10911
diff
changeset
|
13780 } |
31338
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
13781 |
11066
2a3d961889b4
(invisible_p, invisible_ellipsis_p): Handle list
Richard M. Stallman <rms@gnu.org>
parents:
11065
diff
changeset
|
13782 if (CONSP (propval)) |
31338
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
13783 { |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
13784 for (proptail = propval; CONSP (proptail); proptail = XCDR (proptail)) |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
13785 { |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
13786 Lisp_Object propelt; |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
13787 propelt = XCAR (proptail); |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
13788 for (tail = list; CONSP (tail); tail = XCDR (tail)) |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
13789 { |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
13790 register Lisp_Object tem; |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
13791 tem = XCAR (tail); |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
13792 if (EQ (propelt, tem)) |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
13793 return 1; |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
13794 if (CONSP (tem) && EQ (propelt, XCAR (tem))) |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
13795 return 1; |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
13796 } |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
13797 } |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
13798 } |
832733dd336e
(redisplay_mode_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
31294
diff
changeset
|
13799 |
10965
1ade2d8b0ae9
(display_text_line): When setting selective_rlen,
Richard M. Stallman <rms@gnu.org>
parents:
10911
diff
changeset
|
13800 return 0; |
1ade2d8b0ae9
(display_text_line): When setting selective_rlen,
Richard M. Stallman <rms@gnu.org>
parents:
10911
diff
changeset
|
13801 } |
1ade2d8b0ae9
(display_text_line): When setting selective_rlen,
Richard M. Stallman <rms@gnu.org>
parents:
10911
diff
changeset
|
13802 |
25012 | 13803 |
13804 /* Return 1 if PROPVAL appears as the car of an element of LIST and | |
13805 the cdr of that element is non-nil. If PROPVAL is a list, check | |
13806 each element of PROPVAL in that way, and the first time some | |
13807 element is found, return 1 if the cdr of that element is non-nil. | |
13808 Otherwise return 0. This function cannot quit. */ | |
10965
1ade2d8b0ae9
(display_text_line): When setting selective_rlen,
Richard M. Stallman <rms@gnu.org>
parents:
10911
diff
changeset
|
13809 |
1ade2d8b0ae9
(display_text_line): When setting selective_rlen,
Richard M. Stallman <rms@gnu.org>
parents:
10911
diff
changeset
|
13810 int |
1ade2d8b0ae9
(display_text_line): When setting selective_rlen,
Richard M. Stallman <rms@gnu.org>
parents:
10911
diff
changeset
|
13811 invisible_ellipsis_p (propval, list) |
1ade2d8b0ae9
(display_text_line): When setting selective_rlen,
Richard M. Stallman <rms@gnu.org>
parents:
10911
diff
changeset
|
13812 register Lisp_Object propval; |
1ade2d8b0ae9
(display_text_line): When setting selective_rlen,
Richard M. Stallman <rms@gnu.org>
parents:
10911
diff
changeset
|
13813 Lisp_Object list; |
1ade2d8b0ae9
(display_text_line): When setting selective_rlen,
Richard M. Stallman <rms@gnu.org>
parents:
10911
diff
changeset
|
13814 { |
11066
2a3d961889b4
(invisible_p, invisible_ellipsis_p): Handle list
Richard M. Stallman <rms@gnu.org>
parents:
11065
diff
changeset
|
13815 register Lisp_Object tail, proptail; |
25519
5e59e2bd26b5
Use XCAR and XCDR instead of XCONS.
Gerd Moellmann <gerd@gnu.org>
parents:
25500
diff
changeset
|
13816 |
5e59e2bd26b5
Use XCAR and XCDR instead of XCONS.
Gerd Moellmann <gerd@gnu.org>
parents:
25500
diff
changeset
|
13817 for (tail = list; CONSP (tail); tail = XCDR (tail)) |
10965
1ade2d8b0ae9
(display_text_line): When setting selective_rlen,
Richard M. Stallman <rms@gnu.org>
parents:
10911
diff
changeset
|
13818 { |
1ade2d8b0ae9
(display_text_line): When setting selective_rlen,
Richard M. Stallman <rms@gnu.org>
parents:
10911
diff
changeset
|
13819 register Lisp_Object tem; |
25519
5e59e2bd26b5
Use XCAR and XCDR instead of XCONS.
Gerd Moellmann <gerd@gnu.org>
parents:
25500
diff
changeset
|
13820 tem = XCAR (tail); |
5e59e2bd26b5
Use XCAR and XCDR instead of XCONS.
Gerd Moellmann <gerd@gnu.org>
parents:
25500
diff
changeset
|
13821 if (CONSP (tem) && EQ (propval, XCAR (tem))) |
5e59e2bd26b5
Use XCAR and XCDR instead of XCONS.
Gerd Moellmann <gerd@gnu.org>
parents:
25500
diff
changeset
|
13822 return ! NILP (XCDR (tem)); |
5e59e2bd26b5
Use XCAR and XCDR instead of XCONS.
Gerd Moellmann <gerd@gnu.org>
parents:
25500
diff
changeset
|
13823 } |
5e59e2bd26b5
Use XCAR and XCDR instead of XCONS.
Gerd Moellmann <gerd@gnu.org>
parents:
25500
diff
changeset
|
13824 |
11066
2a3d961889b4
(invisible_p, invisible_ellipsis_p): Handle list
Richard M. Stallman <rms@gnu.org>
parents:
11065
diff
changeset
|
13825 if (CONSP (propval)) |
25519
5e59e2bd26b5
Use XCAR and XCDR instead of XCONS.
Gerd Moellmann <gerd@gnu.org>
parents:
25500
diff
changeset
|
13826 for (proptail = propval; CONSP (proptail); proptail = XCDR (proptail)) |
11066
2a3d961889b4
(invisible_p, invisible_ellipsis_p): Handle list
Richard M. Stallman <rms@gnu.org>
parents:
11065
diff
changeset
|
13827 { |
2a3d961889b4
(invisible_p, invisible_ellipsis_p): Handle list
Richard M. Stallman <rms@gnu.org>
parents:
11065
diff
changeset
|
13828 Lisp_Object propelt; |
25519
5e59e2bd26b5
Use XCAR and XCDR instead of XCONS.
Gerd Moellmann <gerd@gnu.org>
parents:
25500
diff
changeset
|
13829 propelt = XCAR (proptail); |
5e59e2bd26b5
Use XCAR and XCDR instead of XCONS.
Gerd Moellmann <gerd@gnu.org>
parents:
25500
diff
changeset
|
13830 for (tail = list; CONSP (tail); tail = XCDR (tail)) |
11066
2a3d961889b4
(invisible_p, invisible_ellipsis_p): Handle list
Richard M. Stallman <rms@gnu.org>
parents:
11065
diff
changeset
|
13831 { |
2a3d961889b4
(invisible_p, invisible_ellipsis_p): Handle list
Richard M. Stallman <rms@gnu.org>
parents:
11065
diff
changeset
|
13832 register Lisp_Object tem; |
25519
5e59e2bd26b5
Use XCAR and XCDR instead of XCONS.
Gerd Moellmann <gerd@gnu.org>
parents:
25500
diff
changeset
|
13833 tem = XCAR (tail); |
5e59e2bd26b5
Use XCAR and XCDR instead of XCONS.
Gerd Moellmann <gerd@gnu.org>
parents:
25500
diff
changeset
|
13834 if (CONSP (tem) && EQ (propelt, XCAR (tem))) |
5e59e2bd26b5
Use XCAR and XCDR instead of XCONS.
Gerd Moellmann <gerd@gnu.org>
parents:
25500
diff
changeset
|
13835 return ! NILP (XCDR (tem)); |
11066
2a3d961889b4
(invisible_p, invisible_ellipsis_p): Handle list
Richard M. Stallman <rms@gnu.org>
parents:
11065
diff
changeset
|
13836 } |
2a3d961889b4
(invisible_p, invisible_ellipsis_p): Handle list
Richard M. Stallman <rms@gnu.org>
parents:
11065
diff
changeset
|
13837 } |
25519
5e59e2bd26b5
Use XCAR and XCDR instead of XCONS.
Gerd Moellmann <gerd@gnu.org>
parents:
25500
diff
changeset
|
13838 |
10965
1ade2d8b0ae9
(display_text_line): When setting selective_rlen,
Richard M. Stallman <rms@gnu.org>
parents:
10911
diff
changeset
|
13839 return 0; |
1ade2d8b0ae9
(display_text_line): When setting selective_rlen,
Richard M. Stallman <rms@gnu.org>
parents:
10911
diff
changeset
|
13840 } |
25012 | 13841 |
13842 | |
10965
1ade2d8b0ae9
(display_text_line): When setting selective_rlen,
Richard M. Stallman <rms@gnu.org>
parents:
10911
diff
changeset
|
13843 |
25012 | 13844 /*********************************************************************** |
13845 Initialization | |
13846 ***********************************************************************/ | |
13847 | |
277 | 13848 void |
13849 syms_of_xdisp () | |
13850 { | |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
13851 Vwith_echo_area_save_vector = Qnil; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
13852 staticpro (&Vwith_echo_area_save_vector); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
13853 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
13854 Vmessage_stack = Qnil; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
13855 staticpro (&Vmessage_stack); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
13856 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
13857 Qinhibit_redisplay = intern ("inhibit-redisplay"); |
22543
32cfe5058f27
(Vinhibit_redisplay, Qinhibit_redisplay): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
22529
diff
changeset
|
13858 staticpro (&Qinhibit_redisplay); |
32cfe5058f27
(Vinhibit_redisplay, Qinhibit_redisplay): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
22529
diff
changeset
|
13859 |
25012 | 13860 #if GLYPH_DEBUG |
13861 defsubr (&Sdump_glyph_matrix); | |
13862 defsubr (&Sdump_glyph_row); | |
25543 | 13863 defsubr (&Sdump_tool_bar_row); |
25012 | 13864 defsubr (&Strace_redisplay_toggle); |
27540
d26783d86d5f
(Ftrace_to_stderr) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27118
diff
changeset
|
13865 defsubr (&Strace_to_stderr); |
25012 | 13866 #endif |
13867 | |
7096
a3bf30f1a408
(syms_of_xdisp): Set up Qmenu_bar_update_hook.
Richard M. Stallman <rms@gnu.org>
parents:
6896
diff
changeset
|
13868 staticpro (&Qmenu_bar_update_hook); |
a3bf30f1a408
(syms_of_xdisp): Set up Qmenu_bar_update_hook.
Richard M. Stallman <rms@gnu.org>
parents:
6896
diff
changeset
|
13869 Qmenu_bar_update_hook = intern ("menu-bar-update-hook"); |
a3bf30f1a408
(syms_of_xdisp): Set up Qmenu_bar_update_hook.
Richard M. Stallman <rms@gnu.org>
parents:
6896
diff
changeset
|
13870 |
12263
6ceecf7d1ec3
(Qoverriding_terminal_local_map): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
12171
diff
changeset
|
13871 staticpro (&Qoverriding_terminal_local_map); |
12267 | 13872 Qoverriding_terminal_local_map = intern ("overriding-terminal-local-map"); |
12263
6ceecf7d1ec3
(Qoverriding_terminal_local_map): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
12171
diff
changeset
|
13873 |
12171
1d5d8a256d88
(update_menu_bar): Use set_buffer_internal_1 to switch bufs.
Karl Heuer <kwzh@gnu.org>
parents:
12141
diff
changeset
|
13874 staticpro (&Qoverriding_local_map); |
1d5d8a256d88
(update_menu_bar): Use set_buffer_internal_1 to switch bufs.
Karl Heuer <kwzh@gnu.org>
parents:
12141
diff
changeset
|
13875 Qoverriding_local_map = intern ("overriding-local-map"); |
1d5d8a256d88
(update_menu_bar): Use set_buffer_internal_1 to switch bufs.
Karl Heuer <kwzh@gnu.org>
parents:
12141
diff
changeset
|
13876 |
13104
ea64c261c72a
(Qwindow_scroll_functions, Vwindow_scroll_functions): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
12921
diff
changeset
|
13877 staticpro (&Qwindow_scroll_functions); |
ea64c261c72a
(Qwindow_scroll_functions, Vwindow_scroll_functions): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
12921
diff
changeset
|
13878 Qwindow_scroll_functions = intern ("window-scroll-functions"); |
ea64c261c72a
(Qwindow_scroll_functions, Vwindow_scroll_functions): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
12921
diff
changeset
|
13879 |
13584
3daf8244546e
(Qredisplay_end_trigger_functions): Renamed from ..._hook.
Richard M. Stallman <rms@gnu.org>
parents:
13519
diff
changeset
|
13880 staticpro (&Qredisplay_end_trigger_functions); |
3daf8244546e
(Qredisplay_end_trigger_functions): Renamed from ..._hook.
Richard M. Stallman <rms@gnu.org>
parents:
13519
diff
changeset
|
13881 Qredisplay_end_trigger_functions = intern ("redisplay-end-trigger-functions"); |
25012 | 13882 |
21748
c423e8929f69
(Qinhibit_point_motion_hooks): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
21534
diff
changeset
|
13883 staticpro (&Qinhibit_point_motion_hooks); |
c423e8929f69
(Qinhibit_point_motion_hooks): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
21534
diff
changeset
|
13884 Qinhibit_point_motion_hooks = intern ("inhibit-point-motion-hooks"); |
c423e8929f69
(Qinhibit_point_motion_hooks): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
21534
diff
changeset
|
13885 |
28002
694ac11a3e1c
(QCdata): Moved here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
27990
diff
changeset
|
13886 QCdata = intern (":data"); |
694ac11a3e1c
(QCdata): Moved here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
27990
diff
changeset
|
13887 staticpro (&QCdata); |
25777
dabc57e3628f
(compute_window_start_on_continuation_line): Handle case
Gerd Moellmann <gerd@gnu.org>
parents:
25755
diff
changeset
|
13888 Qdisplay = intern ("display"); |
25012 | 13889 staticpro (&Qdisplay); |
13890 Qspace_width = intern ("space-width"); | |
13891 staticpro (&Qspace_width); | |
13892 Qraise = intern ("raise"); | |
13893 staticpro (&Qraise); | |
13894 Qspace = intern ("space"); | |
13895 staticpro (&Qspace); | |
25777
dabc57e3628f
(compute_window_start_on_continuation_line): Handle case
Gerd Moellmann <gerd@gnu.org>
parents:
25755
diff
changeset
|
13896 Qmargin = intern ("margin"); |
dabc57e3628f
(compute_window_start_on_continuation_line): Handle case
Gerd Moellmann <gerd@gnu.org>
parents:
25755
diff
changeset
|
13897 staticpro (&Qmargin); |
25012 | 13898 Qleft_margin = intern ("left-margin"); |
25777
dabc57e3628f
(compute_window_start_on_continuation_line): Handle case
Gerd Moellmann <gerd@gnu.org>
parents:
25755
diff
changeset
|
13899 staticpro (&Qleft_margin); |
dabc57e3628f
(compute_window_start_on_continuation_line): Handle case
Gerd Moellmann <gerd@gnu.org>
parents:
25755
diff
changeset
|
13900 Qright_margin = intern ("right-margin"); |
25012 | 13901 staticpro (&Qright_margin); |
13902 Qalign_to = intern ("align-to"); | |
13903 staticpro (&Qalign_to); | |
13904 QCalign_to = intern (":align-to"); | |
13905 staticpro (&QCalign_to); | |
13906 Qrelative_width = intern ("relative-width"); | |
13907 staticpro (&Qrelative_width); | |
13908 QCrelative_width = intern (":relative-width"); | |
13909 staticpro (&QCrelative_width); | |
13910 QCrelative_height = intern (":relative-height"); | |
13911 staticpro (&QCrelative_height); | |
13912 QCeval = intern (":eval"); | |
13913 staticpro (&QCeval); | |
25614 | 13914 Qwhen = intern ("when"); |
25777
dabc57e3628f
(compute_window_start_on_continuation_line): Handle case
Gerd Moellmann <gerd@gnu.org>
parents:
25755
diff
changeset
|
13915 staticpro (&Qwhen); |
25677
1223d6401ab2
(QCfile): Move here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
25660
diff
changeset
|
13916 QCfile = intern (":file"); |
1223d6401ab2
(QCfile): Move here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
25660
diff
changeset
|
13917 staticpro (&QCfile); |
25012 | 13918 Qfontified = intern ("fontified"); |
13919 staticpro (&Qfontified); | |
13920 Qfontification_functions = intern ("fontification-functions"); | |
13921 staticpro (&Qfontification_functions); | |
13922 Qtrailing_whitespace = intern ("trailing-whitespace"); | |
13923 staticpro (&Qtrailing_whitespace); | |
13924 Qimage = intern ("image"); | |
13925 staticpro (&Qimage); | |
29634
ac38155fbce6
(message_truncate_lines, Qmessage_truncate_lines): New
Gerd Moellmann <gerd@gnu.org>
parents:
29632
diff
changeset
|
13926 Qmessage_truncate_lines = intern ("message-truncate-lines"); |
ac38155fbce6
(message_truncate_lines, Qmessage_truncate_lines): New
Gerd Moellmann <gerd@gnu.org>
parents:
29632
diff
changeset
|
13927 staticpro (&Qmessage_truncate_lines); |
33314
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
13928 Qgrow_only = intern ("grow-only"); |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
13929 staticpro (&Qgrow_only); |
25012 | 13930 |
25777
dabc57e3628f
(compute_window_start_on_continuation_line): Handle case
Gerd Moellmann <gerd@gnu.org>
parents:
25755
diff
changeset
|
13931 last_arrow_position = Qnil; |
dabc57e3628f
(compute_window_start_on_continuation_line): Handle case
Gerd Moellmann <gerd@gnu.org>
parents:
25755
diff
changeset
|
13932 last_arrow_string = Qnil; |
277 | 13933 staticpro (&last_arrow_position); |
13934 staticpro (&last_arrow_string); | |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
13935 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
13936 echo_buffer[0] = echo_buffer[1] = Qnil; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
13937 staticpro (&echo_buffer[0]); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
13938 staticpro (&echo_buffer[1]); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
13939 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
13940 echo_area_buffer[0] = echo_area_buffer[1] = Qnil; |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
13941 staticpro (&echo_area_buffer[0]); |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
13942 staticpro (&echo_area_buffer[1]); |
277 | 13943 |
30728
a87e28789082
(Vmessages_buffer_name): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30721
diff
changeset
|
13944 Vmessages_buffer_name = build_string ("*Messages*"); |
a87e28789082
(Vmessages_buffer_name): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30721
diff
changeset
|
13945 staticpro (&Vmessages_buffer_name); |
a87e28789082
(Vmessages_buffer_name): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30721
diff
changeset
|
13946 |
25305
273b3c17ce68
(Qshow_trailing_whitespace): Removed.
Gerd Moellmann <gerd@gnu.org>
parents:
25258
diff
changeset
|
13947 DEFVAR_LISP ("show-trailing-whitespace", &Vshow_trailing_whitespace, |
273b3c17ce68
(Qshow_trailing_whitespace): Removed.
Gerd Moellmann <gerd@gnu.org>
parents:
25258
diff
changeset
|
13948 "Non-nil means highlight trailing whitespace.\n\ |
273b3c17ce68
(Qshow_trailing_whitespace): Removed.
Gerd Moellmann <gerd@gnu.org>
parents:
25258
diff
changeset
|
13949 The face used for trailing whitespace is `trailing-whitespace'."); |
273b3c17ce68
(Qshow_trailing_whitespace): Removed.
Gerd Moellmann <gerd@gnu.org>
parents:
25258
diff
changeset
|
13950 Vshow_trailing_whitespace = Qnil; |
273b3c17ce68
(Qshow_trailing_whitespace): Removed.
Gerd Moellmann <gerd@gnu.org>
parents:
25258
diff
changeset
|
13951 |
22543
32cfe5058f27
(Vinhibit_redisplay, Qinhibit_redisplay): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
22529
diff
changeset
|
13952 DEFVAR_LISP ("inhibit-redisplay", &Vinhibit_redisplay, |
32cfe5058f27
(Vinhibit_redisplay, Qinhibit_redisplay): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
22529
diff
changeset
|
13953 "Non-nil means don't actually do any redisplay.\n\ |
32cfe5058f27
(Vinhibit_redisplay, Qinhibit_redisplay): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
22529
diff
changeset
|
13954 This is used for internal purposes."); |
32cfe5058f27
(Vinhibit_redisplay, Qinhibit_redisplay): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
22529
diff
changeset
|
13955 Vinhibit_redisplay = Qnil; |
32cfe5058f27
(Vinhibit_redisplay, Qinhibit_redisplay): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
22529
diff
changeset
|
13956 |
277 | 13957 DEFVAR_LISP ("global-mode-string", &Vglobal_mode_string, |
782
a6d00bdb2b60
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
781
diff
changeset
|
13958 "String (or mode line construct) included (normally) in `mode-line-format'."); |
277 | 13959 Vglobal_mode_string = Qnil; |
13960 | |
13961 DEFVAR_LISP ("overlay-arrow-position", &Voverlay_arrow_position, | |
13962 "Marker for where to display an arrow on top of the buffer text.\n\ | |
13963 This must be the beginning of a line in order to work.\n\ | |
13964 See also `overlay-arrow-string'."); | |
13965 Voverlay_arrow_position = Qnil; | |
13966 | |
13967 DEFVAR_LISP ("overlay-arrow-string", &Voverlay_arrow_string, | |
13968 "String to display as an arrow. See also `overlay-arrow-position'."); | |
13969 Voverlay_arrow_string = Qnil; | |
13970 | |
13971 DEFVAR_INT ("scroll-step", &scroll_step, | |
13972 "*The number of lines to try scrolling a window by when point moves out.\n\ | |
769 | 13973 If that fails to bring point back on frame, point is centered instead.\n\ |
33490
b714a06b99ec
(try_scrolling): Set scroll_max to max of scroll_* args
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33462
diff
changeset
|
13974 If this is zero, point is always centered after it moves off frame.\n\ |
b714a06b99ec
(try_scrolling): Set scroll_max to max of scroll_* args
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33462
diff
changeset
|
13975 If you want scrolling to always be a line at a time, you should set\n\ |
b714a06b99ec
(try_scrolling): Set scroll_max to max of scroll_* args
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33462
diff
changeset
|
13976 `scroll-conservatively' to a large value rather than set this to 1."); |
277 | 13977 |
16527
2337ed73b33e
(scroll_conservatively): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16463
diff
changeset
|
13978 DEFVAR_INT ("scroll-conservatively", &scroll_conservatively, |
27681
2e811e86c10b
(syms_of_xdisp): Doc fix for scroll-conservatively.
Gerd Moellmann <gerd@gnu.org>
parents:
27634
diff
changeset
|
13979 "*Scroll up to this many lines, to bring point back on screen.\n\ |
2e811e86c10b
(syms_of_xdisp): Doc fix for scroll-conservatively.
Gerd Moellmann <gerd@gnu.org>
parents:
27634
diff
changeset
|
13980 A value of zero means to scroll the text to center point vertically\n\ |
2e811e86c10b
(syms_of_xdisp): Doc fix for scroll-conservatively.
Gerd Moellmann <gerd@gnu.org>
parents:
27634
diff
changeset
|
13981 in the window."); |
16527
2337ed73b33e
(scroll_conservatively): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16463
diff
changeset
|
13982 scroll_conservatively = 0; |
2337ed73b33e
(scroll_conservatively): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16463
diff
changeset
|
13983 |
16560
8b1dd6f2222d
(scroll_margin): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16554
diff
changeset
|
13984 DEFVAR_INT ("scroll-margin", &scroll_margin, |
8b1dd6f2222d
(scroll_margin): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16554
diff
changeset
|
13985 "*Number of lines of margin at the top and bottom of a window.\n\ |
8b1dd6f2222d
(scroll_margin): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16554
diff
changeset
|
13986 Recenter the window whenever point gets within this many lines\n\ |
8b1dd6f2222d
(scroll_margin): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16554
diff
changeset
|
13987 of the top or bottom of the window."); |
8b1dd6f2222d
(scroll_margin): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16554
diff
changeset
|
13988 scroll_margin = 0; |
8b1dd6f2222d
(scroll_margin): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16554
diff
changeset
|
13989 |
25012 | 13990 #if GLYPH_DEBUG |
277 | 13991 DEFVAR_INT ("debug-end-pos", &debug_end_pos, "Don't ask"); |
25012 | 13992 #endif |
277 | 13993 |
13994 DEFVAR_BOOL ("truncate-partial-width-windows", | |
13995 &truncate_partial_width_windows, | |
769 | 13996 "*Non-nil means truncate lines in all windows less than full frame wide."); |
277 | 13997 truncate_partial_width_windows = 1; |
13998 | |
13999 DEFVAR_BOOL ("mode-line-inverse-video", &mode_line_inverse_video, | |
33840
e8b1a1d28ff4
(display_menu_bar, display_mode_line): Change the way we
Miles Bader <miles@gnu.org>
parents:
33824
diff
changeset
|
14000 "nil means display the mode-line/header-line/menu-bar in the default face.\n\ |
e8b1a1d28ff4
(display_menu_bar, display_mode_line): Change the way we
Miles Bader <miles@gnu.org>
parents:
33824
diff
changeset
|
14001 Any other value means to use the appropriate face, `mode-line',\n\ |
e8b1a1d28ff4
(display_menu_bar, display_mode_line): Change the way we
Miles Bader <miles@gnu.org>
parents:
33824
diff
changeset
|
14002 `header-line', or `menu' respectively.\n\ |
33721
c45f067779c1
(syms_of_xdisp): `mode-line-inverse-video' defualts to nil.
Miles Bader <miles@gnu.org>
parents:
33600
diff
changeset
|
14003 \n\ |
33840
e8b1a1d28ff4
(display_menu_bar, display_mode_line): Change the way we
Miles Bader <miles@gnu.org>
parents:
33824
diff
changeset
|
14004 This variable is deprecated; please change the above faces instead."); |
e8b1a1d28ff4
(display_menu_bar, display_mode_line): Change the way we
Miles Bader <miles@gnu.org>
parents:
33824
diff
changeset
|
14005 mode_line_inverse_video = 1; |
2303
00e3cc81c1be
(decode_mode_spec): Handle `%l'.
Richard M. Stallman <rms@gnu.org>
parents:
2252
diff
changeset
|
14006 |
29632
96d83d5a48b3
(Vline_number_display_limit): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
29515
diff
changeset
|
14007 DEFVAR_LISP ("line-number-display-limit", &Vline_number_display_limit, |
25012 | 14008 "*Maximum buffer size for which line number should be displayed.\n\ |
20997 | 14009 If the buffer is bigger than this, the line number does not appear\n\ |
29632
96d83d5a48b3
(Vline_number_display_limit): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
29515
diff
changeset
|
14010 in the mode line. A value of nil means no limit."); |
96d83d5a48b3
(Vline_number_display_limit): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
29515
diff
changeset
|
14011 Vline_number_display_limit = Qnil; |
96d83d5a48b3
(Vline_number_display_limit): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
29515
diff
changeset
|
14012 |
96d83d5a48b3
(Vline_number_display_limit): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
29515
diff
changeset
|
14013 DEFVAR_INT ("line-number-display-limit-width", |
96d83d5a48b3
(Vline_number_display_limit): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
29515
diff
changeset
|
14014 &line_number_display_limit_width, |
25258
8eefac3ecebf
(line_number_display_limit_width): New var.
Karl Heuer <kwzh@gnu.org>
parents:
25243
diff
changeset
|
14015 "*Maximum line width (in characters) for line number display.\n\ |
8eefac3ecebf
(line_number_display_limit_width): New var.
Karl Heuer <kwzh@gnu.org>
parents:
25243
diff
changeset
|
14016 If the average length of the lines near point is bigger than this, then the\n\ |
8eefac3ecebf
(line_number_display_limit_width): New var.
Karl Heuer <kwzh@gnu.org>
parents:
25243
diff
changeset
|
14017 line number may be omitted from the mode line."); |
8eefac3ecebf
(line_number_display_limit_width): New var.
Karl Heuer <kwzh@gnu.org>
parents:
25243
diff
changeset
|
14018 line_number_display_limit_width = 200; |
8eefac3ecebf
(line_number_display_limit_width): New var.
Karl Heuer <kwzh@gnu.org>
parents:
25243
diff
changeset
|
14019 |
3265
80f57ae8d44e
(syms_of_xdisp): Make highlight-nonselected-windows Lisp var.
Richard M. Stallman <rms@gnu.org>
parents:
3165
diff
changeset
|
14020 DEFVAR_BOOL ("highlight-nonselected-windows", &highlight_nonselected_windows, |
80f57ae8d44e
(syms_of_xdisp): Make highlight-nonselected-windows Lisp var.
Richard M. Stallman <rms@gnu.org>
parents:
3165
diff
changeset
|
14021 "*Non-nil means highlight region even in nonselected windows."); |
17698
d9ba96fed821
(mark_window_display_accurate, redisplay_internal):
Richard M. Stallman <rms@gnu.org>
parents:
17679
diff
changeset
|
14022 highlight_nonselected_windows = 0; |
8772
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
14023 |
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
14024 DEFVAR_BOOL ("multiple-frames", &multiple_frames, |
11767
4166c8ea623d
(x_consider_frame_title): When setting multiple_frames,
Karl Heuer <kwzh@gnu.org>
parents:
11761
diff
changeset
|
14025 "Non-nil if more than one frame is visible on this display.\n\ |
4166c8ea623d
(x_consider_frame_title): When setting multiple_frames,
Karl Heuer <kwzh@gnu.org>
parents:
11761
diff
changeset
|
14026 Minibuffer-only frames don't count, but iconified frames do.\n\ |
12684
74e59068a948
(update_menu_bar): Pass new arg to set_frame_menubar.
Richard M. Stallman <rms@gnu.org>
parents:
12629
diff
changeset
|
14027 This variable is not guaranteed to be accurate except while processing\n\ |
74e59068a948
(update_menu_bar): Pass new arg to set_frame_menubar.
Richard M. Stallman <rms@gnu.org>
parents:
12629
diff
changeset
|
14028 `frame-title-format' and `icon-title-format'."); |
8772
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
14029 |
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
14030 DEFVAR_LISP ("frame-title-format", &Vframe_title_format, |
25012 | 14031 "Template for displaying the title bar of visible frames.\n\ |
8772
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
14032 \(Assuming the window manager supports this feature.)\n\ |
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
14033 This variable has the same structure as `mode-line-format' (which see),\n\ |
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
14034 and is used only on frames for which no explicit name has been set\n\ |
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
14035 \(see `modify-frame-parameters')."); |
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
14036 DEFVAR_LISP ("icon-title-format", &Vicon_title_format, |
25012 | 14037 "Template for displaying the title bar of an iconified frame.\n\ |
8772
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
14038 \(Assuming the window manager supports this feature.)\n\ |
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
14039 This variable has the same structure as `mode-line-format' (which see),\n\ |
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
14040 and is used only on frames for which no explicit name has been set\n\ |
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
14041 \(see `modify-frame-parameters')."); |
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
14042 Vicon_title_format |
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
14043 = Vframe_title_format |
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
14044 = Fcons (intern ("multiple-frames"), |
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
14045 Fcons (build_string ("%b"), |
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
14046 Fcons (Fcons (build_string (""), |
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
14047 Fcons (intern ("invocation-name"), |
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
14048 Fcons (build_string ("@"), |
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
14049 Fcons (intern ("system-name"), |
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
14050 Qnil)))), |
c0a21329d9a7
(multiple_frames, Vframe_title_format, Vicon_title_format): New variables.
Karl Heuer <kwzh@gnu.org>
parents:
8684
diff
changeset
|
14051 Qnil))); |
10393 | 14052 |
14053 DEFVAR_LISP ("message-log-max", &Vmessage_log_max, | |
14054 "Maximum number of lines to keep in the message log buffer.\n\ | |
14055 If nil, disable message logging. If t, log messages but don't truncate\n\ | |
14056 the buffer when it becomes large."); | |
14057 XSETFASTINT (Vmessage_log_max, 50); | |
10667
bacef13bc2ca
(Vwindow_size_change_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10641
diff
changeset
|
14058 |
bacef13bc2ca
(Vwindow_size_change_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10641
diff
changeset
|
14059 DEFVAR_LISP ("window-size-change-functions", &Vwindow_size_change_functions, |
bacef13bc2ca
(Vwindow_size_change_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10641
diff
changeset
|
14060 "Functions called before redisplay, if window sizes have changed.\n\ |
bacef13bc2ca
(Vwindow_size_change_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10641
diff
changeset
|
14061 The value should be a list of functions that take one argument.\n\ |
bacef13bc2ca
(Vwindow_size_change_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10641
diff
changeset
|
14062 Just before redisplay, for each frame, if any of its windows have changed\n\ |
bacef13bc2ca
(Vwindow_size_change_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10641
diff
changeset
|
14063 size since the last redisplay, or have been split or deleted,\n\ |
bacef13bc2ca
(Vwindow_size_change_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10641
diff
changeset
|
14064 all the functions in the list are called, with the frame as argument."); |
bacef13bc2ca
(Vwindow_size_change_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10641
diff
changeset
|
14065 Vwindow_size_change_functions = Qnil; |
13104
ea64c261c72a
(Qwindow_scroll_functions, Vwindow_scroll_functions): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
12921
diff
changeset
|
14066 |
ea64c261c72a
(Qwindow_scroll_functions, Vwindow_scroll_functions): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
12921
diff
changeset
|
14067 DEFVAR_LISP ("window-scroll-functions", &Vwindow_scroll_functions, |
25012 | 14068 "List of Functions to call before redisplaying a window with scrolling.\n\ |
13104
ea64c261c72a
(Qwindow_scroll_functions, Vwindow_scroll_functions): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
12921
diff
changeset
|
14069 Each function is called with two arguments, the window\n\ |
13196
95fbb5bd0a5a
(syms_of_xdisp): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
13188
diff
changeset
|
14070 and its new display-start position. Note that the value of `window-end'\n\ |
95fbb5bd0a5a
(syms_of_xdisp): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
13188
diff
changeset
|
14071 is not valid when these functions are called."); |
13104
ea64c261c72a
(Qwindow_scroll_functions, Vwindow_scroll_functions): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
12921
diff
changeset
|
14072 Vwindow_scroll_functions = Qnil; |
25012 | 14073 |
25543 | 14074 DEFVAR_BOOL ("auto-resize-tool-bars", &auto_resize_tool_bars_p, |
14075 "*Non-nil means automatically resize tool-bars.\n\ | |
14076 This increases a tool-bar's height if not all tool-bar items are visible.\n\ | |
14077 It decreases a tool-bar's height when it would display blank lines\n\ | |
25012 | 14078 otherwise."); |
25543 | 14079 auto_resize_tool_bars_p = 1; |
14080 | |
14081 DEFVAR_BOOL ("auto-raise-tool-bar-buttons", &auto_raise_tool_bar_buttons_p, | |
14082 "*Non-nil means raise tool-bar buttons when the mouse moves over them."); | |
14083 auto_raise_tool_bar_buttons_p = 1; | |
14084 | |
14085 DEFVAR_INT ("tool-bar-button-margin", &tool_bar_button_margin, | |
14086 "*Margin around tool-bar buttons in pixels."); | |
14087 tool_bar_button_margin = 1; | |
14088 | |
14089 DEFVAR_INT ("tool-bar-button-relief", &tool_bar_button_relief, | |
14090 "Relief thickness of tool-bar buttons."); | |
14091 tool_bar_button_relief = 3; | |
25012 | 14092 |
14093 DEFVAR_LISP ("fontification-functions", &Vfontification_functions, | |
14094 "List of functions to call to fontify regions of text.\n\ | |
14095 Each function is called with one argument POS. Functions must\n\ | |
14096 fontify a region starting at POS in the current buffer, and give\n\ | |
14097 fontified regions the property `fontified'.\n\ | |
14098 This variable automatically becomes buffer-local when set."); | |
14099 Vfontification_functions = Qnil; | |
33824
09db0c6cb714
(syms_of_xdisp): Make fontification-functions buffer-local.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33762
diff
changeset
|
14100 Fmake_variable_buffer_local (Qfontification_functions); |
24676
ba5632c9721a
(display_text_line): Convert unibyte char to multibyte
Andrew Innes <andrewi@gnu.org>
parents:
24557
diff
changeset
|
14101 |
ba5632c9721a
(display_text_line): Convert unibyte char to multibyte
Andrew Innes <andrewi@gnu.org>
parents:
24557
diff
changeset
|
14102 DEFVAR_BOOL ("unibyte-display-via-language-environment", |
25012 | 14103 &unibyte_display_via_language_environment, |
14104 "*Non-nil means display unibyte text according to language environment.\n\ | |
24676
ba5632c9721a
(display_text_line): Convert unibyte char to multibyte
Andrew Innes <andrewi@gnu.org>
parents:
24557
diff
changeset
|
14105 Specifically this means that unibyte non-ASCII characters\n\ |
ba5632c9721a
(display_text_line): Convert unibyte char to multibyte
Andrew Innes <andrewi@gnu.org>
parents:
24557
diff
changeset
|
14106 are displayed by converting them to the equivalent multibyte characters\n\ |
ba5632c9721a
(display_text_line): Convert unibyte char to multibyte
Andrew Innes <andrewi@gnu.org>
parents:
24557
diff
changeset
|
14107 according to the current language environment. As a result, they are\n\ |
ba5632c9721a
(display_text_line): Convert unibyte char to multibyte
Andrew Innes <andrewi@gnu.org>
parents:
24557
diff
changeset
|
14108 displayed according to the current fontset."); |
ba5632c9721a
(display_text_line): Convert unibyte char to multibyte
Andrew Innes <andrewi@gnu.org>
parents:
24557
diff
changeset
|
14109 unibyte_display_via_language_environment = 0; |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
14110 |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
14111 DEFVAR_LISP ("max-mini-window-height", &Vmax_mini_window_height, |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
14112 "*Maximum height for resizing mini-windows.\n\ |
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
14113 If a float, it specifies a fraction of the mini-window frame's height.\n\ |
33314
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
14114 If an integer, it specifies a number of lines."); |
25358
9747bbf3e480
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25316
diff
changeset
|
14115 Vmax_mini_window_height = make_float (0.25); |
33314
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
14116 |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
14117 DEFVAR_LISP ("resize-mini-windows", &Vresize_mini_windows, |
34844 | 14118 "*How to resize mini-windows.\n\ |
33314
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
14119 A value of nil means don't automatically resize mini-windows.\n\ |
34844 | 14120 A value of t means resize them to fit the text displayed in them.\n\ |
33314
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
14121 A value of `grow-only', the default, means let mini-windows grow\n\ |
34844 | 14122 only, until their display becomes empty, at which point the windows\n\ |
14123 go back to their normal size."); | |
33314
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
14124 Vresize_mini_windows = Qgrow_only; |
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
14125 |
27843
d401b5066063
(cursor_in_non_selected_windows): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
27721
diff
changeset
|
14126 DEFVAR_BOOL ("cursor-in-non-selected-windows", |
34847
67e70bac26c6
(syms_of_xdisp): Fix last change.
Eli Zaretskii <eliz@gnu.org>
parents:
34844
diff
changeset
|
14127 &cursor_in_non_selected_windows, |
27843
d401b5066063
(cursor_in_non_selected_windows): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
27721
diff
changeset
|
14128 "*Non-nil means display a hollow cursor in non-selected windows.\n\ |
d401b5066063
(cursor_in_non_selected_windows): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
27721
diff
changeset
|
14129 Nil means don't display a cursor there."); |
d401b5066063
(cursor_in_non_selected_windows): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
27721
diff
changeset
|
14130 cursor_in_non_selected_windows = 1; |
28692
a22cc42e941d
(init_iterator): Set iterator's extra_line_spacing
Gerd Moellmann <gerd@gnu.org>
parents:
28652
diff
changeset
|
14131 |
a22cc42e941d
(init_iterator): Set iterator's extra_line_spacing
Gerd Moellmann <gerd@gnu.org>
parents:
28652
diff
changeset
|
14132 DEFVAR_BOOL ("automatic-hscrolling", &automatic_hscrolling_p, |
a22cc42e941d
(init_iterator): Set iterator's extra_line_spacing
Gerd Moellmann <gerd@gnu.org>
parents:
28652
diff
changeset
|
14133 "*Non-nil means scroll the display automatically to make point visible."); |
a22cc42e941d
(init_iterator): Set iterator's extra_line_spacing
Gerd Moellmann <gerd@gnu.org>
parents:
28652
diff
changeset
|
14134 automatic_hscrolling_p = 1; |
28984
540ca0531c77
(Vimage_types): Moved here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
28932
diff
changeset
|
14135 |
540ca0531c77
(Vimage_types): Moved here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
28932
diff
changeset
|
14136 DEFVAR_LISP ("image-types", &Vimage_types, |
29634
ac38155fbce6
(message_truncate_lines, Qmessage_truncate_lines): New
Gerd Moellmann <gerd@gnu.org>
parents:
29632
diff
changeset
|
14137 "List of supported image types.\n\ |
28984
540ca0531c77
(Vimage_types): Moved here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
28932
diff
changeset
|
14138 Each element of the list is a symbol for a supported image type."); |
540ca0531c77
(Vimage_types): Moved here from xfns.c.
Gerd Moellmann <gerd@gnu.org>
parents:
28932
diff
changeset
|
14139 Vimage_types = Qnil; |
29634
ac38155fbce6
(message_truncate_lines, Qmessage_truncate_lines): New
Gerd Moellmann <gerd@gnu.org>
parents:
29632
diff
changeset
|
14140 |
ac38155fbce6
(message_truncate_lines, Qmessage_truncate_lines): New
Gerd Moellmann <gerd@gnu.org>
parents:
29632
diff
changeset
|
14141 DEFVAR_BOOL ("message-truncate-lines", &message_truncate_lines, |
ac38155fbce6
(message_truncate_lines, Qmessage_truncate_lines): New
Gerd Moellmann <gerd@gnu.org>
parents:
29632
diff
changeset
|
14142 "If non-nil, messages are truncated instead of resizing the echo area.\n\ |
ac38155fbce6
(message_truncate_lines, Qmessage_truncate_lines): New
Gerd Moellmann <gerd@gnu.org>
parents:
29632
diff
changeset
|
14143 Bind this around calls to `message' to let it take effect."); |
ac38155fbce6
(message_truncate_lines, Qmessage_truncate_lines): New
Gerd Moellmann <gerd@gnu.org>
parents:
29632
diff
changeset
|
14144 message_truncate_lines = 0; |
31845
4bdcc0f0232f
(syms_of_xdisp): Defvar Vmenu_bar_update_hook to provide
Dave Love <fx@gnu.org>
parents:
31826
diff
changeset
|
14145 |
4bdcc0f0232f
(syms_of_xdisp): Defvar Vmenu_bar_update_hook to provide
Dave Love <fx@gnu.org>
parents:
31826
diff
changeset
|
14146 DEFVAR_LISP ("menu-bar-update-hook", &Vmenu_bar_update_hook, |
4bdcc0f0232f
(syms_of_xdisp): Defvar Vmenu_bar_update_hook to provide
Dave Love <fx@gnu.org>
parents:
31826
diff
changeset
|
14147 "Normal hook run for clicks on menu bar, before displaying a submenu.\n\ |
4bdcc0f0232f
(syms_of_xdisp): Defvar Vmenu_bar_update_hook to provide
Dave Love <fx@gnu.org>
parents:
31826
diff
changeset
|
14148 Can be used to update submenus whose contents should vary."); |
33314
d09fc097a22d
(syms_of_xdisp): Change doc of max-mini-window-height.
Gerd Moellmann <gerd@gnu.org>
parents:
33099
diff
changeset
|
14149 Vmenu_bar_update_hook = Qnil; |
277 | 14150 } |
14151 | |
25012 | 14152 |
14153 /* Initialize this module when Emacs starts. */ | |
14154 | |
21514 | 14155 void |
277 | 14156 init_xdisp () |
14157 { | |
14158 Lisp_Object root_window; | |
25012 | 14159 struct window *mini_w; |
14160 | |
33462
d8cd8e1bc659
(current_mode_line_height, current_header_line_height):
Gerd Moellmann <gerd@gnu.org>
parents:
33453
diff
changeset
|
14161 current_header_line_height = current_mode_line_height = -1; |
d8cd8e1bc659
(current_mode_line_height, current_header_line_height):
Gerd Moellmann <gerd@gnu.org>
parents:
33453
diff
changeset
|
14162 |
25012 | 14163 CHARPOS (this_line_start_pos) = 0; |
277 | 14164 |
14165 mini_w = XWINDOW (minibuf_window); | |
1017
d42877206c0a
* xdisp.c (display_mode_line): Use x_implicitly_set_name here.
Jim Blandy <jimb@redhat.com>
parents:
973
diff
changeset
|
14166 root_window = FRAME_ROOT_WINDOW (XFRAME (WINDOW_FRAME (mini_w))); |
277 | 14167 |
14168 if (!noninteractive) | |
14169 { | |
25012 | 14170 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (root_window))); |
14171 int i; | |
14172 | |
14173 XSETFASTINT (XWINDOW (root_window)->top, FRAME_TOP_MARGIN (f)); | |
18458
96905485f262
(init_xdisp): Pay attention to FRAME_MENU_BAR_LINES.
Richard M. Stallman <rms@gnu.org>
parents:
18184
diff
changeset
|
14174 set_window_height (root_window, |
25012 | 14175 FRAME_HEIGHT (f) - 1 - FRAME_TOP_MARGIN (f), |
18458
96905485f262
(init_xdisp): Pay attention to FRAME_MENU_BAR_LINES.
Richard M. Stallman <rms@gnu.org>
parents:
18184
diff
changeset
|
14176 0); |
9325
6f07f6dfe1ee
(redisplay, mark_window_display_accurate, redisplay_window, try_window,
Karl Heuer <kwzh@gnu.org>
parents:
9283
diff
changeset
|
14177 XSETFASTINT (mini_w->top, FRAME_HEIGHT (f) - 1); |
277 | 14178 set_window_height (minibuf_window, 1, 0); |
14179 | |
9325
6f07f6dfe1ee
(redisplay, mark_window_display_accurate, redisplay_window, try_window,
Karl Heuer <kwzh@gnu.org>
parents:
9283
diff
changeset
|
14180 XSETFASTINT (XWINDOW (root_window)->width, FRAME_WIDTH (f)); |
6f07f6dfe1ee
(redisplay, mark_window_display_accurate, redisplay_window, try_window,
Karl Heuer <kwzh@gnu.org>
parents:
9283
diff
changeset
|
14181 XSETFASTINT (mini_w->width, FRAME_WIDTH (f)); |
25012 | 14182 |
14183 scratch_glyph_row.glyphs[TEXT_AREA] = scratch_glyphs; | |
14184 scratch_glyph_row.glyphs[TEXT_AREA + 1] | |
14185 = scratch_glyphs + MAX_SCRATCH_GLYPHS; | |
14186 | |
14187 /* The default ellipsis glyphs `...'. */ | |
14188 for (i = 0; i < 3; ++i) | |
14189 XSETFASTINT (default_invis_vector[i], '.'); | |
14190 } | |
14191 | |
14192 #ifdef HAVE_WINDOW_SYSTEM | |
14193 { | |
14194 /* Allocate the buffer for frame titles. */ | |
14195 int size = 100; | |
14196 frame_title_buf = (char *) xmalloc (size); | |
14197 frame_title_buf_end = frame_title_buf + size; | |
14198 frame_title_ptr = NULL; | |
14199 } | |
14200 #endif /* HAVE_WINDOW_SYSTEM */ | |
31876
de16d989722a
(help_echo_showing_p): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31849
diff
changeset
|
14201 |
de16d989722a
(help_echo_showing_p): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31849
diff
changeset
|
14202 help_echo_showing_p = 0; |
de16d989722a
(help_echo_showing_p): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31849
diff
changeset
|
14203 } |
de16d989722a
(help_echo_showing_p): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31849
diff
changeset
|
14204 |
de16d989722a
(help_echo_showing_p): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31849
diff
changeset
|
14205 |