xdisp.c (reseat_1): Make the information stored in it->cmp_it invalidate.
[bpt/emacs.git] / src / indent.c
CommitLineData
993b6404 1/* Indentation functions.
acaf905b 2 Copyright (C) 1985-1988, 1993-1995, 1998, 2000-2012
8cabe764 3 Free Software Foundation, Inc.
993b6404
JB
4
5This file is part of GNU Emacs.
6
9ec0b715 7GNU Emacs is free software: you can redistribute it and/or modify
993b6404 8it under the terms of the GNU General Public License as published by
9ec0b715
GM
9the Free Software Foundation, either version 3 of the License, or
10(at your option) any later version.
993b6404
JB
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
9ec0b715 18along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
993b6404 19
18160b98 20#include <config.h>
4d553a13
KL
21#include <stdio.h>
22
993b6404 23#include "lisp.h"
f6ed712f 24#include "character.h"
e5560ff7 25#include "buffer.h"
fb911777 26#include "category.h"
d6721dda 27#include "composite.h"
993b6404 28#include "indent.h"
2538fae4 29#include "keyboard.h"
502b9b64 30#include "frame.h"
993b6404
JB
31#include "window.h"
32#include "termchar.h"
993b6404 33#include "disptab.h"
5a05d3d2 34#include "intervals.h"
d6721dda 35#include "dispextern.h"
0aa01123 36#include "region-cache.h"
993b6404 37
993b6404
JB
38#define CR 015
39
79c2a4fc 40/* These three values memorize the current column to avoid recalculation. */
88c6e37e
GM
41
42/* Last value returned by current_column.
43 Some things in set last_known_column_point to -1
79c2a4fc 44 to mark the memorized value as invalid. */
88c6e37e 45
d311d28c 46static ptrdiff_t last_known_column;
88c6e37e
GM
47
48/* Value of point when current_column was called. */
49
d311d28c 50ptrdiff_t last_known_column_point;
88c6e37e
GM
51
52/* Value of MODIFF when current_column was called. */
53
d311d28c 54static EMACS_INT last_known_column_modified;
993b6404 55
d311d28c
PE
56static ptrdiff_t current_column_1 (void);
57static ptrdiff_t position_indentation (ptrdiff_t);
82d593eb 58
a997a7ca
KH
59/* Cache of beginning of line found by the last call of
60 current_column. */
88c6e37e 61
d311d28c 62static ptrdiff_t current_column_bol_cache;
a997a7ca 63
993b6404
JB
64/* Get the display table to use for the current buffer. */
65
d44f12b4 66struct Lisp_Char_Table *
971de7fb 67buffer_display_table (void)
993b6404
JB
68{
69 Lisp_Object thisbuf;
70
4b4deea2 71 thisbuf = BVAR (current_buffer, display_table);
d44f12b4
RS
72 if (DISP_TABLE_P (thisbuf))
73 return XCHAR_TABLE (thisbuf);
74 if (DISP_TABLE_P (Vstandard_display_table))
75 return XCHAR_TABLE (Vstandard_display_table);
993b6404
JB
76 return 0;
77}
78\f
0aa01123
JB
79/* Width run cache considerations. */
80
81/* Return the width of character C under display table DP. */
f845b8b2 82
0aa01123 83static int
971de7fb 84character_width (int c, struct Lisp_Char_Table *dp)
0aa01123
JB
85{
86 Lisp_Object elt;
87
88 /* These width computations were determined by examining the cases
89 in display_text_line. */
90
f845b8b2 91 /* Everything can be handled by the display table, if it's
0aa01123 92 present and the element is right. */
f845b8b2 93 if (dp && (elt = DISP_CHAR_VECTOR (dp, c), VECTORP (elt)))
77b37c05 94 return ASIZE (elt);
0aa01123 95
f845b8b2
RS
96 /* Some characters are special. */
97 if (c == '\n' || c == '\t' || c == '\015')
98 return 0;
99
100 /* Printing characters have width 1. */
0aa01123
JB
101 else if (c >= 040 && c < 0177)
102 return 1;
103
104 /* Everybody else (control characters, metacharacters) has other
105 widths. We could return their actual widths here, but they
106 depend on things like ctl_arrow and crud like that, and they're
107 not very common at all. So we'll just claim we don't know their
108 widths. */
109 else
110 return 0;
111}
112
e0f24100 113/* Return true if the display table DISPTAB specifies the same widths
0aa01123
JB
114 for characters as WIDTHTAB. We use this to decide when to
115 invalidate the buffer's width_run_cache. */
88c6e37e 116
578098f3 117bool
971de7fb 118disptab_matches_widthtab (struct Lisp_Char_Table *disptab, struct Lisp_Vector *widthtab)
0aa01123
JB
119{
120 int i;
121
eab3844f 122 if (widthtab->header.size != 256)
1088b922 123 emacs_abort ();
0aa01123
JB
124
125 for (i = 0; i < 256; i++)
126 if (character_width (i, disptab)
127 != XFASTINT (widthtab->contents[i]))
128 return 0;
129
130 return 1;
2ff4775b 131}
0aa01123
JB
132
133/* Recompute BUF's width table, using the display table DISPTAB. */
88c6e37e 134
0aa01123 135void
971de7fb 136recompute_width_table (struct buffer *buf, struct Lisp_Char_Table *disptab)
0aa01123
JB
137{
138 int i;
228a2e1a 139 struct Lisp_Vector *widthtab;
0aa01123 140
4b4deea2 141 if (!VECTORP (BVAR (buf, width_table)))
39eb03f1 142 bset_width_table (buf, Fmake_vector (make_number (256), make_number (0)));
4b4deea2 143 widthtab = XVECTOR (BVAR (buf, width_table));
eab3844f 144 if (widthtab->header.size != 256)
1088b922 145 emacs_abort ();
0aa01123
JB
146
147 for (i = 0; i < 256; i++)
228a2e1a 148 XSETFASTINT (widthtab->contents[i], character_width (i, disptab));
0aa01123
JB
149}
150
151/* Allocate or free the width run cache, as requested by the current
152 state of current_buffer's cache_long_line_scans variable. */
88c6e37e 153
0aa01123 154static void
971de7fb 155width_run_cache_on_off (void)
0aa01123 156{
4b4deea2 157 if (NILP (BVAR (current_buffer, cache_long_line_scans))
a997a7ca
KH
158 /* And, for the moment, this feature doesn't work on multibyte
159 characters. */
4b4deea2 160 || !NILP (BVAR (current_buffer, enable_multibyte_characters)))
0aa01123
JB
161 {
162 /* It should be off. */
163 if (current_buffer->width_run_cache)
164 {
165 free_region_cache (current_buffer->width_run_cache);
166 current_buffer->width_run_cache = 0;
39eb03f1 167 bset_width_table (current_buffer, Qnil);
0aa01123
JB
168 }
169 }
170 else
171 {
172 /* It should be on. */
173 if (current_buffer->width_run_cache == 0)
2ff4775b 174 {
0aa01123 175 current_buffer->width_run_cache = new_region_cache ();
0aa01123
JB
176 recompute_width_table (current_buffer, buffer_display_table ());
177 }
178 }
179}
180
181\f
9a21bb64
RS
182/* Skip some invisible characters starting from POS.
183 This includes characters invisible because of text properties
184 and characters invisible because of overlays.
185
186 If position POS is followed by invisible characters,
187 skip some of them and return the position after them.
188 Otherwise return POS itself.
189
190 Set *NEXT_BOUNDARY_P to the next position at which
191 it will be necessary to call this function again.
192
193 Don't scan past TO, and don't set *NEXT_BOUNDARY_P
194 to a value greater than TO.
195
196 If WINDOW is non-nil, and this buffer is displayed in WINDOW,
197 take account of overlays that apply only in WINDOW.
198
199 We don't necessarily skip all the invisible characters after POS
200 because that could take a long time. We skip a reasonable number
201 which can be skipped quickly. If there might be more invisible
202 characters immediately following, then *NEXT_BOUNDARY_P
203 will equal the return value. */
204
d311d28c
PE
205ptrdiff_t
206skip_invisible (ptrdiff_t pos, ptrdiff_t *next_boundary_p, ptrdiff_t to, Lisp_Object window)
9a21bb64 207{
2e34157c 208 Lisp_Object prop, position, overlay_limit, proplimit;
2ca8b6c2 209 Lisp_Object buffer, tmp;
d311d28c 210 ptrdiff_t end;
83155776 211 int inv_p;
9a21bb64
RS
212
213 XSETFASTINT (position, pos);
214 XSETBUFFER (buffer, current_buffer);
215
216 /* Give faster response for overlay lookup near POS. */
217 recenter_overlay_lists (current_buffer, pos);
218
219 /* We must not advance farther than the next overlay change.
220 The overlay change might change the invisible property;
221 or there might be overlay strings to be displayed there. */
222 overlay_limit = Fnext_overlay_change (position);
223 /* As for text properties, this gives a lower bound
224 for where the invisible text property could change. */
225 proplimit = Fnext_property_change (position, buffer, Qt);
226 if (XFASTINT (overlay_limit) < XFASTINT (proplimit))
227 proplimit = overlay_limit;
228 /* PROPLIMIT is now a lower bound for the next change
229 in invisible status. If that is plenty far away,
230 use that lower bound. */
231 if (XFASTINT (proplimit) > pos + 100 || XFASTINT (proplimit) >= to)
232 *next_boundary_p = XFASTINT (proplimit);
233 /* Otherwise, scan for the next `invisible' property change. */
234 else
235 {
236 /* Don't scan terribly far. */
237 XSETFASTINT (proplimit, min (pos + 100, to));
b55fa3c0 238 /* No matter what, don't go past next overlay change. */
9a21bb64
RS
239 if (XFASTINT (overlay_limit) < XFASTINT (proplimit))
240 proplimit = overlay_limit;
2ca8b6c2
SM
241 tmp = Fnext_single_property_change (position, Qinvisible,
242 buffer, proplimit);
243 end = XFASTINT (tmp);
fe0066f5 244#if 0
a997a7ca
KH
245 /* Don't put the boundary in the middle of multibyte form if
246 there is no actual property change. */
247 if (end == pos + 100
248 && !NILP (current_buffer->enable_multibyte_characters)
249 && end < ZV)
250 while (pos < end && !CHAR_HEAD_P (POS_ADDR (end)))
251 end--;
fe0066f5 252#endif
2e34157c 253 *next_boundary_p = end;
9a21bb64
RS
254 }
255 /* if the `invisible' property is set, we can skip to
256 the next property change */
662152dd
SM
257 prop = Fget_char_property (position, Qinvisible,
258 (!NILP (window)
d3d50620 259 && EQ (XWINDOW (window)->buffer, buffer))
662152dd
SM
260 ? window : buffer);
261 inv_p = TEXT_PROP_MEANS_INVISIBLE (prop);
262 /* When counting columns (window == nil), don't skip over ellipsis text. */
263 if (NILP (window) ? inv_p == 1 : inv_p)
9a21bb64
RS
264 return *next_boundary_p;
265 return pos;
266}
267\f
c9c0f7cf
KH
268/* Set variables WIDTH and BYTES for a multibyte sequence starting at P.
269
c9c0f7cf
KH
270 DP is a display table or NULL.
271
c59478bc 272 This macro is used in scan_for_column and in
c9c0f7cf
KH
273 compute_motion. */
274
85f24f61 275#define MULTIBYTE_BYTES_WIDTH(p, dp, bytes, width) \
012fd715 276 do { \
85f24f61 277 int ch; \
012fd715 278 \
85f24f61 279 ch = STRING_CHAR_AND_LENGTH (p, bytes); \
012fd715
KH
280 if (BYTES_BY_CHAR_HEAD (*p) != bytes) \
281 width = bytes * 4; \
282 else \
283 { \
85f24f61 284 if (dp != 0 && VECTORP (DISP_CHAR_VECTOR (dp, ch))) \
5637687f 285 width = sanitize_char_width (ASIZE (DISP_CHAR_VECTOR (dp, ch))); \
012fd715 286 else \
85f24f61 287 width = CHAR_WIDTH (ch); \
012fd715 288 } \
c9c0f7cf
KH
289 } while (0)
290
097812fb 291
993b6404 292DEFUN ("current-column", Fcurrent_column, Scurrent_column, 0, 0, 0,
8c1a1077
PJ
293 doc: /* Return the horizontal position of point. Beginning of line is column 0.
294This is calculated by adding together the widths of all the displayed
295representations of the character between the start of the previous line
7bf120f1
JB
296and point (eg. control characters will have a width of 2 or 4, tabs
297will have a variable width).
8c1a1077
PJ
298Ignores finite width of frame, which means that this function may return
299values greater than (frame-width).
300Whether the line is visible (if `selective-display' is t) has no effect;
e01732fa
SM
301however, ^M is treated as end of line when `selective-display' is t.
302Text that has an invisible property is considered as having width 0, unless
303`buffer-invisibility-spec' specifies that it is replaced by an ellipsis. */)
5842a27b 304 (void)
993b6404
JB
305{
306 Lisp_Object temp;
7831777b 307 XSETFASTINT (temp, current_column ());
993b6404
JB
308 return temp;
309}
310
e74928fc
JB
311/* Cancel any recorded value of the horizontal position. */
312
c9667ae1 313void
971de7fb 314invalidate_current_column (void)
e74928fc
JB
315{
316 last_known_column_point = 0;
317}
318
d311d28c 319ptrdiff_t
971de7fb 320current_column (void)
993b6404 321{
578098f3
PE
322 ptrdiff_t col;
323 unsigned char *ptr, *stop;
324 bool tab_seen;
d311d28c 325 ptrdiff_t post_tab;
578098f3 326 int c;
a2271ba2 327 int tab_width = SANE_TAB_WIDTH (current_buffer);
578098f3
PE
328 bool ctl_arrow = !NILP (BVAR (current_buffer, ctl_arrow));
329 struct Lisp_Char_Table *dp = buffer_display_table ();
993b6404 330
6ec8bbd2 331 if (PT == last_known_column_point
993b6404
JB
332 && MODIFF == last_known_column_modified)
333 return last_known_column;
334
813b81b3
RS
335 /* If the buffer has overlays, text properties,
336 or multibyte characters, use a more general algorithm. */
0c94c8d6 337 if (buffer_intervals (current_buffer)
4cb3e6b3 338 || buffer_has_overlays ()
813b81b3
RS
339 || Z != Z_BYTE)
340 return current_column_1 ();
9a21bb64
RS
341
342 /* Scan backwards from point to the previous newline,
343 counting width. Tab characters are the only complicated case. */
344
993b6404 345 /* Make a pointer for decrementing through the chars before point. */
fe0066f5 346 ptr = BYTE_POS_ADDR (PT_BYTE - 1) + 1;
993b6404
JB
347 /* Make a pointer to where consecutive chars leave off,
348 going backwards from point. */
6ec8bbd2 349 if (PT == BEGV)
993b6404 350 stop = ptr;
6ec8bbd2 351 else if (PT <= GPT || BEGV > GPT)
993b6404
JB
352 stop = BEGV_ADDR;
353 else
354 stop = GAP_END_ADDR;
355
993b6404
JB
356 col = 0, tab_seen = 0, post_tab = 0;
357
358 while (1)
359 {
d311d28c 360 ptrdiff_t i, n;
88c6e37e 361 Lisp_Object charvec;
097812fb 362
993b6404
JB
363 if (ptr == stop)
364 {
365 /* We stopped either for the beginning of the buffer
366 or for the gap. */
367 if (ptr == BEGV_ADDR)
368 break;
097812fb 369
993b6404
JB
370 /* It was the gap. Jump back over it. */
371 stop = BEGV_ADDR;
372 ptr = GPT_ADDR;
097812fb 373
993b6404 374 /* Check whether that brings us to beginning of buffer. */
88c6e37e
GM
375 if (BEGV >= GPT)
376 break;
993b6404
JB
377 }
378
379 c = *--ptr;
097812fb 380
88c6e37e 381 if (dp && VECTORP (DISP_CHAR_VECTOR (dp, c)))
7050d530 382 {
88c6e37e
GM
383 charvec = DISP_CHAR_VECTOR (dp, c);
384 n = ASIZE (charvec);
7050d530 385 }
88c6e37e 386 else
993b6404 387 {
88c6e37e
GM
388 charvec = Qnil;
389 n = 1;
390 }
097812fb 391
88c6e37e
GM
392 for (i = n - 1; i >= 0; --i)
393 {
394 if (VECTORP (charvec))
395 {
396 /* This should be handled the same as
397 next_element_from_display_vector does it. */
398 Lisp_Object entry = AREF (charvec, i);
097812fb 399
d311d28c 400 if (GLYPH_CODE_P (entry))
f59836fe 401 c = GLYPH_CODE_CHAR (entry);
88c6e37e
GM
402 else
403 c = ' ';
404 }
097812fb 405
88c6e37e
GM
406 if (c >= 040 && c < 0177)
407 col++;
408 else if (c == '\n'
409 || (c == '\r'
4b4deea2 410 && EQ (BVAR (current_buffer, selective_display), Qt)))
88c6e37e
GM
411 {
412 ptr++;
413 goto start_of_line_found;
414 }
415 else if (c == '\t')
416 {
417 if (tab_seen)
418 col = ((col + tab_width) / tab_width) * tab_width;
097812fb 419
88c6e37e
GM
420 post_tab += col;
421 col = 0;
422 tab_seen = 1;
423 }
f1004faf
GM
424 else if (VECTORP (charvec))
425 /* With a display table entry, C is displayed as is, and
426 not displayed as \NNN or as ^N. If C is a single-byte
427 character, it takes one column. If C is multi-byte in
428 an unibyte buffer, it's translated to unibyte, so it
429 also takes one column. */
430 ++col;
88c6e37e
GM
431 else
432 col += (ctl_arrow && c < 0200) ? 2 : 4;
993b6404 433 }
993b6404
JB
434 }
435
88c6e37e
GM
436 start_of_line_found:
437
993b6404
JB
438 if (tab_seen)
439 {
440 col = ((col + tab_width) / tab_width) * tab_width;
441 col += post_tab;
442 }
443
a997a7ca
KH
444 if (ptr == BEGV_ADDR)
445 current_column_bol_cache = BEGV;
446 else
fe0066f5
RS
447 current_column_bol_cache = BYTE_TO_CHAR (PTR_BYTE_POS (ptr));
448
993b6404 449 last_known_column = col;
6ec8bbd2 450 last_known_column_point = PT;
993b6404
JB
451 last_known_column_modified = MODIFF;
452
453 return col;
454}
455\f
80e3db56
SM
456
457/* Check the presence of a display property and compute its width.
458 If a property was found and its width was found as well, return
459 its width (>= 0) and set the position of the end of the property
460 in ENDPOS.
461 Otherwise just return -1. */
462static int
d311d28c 463check_display_width (ptrdiff_t pos, ptrdiff_t col, ptrdiff_t *endpos)
80e3db56
SM
464{
465 Lisp_Object val, overlay;
466
467 if (CONSP (val = get_char_property_and_overlay
468 (make_number (pos), Qdisplay, Qnil, &overlay))
469 && EQ (Qspace, XCAR (val)))
1c14176c 470 { /* FIXME: Use calc_pixel_width_or_height. */
80e3db56
SM
471 Lisp_Object plist = XCDR (val), prop;
472 int width = -1;
d311d28c
PE
473 EMACS_INT align_to_max =
474 (col < MOST_POSITIVE_FIXNUM - INT_MAX
475 ? (EMACS_INT) INT_MAX + col
476 : MOST_POSITIVE_FIXNUM);
80e3db56 477
d311d28c
PE
478 if ((prop = Fplist_get (plist, QCwidth),
479 RANGED_INTEGERP (0, prop, INT_MAX)))
80e3db56 480 width = XINT (prop);
d311d28c
PE
481 else if (FLOATP (prop) && 0 <= XFLOAT_DATA (prop)
482 && XFLOAT_DATA (prop) <= INT_MAX)
80e3db56 483 width = (int)(XFLOAT_DATA (prop) + 0.5);
d311d28c
PE
484 else if ((prop = Fplist_get (plist, QCalign_to),
485 RANGED_INTEGERP (col, prop, align_to_max)))
80e3db56 486 width = XINT (prop) - col;
d311d28c
PE
487 else if (FLOATP (prop) && col <= XFLOAT_DATA (prop)
488 && (XFLOAT_DATA (prop) <= align_to_max))
80e3db56 489 width = (int)(XFLOAT_DATA (prop) + 0.5) - col;
409f2919 490
80e3db56
SM
491 if (width >= 0)
492 {
d311d28c 493 ptrdiff_t start;
80e3db56
SM
494 if (OVERLAYP (overlay))
495 *endpos = OVERLAY_POSITION (OVERLAY_END (overlay));
496 else
497 get_property_and_range (pos, Qdisplay, &val, &start, endpos, Qnil);
498 return width;
499 }
500 }
501 return -1;
502}
503
ef6f5c0e
SM
504/* Scanning from the beginning of the current line, stop at the buffer
505 position ENDPOS or at the column GOALCOL or at the end of line, whichever
506 comes first.
507 Return the resulting buffer position and column in ENDPOS and GOALCOL.
508 PREVCOL gets set to the column of the previous position (it's always
509 strictly smaller than the goal column). */
510static void
d311d28c 511scan_for_column (ptrdiff_t *endpos, EMACS_INT *goalcol, ptrdiff_t *prevcol)
9a21bb64 512{
a2271ba2 513 int tab_width = SANE_TAB_WIDTH (current_buffer);
578098f3
PE
514 bool ctl_arrow = !NILP (BVAR (current_buffer, ctl_arrow));
515 struct Lisp_Char_Table *dp = buffer_display_table ();
516 bool multibyte = !NILP (BVAR (current_buffer, enable_multibyte_characters));
d6721dda 517 struct composition_it cmp_it;
fc88345b
KH
518 Lisp_Object window;
519 struct window *w;
9a21bb64
RS
520
521 /* Start the scan at the beginning of this line with column number 0. */
d311d28c 522 register ptrdiff_t col = 0, prev_col = 0;
ef6f5c0e 523 EMACS_INT goal = goalcol ? *goalcol : MOST_POSITIVE_FIXNUM;
d311d28c
PE
524 ptrdiff_t end = endpos ? *endpos : PT;
525 ptrdiff_t scan, scan_byte;
526 ptrdiff_t next_boundary;
ef6f5c0e 527 {
d311d28c 528 ptrdiff_t opoint = PT, opoint_byte = PT_BYTE;
813b81b3 529 scan_newline (PT, PT_BYTE, BEGV, BEGV_BYTE, -1, 1);
fe0066f5
RS
530 current_column_bol_cache = PT;
531 scan = PT, scan_byte = PT_BYTE;
532 SET_PT_BOTH (opoint, opoint_byte);
533 next_boundary = scan;
ef6f5c0e 534 }
9a21bb64 535
fc88345b
KH
536 window = Fget_buffer_window (Fcurrent_buffer (), Qnil);
537 w = ! NILP (window) ? XWINDOW (window) : NULL;
538
72af86bd 539 memset (&cmp_it, 0, sizeof cmp_it);
d6721dda
KH
540 cmp_it.id = -1;
541 composition_compute_stop_pos (&cmp_it, scan, scan_byte, end, Qnil);
9a21bb64
RS
542
543 /* Scan forward to the target position. */
ef6f5c0e 544 while (scan < end)
9a21bb64
RS
545 {
546 int c;
547
548 /* Occasionally we may need to skip invisible text. */
549 while (scan == next_boundary)
550 {
d311d28c 551 ptrdiff_t old_scan = scan;
9a21bb64
RS
552 /* This updates NEXT_BOUNDARY to the next place
553 where we might need to skip more invisible text. */
ef6f5c0e 554 scan = skip_invisible (scan, &next_boundary, end, Qnil);
fe0066f5
RS
555 if (scan != old_scan)
556 scan_byte = CHAR_TO_BYTE (scan);
ef6f5c0e
SM
557 if (scan >= end)
558 goto endloop;
9a21bb64
RS
559 }
560
ef6f5c0e
SM
561 /* Test reaching the goal column. We do this after skipping
562 invisible characters, so that we put point before the
563 character on which the cursor will appear. */
564 if (col >= goal)
565 break;
566 prev_col = col;
567
80e3db56 568 { /* Check display property. */
d311d28c 569 ptrdiff_t endp;
85f24f61 570 int width = check_display_width (scan, col, &endp);
80e3db56
SM
571 if (width >= 0)
572 {
573 col += width;
85f24f61 574 if (endp > scan) /* Avoid infinite loops with 0-width overlays. */
80e3db56 575 {
85f24f61 576 scan = endp; scan_byte = charpos_to_bytepos (scan);
80e3db56
SM
577 continue;
578 }
579 }
580 }
581
d6721dda
KH
582 /* Check composition sequence. */
583 if (cmp_it.id >= 0
584 || (scan == cmp_it.stop_pos
585 && composition_reseat_it (&cmp_it, scan, scan_byte, end,
fc88345b 586 w, NULL, Qnil)))
d6721dda
KH
587 composition_update_it (&cmp_it, scan, scan_byte, Qnil);
588 if (cmp_it.id >= 0)
589 {
590 scan += cmp_it.nchars;
591 scan_byte += cmp_it.nbytes;
592 if (scan <= end)
593 col += cmp_it.width;
594 if (cmp_it.to == cmp_it.nglyphs)
595 {
596 cmp_it.id = -1;
597 composition_compute_stop_pos (&cmp_it, scan, scan_byte, end,
598 Qnil);
599 }
600 else
601 cmp_it.from = cmp_it.to;
602 continue;
603 }
604
813b81b3 605 c = FETCH_BYTE (scan_byte);
88c6e37e 606
ef6f5c0e
SM
607 /* See if there is a display table and it relates
608 to this character. */
609
c9c0f7cf 610 if (dp != 0
409f2919 611 && ! (multibyte && LEADING_CODE_P (c))
c9c0f7cf 612 && VECTORP (DISP_CHAR_VECTOR (dp, c)))
9a21bb64 613 {
d6e483a4 614 Lisp_Object charvec;
d311d28c 615 ptrdiff_t i, n;
d6e483a4
RS
616
617 /* This character is displayed using a vector of glyphs.
ef6f5c0e 618 Update the column/position based on those glyphs. */
d6e483a4 619
88c6e37e
GM
620 charvec = DISP_CHAR_VECTOR (dp, c);
621 n = ASIZE (charvec);
88c6e37e 622
d6e483a4 623 for (i = 0; i < n; i++)
88c6e37e
GM
624 {
625 /* This should be handled the same as
626 next_element_from_display_vector does it. */
f59836fe 627 Lisp_Object entry = AREF (charvec, i);
d6e483a4 628
d311d28c 629 if (GLYPH_CODE_P (entry))
f59836fe 630 c = GLYPH_CODE_CHAR (entry);
88c6e37e
GM
631 else
632 c = ' ';
d6e483a4
RS
633
634 if (c == '\n')
635 goto endloop;
4b4deea2 636 if (c == '\r' && EQ (BVAR (current_buffer, selective_display), Qt))
d6e483a4
RS
637 goto endloop;
638 if (c == '\t')
639 {
d6e483a4
RS
640 col += tab_width;
641 col = col / tab_width * tab_width;
642 }
643 else
644 ++col;
88c6e37e 645 }
d6e483a4
RS
646 }
647 else
648 {
ef6f5c0e
SM
649 /* The display table doesn't affect this character;
650 it displays as itself. */
d6e483a4 651
88c6e37e
GM
652 if (c == '\n')
653 goto endloop;
4b4deea2 654 if (c == '\r' && EQ (BVAR (current_buffer, selective_display), Qt))
88c6e37e 655 goto endloop;
88c6e37e
GM
656 if (c == '\t')
657 {
88c6e37e
GM
658 col += tab_width;
659 col = col / tab_width * tab_width;
660 }
409f2919 661 else if (multibyte && LEADING_CODE_P (c))
88c6e37e 662 {
ef6f5c0e 663 /* Start of multi-byte form. */
88c6e37e 664 unsigned char *ptr;
c59478bc 665 int bytes, width;
097812fb 666
88c6e37e 667 ptr = BYTE_POS_ADDR (scan_byte);
85f24f61 668 MULTIBYTE_BYTES_WIDTH (ptr, dp, bytes, width);
36974b5e
RS
669 /* Subtract one to compensate for the increment
670 that is going to happen below. */
ef6f5c0e 671 scan_byte += bytes - 1;
88c6e37e
GM
672 col += width;
673 }
674 else if (ctl_arrow && (c < 040 || c == 0177))
675 col += 2;
676 else if (c < 040 || c >= 0177)
677 col += 4;
678 else
679 col++;
a997a7ca 680 }
d6e483a4
RS
681 scan++;
682 scan_byte++;
683
9a21bb64
RS
684 }
685 endloop:
686
687 last_known_column = col;
6ec8bbd2 688 last_known_column_point = PT;
9a21bb64
RS
689 last_known_column_modified = MODIFF;
690
ef6f5c0e
SM
691 if (goalcol)
692 *goalcol = col;
693 if (endpos)
694 *endpos = scan;
695 if (prevcol)
696 *prevcol = prev_col;
697}
698
699/* Return the column number of position POS
700 by scanning forward from the beginning of the line.
701 This function handles characters that are invisible
702 due to text properties or overlays. */
703
d311d28c 704static ptrdiff_t
971de7fb 705current_column_1 (void)
ef6f5c0e
SM
706{
707 EMACS_INT col = MOST_POSITIVE_FIXNUM;
d311d28c 708 ptrdiff_t opoint = PT;
ef6f5c0e
SM
709
710 scan_for_column (&opoint, &col, NULL);
9a21bb64
RS
711 return col;
712}
713\f
f4a6687d
GM
714
715#if 0 /* Not used. */
716
c412c808
RS
717/* Return the width in columns of the part of STRING from BEG to END.
718 If BEG is nil, that stands for the beginning of STRING.
719 If END is nil, that stands for the end of STRING. */
720
76e20cb0 721static double
1dae0f0a 722string_display_width (Lisp_Object string, Lisp_Object beg, Lisp_Object end)
c412c808 723{
578098f3
PE
724 int col;
725 unsigned char *ptr, *stop;
726 bool tab_seen;
c412c808 727 int post_tab;
578098f3 728 int c;
a2271ba2 729 int tab_width = SANE_TAB_WIDTH (current_buffer);
578098f3
PE
730 bool ctl_arrow = !NILP (current_buffer->ctl_arrow);
731 struct Lisp_Char_Table *dp = buffer_display_table ();
c412c808
RS
732 int b, e;
733
734 if (NILP (end))
d5db4077 735 e = SCHARS (string);
c412c808
RS
736 else
737 {
b7826503 738 CHECK_NUMBER (end);
c412c808
RS
739 e = XINT (end);
740 }
741
742 if (NILP (beg))
743 b = 0;
744 else
745 {
b7826503 746 CHECK_NUMBER (beg);
c412c808
RS
747 b = XINT (beg);
748 }
749
750 /* Make a pointer for decrementing through the chars before point. */
d5db4077 751 ptr = SDATA (string) + e;
c412c808
RS
752 /* Make a pointer to where consecutive chars leave off,
753 going backwards from point. */
d5db4077 754 stop = SDATA (string) + b;
c412c808 755
c412c808
RS
756 col = 0, tab_seen = 0, post_tab = 0;
757
758 while (1)
759 {
760 if (ptr == stop)
761 break;
762
763 c = *--ptr;
764 if (dp != 0 && VECTORP (DISP_CHAR_VECTOR (dp, c)))
77b37c05 765 col += ASIZE (DISP_CHAR_VECTOR (dp, c));
c412c808
RS
766 else if (c >= 040 && c < 0177)
767 col++;
768 else if (c == '\n')
769 break;
770 else if (c == '\t')
771 {
772 if (tab_seen)
773 col = ((col + tab_width) / tab_width) * tab_width;
774
775 post_tab += col;
776 col = 0;
777 tab_seen = 1;
778 }
779 else
780 col += (ctl_arrow && c < 0200) ? 2 : 4;
781 }
782
783 if (tab_seen)
784 {
785 col = ((col + tab_width) / tab_width) * tab_width;
786 col += post_tab;
787 }
788
789 return col;
790}
f4a6687d
GM
791
792#endif /* 0 */
793
c412c808 794\f
a7ca3326 795DEFUN ("indent-to", Findent_to, Sindent_to, 1, 2, "NIndent to column: ",
8c1a1077 796 doc: /* Indent from point with tabs and spaces until COLUMN is reached.
7bf120f1 797Optional second argument MINIMUM says always do at least MINIMUM spaces
f64f035e
EZ
798even if that goes past COLUMN; by default, MINIMUM is zero.
799
800The return value is COLUMN. */)
5842a27b 801 (Lisp_Object column, Lisp_Object minimum)
993b6404 802{
7831777b 803 EMACS_INT mincol;
d311d28c 804 register ptrdiff_t fromcol;
a2271ba2 805 int tab_width = SANE_TAB_WIDTH (current_buffer);
993b6404 806
b7826503 807 CHECK_NUMBER (column);
56a98455 808 if (NILP (minimum))
94d92e9c 809 XSETFASTINT (minimum, 0);
b7826503 810 CHECK_NUMBER (minimum);
993b6404
JB
811
812 fromcol = current_column ();
813 mincol = fromcol + XINT (minimum);
04c98432 814 if (mincol < XINT (column)) mincol = XINT (column);
993b6404
JB
815
816 if (fromcol == mincol)
817 return make_number (mincol);
818
993b6404
JB
819 if (indent_tabs_mode)
820 {
821 Lisp_Object n;
94d92e9c 822 XSETFASTINT (n, mincol / tab_width - fromcol / tab_width);
993b6404
JB
823 if (XFASTINT (n) != 0)
824 {
6d1bd1a5 825 Finsert_char (make_number ('\t'), n, Qt);
993b6404
JB
826
827 fromcol = (mincol / tab_width) * tab_width;
828 }
829 }
830
04c98432
EN
831 XSETFASTINT (column, mincol - fromcol);
832 Finsert_char (make_number (' '), column, Qt);
993b6404
JB
833
834 last_known_column = mincol;
6ec8bbd2 835 last_known_column_point = PT;
993b6404
JB
836 last_known_column_modified = MODIFF;
837
04c98432
EN
838 XSETINT (column, mincol);
839 return column;
993b6404 840}
0aa01123 841
993b6404
JB
842\f
843DEFUN ("current-indentation", Fcurrent_indentation, Scurrent_indentation,
8c1a1077
PJ
844 0, 0, 0,
845 doc: /* Return the indentation of the current line.
846This is the horizontal position of the character
847following any initial whitespace. */)
5842a27b 848 (void)
993b6404
JB
849{
850 Lisp_Object val;
d311d28c 851 ptrdiff_t opoint = PT, opoint_byte = PT_BYTE;
fe0066f5
RS
852
853 scan_newline (PT, PT_BYTE, BEGV, BEGV_BYTE, -1, 1);
993b6404 854
7831777b 855 XSETFASTINT (val, position_indentation (PT_BYTE));
fe0066f5 856 SET_PT_BOTH (opoint, opoint_byte);
993b6404
JB
857 return val;
858}
859
d311d28c 860static ptrdiff_t
3f8236f4 861position_indentation (ptrdiff_t pos_byte)
993b6404 862{
d311d28c 863 register ptrdiff_t column = 0;
a2271ba2 864 int tab_width = SANE_TAB_WIDTH (current_buffer);
993b6404
JB
865 register unsigned char *p;
866 register unsigned char *stop;
9a21bb64 867 unsigned char *start;
d311d28c
PE
868 ptrdiff_t next_boundary_byte = pos_byte;
869 ptrdiff_t ceiling = next_boundary_byte;
2ff4775b 870
fe0066f5 871 p = BYTE_POS_ADDR (pos_byte);
9a21bb64
RS
872 /* STOP records the value of P at which we will need
873 to think about the gap, or about invisible text,
874 or about the end of the buffer. */
875 stop = p;
876 /* START records the starting value of P. */
877 start = p;
993b6404
JB
878 while (1)
879 {
880 while (p == stop)
881 {
d311d28c 882 ptrdiff_t stop_pos_byte;
9a21bb64 883
fe0066f5
RS
884 /* If we have updated P, set POS_BYTE to match.
885 The first time we enter the loop, POS_BYTE is already right. */
9a21bb64 886 if (p != start)
fe0066f5 887 pos_byte = PTR_BYTE_POS (p);
9a21bb64 888 /* Consider the various reasons STOP might have been set here. */
fe0066f5 889 if (pos_byte == ZV_BYTE)
993b6404 890 return column;
fe0066f5
RS
891 if (pos_byte == next_boundary_byte)
892 {
d311d28c
PE
893 ptrdiff_t next_boundary;
894 ptrdiff_t pos = BYTE_TO_CHAR (pos_byte);
fe0066f5
RS
895 pos = skip_invisible (pos, &next_boundary, ZV, Qnil);
896 pos_byte = CHAR_TO_BYTE (pos);
897 next_boundary_byte = CHAR_TO_BYTE (next_boundary);
898 }
899 if (pos_byte >= ceiling)
900 ceiling = BUFFER_CEILING_OF (pos_byte) + 1;
9a21bb64
RS
901 /* Compute the next place we need to stop and think,
902 and set STOP accordingly. */
fe0066f5 903 stop_pos_byte = min (ceiling, next_boundary_byte);
9a21bb64 904 /* The -1 and +1 arrange to point at the first byte of gap
fe0066f5 905 (if STOP_POS_BYTE is the position of the gap)
9a21bb64 906 rather than at the data after the gap. */
097812fb 907
fe0066f5
RS
908 stop = BYTE_POS_ADDR (stop_pos_byte - 1) + 1;
909 p = BYTE_POS_ADDR (pos_byte);
993b6404
JB
910 }
911 switch (*p++)
912 {
fb911777 913 case 0240:
4b4deea2 914 if (! NILP (BVAR (current_buffer, enable_multibyte_characters)))
fb911777 915 return column;
993b6404
JB
916 case ' ':
917 column++;
918 break;
919 case '\t':
920 column += tab_width - column % tab_width;
921 break;
922 default:
fb911777 923 if (ASCII_BYTE_P (p[-1])
4b4deea2 924 || NILP (BVAR (current_buffer, enable_multibyte_characters)))
fb911777
KH
925 return column;
926 {
fe0066f5
RS
927 int c;
928 pos_byte = PTR_BYTE_POS (p - 1);
929 c = FETCH_MULTIBYTE_CHAR (pos_byte);
fb911777
KH
930 if (CHAR_HAS_CATEGORY (c, ' '))
931 {
932 column++;
fe0066f5
RS
933 INC_POS (pos_byte);
934 p = BYTE_POS_ADDR (pos_byte);
fb911777
KH
935 }
936 else
937 return column;
938 }
993b6404
JB
939 }
940 }
941}
1b15e576
KH
942
943/* Test whether the line beginning at POS is indented beyond COLUMN.
944 Blank lines are treated as if they had the same indentation as the
945 preceding line. */
fe0066f5 946
578098f3 947bool
d311d28c 948indented_beyond_p (ptrdiff_t pos, ptrdiff_t pos_byte, EMACS_INT column)
1b15e576 949{
d311d28c
PE
950 ptrdiff_t val;
951 ptrdiff_t opoint = PT, opoint_byte = PT_BYTE;
fe0066f5
RS
952
953 SET_PT_BOTH (pos, pos_byte);
954 while (PT > BEGV && FETCH_BYTE (PT_BYTE) == '\n')
955 scan_newline (PT - 1, PT_BYTE - 1, BEGV, BEGV_BYTE, -1, 0);
956
d5d6f706 957 val = position_indentation (PT_BYTE);
fe0066f5 958 SET_PT_BOTH (opoint, opoint_byte);
7831777b 959 return val >= column;
1b15e576 960}
993b6404 961\f
c25df26e 962DEFUN ("move-to-column", Fmove_to_column, Smove_to_column, 1, 2,
c6e571fb 963 "NMove to column: ",
8c1a1077 964 doc: /* Move point to column COLUMN in the current line.
3c860543 965Interactively, COLUMN is the value of prefix numeric argument.
8c1a1077
PJ
966The column of a character is calculated by adding together the widths
967as displayed of the previous characters in the line.
968This function ignores line-continuation;
969there is no upper limit on the column number a character can have
970and horizontal scrolling has no effect.
971
972If specified column is within a character, point goes after that character.
973If it's past end of line, point goes to end of line.
974
3c860543
EZ
975Optional second argument FORCE non-nil means if COLUMN is in the
976middle of a tab character, change it to spaces.
977In addition, if FORCE is t, and the line is too short to reach
978COLUMN, add spaces/tabs to get there.
8c1a1077
PJ
979
980The return value is the current column. */)
5842a27b 981 (Lisp_Object column, Lisp_Object force)
993b6404 982{
d311d28c
PE
983 ptrdiff_t pos, prev_col;
984 EMACS_INT col;
ef6f5c0e 985 EMACS_INT goal;
fe0066f5 986
b7826503 987 CHECK_NATNUM (column);
993b6404
JB
988 goal = XINT (column);
989
ef6f5c0e
SM
990 col = goal;
991 pos = ZV;
992 scan_for_column (&pos, &col, &prev_col);
993b6404 993
ef6f5c0e 994 SET_PT (pos);
4c669c09 995
ef6f5c0e
SM
996 /* If a tab char made us overshoot, change it to spaces
997 and scan through it again. */
998 if (!NILP (force) && col > goal)
993b6404 999 {
4c92f429 1000 int c;
d311d28c 1001 ptrdiff_t pos_byte = PT_BYTE;
d6e483a4 1002
4c92f429
AS
1003 DEC_POS (pos_byte);
1004 c = FETCH_CHAR (pos_byte);
ef6f5c0e 1005 if (c == '\t' && prev_col < goal)
d6e483a4 1006 {
d311d28c 1007 ptrdiff_t goal_pt, goal_pt_byte;
ef6f5c0e
SM
1008
1009 /* Insert spaces in front of the tab to reach GOAL. Do this
1010 first so that a marker at the end of the tab gets
1011 adjusted. */
1012 SET_PT_BOTH (PT - 1, PT_BYTE - 1);
1013 Finsert_char (make_number (' '), make_number (goal - prev_col), Qt);
1014
1015 /* Now delete the tab, and indent to COL. */
1016 del_range (PT, PT + 1);
1017 goal_pt = PT;
1018 goal_pt_byte = PT_BYTE;
1019 Findent_to (make_number (col), Qnil);
1020 SET_PT_BOTH (goal_pt, goal_pt_byte);
1021
1022 /* Set the last_known... vars consistently. */
1023 col = goal;
a997a7ca 1024 }
993b6404
JB
1025 }
1026
1027 /* If line ends prematurely, add space to the end. */
de4075cf 1028 if (col < goal && EQ (force, Qt))
230a4cbd 1029 Findent_to (make_number (col = goal), Qnil);
993b6404
JB
1030
1031 last_known_column = col;
6ec8bbd2 1032 last_known_column_point = PT;
993b6404
JB
1033 last_known_column_modified = MODIFF;
1034
ef6f5c0e 1035 return make_number (col);
993b6404
JB
1036}
1037\f
0aa01123
JB
1038/* compute_motion: compute buffer posn given screen posn and vice versa */
1039
9306c32e 1040static struct position val_compute_motion;
993b6404
JB
1041
1042/* Scan the current buffer forward from offset FROM, pretending that
1043 this is at line FROMVPOS, column FROMHPOS, until reaching buffer
1044 offset TO or line TOVPOS, column TOHPOS (whichever comes first),
0aa01123
JB
1045 and return the ending buffer position and screen location. If we
1046 can't hit the requested column exactly (because of a tab or other
1047 multi-column character), overshoot.
993b6404 1048
578098f3 1049 DID_MOTION is true if FROMHPOS has already accounted for overlay strings
2ab90d49
KH
1050 at FROM. This is the case if FROMVPOS and FROMVPOS came from an
1051 earlier call to compute_motion. The other common case is that FROMHPOS
1052 is zero and FROM is a position that "belongs" at column zero, but might
578098f3 1053 be shifted by overlay strings; in this case DID_MOTION should be false.
2ab90d49 1054
993b6404
JB
1055 WIDTH is the number of columns available to display text;
1056 compute_motion uses this to handle continuation lines and such.
361f14bf
KS
1057 If WIDTH is -1, use width of window's text area adjusted for
1058 continuation glyph when needed.
1059
993b6404
JB
1060 HSCROLL is the number of columns not being displayed at the left
1061 margin; this is usually taken from a window's hscroll member.
a9764248
JB
1062 TAB_OFFSET is the number of columns of the first tab that aren't
1063 being displayed, perhaps because of a continuation line or
1064 something.
993b6404
JB
1065
1066 compute_motion returns a pointer to a struct position. The bufpos
1067 member gives the buffer position at the end of the scan, and hpos
0aa01123
JB
1068 and vpos give its cartesian location. prevhpos is the column at
1069 which the character before bufpos started, and contin is non-zero
1070 if we reached the current line by continuing the previous.
1071
1072 Note that FROMHPOS and TOHPOS should be expressed in real screen
1073 columns, taking HSCROLL and the truncation glyph at the left margin
1074 into account. That is, beginning-of-line moves you to the hpos
1075 -HSCROLL + (HSCROLL > 0).
993b6404
JB
1076
1077 For example, to find the buffer position of column COL of line LINE
1078 of a certain window, pass the window's starting location as FROM
1079 and the window's upper-left coordinates as FROMVPOS and FROMHPOS.
1080 Pass the buffer's ZV as TO, to limit the scan to the end of the
1081 visible section of the buffer, and pass LINE and COL as TOVPOS and
2ff4775b 1082 TOHPOS.
993b6404
JB
1083
1084 When displaying in window w, a typical formula for WIDTH is:
1085
1086 window_width - 1
a3c87d4e 1087 - (has_vertical_scroll_bars
90022f5a
KS
1088 ? WINDOW_CONFIG_SCROLL_BAR_COLS (window)
1089 : (window_width + window_left != frame_cols))
993b6404
JB
1090
1091 where
90022f5a
KS
1092 window_width is XFASTINT (w->total_cols),
1093 window_left is XFASTINT (w->left_col),
a3c87d4e 1094 has_vertical_scroll_bars is
90022f5a
KS
1095 WINDOW_HAS_VERTICAL_SCROLL_BAR (window)
1096 and frame_cols = FRAME_COLS (XFRAME (window->frame))
993b6404 1097
abde8f8c
MR
1098 Or you can let window_body_cols do this all for you, and write:
1099 window_body_cols (w) - 1
fa61c701
JB
1100
1101 The `-1' accounts for the continuation-line backslashes; the rest
7e7a76b5 1102 accounts for window borders if the window is split horizontally, and
1827d036 1103 the scroll bars if they are turned on. */
993b6404
JB
1104
1105struct position *
578098f3
PE
1106compute_motion (ptrdiff_t from, EMACS_INT fromvpos, EMACS_INT fromhpos,
1107 bool did_motion, ptrdiff_t to,
1108 EMACS_INT tovpos, EMACS_INT tohpos, EMACS_INT width,
1109 ptrdiff_t hscroll, int tab_offset, struct window *win)
993b6404 1110{
578098f3
PE
1111 EMACS_INT hpos = fromhpos;
1112 EMACS_INT vpos = fromvpos;
cde9337b 1113
578098f3 1114 ptrdiff_t pos;
d311d28c 1115 ptrdiff_t pos_byte;
578098f3 1116 int c = 0;
a2271ba2 1117 int tab_width = SANE_TAB_WIDTH (current_buffer);
578098f3
PE
1118 bool ctl_arrow = !NILP (BVAR (current_buffer, ctl_arrow));
1119 struct Lisp_Char_Table *dp = window_display_table (win);
7831777b 1120 EMACS_INT selective
4b4deea2
TT
1121 = (INTEGERP (BVAR (current_buffer, selective_display))
1122 ? XINT (BVAR (current_buffer, selective_display))
1123 : !NILP (BVAR (current_buffer, selective_display)) ? -1 : 0);
d311d28c 1124 ptrdiff_t selective_rlen
eeaafd4f 1125 = (selective && dp && VECTORP (DISP_INVIS_VECTOR (dp))
77b37c05 1126 ? ASIZE (DISP_INVIS_VECTOR (dp)) : 0);
2ab90d49
KH
1127 /* The next location where the `invisible' property changes, or an
1128 overlay starts or ends. */
d311d28c 1129 ptrdiff_t next_boundary = from;
993b6404 1130
0aa01123
JB
1131 /* For computing runs of characters with similar widths.
1132 Invariant: width_run_width is zero, or all the characters
2ff4775b 1133 from width_run_start to width_run_end have a fixed width of
0aa01123 1134 width_run_width. */
d311d28c
PE
1135 ptrdiff_t width_run_start = from;
1136 ptrdiff_t width_run_end = from;
1137 ptrdiff_t width_run_width = 0;
0aa01123
JB
1138 Lisp_Object *width_table;
1139
1140 /* The next buffer pos where we should consult the width run cache. */
d311d28c 1141 ptrdiff_t next_width_run = from;
0e435804 1142 Lisp_Object window;
0aa01123 1143
578098f3 1144 bool multibyte = !NILP (BVAR (current_buffer, enable_multibyte_characters));
c71c19f4
RS
1145 /* If previous char scanned was a wide character,
1146 this is the column where it ended. Otherwise, this is 0. */
83155776 1147 EMACS_INT wide_column_end_hpos = 0;
d311d28c
PE
1148 ptrdiff_t prev_pos; /* Previous buffer position. */
1149 ptrdiff_t prev_pos_byte; /* Previous buffer position. */
83155776
SM
1150 EMACS_INT prev_hpos = 0;
1151 EMACS_INT prev_vpos = 0;
1152 EMACS_INT contin_hpos; /* HPOS of last column of continued line. */
d311d28c
PE
1153 int prev_tab_offset; /* Previous tab offset. */
1154 int continuation_glyph_width;
a997a7ca 1155
d6721dda
KH
1156 struct composition_it cmp_it;
1157
0e435804 1158 XSETWINDOW (window, win);
66c75ca5 1159
0aa01123
JB
1160 width_run_cache_on_off ();
1161 if (dp == buffer_display_table ())
4b4deea2
TT
1162 width_table = (VECTORP (BVAR (current_buffer, width_table))
1163 ? XVECTOR (BVAR (current_buffer, width_table))->contents
0aa01123
JB
1164 : 0);
1165 else
1166 /* If the window has its own display table, we can't use the width
1167 run cache, because that's based on the buffer's display table. */
1168 width_table = 0;
1169
361f14bf
KS
1170 /* Negative width means use all available text columns. */
1171 if (width < 0)
1172 {
abde8f8c 1173 width = window_body_cols (win);
361f14bf
KS
1174 /* We must make room for continuation marks if we don't have fringes. */
1175#ifdef HAVE_WINDOW_SYSTEM
d3d50620 1176 if (!FRAME_WINDOW_P (XFRAME (win->frame)))
361f14bf
KS
1177#endif
1178 width -= 1;
1179 }
1180
8cc08515 1181 continuation_glyph_width = 1;
ed5c373c 1182#ifdef HAVE_WINDOW_SYSTEM
d3d50620 1183 if (FRAME_WINDOW_P (XFRAME (win->frame)))
8cc08515 1184 continuation_glyph_width = 0; /* In the fringe. */
ed5c373c
KS
1185#endif
1186
e4500116
GM
1187 immediate_quit = 1;
1188 QUIT;
cde9337b 1189
a997a7ca 1190 pos = prev_pos = from;
fe0066f5 1191 pos_byte = prev_pos_byte = CHAR_TO_BYTE (from);
a997a7ca
KH
1192 contin_hpos = 0;
1193 prev_tab_offset = tab_offset;
72af86bd 1194 memset (&cmp_it, 0, sizeof cmp_it);
d6721dda
KH
1195 cmp_it.id = -1;
1196 composition_compute_stop_pos (&cmp_it, pos, pos_byte, to, Qnil);
1197
2ab90d49
KH
1198 while (1)
1199 {
1200 while (pos == next_boundary)
f75c0f8a 1201 {
d311d28c
PE
1202 ptrdiff_t pos_here = pos;
1203 ptrdiff_t newpos;
98136db3 1204
f9ba10b0 1205 /* Don't skip invisible if we are already at the margin. */
8a00d895 1206 if (vpos > tovpos || (vpos == tovpos && hpos >= tohpos))
f9ba10b0
RS
1207 {
1208 if (contin_hpos && prev_hpos == 0
1209 && hpos > tohpos
1210 && (contin_hpos == width || wide_column_end_hpos > width))
1211 { /* Line breaks because we can't put the character at the
1212 previous line any more. It is not the multi-column
1213 character continued in middle. Go back to previous
1214 buffer position, screen position, and set tab offset
1215 to previous value. It's the beginning of the
1216 line. */
1217 pos = prev_pos;
1218 pos_byte = prev_pos_byte;
1219 hpos = prev_hpos;
6b61353c 1220 vpos = prev_vpos;
f9ba10b0
RS
1221 tab_offset = prev_tab_offset;
1222 }
1223 break;
1224 }
1225
2ab90d49
KH
1226 /* If the caller says that the screen position came from an earlier
1227 call to compute_motion, then we've already accounted for the
1228 overlay strings at point. This is only true the first time
1229 through, so clear the flag after testing it. */
1230 if (!did_motion)
1231 /* We need to skip past the overlay strings. Currently those
a997a7ca 1232 strings must not contain TAB;
2ab90d49
KH
1233 if we want to relax that restriction, something will have
1234 to be changed here. */
a997a7ca
KH
1235 {
1236 unsigned char *ovstr;
d311d28c 1237 ptrdiff_t ovlen = overlay_strings (pos, win, &ovstr);
4116deee 1238 hpos += ((multibyte && ovlen > 0)
7469ef5d 1239 ? strwidth ((char *) ovstr, ovlen) : ovlen);
a997a7ca 1240 }
2ab90d49
KH
1241 did_motion = 0;
1242
1243 if (pos >= to)
1244 break;
66c75ca5 1245
9a21bb64
RS
1246 /* Advance POS past invisible characters
1247 (but not necessarily all that there are here),
1248 and store in next_boundary the next position where
1249 we need to call skip_invisible. */
98136db3
RS
1250 newpos = skip_invisible (pos, &next_boundary, to, window);
1251
1252 if (newpos >= to)
e8cb089b
RS
1253 {
1254 pos = min (to, newpos);
bcfbd63d 1255 pos_byte = CHAR_TO_BYTE (pos);
e8cb089b
RS
1256 goto after_loop;
1257 }
98136db3 1258
fe0066f5
RS
1259 if (newpos != pos_here)
1260 {
1261 pos = newpos;
1262 pos_byte = CHAR_TO_BYTE (pos);
1263 }
f75c0f8a 1264 }
2ab90d49
KH
1265
1266 /* Handle right margin. */
a997a7ca
KH
1267 /* Note on a wide-column character.
1268
1269 Characters are classified into the following three categories
1270 according to the width (columns occupied on screen).
1271
1272 (1) single-column character: ex. `a'
1273 (2) multi-column character: ex. `^A', TAB, `\033'
1274 (3) wide-column character: ex. Japanese character, Chinese character
1275 (In the following example, `W_' stands for them.)
1276
1277 Multi-column characters can be divided around the right margin,
1278 but wide-column characters cannot.
1279
1280 NOTE:
1281
1282 (*) The cursor is placed on the next character after the point.
1283
1284 ----------
1285 abcdefghi\
1286 j ^---- next after the point
1287 ^--- next char. after the point.
1288 ----------
1289 In case of sigle-column character
1290
1291 ----------
1292 abcdefgh\\
1293 033 ^---- next after the point, next char. after the point.
1294 ----------
1295 In case of multi-column character
1296
1297 ----------
1298 abcdefgh\\
1299 W_ ^---- next after the point
1300 ^---- next char. after the point.
1301 ----------
097812fb 1302 In case of wide-column character
a997a7ca
KH
1303
1304 The problem here is continuation at a wide-column character.
1305 In this case, the line may shorter less than WIDTH.
1306 And we find the continuation AFTER it occurs.
1307
1308 */
1309
1310 if (hpos > width)
2ab90d49 1311 {
d311d28c 1312 EMACS_INT total_width = width + continuation_glyph_width;
578098f3 1313 bool truncate = 0;
81b6a665
CY
1314
1315 if (!NILP (Vtruncate_partial_width_windows)
1316 && (total_width < FRAME_COLS (XFRAME (WINDOW_FRAME (win)))))
1317 {
1318 if (INTEGERP (Vtruncate_partial_width_windows))
1319 truncate
1320 = total_width < XFASTINT (Vtruncate_partial_width_windows);
1321 else
1322 truncate = 1;
1323 }
1324
1325 if (hscroll || truncate
4b4deea2 1326 || !NILP (BVAR (current_buffer, truncate_lines)))
2ab90d49 1327 {
529724fe
AS
1328 /* Truncating: skip to newline, unless we are already past
1329 TO (we need to go back below). */
1330 if (pos <= to)
fe0066f5
RS
1331 {
1332 pos = find_before_next_newline (pos, to, 1);
1333 pos_byte = CHAR_TO_BYTE (pos);
529724fe
AS
1334 hpos = width;
1335 /* If we just skipped next_boundary,
1336 loop around in the main while
1337 and handle it. */
1338 if (pos >= next_boundary)
1339 next_boundary = pos + 1;
1340 prev_hpos = width;
6b61353c 1341 prev_vpos = vpos;
529724fe 1342 prev_tab_offset = tab_offset;
fe0066f5 1343 }
2ab90d49
KH
1344 }
1345 else
1346 {
1347 /* Continuing. */
a997a7ca
KH
1348 /* Remember the previous value. */
1349 prev_tab_offset = tab_offset;
1350
c9c0f7cf 1351 if (wide_column_end_hpos > width)
a997a7ca
KH
1352 {
1353 hpos -= prev_hpos;
1354 tab_offset += prev_hpos;
1355 }
1356 else
1357 {
1358 tab_offset += width;
1359 hpos -= width;
1360 }
1361 vpos++;
1362 contin_hpos = prev_hpos;
1363 prev_hpos = 0;
6cbc951e 1364 prev_vpos = vpos;
2ab90d49
KH
1365 }
1366 }
1367
1368 /* Stop if past the target buffer position or screen position. */
33fe7d20 1369 if (pos > to)
a997a7ca
KH
1370 {
1371 /* Go back to the previous position. */
1372 pos = prev_pos;
fe0066f5 1373 pos_byte = prev_pos_byte;
a997a7ca 1374 hpos = prev_hpos;
6b61353c 1375 vpos = prev_vpos;
a997a7ca
KH
1376 tab_offset = prev_tab_offset;
1377
1378 /* NOTE on contin_hpos, hpos, and prev_hpos.
1379
1380 ----------
1381 abcdefgh\\
1382 W_ ^---- contin_hpos
1383 | ^----- hpos
1384 \---- prev_hpos
1385 ----------
1386 */
1387
1388 if (contin_hpos && prev_hpos == 0
c9c0f7cf 1389 && contin_hpos < width && !wide_column_end_hpos)
a997a7ca
KH
1390 {
1391 /* Line breaking occurs in the middle of multi-column
1392 character. Go back to previous line. */
1393 hpos = contin_hpos;
1394 vpos = vpos - 1;
1395 }
a997a7ca
KH
1396 break;
1397 }
1398
8a00d895 1399 if (vpos > tovpos || (vpos == tovpos && hpos >= tohpos))
33fe7d20
RS
1400 {
1401 if (contin_hpos && prev_hpos == 0
9129bcc3
KH
1402 && hpos > tohpos
1403 && (contin_hpos == width || wide_column_end_hpos > width))
33fe7d20
RS
1404 { /* Line breaks because we can't put the character at the
1405 previous line any more. It is not the multi-column
1406 character continued in middle. Go back to previous
1407 buffer position, screen position, and set tab offset
1408 to previous value. It's the beginning of the
1409 line. */
1410 pos = prev_pos;
1411 pos_byte = prev_pos_byte;
1412 hpos = prev_hpos;
6b61353c 1413 vpos = prev_vpos;
33fe7d20
RS
1414 tab_offset = prev_tab_offset;
1415 }
1416 break;
1417 }
a997a7ca 1418 if (pos == ZV) /* We cannot go beyond ZV. Stop here. */
2ab90d49
KH
1419 break;
1420
2ab90d49 1421 prev_hpos = hpos;
6b61353c 1422 prev_vpos = vpos;
a997a7ca 1423 prev_pos = pos;
fe0066f5 1424 prev_pos_byte = pos_byte;
c9c0f7cf 1425 wide_column_end_hpos = 0;
0aa01123
JB
1426
1427 /* Consult the width run cache to see if we can avoid inspecting
1428 the text character-by-character. */
1429 if (current_buffer->width_run_cache && pos >= next_width_run)
1430 {
0065d054 1431 ptrdiff_t run_end;
0aa01123
JB
1432 int common_width
1433 = region_cache_forward (current_buffer,
1434 current_buffer->width_run_cache,
1435 pos, &run_end);
1436
1437 /* A width of zero means the character's width varies (like
1438 a tab), is meaningless (like a newline), or we just don't
1439 want to skip over it for some other reason. */
1440 if (common_width != 0)
1441 {
d311d28c 1442 ptrdiff_t run_end_hpos;
0aa01123
JB
1443
1444 /* Don't go past the final buffer posn the user
1445 requested. */
1446 if (run_end > to)
1447 run_end = to;
1448
1449 run_end_hpos = hpos + (run_end - pos) * common_width;
1450
1451 /* Don't go past the final horizontal position the user
1452 requested. */
1453 if (vpos == tovpos && run_end_hpos > tohpos)
1454 {
1455 run_end = pos + (tohpos - hpos) / common_width;
1456 run_end_hpos = hpos + (run_end - pos) * common_width;
1457 }
2ff4775b 1458
0aa01123
JB
1459 /* Don't go past the margin. */
1460 if (run_end_hpos >= width)
1461 {
1462 run_end = pos + (width - hpos) / common_width;
1463 run_end_hpos = hpos + (run_end - pos) * common_width;
1464 }
1465
1466 hpos = run_end_hpos;
1467 if (run_end > pos)
1468 prev_hpos = hpos - common_width;
fe0066f5
RS
1469 if (pos != run_end)
1470 {
1471 pos = run_end;
1472 pos_byte = CHAR_TO_BYTE (pos);
1473 }
0aa01123
JB
1474 }
1475
1476 next_width_run = run_end + 1;
1477 }
1478
1479 /* We have to scan the text character-by-character. */
993b6404 1480 else
2ab90d49 1481 {
d311d28c 1482 ptrdiff_t i, n;
88c6e37e 1483 Lisp_Object charvec;
097812fb 1484
012fd715 1485 /* Check composition sequence. */
d6721dda
KH
1486 if (cmp_it.id >= 0
1487 || (pos == cmp_it.stop_pos
1488 && composition_reseat_it (&cmp_it, pos, pos_byte, to, win,
1489 NULL, Qnil)))
1490 composition_update_it (&cmp_it, pos, pos_byte, Qnil);
1491 if (cmp_it.id >= 0)
1492 {
1493 pos += cmp_it.nchars;
1494 pos_byte += cmp_it.nbytes;
1495 hpos += cmp_it.width;
1496 if (cmp_it.to == cmp_it.nglyphs)
1497 {
1498 cmp_it.id = -1;
1499 composition_compute_stop_pos (&cmp_it, pos, pos_byte, to,
1500 Qnil);
1501 }
1502 else
1503 cmp_it.from = cmp_it.to;
1504 continue;
1505 }
012fd715 1506
d6721dda 1507 c = FETCH_BYTE (pos_byte);
fe0066f5 1508 pos++, pos_byte++;
0aa01123 1509
2ab90d49
KH
1510 /* Perhaps add some info to the width_run_cache. */
1511 if (current_buffer->width_run_cache)
1512 {
1513 /* Is this character part of the current run? If so, extend
1514 the run. */
1515 if (pos - 1 == width_run_end
5db0afb7 1516 && XFASTINT (width_table[c]) == width_run_width)
2ab90d49
KH
1517 width_run_end = pos;
1518
1519 /* The previous run is over, since this is a character at a
1520 different position, or a different width. */
1521 else
1522 {
1523 /* Have we accumulated a run to put in the cache?
1524 (Currently, we only cache runs of width == 1). */
1525 if (width_run_start < width_run_end
1526 && width_run_width == 1)
1527 know_region_cache (current_buffer,
1528 current_buffer->width_run_cache,
1529 width_run_start, width_run_end);
1530
1531 /* Start recording a new width run. */
5db0afb7 1532 width_run_width = XFASTINT (width_table[c]);
2ab90d49
KH
1533 width_run_start = pos - 1;
1534 width_run_end = pos;
1535 }
1536 }
993b6404 1537
c9c0f7cf 1538 if (dp != 0
409f2919 1539 && ! (multibyte && LEADING_CODE_P (c))
c9c0f7cf 1540 && VECTORP (DISP_CHAR_VECTOR (dp, c)))
993b6404 1541 {
88c6e37e
GM
1542 charvec = DISP_CHAR_VECTOR (dp, c);
1543 n = ASIZE (charvec);
993b6404 1544 }
88c6e37e 1545 else
993b6404 1546 {
88c6e37e
GM
1547 charvec = Qnil;
1548 n = 1;
1549 }
1550
fa819fed 1551 for (i = 0; i < n; ++i)
88c6e37e
GM
1552 {
1553 if (VECTORP (charvec))
2ab90d49 1554 {
88c6e37e
GM
1555 /* This should be handled the same as
1556 next_element_from_display_vector does it. */
1557 Lisp_Object entry = AREF (charvec, i);
097812fb 1558
d311d28c 1559 if (GLYPH_CODE_P (entry))
f59836fe 1560 c = GLYPH_CODE_CHAR (entry);
88c6e37e
GM
1561 else
1562 c = ' ';
1563 }
097812fb 1564
88c6e37e
GM
1565 if (c >= 040 && c < 0177)
1566 hpos++;
1567 else if (c == '\t')
1568 {
1569 int tem = ((hpos + tab_offset + hscroll - (hscroll > 0))
1570 % tab_width);
1571 if (tem < 0)
1572 tem += tab_width;
1573 hpos += tab_width - tem;
1574 }
1575 else if (c == '\n')
1576 {
1577 if (selective > 0
7831777b 1578 && indented_beyond_p (pos, pos_byte, selective))
2ab90d49 1579 {
88c6e37e
GM
1580 /* If (pos == to), we don't have to take care of
1581 selective display. */
1582 if (pos < to)
fe0066f5 1583 {
88c6e37e
GM
1584 /* Skip any number of invisible lines all at once */
1585 do
1586 {
1587 pos = find_before_next_newline (pos, to, 1);
1588 if (pos < to)
1589 pos++;
1590 pos_byte = CHAR_TO_BYTE (pos);
1591 }
1592 while (pos < to
097812fb 1593 && indented_beyond_p (pos, pos_byte,
7831777b 1594 selective));
88c6e37e
GM
1595 /* Allow for the " ..." that is displayed for them. */
1596 if (selective_rlen)
1597 {
1598 hpos += selective_rlen;
1599 if (hpos >= width)
1600 hpos = width;
1601 }
1602 DEC_BOTH (pos, pos_byte);
1603 /* We have skipped the invis text, but not the
1604 newline after. */
fe0066f5 1605 }
2ab90d49 1606 }
88c6e37e
GM
1607 else
1608 {
1609 /* A visible line. */
1610 vpos++;
1611 hpos = 0;
1612 hpos -= hscroll;
1613 /* Count the truncation glyph on column 0 */
1614 if (hscroll > 0)
ed5c373c 1615 hpos += continuation_glyph_width;
88c6e37e
GM
1616 tab_offset = 0;
1617 }
1618 contin_hpos = 0;
2ab90d49 1619 }
88c6e37e 1620 else if (c == CR && selective < 0)
fe0066f5 1621 {
88c6e37e
GM
1622 /* In selective display mode,
1623 everything from a ^M to the end of the line is invisible.
1624 Stop *before* the real newline. */
1625 if (pos < to)
1626 {
1627 pos = find_before_next_newline (pos, to, 1);
1628 pos_byte = CHAR_TO_BYTE (pos);
1629 }
1630 /* If we just skipped next_boundary,
1631 loop around in the main while
1632 and handle it. */
1633 if (pos > next_boundary)
1634 next_boundary = pos;
1635 /* Allow for the " ..." that is displayed for them. */
1636 if (selective_rlen)
1637 {
1638 hpos += selective_rlen;
1639 if (hpos >= width)
1640 hpos = width;
1641 }
fe0066f5 1642 }
409f2919 1643 else if (multibyte && LEADING_CODE_P (c))
2ab90d49 1644 {
88c6e37e
GM
1645 /* Start of multi-byte form. */
1646 unsigned char *ptr;
c59478bc 1647 int mb_bytes, mb_width;
88c6e37e
GM
1648
1649 pos_byte--; /* rewind POS_BYTE */
1650 ptr = BYTE_POS_ADDR (pos_byte);
85f24f61
PE
1651 MULTIBYTE_BYTES_WIDTH (ptr, dp, mb_bytes, mb_width);
1652 pos_byte += mb_bytes;
c59478bc
PE
1653 if (mb_width > 1 && BYTES_BY_CHAR_HEAD (*ptr) == mb_bytes)
1654 wide_column_end_hpos = hpos + mb_width;
85f24f61 1655 hpos += mb_width;
2ab90d49 1656 }
f1004faf
GM
1657 else if (VECTORP (charvec))
1658 ++hpos;
88c6e37e
GM
1659 else
1660 hpos += (ctl_arrow && c < 0200) ? 2 : 4;
2ab90d49 1661 }
993b6404
JB
1662 }
1663 }
1664
98136db3
RS
1665 after_loop:
1666
0aa01123
JB
1667 /* Remember any final width run in the cache. */
1668 if (current_buffer->width_run_cache
1669 && width_run_width == 1
1670 && width_run_start < width_run_end)
1671 know_region_cache (current_buffer, current_buffer->width_run_cache,
1672 width_run_start, width_run_end);
1673
993b6404 1674 val_compute_motion.bufpos = pos;
fe0066f5 1675 val_compute_motion.bytepos = pos_byte;
cde9337b
JB
1676 val_compute_motion.hpos = hpos;
1677 val_compute_motion.vpos = vpos;
ef3af330
AS
1678 if (contin_hpos && prev_hpos == 0)
1679 val_compute_motion.prevhpos = contin_hpos;
1680 else
1681 val_compute_motion.prevhpos = prev_hpos;
993b6404
JB
1682
1683 /* Nonzero if have just continued a line */
a997a7ca 1684 val_compute_motion.contin = (contin_hpos && prev_hpos == 0);
993b6404 1685
e4500116 1686 immediate_quit = 0;
993b6404
JB
1687 return &val_compute_motion;
1688}
993b6404 1689
8720a429 1690
88af3af4 1691DEFUN ("compute-motion", Fcompute_motion, Scompute_motion, 7, 7, 0,
8c1a1077
PJ
1692 doc: /* Scan through the current buffer, calculating screen position.
1693Scan the current buffer forward from offset FROM,
1694assuming it is at position FROMPOS--a cons of the form (HPOS . VPOS)--
1695to position TO or position TOPOS--another cons of the form (HPOS . VPOS)--
1696and return the ending buffer position and screen location.
1697
361f14bf
KS
1698If TOPOS is nil, the actual width and height of the window's
1699text area are used.
1700
8c1a1077
PJ
1701There are three additional arguments:
1702
1703WIDTH is the number of columns available to display text;
361f14bf
KS
1704this affects handling of continuation lines. A value of nil
1705corresponds to the actual number of available text columns.
8c1a1077
PJ
1706
1707OFFSETS is either nil or a cons cell (HSCROLL . TAB-OFFSET).
1708HSCROLL is the number of columns not being displayed at the left
1709margin; this is usually taken from a window's hscroll member.
1710TAB-OFFSET is the number of columns of the first tab that aren't
1711being displayed, perhaps because the line was continued within it.
1712If OFFSETS is nil, HSCROLL and TAB-OFFSET are assumed to be zero.
1713
1714WINDOW is the window to operate on. It is used to choose the display table;
1715if it is showing the current buffer, it is used also for
1716deciding which overlay properties apply.
1717Note that `compute-motion' always operates on the current buffer.
1718
1719The value is a list of five elements:
1720 (POS HPOS VPOS PREVHPOS CONTIN)
1721POS is the buffer position where the scan stopped.
1722VPOS is the vertical position where the scan stopped.
1723HPOS is the horizontal position where the scan stopped.
1724
1725PREVHPOS is the horizontal position one character back from POS.
1726CONTIN is t if a line was continued after (or within) the previous character.
1727
1728For example, to find the buffer position of column COL of line LINE
1729of a certain window, pass the window's starting location as FROM
1730and the window's upper-left coordinates as FROMPOS.
1731Pass the buffer's (point-max) as TO, to limit the scan to the end of the
1732visible section of the buffer, and pass LINE and COL as TOPOS. */)
5842a27b 1733 (Lisp_Object from, Lisp_Object frompos, Lisp_Object to, Lisp_Object topos, Lisp_Object width, Lisp_Object offsets, Lisp_Object window)
42918ba5 1734{
361f14bf 1735 struct window *w;
8798a92b 1736 Lisp_Object bufpos, hpos, vpos, prevhpos;
42918ba5 1737 struct position *pos;
d311d28c
PE
1738 ptrdiff_t hscroll;
1739 int tab_offset;
42918ba5 1740
b7826503
PJ
1741 CHECK_NUMBER_COERCE_MARKER (from);
1742 CHECK_CONS (frompos);
1743 CHECK_NUMBER_CAR (frompos);
1744 CHECK_NUMBER_CDR (frompos);
1745 CHECK_NUMBER_COERCE_MARKER (to);
361f14bf
KS
1746 if (!NILP (topos))
1747 {
1748 CHECK_CONS (topos);
1749 CHECK_NUMBER_CAR (topos);
1750 CHECK_NUMBER_CDR (topos);
1751 }
1752 if (!NILP (width))
1753 CHECK_NUMBER (width);
1754
42918ba5
RS
1755 if (!NILP (offsets))
1756 {
b7826503
PJ
1757 CHECK_CONS (offsets);
1758 CHECK_NUMBER_CAR (offsets);
1759 CHECK_NUMBER_CDR (offsets);
d311d28c
PE
1760 if (! (0 <= XINT (XCAR (offsets)) && XINT (XCAR (offsets)) <= PTRDIFF_MAX
1761 && 0 <= XINT (XCDR (offsets)) && XINT (XCDR (offsets)) <= INT_MAX))
1762 args_out_of_range (XCAR (offsets), XCDR (offsets));
70949dac
KR
1763 hscroll = XINT (XCAR (offsets));
1764 tab_offset = XINT (XCDR (offsets));
42918ba5
RS
1765 }
1766 else
1767 hscroll = tab_offset = 0;
1768
88af3af4
KH
1769 if (NILP (window))
1770 window = Fselected_window ();
1771 else
b7826503 1772 CHECK_LIVE_WINDOW (window);
361f14bf 1773 w = XWINDOW (window);
88af3af4 1774
9fdae274
KH
1775 if (XINT (from) < BEGV || XINT (from) > ZV)
1776 args_out_of_range_3 (from, make_number (BEGV), make_number (ZV));
1777 if (XINT (to) < BEGV || XINT (to) > ZV)
1778 args_out_of_range_3 (to, make_number (BEGV), make_number (ZV));
1779
70949dac
KR
1780 pos = compute_motion (XINT (from), XINT (XCDR (frompos)),
1781 XINT (XCAR (frompos)), 0,
361f14bf
KS
1782 XINT (to),
1783 (NILP (topos)
1784 ? window_internal_height (w)
1785 : XINT (XCDR (topos))),
1786 (NILP (topos)
abde8f8c 1787 ? (window_body_cols (w)
361f14bf
KS
1788 - (
1789#ifdef HAVE_WINDOW_SYSTEM
d3d50620 1790 FRAME_WINDOW_P (XFRAME (w->frame)) ? 0 :
361f14bf
KS
1791#endif
1792 1))
1793 : XINT (XCAR (topos))),
1794 (NILP (width) ? -1 : XINT (width)),
1795 hscroll, tab_offset,
88af3af4 1796 XWINDOW (window));
42918ba5 1797
94d92e9c 1798 XSETFASTINT (bufpos, pos->bufpos);
f8f645a1
KH
1799 XSETINT (hpos, pos->hpos);
1800 XSETINT (vpos, pos->vpos);
1801 XSETINT (prevhpos, pos->prevhpos);
42918ba5
RS
1802
1803 return Fcons (bufpos,
1804 Fcons (hpos,
1805 Fcons (vpos,
1806 Fcons (prevhpos,
1807 Fcons (pos->contin ? Qt : Qnil, Qnil)))));
1808
1809}
993b6404 1810\f
0aa01123 1811/* Fvertical_motion and vmotion */
88c6e37e 1812
9306c32e 1813static struct position val_vmotion;
993b6404
JB
1814
1815struct position *
d311d28c 1816vmotion (register ptrdiff_t from, register EMACS_INT vtarget, struct window *w)
993b6404 1817{
80b00b08 1818 ptrdiff_t hscroll = w->hscroll;
993b6404
JB
1819 struct position pos;
1820 /* vpos is cumulative vertical position, changed as from is changed */
d311d28c
PE
1821 register EMACS_INT vpos = 0;
1822 ptrdiff_t prevline;
1823 register ptrdiff_t first;
1824 ptrdiff_t from_byte;
1825 ptrdiff_t lmargin = hscroll > 0 ? 1 - hscroll : 0;
1826 ptrdiff_t selective
4b4deea2 1827 = (INTEGERP (BVAR (current_buffer, selective_display))
d311d28c
PE
1828 ? clip_to_bounds (-1, XINT (BVAR (current_buffer, selective_display)),
1829 PTRDIFF_MAX)
4b4deea2 1830 : !NILP (BVAR (current_buffer, selective_display)) ? -1 : 0);
99ce22d5 1831 Lisp_Object window;
578098f3 1832 bool did_motion;
7ac57cb3
RS
1833 /* This is the object we use for fetching character properties. */
1834 Lisp_Object text_prop_object;
99ce22d5
KH
1835
1836 XSETWINDOW (window, w);
1837
7ac57cb3
RS
1838 /* If the window contains this buffer, use it for getting text properties.
1839 Otherwise use the current buffer as arg for doing that. */
d3d50620 1840 if (EQ (w->buffer, Fcurrent_buffer ()))
7ac57cb3
RS
1841 text_prop_object = window;
1842 else
1843 text_prop_object = Fcurrent_buffer ();
1844
99ce22d5 1845 if (vpos >= vtarget)
993b6404 1846 {
99ce22d5 1847 /* To move upward, go a line at a time until
fe0066f5 1848 we have gone at least far enough. */
99ce22d5
KH
1849
1850 first = 1;
1851
1852 while ((vpos > vtarget || first) && from > BEGV)
993b6404 1853 {
66c75ca5
RS
1854 Lisp_Object propval;
1855
2965dff9
RS
1856 prevline = find_next_newline_no_quit (from - 1, -1);
1857 while (prevline > BEGV
5a05d3d2 1858 && ((selective > 0
2965dff9
RS
1859 && indented_beyond_p (prevline,
1860 CHAR_TO_BYTE (prevline),
7831777b 1861 selective))
2965dff9
RS
1862 /* Watch out for newlines with `invisible' property.
1863 When moving upward, check the newline before. */
1864 || (propval = Fget_char_property (make_number (prevline - 1),
66c75ca5 1865 Qinvisible,
7ac57cb3 1866 text_prop_object),
339ee979 1867 TEXT_PROP_MEANS_INVISIBLE (propval))))
2965dff9
RS
1868 prevline = find_next_newline_no_quit (prevline - 1, -1);
1869 pos = *compute_motion (prevline, 0,
d311d28c 1870 lmargin,
2ab90d49 1871 0,
097812fb 1872 from,
a997a7ca
KH
1873 /* Don't care for VPOS... */
1874 1 << (BITS_PER_SHORT - 1),
1875 /* ... nor HPOS. */
1876 1 << (BITS_PER_SHORT - 1),
361f14bf 1877 -1, hscroll,
d311d28c 1878 0,
2dd4e608 1879 w);
99ce22d5
KH
1880 vpos -= pos.vpos;
1881 first = 0;
2965dff9 1882 from = prevline;
993b6404 1883 }
99ce22d5
KH
1884
1885 /* If we made exactly the desired vertical distance,
1886 or if we hit beginning of buffer,
1887 return point found */
1888 if (vpos >= vtarget)
993b6404 1889 {
99ce22d5 1890 val_vmotion.bufpos = from;
fe0066f5 1891 val_vmotion.bytepos = CHAR_TO_BYTE (from);
99ce22d5
KH
1892 val_vmotion.vpos = vpos;
1893 val_vmotion.hpos = lmargin;
1894 val_vmotion.contin = 0;
1895 val_vmotion.prevhpos = 0;
1896 return &val_vmotion;
993b6404 1897 }
993b6404 1898
99ce22d5
KH
1899 /* Otherwise find the correct spot by moving down */
1900 }
1901 /* Moving downward is simple, but must calculate from beg of line
1902 to determine hpos of starting point */
fe0066f5
RS
1903 from_byte = CHAR_TO_BYTE (from);
1904 if (from > BEGV && FETCH_BYTE (from_byte - 1) != '\n')
993b6404 1905 {
2ab90d49 1906 Lisp_Object propval;
66c75ca5 1907
2965dff9
RS
1908 prevline = find_next_newline_no_quit (from, -1);
1909 while (prevline > BEGV
99ce22d5 1910 && ((selective > 0
2965dff9
RS
1911 && indented_beyond_p (prevline,
1912 CHAR_TO_BYTE (prevline),
7831777b 1913 selective))
2965dff9
RS
1914 /* Watch out for newlines with `invisible' property.
1915 When moving downward, check the newline after. */
1916 || (propval = Fget_char_property (make_number (prevline),
1917 Qinvisible,
7ac57cb3 1918 text_prop_object),
339ee979 1919 TEXT_PROP_MEANS_INVISIBLE (propval))))
2965dff9
RS
1920 prevline = find_next_newline_no_quit (prevline - 1, -1);
1921 pos = *compute_motion (prevline, 0,
d311d28c 1922 lmargin,
2ab90d49 1923 0,
097812fb 1924 from,
a997a7ca
KH
1925 /* Don't care for VPOS... */
1926 1 << (BITS_PER_SHORT - 1),
1927 /* ... nor HPOS. */
1928 1 << (BITS_PER_SHORT - 1),
361f14bf 1929 -1, hscroll,
d311d28c 1930 0,
2dd4e608 1931 w);
2ab90d49 1932 did_motion = 1;
993b6404 1933 }
99ce22d5 1934 else
993b6404 1935 {
d311d28c 1936 pos.hpos = lmargin;
99ce22d5 1937 pos.vpos = 0;
2ab90d49 1938 did_motion = 0;
993b6404 1939 }
2ab90d49 1940 return compute_motion (from, vpos, pos.hpos, did_motion,
a997a7ca 1941 ZV, vtarget, - (1 << (BITS_PER_SHORT - 1)),
361f14bf 1942 -1, hscroll,
d311d28c 1943 0,
2dd4e608 1944 w);
993b6404
JB
1945}
1946
a7ca3326 1947DEFUN ("vertical-motion", Fvertical_motion, Svertical_motion, 1, 2, 0,
8c1a1077
PJ
1948 doc: /* Move point to start of the screen line LINES lines down.
1949If LINES is negative, this means moving up.
1950
1951This function is an ordinary cursor motion function
1952which calculates the new position based on how text would be displayed.
1953The new position may be the start of a line,
1954or just the start of a continuation line.
1955The function returns number of screen lines moved over;
1956that usually equals LINES, but may be closer to zero
1957if beginning or end of buffer was reached.
1958
1959The optional second argument WINDOW specifies the window to use for
1960parameters such as width, horizontal scrolling, and so on.
1961The default is to use the selected window's parameters.
1962
c876b227
SM
1963LINES can optionally take the form (COLS . LINES), in which case
1964the motion will not stop at the start of a screen line but on
1965its column COLS (if such exists on that line, that is).
1966
8c1a1077
PJ
1967`vertical-motion' always uses the current buffer,
1968regardless of which buffer is displayed in WINDOW.
1969This is consistent with other cursor motion functions
1970and makes it possible to use `vertical-motion' in any buffer,
1971whether or not it is currently displayed in some window. */)
5842a27b 1972 (Lisp_Object lines, Lisp_Object window)
993b6404 1973{
8720a429
GM
1974 struct it it;
1975 struct text_pos pt;
8720a429 1976 struct window *w;
39210e90 1977 Lisp_Object old_buffer;
f00bbb22 1978 EMACS_INT old_charpos IF_LINT (= 0), old_bytepos IF_LINT (= 0);
adc47434 1979 struct gcpro gcpro1, gcpro2, gcpro3;
baed8445 1980 Lisp_Object lcols = Qnil;
5671df8f 1981 double cols IF_LINT (= 0);
57b3e30b 1982 void *itdata = NULL;
c876b227
SM
1983
1984 /* Allow LINES to be of the form (HPOS . VPOS) aka (COLUMNS . LINES). */
1985 if (CONSP (lines) && (NUMBERP (XCAR (lines))))
1986 {
baed8445
SM
1987 lcols = XCAR (lines);
1988 cols = INTEGERP (lcols) ? (double) XINT (lcols) : XFLOAT_DATA (lcols);
c876b227
SM
1989 lines = XCDR (lines);
1990 }
993b6404 1991
b7826503 1992 CHECK_NUMBER (lines);
f1ecfe9b 1993 if (! NILP (window))
b7826503 1994 CHECK_WINDOW (window);
f1ecfe9b 1995 else
92992c7e 1996 window = selected_window;
8720a429 1997 w = XWINDOW (window);
39210e90
GM
1998
1999 old_buffer = Qnil;
adc47434 2000 GCPRO3 (old_buffer, old_charpos, old_bytepos);
d3d50620 2001 if (XBUFFER (w->buffer) != current_buffer)
8720a429 2002 {
39210e90 2003 /* Set the window's buffer temporarily to the current buffer. */
d3d50620
DA
2004 old_buffer = w->buffer;
2005 old_charpos = XMARKER (w->pointm)->charpos;
2006 old_bytepos = XMARKER (w->pointm)->bytepos;
e8c17b81 2007 wset_buffer (w, Fcurrent_buffer ());
d3d50620 2008 set_marker_both (w->pointm, w->buffer,
3a45383a 2009 BUF_PT (current_buffer), BUF_PT_BYTE (current_buffer));
8720a429 2010 }
097812fb 2011
6df71429 2012 if (noninteractive)
9305b0e7 2013 {
6df71429
RS
2014 struct position pos;
2015 pos = *vmotion (PT, XINT (lines), w);
2016 SET_PT_BOTH (pos.bufpos, pos.bytepos);
9305b0e7
KS
2017 }
2018 else
6df71429 2019 {
5895d7b9
PE
2020 ptrdiff_t it_start, it_overshoot_count = 0;
2021 int first_x;
578098f3
PE
2022 bool overshoot_handled = 0;
2023 bool disp_string_at_start_p = 0;
24a06d04 2024
57b3e30b 2025 itdata = bidi_shelve_cache ();
6df71429
RS
2026 SET_TEXT_POS (pt, PT, PT_BYTE);
2027 start_display (&it, w, pt);
2f4ec7ce 2028 first_x = it.first_visible_x;
24a06d04 2029 it_start = IT_CHARPOS (it);
14a7cabf 2030
48cdfb4b 2031 /* See comments below for why we calculate this. */
e3cbd34b
EZ
2032 if (it.cmp_it.id >= 0)
2033 it_overshoot_count = 0;
2034 else if (it.method == GET_FROM_STRING)
14a7cabf 2035 {
e3cbd34b
EZ
2036 const char *s = SSDATA (it.string);
2037 const char *e = s + SBYTES (it.string);
3811fdf3
EZ
2038
2039 disp_string_at_start_p = it.string_from_display_prop_p;
e3cbd34b 2040 while (s < e)
48cdfb4b 2041 {
e3cbd34b
EZ
2042 if (*s++ == '\n')
2043 it_overshoot_count++;
48cdfb4b 2044 }
e3cbd34b 2045 if (!it_overshoot_count)
1260aef1 2046 it_overshoot_count = -1;
14a7cabf 2047 }
e3cbd34b
EZ
2048 else
2049 it_overshoot_count =
2050 !(it.method == GET_FROM_IMAGE || it.method == GET_FROM_STRETCH);
14a7cabf 2051
48cdfb4b
CY
2052 /* Scan from the start of the line containing PT. If we don't
2053 do this, we start moving with IT->current_x == 0, while PT is
2054 really at some x > 0. */
b54a7539
KS
2055 reseat_at_previous_visible_line_start (&it);
2056 it.current_x = it.hpos = 0;
af2be002 2057 if (IT_CHARPOS (it) != PT)
11fb10de
CY
2058 /* We used to temporarily disable selective display here; the
2059 comment said this is "so we don't move too far" (2005-01-19
2060 checkin by kfs). But this does nothing useful that I can
2061 tell, and it causes Bug#2694 . -- cyd */
2062 move_it_to (&it, PT, -1, -1, -1, MOVE_TO_POS);
b54a7539 2063
e3cbd34b
EZ
2064 /* IT may move too far if truncate-lines is on and PT lies
2065 beyond the right margin. IT may also move too far if the
2066 starting point is on a Lisp string that has embedded
3811fdf3
EZ
2067 newlines, or spans several screen lines. In these cases,
2068 backtrack. */
e3cbd34b
EZ
2069 if (IT_CHARPOS (it) > it_start)
2070 {
2071 /* We need to backtrack also if the Lisp string contains no
2072 newlines, but there is a newline right after it. In this
2073 case, IT overshoots if there is an after-string just
2074 before the newline. */
2075 if (it_overshoot_count < 0
2076 && it.method == GET_FROM_BUFFER
2077 && it.c == '\n')
2078 it_overshoot_count = 1;
3811fdf3
EZ
2079 else if (disp_string_at_start_p && it.vpos > 0)
2080 {
2081 /* This is the case of a display string that spans
2082 several screen lines. In that case, we end up at the
2083 end of the string, and it.vpos tells us how many
2084 screen lines we need to backtrack. */
2085 it_overshoot_count = it.vpos;
2086 }
e3cbd34b
EZ
2087 if (it_overshoot_count > 0)
2088 move_it_by_lines (&it, -it_overshoot_count);
2089
2090 overshoot_handled = 1;
2091 }
48cdfb4b 2092 if (XINT (lines) <= 0)
72ad106b 2093 {
48cdfb4b
CY
2094 it.vpos = 0;
2095 /* Do this even if LINES is 0, so that we move back to the
2096 beginning of the current line as we ought. */
2097 if (XINT (lines) == 0 || IT_CHARPOS (it) > 0)
5895d7b9 2098 move_it_by_lines (&it, max (PTRDIFF_MIN, XINT (lines)));
48cdfb4b 2099 }
e3cbd34b
EZ
2100 else if (overshoot_handled)
2101 {
2102 it.vpos = 0;
5895d7b9 2103 move_it_by_lines (&it, min (PTRDIFF_MAX, XINT (lines)));
48cdfb4b
CY
2104 }
2105 else
2106 {
e3cbd34b
EZ
2107 /* Otherwise, we are at the first row occupied by PT, which
2108 might span multiple screen lines (e.g., if it's on a
2109 multi-line display string). We want to start from the
2110 last line that it occupies. */
2111 if (it_start < ZV)
48cdfb4b 2112 {
e3cbd34b 2113 while (IT_CHARPOS (it) <= it_start)
d8a7e7fc
CY
2114 {
2115 it.vpos = 0;
e3cbd34b 2116 move_it_by_lines (&it, 1);
d8a7e7fc 2117 }
e3cbd34b 2118 if (XINT (lines) > 1)
5895d7b9 2119 move_it_by_lines (&it, min (PTRDIFF_MAX, XINT (lines) - 1));
e3cbd34b
EZ
2120 }
2121 else
2122 {
2123 it.vpos = 0;
5895d7b9 2124 move_it_by_lines (&it, min (PTRDIFF_MAX, XINT (lines)));
48cdfb4b 2125 }
72ad106b 2126 }
097812fb 2127
2f4ec7ce 2128 /* Move to the goal column, if one was specified. */
baed8445 2129 if (!NILP (lcols))
2f4ec7ce
CY
2130 {
2131 /* If the window was originally hscrolled, move forward by
2132 the hscrolled amount first. */
2133 if (first_x > 0)
2134 {
2135 move_it_in_display_line (&it, ZV, first_x, MOVE_TO_X);
2136 it.current_x = 0;
2137 }
2138 move_it_in_display_line
2139 (&it, ZV,
d3d50620 2140 (int)(cols * FRAME_COLUMN_WIDTH (XFRAME (w->frame)) + 0.5),
2f4ec7ce
CY
2141 MOVE_TO_X);
2142 }
c876b227 2143
6df71429 2144 SET_PT_BOTH (IT_CHARPOS (it), IT_BYTEPOS (it));
35928349 2145 bidi_unshelve_cache (itdata, 0);
6df71429 2146 }
8720a429 2147
39210e90 2148 if (BUFFERP (old_buffer))
adc47434 2149 {
e8c17b81 2150 wset_buffer (w, old_buffer);
d3d50620 2151 set_marker_both (w->pointm, w->buffer,
3a45383a 2152 old_charpos, old_bytepos);
adc47434 2153 }
097812fb 2154
39210e90 2155 RETURN_UNGCPRO (make_number (it.vpos));
993b6404 2156}
8720a429
GM
2157
2158
993b6404 2159\f
88c6e37e 2160/* File's initialization. */
0aa01123 2161
dfcf069d 2162void
971de7fb 2163syms_of_indent (void)
993b6404 2164{
29208e82 2165 DEFVAR_BOOL ("indent-tabs-mode", indent_tabs_mode,
fb7ada5f 2166 doc: /* Indentation can insert tabs if this is non-nil. */);
993b6404
JB
2167 indent_tabs_mode = 1;
2168
2169 defsubr (&Scurrent_indentation);
2170 defsubr (&Sindent_to);
2171 defsubr (&Scurrent_column);
2172 defsubr (&Smove_to_column);
2173 defsubr (&Svertical_motion);
42918ba5 2174 defsubr (&Scompute_motion);
993b6404 2175}