]> code.delx.au - gnu-emacs/blob - src/indent.c
(current_column_1, Fmove_to_column):
[gnu-emacs] / src / indent.c
1 /* Indentation functions.
2 Copyright (C) 1985,86,87,88,93,94,95 Free Software Foundation, Inc.
3
4 This file is part of GNU Emacs.
5
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
20
21
22 #include <config.h>
23 #include "lisp.h"
24 #include "buffer.h"
25 #include "charset.h"
26 #include "category.h"
27 #include "indent.h"
28 #include "frame.h"
29 #include "window.h"
30 #include "termchar.h"
31 #include "termopts.h"
32 #include "disptab.h"
33 #include "intervals.h"
34 #include "region-cache.h"
35
36 /* Indentation can insert tabs if this is non-zero;
37 otherwise always uses spaces */
38 int indent_tabs_mode;
39
40 #define min(a, b) ((a) < (b) ? (a) : (b))
41 #define max(a, b) ((a) > (b) ? (a) : (b))
42
43 #define CR 015
44
45 /* These three values memoize the current column to avoid recalculation */
46 /* Some things in set last_known_column_point to -1
47 to mark the memoized value as invalid */
48 /* Last value returned by current_column */
49 int last_known_column;
50 /* Value of point when current_column was called */
51 int last_known_column_point;
52 /* Value of MODIFF when current_column was called */
53 int last_known_column_modified;
54
55 static int current_column_1 ();
56 static int position_indentation ();
57
58 /* Cache of beginning of line found by the last call of
59 current_column. */
60 int current_column_bol_cache;
61
62 /* Get the display table to use for the current buffer. */
63
64 struct Lisp_Char_Table *
65 buffer_display_table ()
66 {
67 Lisp_Object thisbuf;
68
69 thisbuf = current_buffer->display_table;
70 if (DISP_TABLE_P (thisbuf))
71 return XCHAR_TABLE (thisbuf);
72 if (DISP_TABLE_P (Vstandard_display_table))
73 return XCHAR_TABLE (Vstandard_display_table);
74 return 0;
75 }
76 \f
77 /* Width run cache considerations. */
78
79 /* Return the width of character C under display table DP. */
80
81 static int
82 character_width (c, dp)
83 int c;
84 struct Lisp_Char_Table *dp;
85 {
86 Lisp_Object elt;
87
88 /* These width computations were determined by examining the cases
89 in display_text_line. */
90
91 /* Everything can be handled by the display table, if it's
92 present and the element is right. */
93 if (dp && (elt = DISP_CHAR_VECTOR (dp, c), VECTORP (elt)))
94 return XVECTOR (elt)->size;
95
96 /* Some characters are special. */
97 if (c == '\n' || c == '\t' || c == '\015')
98 return 0;
99
100 /* Printing characters have width 1. */
101 else if (c >= 040 && c < 0177)
102 return 1;
103
104 /* Everybody else (control characters, metacharacters) has other
105 widths. We could return their actual widths here, but they
106 depend on things like ctl_arrow and crud like that, and they're
107 not very common at all. So we'll just claim we don't know their
108 widths. */
109 else
110 return 0;
111 }
112
113 /* Return true iff the display table DISPTAB specifies the same widths
114 for characters as WIDTHTAB. We use this to decide when to
115 invalidate the buffer's width_run_cache. */
116 int
117 disptab_matches_widthtab (disptab, widthtab)
118 struct Lisp_Char_Table *disptab;
119 struct Lisp_Vector *widthtab;
120 {
121 int i;
122
123 if (widthtab->size != 256)
124 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 void
136 recompute_width_table (buf, disptab)
137 struct buffer *buf;
138 struct Lisp_Char_Table *disptab;
139 {
140 int i;
141 struct Lisp_Vector *widthtab;
142
143 if (!VECTORP (buf->width_table))
144 buf->width_table = Fmake_vector (make_number (256), make_number (0));
145 widthtab = XVECTOR (buf->width_table);
146 if (widthtab->size != 256)
147 abort ();
148
149 for (i = 0; i < 256; i++)
150 XSETFASTINT (widthtab->contents[i], character_width (i, disptab));
151 }
152
153 /* Allocate or free the width run cache, as requested by the current
154 state of current_buffer's cache_long_line_scans variable. */
155 static void
156 width_run_cache_on_off ()
157 {
158 if (NILP (current_buffer->cache_long_line_scans)
159 /* And, for the moment, this feature doesn't work on multibyte
160 characters. */
161 || !NILP (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 current_buffer->width_table = 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 static int
207 skip_invisible (pos, next_boundary_p, to, window)
208 int pos;
209 int *next_boundary_p;
210 int to;
211 Lisp_Object window;
212 {
213 Lisp_Object prop, position, overlay_limit, proplimit;
214 Lisp_Object buffer;
215 int end;
216
217 XSETFASTINT (position, pos);
218 XSETBUFFER (buffer, current_buffer);
219
220 /* Give faster response for overlay lookup near POS. */
221 recenter_overlay_lists (current_buffer, pos);
222
223 /* We must not advance farther than the next overlay change.
224 The overlay change might change the invisible property;
225 or there might be overlay strings to be displayed there. */
226 overlay_limit = Fnext_overlay_change (position);
227 /* As for text properties, this gives a lower bound
228 for where the invisible text property could change. */
229 proplimit = Fnext_property_change (position, buffer, Qt);
230 if (XFASTINT (overlay_limit) < XFASTINT (proplimit))
231 proplimit = overlay_limit;
232 /* PROPLIMIT is now a lower bound for the next change
233 in invisible status. If that is plenty far away,
234 use that lower bound. */
235 if (XFASTINT (proplimit) > pos + 100 || XFASTINT (proplimit) >= to)
236 *next_boundary_p = XFASTINT (proplimit);
237 /* Otherwise, scan for the next `invisible' property change. */
238 else
239 {
240 /* Don't scan terribly far. */
241 XSETFASTINT (proplimit, min (pos + 100, to));
242 /* No matter what. don't go past next overlay change. */
243 if (XFASTINT (overlay_limit) < XFASTINT (proplimit))
244 proplimit = overlay_limit;
245 end = XFASTINT (Fnext_single_property_change (position, Qinvisible,
246 buffer, proplimit));
247 #if 0
248 /* Don't put the boundary in the middle of multibyte form if
249 there is no actual property change. */
250 if (end == pos + 100
251 && !NILP (current_buffer->enable_multibyte_characters)
252 && end < ZV)
253 while (pos < end && !CHAR_HEAD_P (POS_ADDR (end)))
254 end--;
255 #endif
256 *next_boundary_p = end;
257 }
258 /* if the `invisible' property is set, we can skip to
259 the next property change */
260 if (!NILP (window) && EQ (XWINDOW (window)->buffer, buffer))
261 prop = Fget_char_property (position, Qinvisible, window);
262 else
263 prop = Fget_char_property (position, Qinvisible, buffer);
264 if (TEXT_PROP_MEANS_INVISIBLE (prop))
265 return *next_boundary_p;
266 return pos;
267 }
268 \f
269 DEFUN ("current-column", Fcurrent_column, Scurrent_column, 0, 0, 0,
270 "Return the horizontal position of point. Beginning of line is column 0.\n\
271 This is calculated by adding together the widths of all the displayed\n\
272 representations of the character between the start of the previous line\n\
273 and point. (eg control characters will have a width of 2 or 4, tabs\n\
274 will have a variable width)\n\
275 Ignores finite width of frame, which means that this function may return\n\
276 values greater than (frame-width).\n\
277 Whether the line is visible (if `selective-display' is t) has no effect;\n\
278 however, ^M is treated as end of line when `selective-display' is t.")
279 ()
280 {
281 Lisp_Object temp;
282 XSETFASTINT (temp, current_column ());
283 return temp;
284 }
285
286 /* Cancel any recorded value of the horizontal position. */
287
288 void
289 invalidate_current_column ()
290 {
291 last_known_column_point = 0;
292 }
293
294 int
295 current_column ()
296 {
297 register int col;
298 register unsigned char *ptr, *stop;
299 register int tab_seen;
300 int post_tab;
301 register int c;
302 register int tab_width = XINT (current_buffer->tab_width);
303 int ctl_arrow = !NILP (current_buffer->ctl_arrow);
304 register struct Lisp_Char_Table *dp = buffer_display_table ();
305 int stopchar;
306
307 if (PT == last_known_column_point
308 && MODIFF == last_known_column_modified)
309 return last_known_column;
310
311 /* If the buffer has overlays, text properties, or multibyte,
312 use a more general algorithm. */
313 if (BUF_INTERVALS (current_buffer)
314 || !NILP (current_buffer->overlays_before)
315 || !NILP (current_buffer->overlays_after)
316 || !NILP (current_buffer->enable_multibyte_characters))
317 return current_column_1 (PT);
318
319 /* Scan backwards from point to the previous newline,
320 counting width. Tab characters are the only complicated case. */
321
322 /* Make a pointer for decrementing through the chars before point. */
323 ptr = BYTE_POS_ADDR (PT_BYTE - 1) + 1;
324 /* Make a pointer to where consecutive chars leave off,
325 going backwards from point. */
326 if (PT == BEGV)
327 stop = ptr;
328 else if (PT <= GPT || BEGV > GPT)
329 stop = BEGV_ADDR;
330 else
331 stop = GAP_END_ADDR;
332
333 if (tab_width <= 0 || tab_width > 1000) tab_width = 8;
334
335 col = 0, tab_seen = 0, post_tab = 0;
336
337 while (1)
338 {
339 if (ptr == stop)
340 {
341 /* We stopped either for the beginning of the buffer
342 or for the gap. */
343 if (ptr == BEGV_ADDR)
344 break;
345 /* It was the gap. Jump back over it. */
346 stop = BEGV_ADDR;
347 ptr = GPT_ADDR;
348 /* Check whether that brings us to beginning of buffer. */
349 if (BEGV >= GPT) break;
350 }
351
352 c = *--ptr;
353 if (dp != 0 && VECTORP (DISP_CHAR_VECTOR (dp, c)))
354 col += XVECTOR (DISP_CHAR_VECTOR (dp, c))->size;
355 else if (c >= 040 && c < 0177)
356 col++;
357 else if (c == '\n'
358 || (c == '\r' && EQ (current_buffer->selective_display, Qt)))
359 {
360 ptr++;
361 break;
362 }
363 else if (c == '\t')
364 {
365 if (tab_seen)
366 col = ((col + tab_width) / tab_width) * tab_width;
367
368 post_tab += col;
369 col = 0;
370 tab_seen = 1;
371 }
372 else
373 col += (ctl_arrow && c < 0200) ? 2 : 4;
374 }
375
376 if (tab_seen)
377 {
378 col = ((col + tab_width) / tab_width) * tab_width;
379 col += post_tab;
380 }
381
382 if (ptr == BEGV_ADDR)
383 current_column_bol_cache = BEGV;
384 else
385 current_column_bol_cache = BYTE_TO_CHAR (PTR_BYTE_POS (ptr));
386
387 last_known_column = col;
388 last_known_column_point = PT;
389 last_known_column_modified = MODIFF;
390
391 return col;
392 }
393 \f
394 /* Return the column number of position POS
395 by scanning forward from the beginning of the line.
396 This function handles characters that are invisible
397 due to text properties or overlays. */
398
399 static int
400 current_column_1 (pos)
401 int pos;
402 {
403 register int tab_width = XINT (current_buffer->tab_width);
404 register int ctl_arrow = !NILP (current_buffer->ctl_arrow);
405 register struct Lisp_Char_Table *dp = buffer_display_table ();
406 int multibyte = !NILP (current_buffer->enable_multibyte_characters);
407
408 /* Start the scan at the beginning of this line with column number 0. */
409 register int col = 0;
410 int scan, scan_byte;
411 int next_boundary, next_boundary_byte;
412 int opoint = PT, opoint_byte = PT_BYTE;
413
414 scan_newline (pos, CHAR_TO_BYTE (pos), BEGV, BEGV_BYTE, -1, 1);
415 current_column_bol_cache = PT;
416 scan = PT, scan_byte = PT_BYTE;
417 SET_PT_BOTH (opoint, opoint_byte);
418 next_boundary = scan;
419 next_boundary_byte = scan_byte;
420
421 if (tab_width <= 0 || tab_width > 1000) tab_width = 8;
422
423 /* Scan forward to the target position. */
424 while (scan < pos)
425 {
426 int c;
427
428 /* Occasionally we may need to skip invisible text. */
429 while (scan == next_boundary)
430 {
431 int old_scan = scan;
432 /* This updates NEXT_BOUNDARY to the next place
433 where we might need to skip more invisible text. */
434 scan = skip_invisible (scan, &next_boundary, pos, Qnil);
435 if (scan >= pos)
436 goto endloop;
437 if (scan != old_scan)
438 scan_byte = CHAR_TO_BYTE (scan);
439 next_boundary_byte = CHAR_TO_BYTE (next_boundary);
440 }
441
442 c = FETCH_BYTE (scan);
443 if (dp != 0 && VECTORP (DISP_CHAR_VECTOR (dp, c)))
444 {
445 col += XVECTOR (DISP_CHAR_VECTOR (dp, c))->size;
446 scan++;
447 scan_byte++;
448 continue;
449 }
450 if (c == '\n')
451 break;
452 if (c == '\r' && EQ (current_buffer->selective_display, Qt))
453 break;
454 scan++;
455 scan_byte++;
456 if (c == '\t')
457 {
458 int prev_col = col;
459 col += tab_width;
460 col = col / tab_width * tab_width;
461 }
462 else if (multibyte && BASE_LEADING_CODE_P (c))
463 {
464 scan_byte--;
465 /* Start of multi-byte form. */
466 if (c == LEADING_CODE_COMPOSITION)
467 {
468 unsigned char *ptr = BYTE_POS_ADDR (scan_byte);
469
470 int cmpchar_id
471 = str_cmpchar_id (ptr, next_boundary_byte - scan_byte);
472 if (cmpchar_id >= 0)
473 {
474 scan_byte += cmpchar_table[cmpchar_id]->len;
475 col += cmpchar_table[cmpchar_id]->width;
476 }
477 else
478 { /* invalid composite character */
479 scan_byte++;
480 col += 4;
481 }
482 }
483 else
484 {
485 /* Here, we check that the following bytes are valid
486 constituents of multi-byte form. */
487 int len = BYTES_BY_CHAR_HEAD (c), i;
488
489 for (i = 1, scan_byte++; i < len; i++, scan_byte++)
490 /* We don't need range checking for PTR because there
491 are anchors (`\0') at GAP and Z. */
492 if (CHAR_HEAD_P (FETCH_BYTE (scan_byte)))
493 break;
494
495 if (i < len)
496 col += 4, scan_byte -= i - 1;
497 else
498 col += WIDTH_BY_CHAR_HEAD (c);
499 }
500 }
501 else if (ctl_arrow && (c < 040 || c == 0177))
502 col += 2;
503 else if (c < 040 || c >= 0177)
504 col += 4;
505 else
506 col++;
507 }
508 endloop:
509
510 last_known_column = col;
511 last_known_column_point = PT;
512 last_known_column_modified = MODIFF;
513
514 return col;
515 }
516 \f
517 /* Return the width in columns of the part of STRING from BEG to END.
518 If BEG is nil, that stands for the beginning of STRING.
519 If END is nil, that stands for the end of STRING. */
520
521 static int
522 string_display_width (string, beg, end)
523 Lisp_Object string, beg, end;
524 {
525 register int col;
526 register unsigned char *ptr, *stop;
527 register int tab_seen;
528 int post_tab;
529 register int c;
530 register int tab_width = XINT (current_buffer->tab_width);
531 int ctl_arrow = !NILP (current_buffer->ctl_arrow);
532 register struct Lisp_Char_Table *dp = buffer_display_table ();
533 int b, e;
534
535 if (NILP (end))
536 e = XSTRING (string)->size;
537 else
538 {
539 CHECK_NUMBER (end, 0);
540 e = XINT (end);
541 }
542
543 if (NILP (beg))
544 b = 0;
545 else
546 {
547 CHECK_NUMBER (beg, 0);
548 b = XINT (beg);
549 }
550
551 /* Make a pointer for decrementing through the chars before point. */
552 ptr = XSTRING (string)->data + e;
553 /* Make a pointer to where consecutive chars leave off,
554 going backwards from point. */
555 stop = XSTRING (string)->data + b;
556
557 if (tab_width <= 0 || tab_width > 1000) tab_width = 8;
558
559 col = 0, tab_seen = 0, post_tab = 0;
560
561 while (1)
562 {
563 if (ptr == stop)
564 break;
565
566 c = *--ptr;
567 if (dp != 0 && VECTORP (DISP_CHAR_VECTOR (dp, c)))
568 col += XVECTOR (DISP_CHAR_VECTOR (dp, c))->size;
569 else if (c >= 040 && c < 0177)
570 col++;
571 else if (c == '\n')
572 break;
573 else if (c == '\t')
574 {
575 if (tab_seen)
576 col = ((col + tab_width) / tab_width) * tab_width;
577
578 post_tab += col;
579 col = 0;
580 tab_seen = 1;
581 }
582 else
583 col += (ctl_arrow && c < 0200) ? 2 : 4;
584 }
585
586 if (tab_seen)
587 {
588 col = ((col + tab_width) / tab_width) * tab_width;
589 col += post_tab;
590 }
591
592 return col;
593 }
594 \f
595 DEFUN ("indent-to", Findent_to, Sindent_to, 1, 2, "NIndent to column: ",
596 "Indent from point with tabs and spaces until COLUMN is reached.\n\
597 Optional second argument MININUM says always do at least MININUM spaces\n\
598 even if that goes past COLUMN; by default, MININUM is zero.")
599 (column, minimum)
600 Lisp_Object column, minimum;
601 {
602 int mincol;
603 register int fromcol;
604 register int tab_width = XINT (current_buffer->tab_width);
605
606 CHECK_NUMBER (column, 0);
607 if (NILP (minimum))
608 XSETFASTINT (minimum, 0);
609 CHECK_NUMBER (minimum, 1);
610
611 fromcol = current_column ();
612 mincol = fromcol + XINT (minimum);
613 if (mincol < XINT (column)) mincol = XINT (column);
614
615 if (fromcol == mincol)
616 return make_number (mincol);
617
618 if (tab_width <= 0 || tab_width > 1000) tab_width = 8;
619
620 if (indent_tabs_mode)
621 {
622 Lisp_Object n;
623 XSETFASTINT (n, mincol / tab_width - fromcol / tab_width);
624 if (XFASTINT (n) != 0)
625 {
626 Finsert_char (make_number ('\t'), n, Qt);
627
628 fromcol = (mincol / tab_width) * tab_width;
629 }
630 }
631
632 XSETFASTINT (column, mincol - fromcol);
633 Finsert_char (make_number (' '), column, Qt);
634
635 last_known_column = mincol;
636 last_known_column_point = PT;
637 last_known_column_modified = MODIFF;
638
639 XSETINT (column, mincol);
640 return column;
641 }
642
643 \f
644 DEFUN ("current-indentation", Fcurrent_indentation, Scurrent_indentation,
645 0, 0, 0,
646 "Return the indentation of the current line.\n\
647 This is the horizontal position of the character\n\
648 following any initial whitespace.")
649 ()
650 {
651 Lisp_Object val;
652 int opoint = PT, opoint_byte = PT_BYTE;
653
654 scan_newline (PT, PT_BYTE, BEGV, BEGV_BYTE, -1, 1);
655
656 XSETFASTINT (val, position_indentation (PT_BYTE));
657 SET_PT_BOTH (opoint, opoint_byte);
658 return val;
659 }
660
661 static int
662 position_indentation (pos_byte)
663 register int pos_byte;
664 {
665 register int column = 0;
666 register int tab_width = XINT (current_buffer->tab_width);
667 register unsigned char *p;
668 register unsigned char *stop;
669 unsigned char *start;
670 int next_boundary_byte = pos_byte;
671 int ceiling = next_boundary_byte;
672
673 if (tab_width <= 0 || tab_width > 1000) tab_width = 8;
674
675 p = BYTE_POS_ADDR (pos_byte);
676 /* STOP records the value of P at which we will need
677 to think about the gap, or about invisible text,
678 or about the end of the buffer. */
679 stop = p;
680 /* START records the starting value of P. */
681 start = p;
682 while (1)
683 {
684 while (p == stop)
685 {
686 int stop_pos_byte;
687
688 /* If we have updated P, set POS_BYTE to match.
689 The first time we enter the loop, POS_BYTE is already right. */
690 if (p != start)
691 pos_byte = PTR_BYTE_POS (p);
692 /* Consider the various reasons STOP might have been set here. */
693 if (pos_byte == ZV_BYTE)
694 return column;
695 if (pos_byte == next_boundary_byte)
696 {
697 int next_boundary;
698 int pos = BYTE_TO_CHAR (pos_byte);
699 pos = skip_invisible (pos, &next_boundary, ZV, Qnil);
700 pos_byte = CHAR_TO_BYTE (pos);
701 next_boundary_byte = CHAR_TO_BYTE (next_boundary);
702 }
703 if (pos_byte >= ceiling)
704 ceiling = BUFFER_CEILING_OF (pos_byte) + 1;
705 /* Compute the next place we need to stop and think,
706 and set STOP accordingly. */
707 stop_pos_byte = min (ceiling, next_boundary_byte);
708 /* The -1 and +1 arrange to point at the first byte of gap
709 (if STOP_POS_BYTE is the position of the gap)
710 rather than at the data after the gap. */
711
712 stop = BYTE_POS_ADDR (stop_pos_byte - 1) + 1;
713 p = BYTE_POS_ADDR (pos_byte);
714 }
715 switch (*p++)
716 {
717 case 0240:
718 if (! NILP (current_buffer->enable_multibyte_characters))
719 return column;
720 case ' ':
721 column++;
722 break;
723 case '\t':
724 column += tab_width - column % tab_width;
725 break;
726 default:
727 if (ASCII_BYTE_P (p[-1])
728 || NILP (current_buffer->enable_multibyte_characters))
729 return column;
730 {
731 int c;
732 pos_byte = PTR_BYTE_POS (p - 1);
733 c = FETCH_MULTIBYTE_CHAR (pos_byte);
734 if (CHAR_HAS_CATEGORY (c, ' '))
735 {
736 column++;
737 INC_POS (pos_byte);
738 p = BYTE_POS_ADDR (pos_byte);
739 }
740 else
741 return column;
742 }
743 }
744 }
745 }
746
747 /* Test whether the line beginning at POS is indented beyond COLUMN.
748 Blank lines are treated as if they had the same indentation as the
749 preceding line. */
750
751 int
752 indented_beyond_p (pos, pos_byte, column)
753 int pos, pos_byte, column;
754 {
755 Lisp_Object val;
756 int opoint = PT, opoint_byte = PT_BYTE;
757
758 SET_PT_BOTH (pos, pos_byte);
759 while (PT > BEGV && FETCH_BYTE (PT_BYTE) == '\n')
760 scan_newline (PT - 1, PT_BYTE - 1, BEGV, BEGV_BYTE, -1, 0);
761
762 XSETFASTINT (val, position_indentation (PT_BYTE));
763 SET_PT_BOTH (opoint, opoint_byte);
764 return val;
765 }
766 \f
767 DEFUN ("move-to-column", Fmove_to_column, Smove_to_column, 1, 2, "p",
768 "Move point to column COLUMN in the current line.\n\
769 The column of a character is calculated by adding together the widths\n\
770 as displayed of the previous characters in the line.\n\
771 This function ignores line-continuation;\n\
772 there is no upper limit on the column number a character can have\n\
773 and horizontal scrolling has no effect.\n\
774 \n\
775 If specified column is within a character, point goes after that character.\n\
776 If it's past end of line, point goes to end of line.\n\n\
777 A non-nil second (optional) argument FORCE means, if the line\n\
778 is too short to reach column COLUMN then add spaces/tabs to get there,\n\
779 and if COLUMN is in the middle of a tab character, change it to spaces.\n\
780 \n\
781 The return value is the current column.")
782 (column, force)
783 Lisp_Object column, force;
784 {
785 register int pos;
786 register int col = current_column ();
787 register int goal;
788 register int end;
789 register int tab_width = XINT (current_buffer->tab_width);
790 register int ctl_arrow = !NILP (current_buffer->ctl_arrow);
791 register struct Lisp_Char_Table *dp = buffer_display_table ();
792 register int multibyte = !NILP (current_buffer->enable_multibyte_characters);
793
794 Lisp_Object val;
795 int prev_col;
796 int c;
797 int next_boundary;
798
799 int pos_byte, end_byte, next_boundary_byte;
800
801 if (tab_width <= 0 || tab_width > 1000) tab_width = 8;
802 CHECK_NATNUM (column, 0);
803 goal = XINT (column);
804
805 pos = PT;
806 pos_byte = PT_BYTE;
807 end = ZV;
808 end_byte = ZV_BYTE;
809 next_boundary = pos;
810 next_boundary_byte = PT_BYTE;
811
812 /* If we're starting past the desired column,
813 back up to beginning of line and scan from there. */
814 if (col > goal)
815 {
816 end = pos;
817 pos = current_column_bol_cache;
818 pos_byte = CHAR_TO_BYTE (pos);
819 col = 0;
820 }
821
822 while (pos < end)
823 {
824 while (pos == next_boundary)
825 {
826 int prev = pos;
827 pos = skip_invisible (pos, &next_boundary, end, Qnil);
828 if (pos != prev)
829 pos_byte = CHAR_TO_BYTE (pos);
830 next_boundary_byte = CHAR_TO_BYTE (next_boundary);
831 if (pos >= end)
832 goto endloop;
833 }
834
835 /* Test reaching the goal column. We do this after skipping
836 invisible characters, so that we put point before the
837 character on which the cursor will appear. */
838 if (col >= goal)
839 break;
840
841 c = FETCH_BYTE (pos_byte);
842 if (dp != 0 && VECTORP (DISP_CHAR_VECTOR (dp, c)))
843 {
844 col += XVECTOR (DISP_CHAR_VECTOR (dp, c))->size;
845 pos_byte++;
846 pos++;
847 continue;
848 }
849 if (c == '\n')
850 break;
851 if (c == '\r' && EQ (current_buffer->selective_display, Qt))
852 break;
853 pos++;
854 pos_byte++;
855 if (c == '\t')
856 {
857 prev_col = col;
858 col += tab_width;
859 col = col / tab_width * tab_width;
860 }
861 else if (ctl_arrow && (c < 040 || c == 0177))
862 col += 2;
863 else if (c < 040 || c == 0177)
864 col += 4;
865 else if (c < 0177)
866 col++;
867 else if (multibyte && BASE_LEADING_CODE_P (c))
868 {
869 /* Start of multi-byte form. */
870 unsigned char *ptr;
871
872 pos_byte--; /* rewind to the character head */
873 ptr = BYTE_POS_ADDR (pos_byte);
874 if (c == LEADING_CODE_COMPOSITION)
875 {
876 int cmpchar_id = str_cmpchar_id (ptr, end_byte - pos_byte);
877
878 if (cmpchar_id >= 0)
879 {
880 col += cmpchar_table[cmpchar_id]->width;
881 pos_byte += cmpchar_table[cmpchar_id]->len;
882 }
883 else
884 { /* invalid composite character */
885 col += 4;
886 pos_byte++;
887 }
888 }
889 else
890 {
891 /* Here, we check that the following bytes are valid
892 constituents of multi-byte form. */
893 int len = BYTES_BY_CHAR_HEAD (c), i;
894
895 for (i = 1, ptr++; i < len; i++, ptr++)
896 /* We don't need range checking for PTR because there
897 are anchors (`\0') both at GPT and Z. */
898 if (CHAR_HEAD_P (*ptr))
899 break;
900
901 if (i < len)
902 col += 4, pos_byte++;
903 else
904 col += WIDTH_BY_CHAR_HEAD (c), pos_byte += i;
905 }
906 }
907 else
908 col += 4;
909 }
910 endloop:
911
912 SET_PT_BOTH (pos, pos_byte);
913
914 /* If a tab char made us overshoot, change it to spaces
915 and scan through it again. */
916 if (!NILP (force) && col > goal && c == '\t' && prev_col < goal)
917 {
918 int old_point, old_point_byte;
919
920 del_range (PT - 1, PT);
921 Findent_to (make_number (goal), Qnil);
922 old_point = PT;
923 old_point_byte = PT_BYTE;
924 Findent_to (make_number (col), Qnil);
925 SET_PT_BOTH (old_point, old_point_byte);
926 /* Set the last_known... vars consistently. */
927 col = goal;
928 }
929
930 /* If line ends prematurely, add space to the end. */
931 if (col < goal && !NILP (force))
932 Findent_to (make_number (col = goal), Qnil);
933
934 last_known_column = col;
935 last_known_column_point = PT;
936 last_known_column_modified = MODIFF;
937
938 XSETFASTINT (val, col);
939 return val;
940 }
941 \f
942 /* compute_motion: compute buffer posn given screen posn and vice versa */
943
944 struct position val_compute_motion;
945
946 /* Scan the current buffer forward from offset FROM, pretending that
947 this is at line FROMVPOS, column FROMHPOS, until reaching buffer
948 offset TO or line TOVPOS, column TOHPOS (whichever comes first),
949 and return the ending buffer position and screen location. If we
950 can't hit the requested column exactly (because of a tab or other
951 multi-column character), overshoot.
952
953 DID_MOTION is 1 if FROMHPOS has already accounted for overlay strings
954 at FROM. This is the case if FROMVPOS and FROMVPOS came from an
955 earlier call to compute_motion. The other common case is that FROMHPOS
956 is zero and FROM is a position that "belongs" at column zero, but might
957 be shifted by overlay strings; in this case DID_MOTION should be 0.
958
959 WIDTH is the number of columns available to display text;
960 compute_motion uses this to handle continuation lines and such.
961 HSCROLL is the number of columns not being displayed at the left
962 margin; this is usually taken from a window's hscroll member.
963 TAB_OFFSET is the number of columns of the first tab that aren't
964 being displayed, perhaps because of a continuation line or
965 something.
966
967 compute_motion returns a pointer to a struct position. The bufpos
968 member gives the buffer position at the end of the scan, and hpos
969 and vpos give its cartesian location. prevhpos is the column at
970 which the character before bufpos started, and contin is non-zero
971 if we reached the current line by continuing the previous.
972
973 Note that FROMHPOS and TOHPOS should be expressed in real screen
974 columns, taking HSCROLL and the truncation glyph at the left margin
975 into account. That is, beginning-of-line moves you to the hpos
976 -HSCROLL + (HSCROLL > 0).
977
978 For example, to find the buffer position of column COL of line LINE
979 of a certain window, pass the window's starting location as FROM
980 and the window's upper-left coordinates as FROMVPOS and FROMHPOS.
981 Pass the buffer's ZV as TO, to limit the scan to the end of the
982 visible section of the buffer, and pass LINE and COL as TOVPOS and
983 TOHPOS.
984
985 When displaying in window w, a typical formula for WIDTH is:
986
987 window_width - 1
988 - (has_vertical_scroll_bars
989 ? FRAME_SCROLL_BAR_COLS (XFRAME (window->frame))
990 : (window_width + window_left != frame_width))
991
992 where
993 window_width is XFASTINT (w->width),
994 window_left is XFASTINT (w->left),
995 has_vertical_scroll_bars is
996 FRAME_HAS_VERTICAL_SCROLL_BARS (XFRAME (WINDOW_FRAME (window)))
997 and frame_width = FRAME_WIDTH (XFRAME (window->frame))
998
999 Or you can let window_internal_width do this all for you, and write:
1000 window_internal_width (w) - 1
1001
1002 The `-1' accounts for the continuation-line backslashes; the rest
1003 accounts for window borders if the window is split horizontally, and
1004 the scroll bars if they are turned on. */
1005
1006 struct position *
1007 compute_motion (from, fromvpos, fromhpos, did_motion, to, tovpos, tohpos, width, hscroll, tab_offset, win)
1008 int from, fromvpos, fromhpos, to, tovpos, tohpos;
1009 int did_motion;
1010 register int width;
1011 int hscroll, tab_offset;
1012 struct window *win;
1013 {
1014 register int hpos = fromhpos;
1015 register int vpos = fromvpos;
1016
1017 register int pos;
1018 int pos_byte;
1019 register int c;
1020 register int tab_width = XFASTINT (current_buffer->tab_width);
1021 register int ctl_arrow = !NILP (current_buffer->ctl_arrow);
1022 register struct Lisp_Char_Table *dp = window_display_table (win);
1023 int selective
1024 = (INTEGERP (current_buffer->selective_display)
1025 ? XINT (current_buffer->selective_display)
1026 : !NILP (current_buffer->selective_display) ? -1 : 0);
1027 int prev_hpos = 0;
1028 int selective_rlen
1029 = (selective && dp && VECTORP (DISP_INVIS_VECTOR (dp))
1030 ? XVECTOR (DISP_INVIS_VECTOR (dp))->size : 0);
1031 /* The next location where the `invisible' property changes, or an
1032 overlay starts or ends. */
1033 int next_boundary = from;
1034
1035 /* For computing runs of characters with similar widths.
1036 Invariant: width_run_width is zero, or all the characters
1037 from width_run_start to width_run_end have a fixed width of
1038 width_run_width. */
1039 int width_run_start = from;
1040 int width_run_end = from;
1041 int width_run_width = 0;
1042 Lisp_Object *width_table;
1043 Lisp_Object buffer;
1044
1045 /* The next buffer pos where we should consult the width run cache. */
1046 int next_width_run = from;
1047 Lisp_Object window;
1048
1049 int multibyte = !NILP (current_buffer->enable_multibyte_characters);
1050 int wide_column = 0; /* Set to 1 when a previous character
1051 is wide-colomn. */
1052 int prev_pos; /* Previous buffer position. */
1053 int prev_pos_byte; /* Previous buffer position. */
1054 int contin_hpos; /* HPOS of last column of continued line. */
1055 int prev_tab_offset; /* Previous tab offset. */
1056
1057 XSETBUFFER (buffer, current_buffer);
1058 XSETWINDOW (window, win);
1059
1060 width_run_cache_on_off ();
1061 if (dp == buffer_display_table ())
1062 width_table = (VECTORP (current_buffer->width_table)
1063 ? XVECTOR (current_buffer->width_table)->contents
1064 : 0);
1065 else
1066 /* If the window has its own display table, we can't use the width
1067 run cache, because that's based on the buffer's display table. */
1068 width_table = 0;
1069
1070 if (tab_width <= 0 || tab_width > 1000) tab_width = 8;
1071
1072 pos = prev_pos = from;
1073 pos_byte = prev_pos_byte = CHAR_TO_BYTE (from);
1074 contin_hpos = 0;
1075 prev_tab_offset = tab_offset;
1076 while (1)
1077 {
1078 while (pos == next_boundary)
1079 {
1080 int pos_here = pos;
1081 int newpos;
1082
1083 /* If the caller says that the screen position came from an earlier
1084 call to compute_motion, then we've already accounted for the
1085 overlay strings at point. This is only true the first time
1086 through, so clear the flag after testing it. */
1087 if (!did_motion)
1088 /* We need to skip past the overlay strings. Currently those
1089 strings must not contain TAB;
1090 if we want to relax that restriction, something will have
1091 to be changed here. */
1092 {
1093 unsigned char *ovstr;
1094 int ovlen = overlay_strings (pos, win, &ovstr);
1095 hpos += (multibyte ? strwidth (ovstr, ovlen) : ovlen);
1096 }
1097 did_motion = 0;
1098
1099 if (pos >= to)
1100 break;
1101
1102 /* Advance POS past invisible characters
1103 (but not necessarily all that there are here),
1104 and store in next_boundary the next position where
1105 we need to call skip_invisible. */
1106 newpos = skip_invisible (pos, &next_boundary, to, window);
1107
1108 if (newpos >= to)
1109 goto after_loop;
1110
1111 if (newpos != pos_here)
1112 {
1113 pos = newpos;
1114 pos_byte = CHAR_TO_BYTE (pos);
1115 }
1116 }
1117
1118 /* Handle right margin. */
1119 /* Note on a wide-column character.
1120
1121 Characters are classified into the following three categories
1122 according to the width (columns occupied on screen).
1123
1124 (1) single-column character: ex. `a'
1125 (2) multi-column character: ex. `^A', TAB, `\033'
1126 (3) wide-column character: ex. Japanese character, Chinese character
1127 (In the following example, `W_' stands for them.)
1128
1129 Multi-column characters can be divided around the right margin,
1130 but wide-column characters cannot.
1131
1132 NOTE:
1133
1134 (*) The cursor is placed on the next character after the point.
1135
1136 ----------
1137 abcdefghi\
1138 j ^---- next after the point
1139 ^--- next char. after the point.
1140 ----------
1141 In case of sigle-column character
1142
1143 ----------
1144 abcdefgh\\
1145 033 ^---- next after the point, next char. after the point.
1146 ----------
1147 In case of multi-column character
1148
1149 ----------
1150 abcdefgh\\
1151 W_ ^---- next after the point
1152 ^---- next char. after the point.
1153 ----------
1154 In case of wide-column character
1155
1156 The problem here is continuation at a wide-column character.
1157 In this case, the line may shorter less than WIDTH.
1158 And we find the continuation AFTER it occurs.
1159
1160 */
1161
1162 if (hpos > width)
1163 {
1164 if (hscroll
1165 || (truncate_partial_width_windows
1166 && width + 1 < FRAME_WIDTH (XFRAME (WINDOW_FRAME (win))))
1167 || !NILP (current_buffer->truncate_lines))
1168 {
1169 /* Truncating: skip to newline. */
1170 if (pos <= to) /* This IF is needed because we may past TO */
1171 {
1172 pos = find_before_next_newline (pos, to, 1);
1173 pos_byte = CHAR_TO_BYTE (pos);
1174 }
1175 hpos = width;
1176 /* If we just skipped next_boundary,
1177 loop around in the main while
1178 and handle it. */
1179 if (pos >= next_boundary)
1180 next_boundary = pos + 1;
1181 prev_hpos = width;
1182 prev_tab_offset = tab_offset;
1183 }
1184 else
1185 {
1186 /* Continuing. */
1187 /* Remember the previous value. */
1188 prev_tab_offset = tab_offset;
1189
1190 if (wide_column)
1191 {
1192 hpos -= prev_hpos;
1193 tab_offset += prev_hpos;
1194 }
1195 else
1196 {
1197 tab_offset += width;
1198 hpos -= width;
1199 }
1200 vpos++;
1201 contin_hpos = prev_hpos;
1202 prev_hpos = 0;
1203 }
1204 }
1205
1206 /* Stop if past the target buffer position or screen position. */
1207 if (pos > to)
1208 {
1209 /* Go back to the previous position. */
1210 pos = prev_pos;
1211 pos_byte = prev_pos_byte;
1212 hpos = prev_hpos;
1213 tab_offset = prev_tab_offset;
1214
1215 /* NOTE on contin_hpos, hpos, and prev_hpos.
1216
1217 ----------
1218 abcdefgh\\
1219 W_ ^---- contin_hpos
1220 | ^----- hpos
1221 \---- prev_hpos
1222 ----------
1223 */
1224
1225 if (contin_hpos && prev_hpos == 0
1226 && contin_hpos < width && !wide_column)
1227 {
1228 /* Line breaking occurs in the middle of multi-column
1229 character. Go back to previous line. */
1230 hpos = contin_hpos;
1231 vpos = vpos - 1;
1232 }
1233 else if (c == '\n')
1234 /* If previous character is NEWLINE,
1235 set VPOS back to previous line */
1236 vpos = vpos - 1;
1237 break;
1238 }
1239
1240 if (vpos > tovpos || vpos == tovpos && hpos >= tohpos)
1241 {
1242 if (contin_hpos && prev_hpos == 0
1243 && ((hpos > tohpos && contin_hpos == width) || wide_column))
1244 { /* Line breaks because we can't put the character at the
1245 previous line any more. It is not the multi-column
1246 character continued in middle. Go back to previous
1247 buffer position, screen position, and set tab offset
1248 to previous value. It's the beginning of the
1249 line. */
1250 pos = prev_pos;
1251 pos_byte = prev_pos_byte;
1252 hpos = prev_hpos;
1253 tab_offset = prev_tab_offset;
1254 }
1255 break;
1256 }
1257 if (pos == ZV) /* We cannot go beyond ZV. Stop here. */
1258 break;
1259
1260 prev_hpos = hpos;
1261 prev_pos = pos;
1262 prev_pos_byte = pos_byte;
1263 wide_column = 0;
1264
1265 /* Consult the width run cache to see if we can avoid inspecting
1266 the text character-by-character. */
1267 if (current_buffer->width_run_cache && pos >= next_width_run)
1268 {
1269 int run_end;
1270 int common_width
1271 = region_cache_forward (current_buffer,
1272 current_buffer->width_run_cache,
1273 pos, &run_end);
1274
1275 /* A width of zero means the character's width varies (like
1276 a tab), is meaningless (like a newline), or we just don't
1277 want to skip over it for some other reason. */
1278 if (common_width != 0)
1279 {
1280 int run_end_hpos;
1281
1282 /* Don't go past the final buffer posn the user
1283 requested. */
1284 if (run_end > to)
1285 run_end = to;
1286
1287 run_end_hpos = hpos + (run_end - pos) * common_width;
1288
1289 /* Don't go past the final horizontal position the user
1290 requested. */
1291 if (vpos == tovpos && run_end_hpos > tohpos)
1292 {
1293 run_end = pos + (tohpos - hpos) / common_width;
1294 run_end_hpos = hpos + (run_end - pos) * common_width;
1295 }
1296
1297 /* Don't go past the margin. */
1298 if (run_end_hpos >= width)
1299 {
1300 run_end = pos + (width - hpos) / common_width;
1301 run_end_hpos = hpos + (run_end - pos) * common_width;
1302 }
1303
1304 hpos = run_end_hpos;
1305 if (run_end > pos)
1306 prev_hpos = hpos - common_width;
1307 if (pos != run_end)
1308 {
1309 pos = run_end;
1310 pos_byte = CHAR_TO_BYTE (pos);
1311 }
1312 }
1313
1314 next_width_run = run_end + 1;
1315 }
1316
1317 /* We have to scan the text character-by-character. */
1318 else
1319 {
1320 c = FETCH_BYTE (pos_byte);
1321 pos++, pos_byte++;
1322
1323 /* Perhaps add some info to the width_run_cache. */
1324 if (current_buffer->width_run_cache)
1325 {
1326 /* Is this character part of the current run? If so, extend
1327 the run. */
1328 if (pos - 1 == width_run_end
1329 && XFASTINT (width_table[c]) == width_run_width)
1330 width_run_end = pos;
1331
1332 /* The previous run is over, since this is a character at a
1333 different position, or a different width. */
1334 else
1335 {
1336 /* Have we accumulated a run to put in the cache?
1337 (Currently, we only cache runs of width == 1). */
1338 if (width_run_start < width_run_end
1339 && width_run_width == 1)
1340 know_region_cache (current_buffer,
1341 current_buffer->width_run_cache,
1342 width_run_start, width_run_end);
1343
1344 /* Start recording a new width run. */
1345 width_run_width = XFASTINT (width_table[c]);
1346 width_run_start = pos - 1;
1347 width_run_end = pos;
1348 }
1349 }
1350
1351 if (dp != 0 && VECTORP (DISP_CHAR_VECTOR (dp, c))
1352 && ! (multibyte && BASE_LEADING_CODE_P (c)))
1353 hpos += XVECTOR (DISP_CHAR_VECTOR (dp, c))->size;
1354 else if (c >= 040 && c < 0177)
1355 hpos++;
1356 else if (c == '\t')
1357 {
1358 int tem = (hpos + tab_offset + hscroll - (hscroll > 0)) % tab_width;
1359 if (tem < 0)
1360 tem += tab_width;
1361 hpos += tab_width - tem;
1362 }
1363 else if (c == '\n')
1364 {
1365 if (selective > 0
1366 && indented_beyond_p (pos, pos_byte, selective))
1367 {
1368 /* If (pos == to), we don't have to take care of
1369 selective display. */
1370 if (pos < to)
1371 {
1372 /* Skip any number of invisible lines all at once */
1373 do
1374 {
1375 pos = find_before_next_newline (pos, to, 1) + 1;
1376 pos_byte = CHAR_TO_BYTE (pos);
1377 }
1378 while (pos < to
1379 && indented_beyond_p (pos, pos_byte, selective));
1380 /* Allow for the " ..." that is displayed for them. */
1381 if (selective_rlen)
1382 {
1383 hpos += selective_rlen;
1384 if (hpos >= width)
1385 hpos = width;
1386 }
1387 DEC_BOTH (pos, pos_byte);
1388 /* We have skipped the invis text, but not the
1389 newline after. */
1390 }
1391 }
1392 else
1393 {
1394 /* A visible line. */
1395 vpos++;
1396 hpos = 0;
1397 hpos -= hscroll;
1398 /* Count the truncation glyph on column 0 */
1399 if (hscroll > 0)
1400 hpos++;
1401 tab_offset = 0;
1402 }
1403 contin_hpos = 0;
1404 }
1405 else if (c == CR && selective < 0)
1406 {
1407 /* In selective display mode,
1408 everything from a ^M to the end of the line is invisible.
1409 Stop *before* the real newline. */
1410 if (pos < to)
1411 {
1412 pos = find_before_next_newline (pos, to, 1);
1413 pos_byte = CHAR_TO_BYTE (pos);
1414 }
1415 /* If we just skipped next_boundary,
1416 loop around in the main while
1417 and handle it. */
1418 if (pos > next_boundary)
1419 next_boundary = pos;
1420 /* Allow for the " ..." that is displayed for them. */
1421 if (selective_rlen)
1422 {
1423 hpos += selective_rlen;
1424 if (hpos >= width)
1425 hpos = width;
1426 }
1427 }
1428 else if (multibyte && BASE_LEADING_CODE_P (c))
1429 {
1430 /* Start of multi-byte form. */
1431 unsigned char *ptr;
1432 int len, actual_len;
1433
1434 pos--, pos_byte--; /* rewind POS */
1435
1436 ptr = BYTE_POS_ADDR (pos_byte);
1437 len = BUFFER_CEILING_OF (pos_byte) - pos_byte + 1;
1438
1439 c = STRING_CHAR_AND_LENGTH (ptr, len, actual_len);
1440
1441 if (dp != 0 && VECTORP (DISP_CHAR_VECTOR (dp, c)))
1442 hpos += XVECTOR (DISP_CHAR_VECTOR (dp, c))->size;
1443 else if (actual_len == 1)
1444 hpos += 4;
1445 else if (COMPOSITE_CHAR_P (c))
1446 {
1447 int id = COMPOSITE_CHAR_ID (c);
1448 int width = (id < n_cmpchars) ? cmpchar_table[id]->width : 0;
1449 hpos += width;
1450 if (width > 1)
1451 wide_column = 1;
1452 }
1453 else
1454 {
1455 int width = WIDTH_BY_CHAR_HEAD (*ptr);
1456 hpos += width;
1457 if (width > 1)
1458 wide_column = 1;
1459 }
1460
1461 pos++;
1462 pos_byte += actual_len;
1463 }
1464 else
1465 hpos += (ctl_arrow && c < 0200) ? 2 : 4;
1466 }
1467 }
1468
1469 after_loop:
1470
1471 /* Remember any final width run in the cache. */
1472 if (current_buffer->width_run_cache
1473 && width_run_width == 1
1474 && width_run_start < width_run_end)
1475 know_region_cache (current_buffer, current_buffer->width_run_cache,
1476 width_run_start, width_run_end);
1477
1478 val_compute_motion.bufpos = pos;
1479 val_compute_motion.bytepos = pos_byte;
1480 val_compute_motion.hpos = hpos;
1481 val_compute_motion.vpos = vpos;
1482 val_compute_motion.prevhpos = prev_hpos;
1483 /* We alalways handle all of them here; none of them remain to do. */
1484 val_compute_motion.ovstring_chars_done = 0;
1485
1486 /* Nonzero if have just continued a line */
1487 val_compute_motion.contin = (contin_hpos && prev_hpos == 0);
1488
1489 return &val_compute_motion;
1490 }
1491
1492 #if 0 /* The doc string is too long for some compilers,
1493 but make-docfile can find it in this comment. */
1494 DEFUN ("compute-motion", Ffoo, Sfoo, 7, 7, 0,
1495 "Scan through the current buffer, calculating screen position.\n\
1496 Scan the current buffer forward from offset FROM,\n\
1497 assuming it is at position FROMPOS--a cons of the form (HPOS . VPOS)--\n\
1498 to position TO or position TOPOS--another cons of the form (HPOS . VPOS)--\n\
1499 and return the ending buffer position and screen location.\n\
1500 \n\
1501 There are three additional arguments:\n\
1502 \n\
1503 WIDTH is the number of columns available to display text;\n\
1504 this affects handling of continuation lines.\n\
1505 This is usually the value returned by `window-width', less one (to allow\n\
1506 for the continuation glyph).\n\
1507 \n\
1508 OFFSETS is either nil or a cons cell (HSCROLL . TAB-OFFSET).\n\
1509 HSCROLL is the number of columns not being displayed at the left\n\
1510 margin; this is usually taken from a window's hscroll member.\n\
1511 TAB-OFFSET is the number of columns of the first tab that aren't\n\
1512 being displayed, perhaps because the line was continued within it.\n\
1513 If OFFSETS is nil, HSCROLL and TAB-OFFSET are assumed to be zero.\n\
1514 \n\
1515 WINDOW is the window to operate on. It is used to choose the display table;\n\
1516 if it is showing the current buffer, it is used also for\n\
1517 deciding which overlay properties apply.\n\
1518 Note that `compute-motion' always operates on the current buffer.\n\
1519 \n\
1520 The value is a list of five elements:\n\
1521 (POS HPOS VPOS PREVHPOS CONTIN)\n\
1522 POS is the buffer position where the scan stopped.\n\
1523 VPOS is the vertical position where the scan stopped.\n\
1524 HPOS is the horizontal position where the scan stopped.\n\
1525 \n\
1526 PREVHPOS is the horizontal position one character back from POS.\n\
1527 CONTIN is t if a line was continued after (or within) the previous character.\n\
1528 \n\
1529 For example, to find the buffer position of column COL of line LINE\n\
1530 of a certain window, pass the window's starting location as FROM\n\
1531 and the window's upper-left coordinates as FROMPOS.\n\
1532 Pass the buffer's (point-max) as TO, to limit the scan to the end of the\n\
1533 visible section of the buffer, and pass LINE and COL as TOPOS.")
1534 (from, frompos, to, topos, width, offsets, window)
1535 #endif
1536
1537 DEFUN ("compute-motion", Fcompute_motion, Scompute_motion, 7, 7, 0,
1538 0)
1539 (from, frompos, to, topos, width, offsets, window)
1540 Lisp_Object from, frompos, to, topos;
1541 Lisp_Object width, offsets, window;
1542 {
1543 Lisp_Object bufpos, hpos, vpos, prevhpos, contin;
1544 struct position *pos;
1545 int hscroll, tab_offset;
1546
1547 CHECK_NUMBER_COERCE_MARKER (from, 0);
1548 CHECK_CONS (frompos, 0);
1549 CHECK_NUMBER (XCONS (frompos)->car, 0);
1550 CHECK_NUMBER (XCONS (frompos)->cdr, 0);
1551 CHECK_NUMBER_COERCE_MARKER (to, 0);
1552 CHECK_CONS (topos, 0);
1553 CHECK_NUMBER (XCONS (topos)->car, 0);
1554 CHECK_NUMBER (XCONS (topos)->cdr, 0);
1555 CHECK_NUMBER (width, 0);
1556 if (!NILP (offsets))
1557 {
1558 CHECK_CONS (offsets, 0);
1559 CHECK_NUMBER (XCONS (offsets)->car, 0);
1560 CHECK_NUMBER (XCONS (offsets)->cdr, 0);
1561 hscroll = XINT (XCONS (offsets)->car);
1562 tab_offset = XINT (XCONS (offsets)->cdr);
1563 }
1564 else
1565 hscroll = tab_offset = 0;
1566
1567 if (NILP (window))
1568 window = Fselected_window ();
1569 else
1570 CHECK_LIVE_WINDOW (window, 0);
1571
1572 pos = compute_motion (XINT (from), XINT (XCONS (frompos)->cdr),
1573 XINT (XCONS (frompos)->car), 0,
1574 XINT (to), XINT (XCONS (topos)->cdr),
1575 XINT (XCONS (topos)->car),
1576 XINT (width), hscroll, tab_offset,
1577 XWINDOW (window));
1578
1579 XSETFASTINT (bufpos, pos->bufpos);
1580 XSETINT (hpos, pos->hpos);
1581 XSETINT (vpos, pos->vpos);
1582 XSETINT (prevhpos, pos->prevhpos);
1583
1584 return Fcons (bufpos,
1585 Fcons (hpos,
1586 Fcons (vpos,
1587 Fcons (prevhpos,
1588 Fcons (pos->contin ? Qt : Qnil, Qnil)))));
1589
1590 }
1591 \f
1592 /* Fvertical_motion and vmotion */
1593 struct position val_vmotion;
1594
1595 struct position *
1596 vmotion (from, vtarget, w)
1597 register int from, vtarget;
1598 struct window *w;
1599 {
1600 int width = window_internal_width (w) - 1;
1601 int hscroll = XINT (w->hscroll);
1602 struct position pos;
1603 /* vpos is cumulative vertical position, changed as from is changed */
1604 register int vpos = 0;
1605 Lisp_Object prevline;
1606 register int first;
1607 int from_byte;
1608 int lmargin = hscroll > 0 ? 1 - hscroll : 0;
1609 int selective
1610 = (INTEGERP (current_buffer->selective_display)
1611 ? XINT (current_buffer->selective_display)
1612 : !NILP (current_buffer->selective_display) ? -1 : 0);
1613 Lisp_Object window;
1614 int start_hpos = 0;
1615 int did_motion;
1616
1617 XSETWINDOW (window, w);
1618
1619 /* The omission of the clause
1620 && marker_position (w->start) == BEG
1621 here is deliberate; I think we want to measure from the prompt
1622 position even if the minibuffer window has scrolled. */
1623 if (EQ (window, minibuf_window))
1624 {
1625 if (minibuf_prompt_width == 0 && STRINGP (minibuf_prompt))
1626 minibuf_prompt_width
1627 = string_display_width (minibuf_prompt, Qnil, Qnil);
1628
1629 start_hpos = minibuf_prompt_width;
1630 }
1631
1632 if (vpos >= vtarget)
1633 {
1634 /* To move upward, go a line at a time until
1635 we have gone at least far enough. */
1636
1637 first = 1;
1638
1639 while ((vpos > vtarget || first) && from > BEGV)
1640 {
1641 Lisp_Object propval;
1642
1643 XSETFASTINT (prevline, find_next_newline_no_quit (from - 1, -1));
1644 while (XFASTINT (prevline) > BEGV
1645 && ((selective > 0
1646 && indented_beyond_p (XFASTINT (prevline),
1647 CHAR_TO_BYTE (XFASTINT (prevline)),
1648 selective))
1649 #ifdef USE_TEXT_PROPERTIES
1650 /* watch out for newlines with `invisible' property */
1651 || (propval = Fget_char_property (prevline,
1652 Qinvisible,
1653 window),
1654 TEXT_PROP_MEANS_INVISIBLE (propval))
1655 #endif
1656 ))
1657 XSETFASTINT (prevline,
1658 find_next_newline_no_quit (XFASTINT (prevline) - 1,
1659 -1));
1660 pos = *compute_motion (XFASTINT (prevline), 0,
1661 lmargin + (XFASTINT (prevline) == BEG
1662 ? start_hpos : 0),
1663 0,
1664 from,
1665 /* Don't care for VPOS... */
1666 1 << (BITS_PER_SHORT - 1),
1667 /* ... nor HPOS. */
1668 1 << (BITS_PER_SHORT - 1),
1669 width, hscroll,
1670 /* This compensates for start_hpos
1671 so that a tab as first character
1672 still occupies 8 columns. */
1673 (XFASTINT (prevline) == BEG
1674 ? -start_hpos : 0),
1675 w);
1676 vpos -= pos.vpos;
1677 first = 0;
1678 from = XFASTINT (prevline);
1679 }
1680
1681 /* If we made exactly the desired vertical distance,
1682 or if we hit beginning of buffer,
1683 return point found */
1684 if (vpos >= vtarget)
1685 {
1686 val_vmotion.bufpos = from;
1687 val_vmotion.bytepos = CHAR_TO_BYTE (from);
1688 val_vmotion.vpos = vpos;
1689 val_vmotion.hpos = lmargin;
1690 val_vmotion.contin = 0;
1691 val_vmotion.prevhpos = 0;
1692 val_vmotion.ovstring_chars_done = 0;
1693 val_vmotion.tab_offset = 0; /* For accumulating tab offset. */
1694 return &val_vmotion;
1695 }
1696
1697 /* Otherwise find the correct spot by moving down */
1698 }
1699 /* Moving downward is simple, but must calculate from beg of line
1700 to determine hpos of starting point */
1701 from_byte = CHAR_TO_BYTE (from);
1702 if (from > BEGV && FETCH_BYTE (from_byte - 1) != '\n')
1703 {
1704 Lisp_Object propval;
1705
1706 XSETFASTINT (prevline, find_next_newline_no_quit (from, -1));
1707 while (XFASTINT (prevline) > BEGV
1708 && ((selective > 0
1709 && indented_beyond_p (XFASTINT (prevline),
1710 CHAR_TO_BYTE (XFASTINT (prevline)),
1711 selective))
1712 #ifdef USE_TEXT_PROPERTIES
1713 /* watch out for newlines with `invisible' property */
1714 || (propval = Fget_char_property (prevline, Qinvisible,
1715 window),
1716 TEXT_PROP_MEANS_INVISIBLE (propval))
1717 #endif
1718 ))
1719 XSETFASTINT (prevline,
1720 find_next_newline_no_quit (XFASTINT (prevline) - 1,
1721 -1));
1722 pos = *compute_motion (XFASTINT (prevline), 0,
1723 lmargin + (XFASTINT (prevline) == BEG
1724 ? start_hpos : 0),
1725 0,
1726 from,
1727 /* Don't care for VPOS... */
1728 1 << (BITS_PER_SHORT - 1),
1729 /* ... nor HPOS. */
1730 1 << (BITS_PER_SHORT - 1),
1731 width, hscroll,
1732 (XFASTINT (prevline) == BEG ? -start_hpos : 0),
1733 w);
1734 did_motion = 1;
1735 }
1736 else
1737 {
1738 pos.hpos = lmargin + (from == BEG ? start_hpos : 0);
1739 pos.vpos = 0;
1740 pos.tab_offset = 0;
1741 did_motion = 0;
1742 }
1743 return compute_motion (from, vpos, pos.hpos, did_motion,
1744 ZV, vtarget, - (1 << (BITS_PER_SHORT - 1)),
1745 width, hscroll,
1746 pos.tab_offset - (from == BEG ? start_hpos : 0),
1747 w);
1748 }
1749
1750 DEFUN ("vertical-motion", Fvertical_motion, Svertical_motion, 1, 2, 0,
1751 "Move point to start of the screen line LINES lines down.\n\
1752 If LINES is negative, this means moving up.\n\
1753 \n\
1754 This function is an ordinary cursor motion function\n\
1755 which calculates the new position based on how text would be displayed.\n\
1756 The new position may be the start of a line,\n\
1757 or just the start of a continuation line.\n\
1758 The function returns number of screen lines moved over;\n\
1759 that usually equals LINES, but may be closer to zero\n\
1760 if beginning or end of buffer was reached.\n\
1761 \n\
1762 The optional second argument WINDOW specifies the window to use for\n\
1763 parameters such as width, horizontal scrolling, and so on.\n\
1764 The default is to use the selected window's parameters.\n\
1765 \n\
1766 `vertical-motion' always uses the current buffer,\n\
1767 regardless of which buffer is displayed in WINDOW.\n\
1768 This is consistent with other cursor motion functions\n\
1769 and makes it possible to use `vertical-motion' in any buffer,\n\
1770 whether or not it is currently displayed in some window.")
1771 (lines, window)
1772 Lisp_Object lines, window;
1773 {
1774 struct position pos;
1775
1776 CHECK_NUMBER (lines, 0);
1777 if (! NILP (window))
1778 CHECK_WINDOW (window, 0);
1779 else
1780 window = selected_window;
1781
1782 pos = *vmotion (PT, (int) XINT (lines), XWINDOW (window));
1783
1784 SET_PT (pos.bufpos);
1785 return make_number (pos.vpos);
1786 }
1787 \f
1788 /* file's initialization. */
1789
1790 syms_of_indent ()
1791 {
1792 DEFVAR_BOOL ("indent-tabs-mode", &indent_tabs_mode,
1793 "*Indentation can insert tabs if this is non-nil.\n\
1794 Setting this variable automatically makes it local to the current buffer.");
1795 indent_tabs_mode = 1;
1796
1797 defsubr (&Scurrent_indentation);
1798 defsubr (&Sindent_to);
1799 defsubr (&Scurrent_column);
1800 defsubr (&Smove_to_column);
1801 defsubr (&Svertical_motion);
1802 defsubr (&Scompute_motion);
1803 }