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