]> code.delx.au - gnu-emacs/blob - src/indent.c
(make-comint): Error, if start-process is not fboundp.
[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 1, 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, 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20
21 #include <config.h>
22 #include "lisp.h"
23 #include "buffer.h"
24 #include "indent.h"
25 #include "frame.h"
26 #include "window.h"
27 #include "termchar.h"
28 #include "termopts.h"
29 #include "disptab.h"
30 #include "intervals.h"
31 #include "region-cache.h"
32
33 /* Indentation can insert tabs if this is non-zero;
34 otherwise always uses spaces */
35 int indent_tabs_mode;
36
37 #define min(a, b) ((a) < (b) ? (a) : (b))
38 #define max(a, b) ((a) > (b) ? (a) : (b))
39
40 #define CR 015
41
42 /* These three values memoize the current column to avoid recalculation */
43 /* Some things in set last_known_column_point to -1
44 to mark the memoized value as invalid */
45 /* Last value returned by current_column */
46 int last_known_column;
47 /* Value of point when current_column was called */
48 int last_known_column_point;
49 /* Value of MODIFF when current_column was called */
50 int last_known_column_modified;
51
52 /* Get the display table to use for the current buffer. */
53
54 struct Lisp_Vector *
55 buffer_display_table ()
56 {
57 Lisp_Object thisbuf;
58
59 thisbuf = current_buffer->display_table;
60 if (VECTORP (thisbuf) && XVECTOR (thisbuf)->size == DISP_TABLE_SIZE)
61 return XVECTOR (thisbuf);
62 if (VECTORP (Vstandard_display_table)
63 && XVECTOR (Vstandard_display_table)->size == DISP_TABLE_SIZE)
64 return XVECTOR (Vstandard_display_table);
65 return 0;
66 }
67 \f
68 /* Width run cache considerations. */
69
70 /* Return the width of character C under display table DP. */
71
72 static int
73 character_width (c, dp)
74 int c;
75 struct Lisp_Vector *dp;
76 {
77 Lisp_Object elt;
78
79 /* These width computations were determined by examining the cases
80 in display_text_line. */
81
82 /* Everything can be handled by the display table, if it's
83 present and the element is right. */
84 if (dp && (elt = DISP_CHAR_VECTOR (dp, c), VECTORP (elt)))
85 return XVECTOR (elt)->size;
86
87 /* Some characters are special. */
88 if (c == '\n' || c == '\t' || c == '\015')
89 return 0;
90
91 /* Printing characters have width 1. */
92 else if (c >= 040 && c < 0177)
93 return 1;
94
95 /* Everybody else (control characters, metacharacters) has other
96 widths. We could return their actual widths here, but they
97 depend on things like ctl_arrow and crud like that, and they're
98 not very common at all. So we'll just claim we don't know their
99 widths. */
100 else
101 return 0;
102 }
103
104 /* Return true iff the display table DISPTAB specifies the same widths
105 for characters as WIDTHTAB. We use this to decide when to
106 invalidate the buffer's width_run_cache. */
107 int
108 disptab_matches_widthtab (disptab, widthtab)
109 struct Lisp_Vector *disptab;
110 struct Lisp_Vector *widthtab;
111 {
112 int i;
113
114 if (widthtab->size != 256)
115 abort ();
116
117 for (i = 0; i < 256; i++)
118 if (character_width (i, disptab)
119 != XFASTINT (widthtab->contents[i]))
120 return 0;
121
122 return 1;
123 }
124
125 /* Recompute BUF's width table, using the display table DISPTAB. */
126 void
127 recompute_width_table (buf, disptab)
128 struct buffer *buf;
129 struct Lisp_Vector *disptab;
130 {
131 int i;
132 struct Lisp_Vector *widthtab;
133
134 if (!VECTORP (buf->width_table))
135 buf->width_table = Fmake_vector (make_number (256), make_number (0));
136 widthtab = XVECTOR (buf->width_table);
137 if (widthtab->size != 256)
138 abort ();
139
140 for (i = 0; i < 256; i++)
141 XSETFASTINT (widthtab->contents[i], character_width (i, disptab));
142 }
143
144 /* Allocate or free the width run cache, as requested by the current
145 state of current_buffer's cache_long_line_scans variable. */
146 static void
147 width_run_cache_on_off ()
148 {
149 if (NILP (current_buffer->cache_long_line_scans))
150 {
151 /* It should be off. */
152 if (current_buffer->width_run_cache)
153 {
154 free_region_cache (current_buffer->width_run_cache);
155 current_buffer->width_run_cache = 0;
156 current_buffer->width_table = Qnil;
157 }
158 }
159 else
160 {
161 /* It should be on. */
162 if (current_buffer->width_run_cache == 0)
163 {
164 current_buffer->width_run_cache = new_region_cache ();
165 recompute_width_table (current_buffer, buffer_display_table ());
166 }
167 }
168 }
169
170 \f
171 DEFUN ("current-column", Fcurrent_column, Scurrent_column, 0, 0, 0,
172 "Return the horizontal position of point. Beginning of line is column 0.\n\
173 This is calculated by adding together the widths of all the displayed\n\
174 representations of the character between the start of the previous line\n\
175 and point. (eg control characters will have a width of 2 or 4, tabs\n\
176 will have a variable width)\n\
177 Ignores finite width of frame, which means that this function may return\n\
178 values greater than (frame-width).\n\
179 Whether the line is visible (if `selective-display' is t) has no effect;\n\
180 however, ^M is treated as end of line when `selective-display' is t.")
181 ()
182 {
183 Lisp_Object temp;
184 XSETFASTINT (temp, current_column ());
185 return temp;
186 }
187
188 /* Cancel any recorded value of the horizontal position. */
189
190 invalidate_current_column ()
191 {
192 last_known_column_point = 0;
193 }
194
195 int
196 current_column ()
197 {
198 register int col;
199 register unsigned char *ptr, *stop;
200 register int tab_seen;
201 int post_tab;
202 register int c;
203 register int tab_width = XINT (current_buffer->tab_width);
204 int ctl_arrow = !NILP (current_buffer->ctl_arrow);
205 register struct Lisp_Vector *dp = buffer_display_table ();
206 int stopchar;
207
208 if (point == last_known_column_point
209 && MODIFF == last_known_column_modified)
210 return last_known_column;
211
212 /* Make a pointer for decrementing through the chars before point. */
213 ptr = &FETCH_CHAR (point - 1) + 1;
214 /* Make a pointer to where consecutive chars leave off,
215 going backwards from point. */
216 if (point == BEGV)
217 stop = ptr;
218 else if (point <= GPT || BEGV > GPT)
219 stop = BEGV_ADDR;
220 else
221 stop = GAP_END_ADDR;
222
223 if (tab_width <= 0 || tab_width > 1000) tab_width = 8;
224
225 col = 0, tab_seen = 0, post_tab = 0;
226
227 while (1)
228 {
229 if (ptr == stop)
230 {
231 /* We stopped either for the beginning of the buffer
232 or for the gap. */
233 if (ptr == BEGV_ADDR)
234 break;
235 /* It was the gap. Jump back over it. */
236 stop = BEGV_ADDR;
237 ptr = GPT_ADDR;
238 /* Check whether that brings us to beginning of buffer. */
239 if (BEGV >= GPT) break;
240 }
241
242 c = *--ptr;
243 if (dp != 0 && VECTORP (DISP_CHAR_VECTOR (dp, c)))
244 col += XVECTOR (DISP_CHAR_VECTOR (dp, c))->size;
245 else if (c >= 040 && c < 0177)
246 col++;
247 else if (c == '\n')
248 break;
249 else if (c == '\r' && EQ (current_buffer->selective_display, Qt))
250 break;
251 else if (c == '\t')
252 {
253 if (tab_seen)
254 col = ((col + tab_width) / tab_width) * tab_width;
255
256 post_tab += col;
257 col = 0;
258 tab_seen = 1;
259 }
260 else
261 col += (ctl_arrow && c < 0200) ? 2 : 4;
262 }
263
264 if (tab_seen)
265 {
266 col = ((col + tab_width) / tab_width) * tab_width;
267 col += post_tab;
268 }
269
270 last_known_column = col;
271 last_known_column_point = point;
272 last_known_column_modified = MODIFF;
273
274 return col;
275 }
276 \f
277 /* Return the width in columns of the part of STRING from BEG to END.
278 If BEG is nil, that stands for the beginning of STRING.
279 If END is nil, that stands for the end of STRING. */
280
281 static int
282 string_width (string, beg, end)
283 Lisp_Object string, beg, end;
284 {
285 register int col;
286 register unsigned char *ptr, *stop;
287 register int tab_seen;
288 int post_tab;
289 register int c;
290 register int tab_width = XINT (current_buffer->tab_width);
291 int ctl_arrow = !NILP (current_buffer->ctl_arrow);
292 register struct Lisp_Vector *dp = buffer_display_table ();
293 int b, e;
294
295 if (NILP (end))
296 e = XSTRING (string)->size;
297 else
298 {
299 CHECK_NUMBER (end, 0);
300 e = XINT (end);
301 }
302
303 if (NILP (beg))
304 b = 0;
305 else
306 {
307 CHECK_NUMBER (beg, 0);
308 b = XINT (beg);
309 }
310
311 /* Make a pointer for decrementing through the chars before point. */
312 ptr = XSTRING (string)->data + e;
313 /* Make a pointer to where consecutive chars leave off,
314 going backwards from point. */
315 stop = XSTRING (string)->data + b;
316
317 if (tab_width <= 0 || tab_width > 1000) tab_width = 8;
318
319 col = 0, tab_seen = 0, post_tab = 0;
320
321 while (1)
322 {
323 if (ptr == stop)
324 break;
325
326 c = *--ptr;
327 if (dp != 0 && VECTORP (DISP_CHAR_VECTOR (dp, c)))
328 col += XVECTOR (DISP_CHAR_VECTOR (dp, c))->size;
329 else if (c >= 040 && c < 0177)
330 col++;
331 else if (c == '\n')
332 break;
333 else if (c == '\t')
334 {
335 if (tab_seen)
336 col = ((col + tab_width) / tab_width) * tab_width;
337
338 post_tab += col;
339 col = 0;
340 tab_seen = 1;
341 }
342 else
343 col += (ctl_arrow && c < 0200) ? 2 : 4;
344 }
345
346 if (tab_seen)
347 {
348 col = ((col + tab_width) / tab_width) * tab_width;
349 col += post_tab;
350 }
351
352 return col;
353 }
354 \f
355 DEFUN ("indent-to", Findent_to, Sindent_to, 1, 2, "NIndent to column: ",
356 "Indent from point with tabs and spaces until COLUMN is reached.\n\
357 Optional second argument MIN says always do at least MIN spaces\n\
358 even if that goes past COLUMN; by default, MIN is zero.")
359 (col, minimum)
360 Lisp_Object col, minimum;
361 {
362 int mincol;
363 register int fromcol;
364 register int tab_width = XINT (current_buffer->tab_width);
365
366 CHECK_NUMBER (col, 0);
367 if (NILP (minimum))
368 XSETFASTINT (minimum, 0);
369 CHECK_NUMBER (minimum, 1);
370
371 fromcol = current_column ();
372 mincol = fromcol + XINT (minimum);
373 if (mincol < XINT (col)) mincol = XINT (col);
374
375 if (fromcol == mincol)
376 return make_number (mincol);
377
378 if (tab_width <= 0 || tab_width > 1000) tab_width = 8;
379
380 if (indent_tabs_mode)
381 {
382 Lisp_Object n;
383 XSETFASTINT (n, mincol / tab_width - fromcol / tab_width);
384 if (XFASTINT (n) != 0)
385 {
386 Finsert_char (make_number ('\t'), n, Qt);
387
388 fromcol = (mincol / tab_width) * tab_width;
389 }
390 }
391
392 XSETFASTINT (col, mincol - fromcol);
393 Finsert_char (make_number (' '), col, Qt);
394
395 last_known_column = mincol;
396 last_known_column_point = point;
397 last_known_column_modified = MODIFF;
398
399 XSETINT (col, mincol);
400 return col;
401 }
402
403 \f
404 DEFUN ("current-indentation", Fcurrent_indentation, Scurrent_indentation,
405 0, 0, 0,
406 "Return the indentation of the current line.\n\
407 This is the horizontal position of the character\n\
408 following any initial whitespace.")
409 ()
410 {
411 Lisp_Object val;
412
413 XSETFASTINT (val, position_indentation (find_next_newline (point, -1)));
414 return val;
415 }
416
417 position_indentation (pos)
418 register int pos;
419 {
420 register int column = 0;
421 register int tab_width = XINT (current_buffer->tab_width);
422 register unsigned char *p;
423 register unsigned char *stop;
424
425 if (tab_width <= 0 || tab_width > 1000) tab_width = 8;
426
427 stop = &FETCH_CHAR (BUFFER_CEILING_OF (pos)) + 1;
428 p = &FETCH_CHAR (pos);
429 while (1)
430 {
431 while (p == stop)
432 {
433 if (pos == ZV)
434 return column;
435 pos += p - &FETCH_CHAR (pos);
436 p = &FETCH_CHAR (pos);
437 stop = &FETCH_CHAR (BUFFER_CEILING_OF (pos)) + 1;
438 }
439 switch (*p++)
440 {
441 case ' ':
442 column++;
443 break;
444 case '\t':
445 column += tab_width - column % tab_width;
446 break;
447 default:
448 return column;
449 }
450 }
451 }
452
453 /* Test whether the line beginning at POS is indented beyond COLUMN.
454 Blank lines are treated as if they had the same indentation as the
455 preceding line. */
456 int
457 indented_beyond_p (pos, column)
458 int pos, column;
459 {
460 while (pos > BEGV && FETCH_CHAR (pos) == '\n')
461 pos = find_next_newline_no_quit (pos - 1, -1);
462 return (position_indentation (pos) >= column);
463 }
464
465 \f
466 DEFUN ("move-to-column", Fmove_to_column, Smove_to_column, 1, 2, 0,
467 "Move point to column COLUMN in the current line.\n\
468 The column of a character is calculated by adding together the widths\n\
469 as displayed of the previous characters in the line.\n\
470 This function ignores line-continuation;\n\
471 there is no upper limit on the column number a character can have\n\
472 and horizontal scrolling has no effect.\n\
473 \n\
474 If specified column is within a character, point goes after that character.\n\
475 If it's past end of line, point goes to end of line.\n\n\
476 A non-nil second (optional) argument FORCE means, if the line\n\
477 is too short to reach column COLUMN then add spaces/tabs to get there,\n\
478 and if COLUMN is in the middle of a tab character, change it to spaces.")
479 (column, force)
480 Lisp_Object column, force;
481 {
482 register int pos;
483 register int col = current_column ();
484 register int goal;
485 register int end;
486 register int tab_width = XINT (current_buffer->tab_width);
487 register int ctl_arrow = !NILP (current_buffer->ctl_arrow);
488 register struct Lisp_Vector *dp = buffer_display_table ();
489
490 Lisp_Object val;
491 int prev_col;
492 int c;
493
494 if (tab_width <= 0 || tab_width > 1000) tab_width = 8;
495 CHECK_NATNUM (column, 0);
496 goal = XINT (column);
497
498 retry:
499 pos = point;
500 end = ZV;
501
502 /* If we're starting past the desired column,
503 back up to beginning of line and scan from there. */
504 if (col > goal)
505 {
506 pos = find_next_newline (pos, -1);
507 col = 0;
508 }
509
510 while (col < goal && pos < end)
511 {
512 c = FETCH_CHAR (pos);
513 if (dp != 0 && VECTORP (DISP_CHAR_VECTOR (dp, c)))
514 {
515 col += XVECTOR (DISP_CHAR_VECTOR (dp, c))->size;
516 pos++;
517 break;
518 }
519 if (c == '\n')
520 break;
521 if (c == '\r' && EQ (current_buffer->selective_display, Qt))
522 break;
523 pos++;
524 if (c == '\t')
525 {
526 prev_col = col;
527 col += tab_width;
528 col = col / tab_width * tab_width;
529 }
530 else if (ctl_arrow && (c < 040 || c == 0177))
531 col += 2;
532 else if (c < 040 || c >= 0177)
533 col += 4;
534 else
535 col++;
536 }
537
538 SET_PT (pos);
539
540 /* If a tab char made us overshoot, change it to spaces
541 and scan through it again. */
542 if (!NILP (force) && col > goal && c == '\t' && prev_col < goal)
543 {
544 int old_point;
545
546 del_range (point - 1, point);
547 Findent_to (make_number (goal), Qnil);
548 old_point = point;
549 Findent_to (make_number (col), Qnil);
550 SET_PT (old_point);
551 /* Set the last_known... vars consistently. */
552 col = goal;
553 }
554
555 /* If line ends prematurely, add space to the end. */
556 if (col < goal && !NILP (force))
557 Findent_to (make_number (col = goal), Qnil);
558
559 last_known_column = col;
560 last_known_column_point = point;
561 last_known_column_modified = MODIFF;
562
563 XSETFASTINT (val, col);
564 return val;
565 }
566
567 \f
568 /* compute_motion: compute buffer posn given screen posn and vice versa */
569
570 struct position val_compute_motion;
571
572 /* Scan the current buffer forward from offset FROM, pretending that
573 this is at line FROMVPOS, column FROMHPOS, until reaching buffer
574 offset TO or line TOVPOS, column TOHPOS (whichever comes first),
575 and return the ending buffer position and screen location. If we
576 can't hit the requested column exactly (because of a tab or other
577 multi-column character), overshoot.
578
579 WIDTH is the number of columns available to display text;
580 compute_motion uses this to handle continuation lines and such.
581 HSCROLL is the number of columns not being displayed at the left
582 margin; this is usually taken from a window's hscroll member.
583 TAB_OFFSET is the number of columns of the first tab that aren't
584 being displayed, perhaps because of a continuation line or
585 something.
586
587 compute_motion returns a pointer to a struct position. The bufpos
588 member gives the buffer position at the end of the scan, and hpos
589 and vpos give its cartesian location. prevhpos is the column at
590 which the character before bufpos started, and contin is non-zero
591 if we reached the current line by continuing the previous.
592
593 Note that FROMHPOS and TOHPOS should be expressed in real screen
594 columns, taking HSCROLL and the truncation glyph at the left margin
595 into account. That is, beginning-of-line moves you to the hpos
596 -HSCROLL + (HSCROLL > 0).
597
598 Note that FROMHPOS and TOHPOS should be expressed in real screen
599 columns, taking HSCROLL and the truncation glyph at the left margin
600 into account. That is, beginning-of-line moves you to the hpos
601 -HSCROLL + (HSCROLL > 0).
602
603 For example, to find the buffer position of column COL of line LINE
604 of a certain window, pass the window's starting location as FROM
605 and the window's upper-left coordinates as FROMVPOS and FROMHPOS.
606 Pass the buffer's ZV as TO, to limit the scan to the end of the
607 visible section of the buffer, and pass LINE and COL as TOVPOS and
608 TOHPOS.
609
610 When displaying in window w, a typical formula for WIDTH is:
611
612 window_width - 1
613 - (has_vertical_scroll_bars
614 ? FRAME_SCROLL_BAR_COLS (XFRAME (window->frame))
615 : (window_width + window_left != frame_width))
616
617 where
618 window_width is XFASTINT (w->width),
619 window_left is XFASTINT (w->left),
620 has_vertical_scroll_bars is
621 FRAME_HAS_VERTICAL_SCROLL_BARS (XFRAME (WINDOW_FRAME (window)))
622 and frame_width = FRAME_WIDTH (XFRAME (window->frame))
623
624 Or you can let window_internal_width do this all for you, and write:
625 window_internal_width (w) - 1
626
627 The `-1' accounts for the continuation-line backslashes; the rest
628 accounts for window borders if the window is split horizontally, and
629 the scroll bars if they are turned on. */
630
631 struct position *
632 compute_motion (from, fromvpos, fromhpos, to, tovpos, tohpos, width, hscroll, tab_offset, win)
633 int from, fromvpos, fromhpos, to, tovpos, tohpos;
634 register int width;
635 int hscroll, tab_offset;
636 struct window *win;
637 {
638 register int hpos = fromhpos;
639 register int vpos = fromvpos;
640
641 register int pos;
642 register int c;
643 register int tab_width = XFASTINT (current_buffer->tab_width);
644 register int ctl_arrow = !NILP (current_buffer->ctl_arrow);
645 register struct Lisp_Vector *dp = window_display_table (win);
646 int selective
647 = (INTEGERP (current_buffer->selective_display)
648 ? XINT (current_buffer->selective_display)
649 : !NILP (current_buffer->selective_display) ? -1 : 0);
650 int prev_vpos = vpos, prev_hpos = 0;
651 int selective_rlen
652 = (selective && dp && VECTORP (DISP_INVIS_VECTOR (dp))
653 ? XVECTOR (DISP_INVIS_VECTOR (dp))->size : 0);
654 #ifdef USE_TEXT_PROPERTIES
655 /* The next location where the `invisible' property changes */
656 int next_invisible = from;
657 Lisp_Object prop, position;
658 #endif
659
660 /* For computing runs of characters with similar widths.
661 Invariant: width_run_width is zero, or all the characters
662 from width_run_start to width_run_end have a fixed width of
663 width_run_width. */
664 int width_run_start = from;
665 int width_run_end = from;
666 int width_run_width = 0;
667 Lisp_Object *width_table;
668 Lisp_Object buffer;
669
670 /* The next buffer pos where we should consult the width run cache. */
671 int next_width_run = from;
672
673 XSETBUFFER (buffer, current_buffer);
674
675 width_run_cache_on_off ();
676 if (dp == buffer_display_table ())
677 width_table = (VECTORP (current_buffer->width_table)
678 ? XVECTOR (current_buffer->width_table)->contents
679 : 0);
680 else
681 /* If the window has its own display table, we can't use the width
682 run cache, because that's based on the buffer's display table. */
683 width_table = 0;
684
685 if (tab_width <= 0 || tab_width > 1000) tab_width = 8;
686 for (pos = from; pos < to; )
687 {
688 /* Stop if past the target screen position. */
689 if (vpos > tovpos
690 || (vpos == tovpos && hpos >= tohpos))
691 break;
692
693 prev_vpos = vpos;
694 prev_hpos = hpos;
695
696 #ifdef USE_TEXT_PROPERTIES
697 /* if the `invisible' property is set, we can skip to
698 the next property change */
699 while (pos == next_invisible && pos < to)
700 {
701 XSETFASTINT (position, pos);
702
703 /* Give faster response for overlay lookup near POS. */
704 recenter_overlay_lists (current_buffer, pos);
705
706 prop = Fget_char_property (position,
707 Qinvisible,
708 Fcurrent_buffer ());
709 {
710 Lisp_Object end, limit, proplimit;
711
712 /* We must not advance farther than the next overlay change.
713 The overlay change might change the invisible property;
714 we have no way of telling. */
715 limit = Fnext_overlay_change (position);
716 /* As for text properties, this gives a lower bound
717 for where the invisible text property could change. */
718 proplimit = Fnext_property_change (position, buffer, Qt);
719 if (XFASTINT (limit) < XFASTINT (proplimit))
720 proplimit = limit;
721 /* PROPLIMIT is now a lower bound for the next change
722 in invisible status. If that is plenty far away,
723 use that lower bound. */
724 if (XFASTINT (proplimit) > pos + 100 || XFASTINT (proplimit) >= to)
725 next_invisible = XINT (proplimit);
726 /* Otherwise, scan for the next `invisible' property change. */
727 else
728 {
729 /* Don't scan terribly far. */
730 XSETFASTINT (proplimit, min (pos + 100, to));
731 /* No matter what. don't go past next overlay change. */
732 if (XFASTINT (limit) < XFASTINT (proplimit))
733 proplimit = limit;
734 end = Fnext_single_property_change (position, Qinvisible,
735 buffer, proplimit);
736 if (INTEGERP (end) && XINT (end) < to)
737 next_invisible = XINT (end);
738 else
739 next_invisible = to;
740 }
741 if (TEXT_PROP_MEANS_INVISIBLE (prop))
742 pos = next_invisible;
743 }
744 }
745 if (pos >= to)
746 break;
747 #endif
748
749 /* Consult the width run cache to see if we can avoid inspecting
750 the text character-by-character. */
751 if (current_buffer->width_run_cache && pos >= next_width_run)
752 {
753 int run_end;
754 int common_width
755 = region_cache_forward (current_buffer,
756 current_buffer->width_run_cache,
757 pos, &run_end);
758
759 /* A width of zero means the character's width varies (like
760 a tab), is meaningless (like a newline), or we just don't
761 want to skip over it for some other reason. */
762 if (common_width != 0)
763 {
764 int run_end_hpos;
765
766 /* Don't go past the final buffer posn the user
767 requested. */
768 if (run_end > to)
769 run_end = to;
770
771 run_end_hpos = hpos + (run_end - pos) * common_width;
772
773 /* Don't go past the final horizontal position the user
774 requested. */
775 if (vpos == tovpos && run_end_hpos > tohpos)
776 {
777 run_end = pos + (tohpos - hpos) / common_width;
778 run_end_hpos = hpos + (run_end - pos) * common_width;
779 }
780
781 /* Don't go past the margin. */
782 if (run_end_hpos >= width)
783 {
784 run_end = pos + (width - hpos) / common_width;
785 run_end_hpos = hpos + (run_end - pos) * common_width;
786 }
787
788 hpos = run_end_hpos;
789 if (run_end > pos)
790 prev_hpos = hpos - common_width;
791 pos = run_end;
792 }
793
794 next_width_run = run_end + 1;
795 }
796
797 /* We have to scan the text character-by-character. */
798 else
799 {
800 c = FETCH_CHAR (pos);
801 pos++;
802
803 /* Perhaps add some info to the width_run_cache. */
804 if (current_buffer->width_run_cache)
805 {
806 /* Is this character part of the current run? If so, extend
807 the run. */
808 if (pos - 1 == width_run_end
809 && width_table[c] == width_run_width)
810 width_run_end = pos;
811
812 /* The previous run is over, since this is a character at a
813 different position, or a different width. */
814 else
815 {
816 /* Have we accumulated a run to put in the cache?
817 (Currently, we only cache runs of width == 1). */
818 if (width_run_start < width_run_end
819 && width_run_width == 1)
820 know_region_cache (current_buffer,
821 current_buffer->width_run_cache,
822 width_run_start, width_run_end);
823
824 /* Start recording a new width run. */
825 width_run_width = width_table[c];
826 width_run_start = pos - 1;
827 width_run_end = pos;
828 }
829 }
830
831 if (dp != 0 && VECTORP (DISP_CHAR_VECTOR (dp, c)))
832 hpos += XVECTOR (DISP_CHAR_VECTOR (dp, c))->size;
833 else if (c >= 040 && c < 0177)
834 hpos++;
835 else if (c == '\t')
836 {
837 hpos += tab_width - ((hpos + tab_offset + hscroll - (hscroll > 0)
838 /* Add tab_width here to make sure
839 positive. hpos can be negative
840 after continuation but can't be
841 less than -tab_width. */
842 + tab_width)
843 % tab_width);
844 }
845 else if (c == '\n')
846 {
847 if (selective > 0 && indented_beyond_p (pos, selective))
848 {
849 /* Skip any number of invisible lines all at once */
850 do
851 pos = find_before_next_newline (pos, to, 1) + 1;
852 while (pos < to
853 && indented_beyond_p (pos, selective));
854 /* Allow for the " ..." that is displayed for them. */
855 if (selective_rlen)
856 {
857 hpos += selective_rlen;
858 if (hpos >= width)
859 hpos = width;
860 }
861 --pos;
862 /* We have skipped the invis text, but not the
863 newline after. */
864 }
865 else
866 {
867 /* A visible line. */
868 vpos++;
869 hpos = 0;
870 hpos -= hscroll;
871 /* Count the truncation glyph on column 0 */
872 if (hscroll > 0)
873 hpos++;
874 tab_offset = 0;
875 }
876 }
877 else if (c == CR && selective < 0)
878 {
879 /* In selective display mode,
880 everything from a ^M to the end of the line is invisible.
881 Stop *before* the real newline. */
882 pos = find_before_next_newline (pos, to, 1);
883 /* Allow for the " ..." that is displayed for them. */
884 if (selective_rlen)
885 {
886 hpos += selective_rlen;
887 if (hpos >= width)
888 hpos = width;
889 }
890 }
891 else
892 hpos += (ctl_arrow && c < 0200) ? 2 : 4;
893 }
894
895 /* Handle right margin. */
896 if (hpos >= width
897 && (hpos > width
898 || (pos < ZV
899 && FETCH_CHAR (pos) != '\n')))
900 {
901 if (vpos > tovpos
902 || (vpos == tovpos && hpos >= tohpos))
903 break;
904 if (hscroll
905 || (truncate_partial_width_windows
906 && width + 1 < FRAME_WIDTH (XFRAME (WINDOW_FRAME (win))))
907 || !NILP (current_buffer->truncate_lines))
908 {
909 /* Truncating: skip to newline. */
910 pos = find_before_next_newline (pos, to, 1);
911 hpos = width;
912 }
913 else
914 {
915 /* Continuing. */
916 vpos++;
917 hpos -= width;
918 tab_offset += width;
919 }
920
921 }
922 }
923
924 /* Remember any final width run in the cache. */
925 if (current_buffer->width_run_cache
926 && width_run_width == 1
927 && width_run_start < width_run_end)
928 know_region_cache (current_buffer, current_buffer->width_run_cache,
929 width_run_start, width_run_end);
930
931 val_compute_motion.bufpos = pos;
932 val_compute_motion.hpos = hpos;
933 val_compute_motion.vpos = vpos;
934 val_compute_motion.prevhpos = prev_hpos;
935
936 /* Nonzero if have just continued a line */
937 val_compute_motion.contin
938 = (pos != from
939 && (val_compute_motion.vpos != prev_vpos)
940 && c != '\n');
941
942 return &val_compute_motion;
943 }
944
945 #if 0 /* The doc string is too long for some compilers,
946 but make-docfile can find it in this comment. */
947 DEFUN ("compute-motion", Ffoo, Sfoo, 7, 7, 0,
948 "Scan through the current buffer, calculating screen position.\n\
949 Scan the current buffer forward from offset FROM,\n\
950 assuming it is at position FROMPOS--a cons of the form (HPOS . VPOS)--\n\
951 to position TO or position TOPOS--another cons of the form (HPOS . VPOS)--\n\
952 and return the ending buffer position and screen location.\n\
953 \n\
954 There are three additional arguments:\n\
955 \n\
956 WIDTH is the number of columns available to display text;\n\
957 this affects handling of continuation lines.\n\
958 This is usually the value returned by `window-width', less one (to allow\n\
959 for the continuation glyph).\n\
960 \n\
961 OFFSETS is either nil or a cons cell (HSCROLL . TAB-OFFSET).\n\
962 HSCROLL is the number of columns not being displayed at the left\n\
963 margin; this is usually taken from a window's hscroll member.\n\
964 TAB-OFFSET is the number of columns of the first tab that aren't\n\
965 being displayed, perhaps because the line was continued within it.\n\
966 If OFFSETS is nil, HSCROLL and TAB-OFFSET are assumed to be zero.\n\
967 \n\
968 WINDOW is the window to operate on. Currently this is used only to\n\
969 find the display table. It does not matter what buffer WINDOW displays;\n\
970 `compute-motion' always operates on the current buffer.\n\
971 \n\
972 The value is a list of five elements:\n\
973 (POS HPOS VPOS PREVHPOS CONTIN)\n\
974 POS is the buffer position where the scan stopped.\n\
975 VPOS is the vertical position where the scan stopped.\n\
976 HPOS is the horizontal position where the scan stopped.\n\
977 \n\
978 PREVHPOS is the horizontal position one character back from POS.\n\
979 CONTIN is t if a line was continued after (or within) the previous character.\n\
980 \n\
981 For example, to find the buffer position of column COL of line LINE\n\
982 of a certain window, pass the window's starting location as FROM\n\
983 and the window's upper-left coordinates as FROMPOS.\n\
984 Pass the buffer's (point-max) as TO, to limit the scan to the end of the\n\
985 visible section of the buffer, and pass LINE and COL as TOPOS.")
986 (from, frompos, to, topos, width, offsets, window)
987 #endif
988
989 DEFUN ("compute-motion", Fcompute_motion, Scompute_motion, 7, 7, 0,
990 0)
991 (from, frompos, to, topos, width, offsets, window)
992 Lisp_Object from, frompos, to, topos;
993 Lisp_Object width, offsets, window;
994 {
995 Lisp_Object bufpos, hpos, vpos, prevhpos, contin;
996 struct position *pos;
997 int hscroll, tab_offset;
998
999 CHECK_NUMBER_COERCE_MARKER (from, 0);
1000 CHECK_CONS (frompos, 0);
1001 CHECK_NUMBER (XCONS (frompos)->car, 0);
1002 CHECK_NUMBER (XCONS (frompos)->cdr, 0);
1003 CHECK_NUMBER_COERCE_MARKER (to, 0);
1004 CHECK_CONS (topos, 0);
1005 CHECK_NUMBER (XCONS (topos)->car, 0);
1006 CHECK_NUMBER (XCONS (topos)->cdr, 0);
1007 CHECK_NUMBER (width, 0);
1008 if (!NILP (offsets))
1009 {
1010 CHECK_CONS (offsets, 0);
1011 CHECK_NUMBER (XCONS (offsets)->car, 0);
1012 CHECK_NUMBER (XCONS (offsets)->cdr, 0);
1013 hscroll = XINT (XCONS (offsets)->car);
1014 tab_offset = XINT (XCONS (offsets)->cdr);
1015 }
1016 else
1017 hscroll = tab_offset = 0;
1018
1019 if (NILP (window))
1020 window = Fselected_window ();
1021 else
1022 CHECK_LIVE_WINDOW (window, 0);
1023
1024 pos = compute_motion (XINT (from), XINT (XCONS (frompos)->cdr),
1025 XINT (XCONS (frompos)->car),
1026 XINT (to), XINT (XCONS (topos)->cdr),
1027 XINT (XCONS (topos)->car),
1028 XINT (width), hscroll, tab_offset,
1029 XWINDOW (window));
1030
1031 XSETFASTINT (bufpos, pos->bufpos);
1032 XSETINT (hpos, pos->hpos);
1033 XSETINT (vpos, pos->vpos);
1034 XSETINT (prevhpos, pos->prevhpos);
1035
1036 return Fcons (bufpos,
1037 Fcons (hpos,
1038 Fcons (vpos,
1039 Fcons (prevhpos,
1040 Fcons (pos->contin ? Qt : Qnil, Qnil)))));
1041
1042 }
1043 \f
1044 /* Return the column of position POS in window W's buffer.
1045 The result is rounded down to a multiple of the internal width of W.
1046 This is the amount of indentation of position POS
1047 that is not visible in its horizontal position in the window. */
1048
1049 int
1050 pos_tab_offset (w, pos)
1051 struct window *w;
1052 register int pos;
1053 {
1054 int opoint = PT;
1055 int col;
1056 int width = window_internal_width (w) - 1;
1057
1058 if (pos == BEGV || FETCH_CHAR (pos - 1) == '\n')
1059 return 0;
1060 TEMP_SET_PT (pos);
1061 col = current_column ();
1062 TEMP_SET_PT (opoint);
1063 return col - (col % width);
1064 }
1065
1066 \f
1067 /* Fvertical_motion and vmotion */
1068 struct position val_vmotion;
1069
1070 struct position *
1071 vmotion (from, vtarget, width, hscroll, window)
1072 register int from, vtarget, width;
1073 int hscroll;
1074 Lisp_Object window;
1075 {
1076 struct position pos;
1077 /* vpos is cumulative vertical position, changed as from is changed */
1078 register int vpos = 0;
1079 Lisp_Object prevline;
1080 register int first;
1081 int lmargin = hscroll > 0 ? 1 - hscroll : 0;
1082 int selective
1083 = (INTEGERP (current_buffer->selective_display)
1084 ? XINT (current_buffer->selective_display)
1085 : !NILP (current_buffer->selective_display) ? -1 : 0);
1086 /* The omission of the clause
1087 && marker_position (XWINDOW (window)->start) == BEG
1088 here is deliberate; I think we want to measure from the prompt
1089 position even if the minibuffer window has scrolled. */
1090 int start_hpos = 0;
1091
1092 if (EQ (window, minibuf_window))
1093 {
1094 if (minibuf_prompt_width == 0)
1095 minibuf_prompt_width = string_width (minibuf_prompt, Qnil, Qnil);
1096
1097 start_hpos = minibuf_prompt_width;
1098 }
1099
1100 retry:
1101 if (vtarget > vpos)
1102 {
1103 /* Moving downward is simple, but must calculate from beg of line
1104 to determine hpos of starting point */
1105 if (from > BEGV && FETCH_CHAR (from - 1) != '\n')
1106 {
1107 Lisp_Object propval;
1108
1109 XSETFASTINT (prevline, find_next_newline_no_quit (from, -1));
1110 while (XFASTINT (prevline) > BEGV
1111 && ((selective > 0
1112 && indented_beyond_p (XFASTINT (prevline), selective))
1113 #ifdef USE_TEXT_PROPERTIES
1114 /* watch out for newlines with `invisible' property */
1115 || (propval = Fget_char_property (prevline,
1116 Qinvisible,
1117 window),
1118 TEXT_PROP_MEANS_INVISIBLE (propval))
1119 #endif
1120 ))
1121 XSETFASTINT (prevline,
1122 find_next_newline_no_quit (XFASTINT (prevline) - 1,
1123 -1));
1124 pos = *compute_motion (XFASTINT (prevline), 0,
1125 lmargin + (XFASTINT (prevline) == 1
1126 ? start_hpos : 0),
1127 from, 1 << (INTBITS - 2), 0,
1128 width, hscroll, 0, XWINDOW (window));
1129 }
1130 else
1131 {
1132 pos.hpos = lmargin + (from == 1 ? start_hpos : 0);
1133 pos.vpos = 0;
1134 }
1135 return compute_motion (from, vpos, pos.hpos,
1136 ZV, vtarget, - (1 << (INTBITS - 2)),
1137 width, hscroll, pos.vpos * width,
1138 XWINDOW (window));
1139 }
1140
1141 /* To move upward, go a line at a time until
1142 we have gone at least far enough */
1143
1144 first = 1;
1145
1146 while ((vpos > vtarget || first) && from > BEGV)
1147 {
1148 XSETFASTINT (prevline, from);
1149 while (1)
1150 {
1151 Lisp_Object propval;
1152
1153 XSETFASTINT (prevline,
1154 find_next_newline_no_quit (XFASTINT (prevline) - 1,
1155 -1));
1156 if (XFASTINT (prevline) == BEGV
1157 || ((selective <= 0
1158 || ! indented_beyond_p (XFASTINT (prevline), selective))
1159 #ifdef USE_TEXT_PROPERTIES
1160 /* watch out for newlines with `invisible' property */
1161 && (propval = Fget_char_property (prevline, Qinvisible,
1162 window),
1163 ! TEXT_PROP_MEANS_INVISIBLE (propval))
1164 #endif
1165 ))
1166 break;
1167 }
1168 pos = *compute_motion (XFASTINT (prevline), 0,
1169 lmargin + (XFASTINT (prevline) == 1
1170 ? start_hpos : 0),
1171 from, 1 << (INTBITS - 2), 0,
1172 width, hscroll, 0, XWINDOW (window));
1173 vpos -= pos.vpos;
1174 first = 0;
1175 from = XFASTINT (prevline);
1176 }
1177
1178 /* If we made exactly the desired vertical distance,
1179 or if we hit beginning of buffer,
1180 return point found */
1181 if (vpos >= vtarget)
1182 {
1183 val_vmotion.bufpos = from;
1184 val_vmotion.vpos = vpos;
1185 val_vmotion.hpos = lmargin;
1186 val_vmotion.contin = 0;
1187 val_vmotion.prevhpos = 0;
1188 return &val_vmotion;
1189 }
1190
1191 /* Otherwise find the correct spot by moving down */
1192 goto retry;
1193 }
1194
1195 DEFUN ("vertical-motion", Fvertical_motion, Svertical_motion, 1, 2, 0,
1196 "Move to start of screen line LINES lines down.\n\
1197 If LINES is negative, this is moving up.\n\
1198 \n\
1199 The optional second argument WINDOW specifies the window to use for\n\
1200 parameters such as width, horizontal scrolling, and so on.\n\
1201 the default is the selected window.\n\
1202 It does not matter what buffer is displayed in WINDOW.\n\
1203 `vertical-motion' always uses the current buffer.\n\
1204 \n\
1205 Sets point to position found; this may be start of line\n\
1206 or just the start of a continuation line.\n\
1207 Returns number of lines moved; may be closer to zero than LINES\n\
1208 if beginning or end of buffer was reached.")
1209 (lines, window)
1210 Lisp_Object lines, window;
1211 {
1212 struct position pos;
1213 register struct window *w;
1214
1215 CHECK_NUMBER (lines, 0);
1216 if (! NILP (window))
1217 CHECK_WINDOW (window, 0);
1218 else
1219 window = selected_window;
1220
1221 w = XWINDOW (window);
1222
1223 pos = *vmotion (point, XINT (lines), window_internal_width (w) - 1,
1224 /* Not XFASTINT since perhaps could be negative */
1225 XINT (w->hscroll), window);
1226
1227 SET_PT (pos.bufpos);
1228 return make_number (pos.vpos);
1229 }
1230 \f
1231 /* file's initialization. */
1232
1233 syms_of_indent ()
1234 {
1235 DEFVAR_BOOL ("indent-tabs-mode", &indent_tabs_mode,
1236 "*Indentation can insert tabs if this is non-nil.\n\
1237 Setting this variable automatically makes it local to the current buffer.");
1238 indent_tabs_mode = 1;
1239
1240 defsubr (&Scurrent_indentation);
1241 defsubr (&Sindent_to);
1242 defsubr (&Scurrent_column);
1243 defsubr (&Smove_to_column);
1244 defsubr (&Svertical_motion);
1245 defsubr (&Scompute_motion);
1246 }