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