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