1 /* Indentation functions.
2 Copyright (C) 1985,86,87,88,93,94 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
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)
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.
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. */
30 #include "intervals.h"
31 #include "region-cache.h"
33 /* Indentation can insert tabs if this is non-zero;
34 otherwise always uses spaces */
37 #define min(a, b) ((a) < (b) ? (a) : (b))
38 #define max(a, b) ((a) > (b) ? (a) : (b))
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
;
52 /* Get the display table to use for the current buffer. */
55 buffer_display_table ()
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
);
68 /* Width run cache considerations. */
70 /* Return the width of character C under display table DP. */
72 character_width (c
, dp
)
74 struct Lisp_Vector
*dp
;
78 /* These width computations were determined by examining the cases
79 in display_text_line. */
81 /* Some characters are never handled by the display table. */
82 if (c
== '\n' || c
== '\t' || c
== '\015')
85 /* Everything else might be handled by the display table, if it's
86 present and the element is right. */
87 else if (dp
&& (elt
= DISP_CHAR_VECTOR (dp
, c
),
89 return XVECTOR (elt
)->size
;
91 /* In the absence of display table perversities, printing characters
93 else if (c
>= 040 && c
< 0177)
96 /* Everybody else (control characters, metacharacters) has other
97 widths. We could return their actual widths here, but they
98 depend on things like ctl_arrow and crud like that, and they're
99 not very common at all. So we'll just claim we don't know their
105 /* Return true iff the display table DISPTAB specifies the same widths
106 for characters as WIDTHTAB. We use this to decide when to
107 invalidate the buffer's width_run_cache. */
109 disptab_matches_widthtab (disptab
, widthtab
)
110 struct Lisp_Vector
*disptab
;
111 struct Lisp_Vector
*widthtab
;
115 if (widthtab
->size
!= 256)
118 for (i
= 0; i
< 256; i
++)
119 if (character_width (i
, disptab
)
120 != XFASTINT (widthtab
->contents
[i
]))
126 /* Recompute BUF's width table, using the display table DISPTAB. */
128 recompute_width_table (buf
, disptab
)
130 struct Lisp_Vector
*disptab
;
133 struct Lisp_Vector
*widthtab
;
135 if (!VECTORP (buf
->width_table
))
136 buf
->width_table
= Fmake_vector (make_number (256), make_number (0));
137 widthtab
= XVECTOR (buf
->width_table
);
138 if (widthtab
->size
!= 256)
141 for (i
= 0; i
< 256; i
++)
142 XSETFASTINT (widthtab
->contents
[i
], character_width (i
, disptab
));
145 /* Allocate or free the width run cache, as requested by the current
146 state of current_buffer's cache_long_line_scans variable. */
148 width_run_cache_on_off ()
150 if (NILP (current_buffer
->cache_long_line_scans
))
152 /* It should be off. */
153 if (current_buffer
->width_run_cache
)
155 free_region_cache (current_buffer
->width_run_cache
);
156 current_buffer
->width_run_cache
= 0;
157 current_buffer
->width_table
= Qnil
;
162 /* It should be on. */
163 if (current_buffer
->width_run_cache
== 0)
165 current_buffer
->width_run_cache
= new_region_cache ();
166 recompute_width_table (current_buffer
, buffer_display_table ());
172 DEFUN ("current-column", Fcurrent_column
, Scurrent_column
, 0, 0, 0,
173 "Return the horizontal position of point. Beginning of line is column 0.\n\
174 This is calculated by adding together the widths of all the displayed\n\
175 representations of the character between the start of the previous line\n\
176 and point. (eg control characters will have a width of 2 or 4, tabs\n\
177 will have a variable width)\n\
178 Ignores finite width of frame, which means that this function may return\n\
179 values greater than (frame-width).\n\
180 Whether the line is visible (if `selective-display' is t) has no effect;\n\
181 however, ^M is treated as end of line when `selective-display' is t.")
185 XSETFASTINT (temp
, current_column ());
189 /* Cancel any recorded value of the horizontal position. */
191 invalidate_current_column ()
193 last_known_column_point
= 0;
200 register unsigned char *ptr
, *stop
;
201 register int tab_seen
;
204 register int tab_width
= XINT (current_buffer
->tab_width
);
205 int ctl_arrow
= !NILP (current_buffer
->ctl_arrow
);
206 register struct Lisp_Vector
*dp
= buffer_display_table ();
209 if (point
== last_known_column_point
210 && MODIFF
== last_known_column_modified
)
211 return last_known_column
;
213 /* Make a pointer for decrementing through the chars before point. */
214 ptr
= &FETCH_CHAR (point
- 1) + 1;
215 /* Make a pointer to where consecutive chars leave off,
216 going backwards from point. */
219 else if (point
<= GPT
|| BEGV
> GPT
)
224 if (tab_width
<= 0 || tab_width
> 1000) tab_width
= 8;
226 col
= 0, tab_seen
= 0, post_tab
= 0;
232 /* We stopped either for the beginning of the buffer
234 if (ptr
== BEGV_ADDR
)
236 /* It was the gap. Jump back over it. */
239 /* Check whether that brings us to beginning of buffer. */
240 if (BEGV
>= GPT
) break;
244 if (c
>= 040 && c
< 0177
245 && (dp
== 0 || !VECTORP (DISP_CHAR_VECTOR (dp
, c
))))
251 else if (c
== '\r' && EQ (current_buffer
->selective_display
, Qt
))
256 col
= ((col
+ tab_width
) / tab_width
) * tab_width
;
262 else if (dp
!= 0 && VECTORP (DISP_CHAR_VECTOR (dp
, c
)))
263 col
+= XVECTOR (DISP_CHAR_VECTOR (dp
, c
))->size
;
265 col
+= (ctl_arrow
&& c
< 0200) ? 2 : 4;
270 col
= ((col
+ tab_width
) / tab_width
) * tab_width
;
274 last_known_column
= col
;
275 last_known_column_point
= point
;
276 last_known_column_modified
= MODIFF
;
281 DEFUN ("indent-to", Findent_to
, Sindent_to
, 1, 2, "NIndent to column: ",
282 "Indent from point with tabs and spaces until COLUMN is reached.\n\
283 Optional second argument MIN says always do at least MIN spaces\n\
284 even if that goes past COLUMN; by default, MIN is zero.")
286 Lisp_Object col
, minimum
;
289 register int fromcol
;
290 register int tab_width
= XINT (current_buffer
->tab_width
);
292 CHECK_NUMBER (col
, 0);
294 XSETFASTINT (minimum
, 0);
295 CHECK_NUMBER (minimum
, 1);
297 fromcol
= current_column ();
298 mincol
= fromcol
+ XINT (minimum
);
299 if (mincol
< XINT (col
)) mincol
= XINT (col
);
301 if (fromcol
== mincol
)
302 return make_number (mincol
);
304 if (tab_width
<= 0 || tab_width
> 1000) tab_width
= 8;
306 if (indent_tabs_mode
)
309 XSETFASTINT (n
, mincol
/ tab_width
- fromcol
/ tab_width
);
310 if (XFASTINT (n
) != 0)
312 Finsert_char (make_number ('\t'), n
, Qt
);
314 fromcol
= (mincol
/ tab_width
) * tab_width
;
318 XSETFASTINT (col
, mincol
- fromcol
);
319 Finsert_char (make_number (' '), col
, Qt
);
321 last_known_column
= mincol
;
322 last_known_column_point
= point
;
323 last_known_column_modified
= MODIFF
;
325 XSETINT (col
, mincol
);
330 DEFUN ("current-indentation", Fcurrent_indentation
, Scurrent_indentation
,
332 "Return the indentation of the current line.\n\
333 This is the horizontal position of the character\n\
334 following any initial whitespace.")
339 XSETFASTINT (val
, position_indentation (find_next_newline (point
, -1)));
343 position_indentation (pos
)
346 register int column
= 0;
347 register int tab_width
= XINT (current_buffer
->tab_width
);
348 register unsigned char *p
;
349 register unsigned char *stop
;
351 if (tab_width
<= 0 || tab_width
> 1000) tab_width
= 8;
353 stop
= &FETCH_CHAR (BUFFER_CEILING_OF (pos
)) + 1;
354 p
= &FETCH_CHAR (pos
);
361 pos
+= p
- &FETCH_CHAR (pos
);
362 p
= &FETCH_CHAR (pos
);
363 stop
= &FETCH_CHAR (BUFFER_CEILING_OF (pos
)) + 1;
371 column
+= tab_width
- column
% tab_width
;
379 /* Test whether the line beginning at POS is indented beyond COLUMN.
380 Blank lines are treated as if they had the same indentation as the
383 indented_beyond_p (pos
, column
)
386 while (pos
> BEGV
&& FETCH_CHAR (pos
) == '\n')
387 pos
= find_next_newline_no_quit (pos
- 1, -1);
388 return (position_indentation (pos
) >= column
);
392 DEFUN ("move-to-column", Fmove_to_column
, Smove_to_column
, 1, 2, 0,
393 "Move point to column COLUMN in the current line.\n\
394 The column of a character is calculated by adding together the widths\n\
395 as displayed of the previous characters in the line.\n\
396 This function ignores line-continuation;\n\
397 there is no upper limit on the column number a character can have\n\
398 and horizontal scrolling has no effect.\n\
400 If specified column is within a character, point goes after that character.\n\
401 If it's past end of line, point goes to end of line.\n\n\
402 A non-nil second (optional) argument FORCE means, if the line\n\
403 is too short to reach column COLUMN then add spaces/tabs to get there,\n\
404 and if COLUMN is in the middle of a tab character, change it to spaces.")
406 Lisp_Object column
, force
;
409 register int col
= current_column ();
412 register int tab_width
= XINT (current_buffer
->tab_width
);
413 register int ctl_arrow
= !NILP (current_buffer
->ctl_arrow
);
414 register struct Lisp_Vector
*dp
= buffer_display_table ();
420 if (tab_width
<= 0 || tab_width
> 1000) tab_width
= 8;
421 CHECK_NATNUM (column
, 0);
422 goal
= XINT (column
);
428 /* If we're starting past the desired column,
429 back up to beginning of line and scan from there. */
432 pos
= find_next_newline (pos
, -1);
436 while (col
< goal
&& pos
< end
)
438 c
= FETCH_CHAR (pos
);
441 if (c
== '\r' && EQ (current_buffer
->selective_display
, Qt
))
448 col
= col
/ tab_width
* tab_width
;
450 else if (dp
!= 0 && VECTORP (DISP_CHAR_VECTOR (dp
, c
)))
451 col
+= XVECTOR (DISP_CHAR_VECTOR (dp
, c
))->size
;
452 else if (ctl_arrow
&& (c
< 040 || c
== 0177))
454 else if (c
< 040 || c
>= 0177)
462 /* If a tab char made us overshoot, change it to spaces
463 and scan through it again. */
464 if (!NILP (force
) && col
> goal
&& c
== '\t' && prev_col
< goal
)
468 del_range (point
- 1, point
);
469 Findent_to (make_number (goal
), Qnil
);
471 Findent_to (make_number (col
), Qnil
);
473 /* Set the last_known... vars consistently. */
477 /* If line ends prematurely, add space to the end. */
478 if (col
< goal
&& !NILP (force
))
479 Findent_to (make_number (col
= goal
), Qnil
);
481 last_known_column
= col
;
482 last_known_column_point
= point
;
483 last_known_column_modified
= MODIFF
;
485 XSETFASTINT (val
, col
);
490 /* compute_motion: compute buffer posn given screen posn and vice versa */
492 struct position val_compute_motion
;
494 /* Scan the current buffer forward from offset FROM, pretending that
495 this is at line FROMVPOS, column FROMHPOS, until reaching buffer
496 offset TO or line TOVPOS, column TOHPOS (whichever comes first),
497 and return the ending buffer position and screen location. If we
498 can't hit the requested column exactly (because of a tab or other
499 multi-column character), overshoot.
501 WIDTH is the number of columns available to display text;
502 compute_motion uses this to handle continuation lines and such.
503 HSCROLL is the number of columns not being displayed at the left
504 margin; this is usually taken from a window's hscroll member.
505 TAB_OFFSET is the number of columns of the first tab that aren't
506 being displayed, perhaps because of a continuation line or
509 compute_motion returns a pointer to a struct position. The bufpos
510 member gives the buffer position at the end of the scan, and hpos
511 and vpos give its cartesian location. prevhpos is the column at
512 which the character before bufpos started, and contin is non-zero
513 if we reached the current line by continuing the previous.
515 Note that FROMHPOS and TOHPOS should be expressed in real screen
516 columns, taking HSCROLL and the truncation glyph at the left margin
517 into account. That is, beginning-of-line moves you to the hpos
518 -HSCROLL + (HSCROLL > 0).
520 Note that FROMHPOS and TOHPOS should be expressed in real screen
521 columns, taking HSCROLL and the truncation glyph at the left margin
522 into account. That is, beginning-of-line moves you to the hpos
523 -HSCROLL + (HSCROLL > 0).
525 For example, to find the buffer position of column COL of line LINE
526 of a certain window, pass the window's starting location as FROM
527 and the window's upper-left coordinates as FROMVPOS and FROMHPOS.
528 Pass the buffer's ZV as TO, to limit the scan to the end of the
529 visible section of the buffer, and pass LINE and COL as TOVPOS and
532 When displaying in window w, a typical formula for WIDTH is:
535 - (has_vertical_scroll_bars
536 ? FRAME_SCROLL_BAR_COLS (XFRAME (window->frame))
537 : (window_width + window_left != frame_width))
540 window_width is XFASTINT (w->width),
541 window_left is XFASTINT (w->left),
542 has_vertical_scroll_bars is
543 FRAME_HAS_VERTICAL_SCROLL_BARS (XFRAME (WINDOW_FRAME (window)))
544 and frame_width = FRAME_WIDTH (XFRAME (window->frame))
546 Or you can let window_internal_width do this all for you, and write:
547 window_internal_width (w) - 1
549 The `-1' accounts for the continuation-line backslashes; the rest
550 accounts for window borders if the window is split horizontally, and
551 the scroll bars if they are turned on. */
554 compute_motion (from
, fromvpos
, fromhpos
, to
, tovpos
, tohpos
, width
, hscroll
, tab_offset
, win
)
555 int from
, fromvpos
, fromhpos
, to
, tovpos
, tohpos
;
557 int hscroll
, tab_offset
;
560 register int hpos
= fromhpos
;
561 register int vpos
= fromvpos
;
565 register int tab_width
= XFASTINT (current_buffer
->tab_width
);
566 register int ctl_arrow
= !NILP (current_buffer
->ctl_arrow
);
567 register struct Lisp_Vector
*dp
= window_display_table (win
);
569 = (INTEGERP (current_buffer
->selective_display
)
570 ? XINT (current_buffer
->selective_display
)
571 : !NILP (current_buffer
->selective_display
) ? -1 : 0);
572 int prev_vpos
= vpos
, prev_hpos
= 0;
574 = (selective
&& dp
&& VECTORP (DISP_INVIS_VECTOR (dp
))
575 ? XVECTOR (DISP_INVIS_VECTOR (dp
))->size
: 0);
576 #ifdef USE_TEXT_PROPERTIES
577 /* The next location where the `invisible' property changes */
578 int next_invisible
= from
;
579 Lisp_Object prop
, position
;
582 /* For computing runs of characters with similar widths.
583 Invariant: width_run_width is zero, or all the characters
584 from width_run_start to width_run_end have a fixed width of
586 int width_run_start
= from
;
587 int width_run_end
= from
;
588 int width_run_width
= 0;
589 Lisp_Object
*width_table
;
591 /* The next buffer pos where we should consult the width run cache. */
592 int next_width_run
= from
;
594 width_run_cache_on_off ();
595 if (dp
== buffer_display_table ())
596 width_table
= (VECTORP (current_buffer
->width_table
)
597 ? XVECTOR (current_buffer
->width_table
)->contents
600 /* If the window has its own display table, we can't use the width
601 run cache, because that's based on the buffer's display table. */
604 if (tab_width
<= 0 || tab_width
> 1000) tab_width
= 8;
605 for (pos
= from
; pos
< to
; )
607 /* Stop if past the target screen position. */
609 || (vpos
== tovpos
&& hpos
>= tohpos
))
615 #ifdef USE_TEXT_PROPERTIES
616 /* if the `invisible' property is set, we can skip to
617 the next property change */
618 while (pos
== next_invisible
&& pos
< to
)
620 XSETFASTINT (position
, pos
);
621 prop
= Fget_char_property (position
,
625 Lisp_Object end
, limit
;
627 recenter_overlay_lists (current_buffer
, pos
);
628 /* This is just an estimate to give reasonable
629 performance; nothing should go wrong if it is too small. */
630 limit
= Fnext_overlay_change (position
);
631 if (XFASTINT (limit
) > pos
+ 100)
632 XSETFASTINT (limit
, pos
+ 100);
633 end
= Fnext_single_property_change (position
, Qinvisible
,
634 Fcurrent_buffer (), limit
);
636 next_invisible
= XINT (end
);
640 pos
= next_invisible
;
647 /* Consult the width run cache to see if we can avoid inspecting
648 the text character-by-character. */
649 if (current_buffer
->width_run_cache
&& pos
>= next_width_run
)
653 = region_cache_forward (current_buffer
,
654 current_buffer
->width_run_cache
,
657 /* A width of zero means the character's width varies (like
658 a tab), is meaningless (like a newline), or we just don't
659 want to skip over it for some other reason. */
660 if (common_width
!= 0)
664 /* Don't go past the final buffer posn the user
669 run_end_hpos
= hpos
+ (run_end
- pos
) * common_width
;
671 /* Don't go past the final horizontal position the user
673 if (vpos
== tovpos
&& run_end_hpos
> tohpos
)
675 run_end
= pos
+ (tohpos
- hpos
) / common_width
;
676 run_end_hpos
= hpos
+ (run_end
- pos
) * common_width
;
679 /* Don't go past the margin. */
680 if (run_end_hpos
>= width
)
682 run_end
= pos
+ (width
- hpos
) / common_width
;
683 run_end_hpos
= hpos
+ (run_end
- pos
) * common_width
;
688 prev_hpos
= hpos
- common_width
;
692 next_width_run
= run_end
+ 1;
695 /* We have to scan the text character-by-character. */
698 c
= FETCH_CHAR (pos
);
701 /* Perhaps add some info to the width_run_cache. */
702 if (current_buffer
->width_run_cache
)
704 /* Is this character part of the current run? If so, extend
706 if (pos
- 1 == width_run_end
707 && width_table
[c
] == width_run_width
)
710 /* The previous run is over, since this is a character at a
711 different position, or a different width. */
714 /* Have we accumulated a run to put in the cache?
715 (Currently, we only cache runs of width == 1. */
716 if (width_run_start
< width_run_end
717 && width_run_width
== 1)
718 know_region_cache (current_buffer
,
719 current_buffer
->width_run_cache
,
720 width_run_start
, width_run_end
);
722 /* Start recording a new width run. */
723 width_run_width
= width_table
[c
];
724 width_run_start
= pos
- 1;
729 if (c
>= 040 && c
< 0177
730 && (dp
== 0 || ! VECTORP (DISP_CHAR_VECTOR (dp
, c
))))
734 hpos
+= tab_width
- ((hpos
+ tab_offset
+ hscroll
- (hscroll
> 0)
735 /* Add tab_width here to make sure
736 positive. hpos can be negative
737 after continuation but can't be
738 less than -tab_width. */
744 if (selective
> 0 && indented_beyond_p (pos
, selective
))
746 /* Skip any number of invisible lines all at once */
748 pos
= find_before_next_newline (pos
, to
, 1);
750 && indented_beyond_p (pos
, selective
));
751 /* Allow for the " ..." that is displayed for them. */
754 hpos
+= selective_rlen
;
758 /* We have skipped the invis text, but not the
763 /* A visible line. */
767 /* Count the truncation glyph on column 0 */
773 else if (c
== CR
&& selective
< 0)
775 /* In selective display mode,
776 everything from a ^M to the end of the line is invisible.
777 Stop *before* the real newline. */
778 pos
= find_before_next_newline (pos
, to
, 1);
779 /* Allow for the " ..." that is displayed for them. */
782 hpos
+= selective_rlen
;
787 else if (dp
!= 0 && VECTORP (DISP_CHAR_VECTOR (dp
, c
)))
788 hpos
+= XVECTOR (DISP_CHAR_VECTOR (dp
, c
))->size
;
790 hpos
+= (ctl_arrow
&& c
< 0200) ? 2 : 4;
793 /* Handle right margin. */
797 && FETCH_CHAR (pos
) != '\n')))
800 || (vpos
== tovpos
&& hpos
>= tohpos
))
803 || (truncate_partial_width_windows
804 && width
+ 1 < FRAME_WIDTH (XFRAME (WINDOW_FRAME (win
))))
805 || !NILP (current_buffer
->truncate_lines
))
807 /* Truncating: skip to newline. */
808 pos
= find_before_next_newline (pos
, to
, 1);
822 /* Remember any final width run in the cache. */
823 if (current_buffer
->width_run_cache
824 && width_run_width
== 1
825 && width_run_start
< width_run_end
)
826 know_region_cache (current_buffer
, current_buffer
->width_run_cache
,
827 width_run_start
, width_run_end
);
829 val_compute_motion
.bufpos
= pos
;
830 val_compute_motion
.hpos
= hpos
;
831 val_compute_motion
.vpos
= vpos
;
832 val_compute_motion
.prevhpos
= prev_hpos
;
834 /* Nonzero if have just continued a line */
835 val_compute_motion
.contin
837 && (val_compute_motion
.vpos
!= prev_vpos
)
840 return &val_compute_motion
;
843 #if 0 /* The doc string is too long for some compilers,
844 but make-docfile can find it in this comment. */
845 DEFUN ("compute-motion", Ffoo
, Sfoo
, 7, 7, 0,
846 "Scan through the current buffer, calculating screen position.\n\
847 Scan the current buffer forward from offset FROM,\n\
848 assuming it is at position FROMPOS--a cons of the form (HPOS . VPOS)--\n\
849 to position TO or position TOPOS--another cons of the form (HPOS . VPOS)--\n\
850 and return the ending buffer position and screen location.\n\
852 There are three additional arguments:\n\
854 WIDTH is the number of columns available to display text;\n\
855 this affects handling of continuation lines.\n\
856 This is usually the value returned by `window-width', less one (to allow\n\
857 for the continuation glyph).\n\
859 OFFSETS is either nil or a cons cell (HSCROLL . TAB-OFFSET).\n\
860 HSCROLL is the number of columns not being displayed at the left\n\
861 margin; this is usually taken from a window's hscroll member.\n\
862 TAB-OFFSET is the number of columns of the first tab that aren't\n\
863 being displayed, perhaps because the line was continued within it.\n\
864 If OFFSETS is nil, HSCROLL and TAB-OFFSET are assumed to be zero.\n\
866 WINDOW is the window to operate on. Currently this is used only to\n\
867 find the display table. It does not matter what buffer WINDOW displays;\n\
868 `compute-motion' always operates on the current buffer.\n\
870 The value is a list of five elements:\n\
871 (POS HPOS VPOS PREVHPOS CONTIN)\n\
872 POS is the buffer position where the scan stopped.\n\
873 VPOS is the vertical position where the scan stopped.\n\
874 HPOS is the horizontal position where the scan stopped.\n\
876 PREVHPOS is the horizontal position one character back from POS.\n\
877 CONTIN is t if a line was continued after (or within) the previous character.\n\
879 For example, to find the buffer position of column COL of line LINE\n\
880 of a certain window, pass the window's starting location as FROM\n\
881 and the window's upper-left coordinates as FROMPOS.\n\
882 Pass the buffer's (point-max) as TO, to limit the scan to the end of the\n\
883 visible section of the buffer, and pass LINE and COL as TOPOS.")
884 (from
, frompos
, to
, topos
, width
, offsets
, window
)
887 DEFUN ("compute-motion", Fcompute_motion
, Scompute_motion
, 7, 7, 0,
889 (from
, frompos
, to
, topos
, width
, offsets
, window
)
890 Lisp_Object from
, frompos
, to
, topos
;
891 Lisp_Object width
, offsets
, window
;
893 Lisp_Object bufpos
, hpos
, vpos
, prevhpos
, contin
;
894 struct position
*pos
;
895 int hscroll
, tab_offset
;
897 CHECK_NUMBER_COERCE_MARKER (from
, 0);
898 CHECK_CONS (frompos
, 0);
899 CHECK_NUMBER (XCONS (frompos
)->car
, 0);
900 CHECK_NUMBER (XCONS (frompos
)->cdr
, 0);
901 CHECK_NUMBER_COERCE_MARKER (to
, 0);
902 CHECK_CONS (topos
, 0);
903 CHECK_NUMBER (XCONS (topos
)->car
, 0);
904 CHECK_NUMBER (XCONS (topos
)->cdr
, 0);
905 CHECK_NUMBER (width
, 0);
908 CHECK_CONS (offsets
, 0);
909 CHECK_NUMBER (XCONS (offsets
)->car
, 0);
910 CHECK_NUMBER (XCONS (offsets
)->cdr
, 0);
911 hscroll
= XINT (XCONS (offsets
)->car
);
912 tab_offset
= XINT (XCONS (offsets
)->cdr
);
915 hscroll
= tab_offset
= 0;
918 window
= Fselected_window ();
920 CHECK_LIVE_WINDOW (window
, 0);
922 pos
= compute_motion (XINT (from
), XINT (XCONS (frompos
)->cdr
),
923 XINT (XCONS (frompos
)->car
),
924 XINT (to
), XINT (XCONS (topos
)->cdr
),
925 XINT (XCONS (topos
)->car
),
926 XINT (width
), hscroll
, tab_offset
,
929 XSETFASTINT (bufpos
, pos
->bufpos
);
930 XSETINT (hpos
, pos
->hpos
);
931 XSETINT (vpos
, pos
->vpos
);
932 XSETINT (prevhpos
, pos
->prevhpos
);
934 return Fcons (bufpos
,
938 Fcons (pos
->contin
? Qt
: Qnil
, Qnil
)))));
942 /* Return the column of position POS in window W's buffer.
943 The result is rounded down to a multiple of the internal width of W.
944 This is the amount of indentation of position POS
945 that is not visible in its horizontal position in the window. */
948 pos_tab_offset (w
, pos
)
954 int width
= window_internal_width (w
) - 1;
956 if (pos
== BEGV
|| FETCH_CHAR (pos
- 1) == '\n')
959 col
= current_column ();
960 TEMP_SET_PT (opoint
);
961 return col
- (col
% width
);
965 /* Fvertical_motion and vmotion */
966 struct position val_vmotion
;
969 vmotion (from
, vtarget
, width
, hscroll
, window
)
970 register int from
, vtarget
, width
;
975 /* vpos is cumulative vertical position, changed as from is changed */
976 register int vpos
= 0;
977 Lisp_Object prevline
;
979 int lmargin
= hscroll
> 0 ? 1 - hscroll
: 0;
981 = (INTEGERP (current_buffer
->selective_display
)
982 ? XINT (current_buffer
->selective_display
)
983 : !NILP (current_buffer
->selective_display
) ? -1 : 0);
984 /* The omission of the clause
985 && marker_position (XWINDOW (window)->start) == BEG
986 here is deliberate; I think we want to measure from the prompt
987 position even if the minibuffer window has scrolled. */
988 int start_hpos
= (EQ (window
, minibuf_window
) ? minibuf_prompt_width
: 0);
993 /* Moving downward is simple, but must calculate from beg of line
994 to determine hpos of starting point */
995 if (from
> BEGV
&& FETCH_CHAR (from
- 1) != '\n')
997 XSETFASTINT (prevline
, find_next_newline_no_quit (from
, -1));
998 while (XFASTINT (prevline
) > BEGV
1000 && indented_beyond_p (XFASTINT (prevline
), selective
))
1001 #ifdef USE_TEXT_PROPERTIES
1002 /* watch out for newlines with `invisible' property */
1003 || ! NILP (Fget_char_property (prevline
,
1008 XSETFASTINT (prevline
,
1009 find_next_newline_no_quit (XFASTINT (prevline
) - 1,
1011 pos
= *compute_motion (XFASTINT (prevline
), 0,
1012 lmargin
+ (XFASTINT (prevline
) == 1
1014 from
, 1 << (INTBITS
- 2), 0,
1015 width
, hscroll
, 0, XWINDOW (window
));
1019 pos
.hpos
= lmargin
+ (from
== 1 ? start_hpos
: 0);
1022 return compute_motion (from
, vpos
, pos
.hpos
,
1023 ZV
, vtarget
, - (1 << (INTBITS
- 2)),
1024 width
, hscroll
, pos
.vpos
* width
,
1028 /* To move upward, go a line at a time until
1029 we have gone at least far enough */
1033 while ((vpos
> vtarget
|| first
) && from
> BEGV
)
1035 XSETFASTINT (prevline
, from
);
1038 XSETFASTINT (prevline
,
1039 find_next_newline_no_quit (XFASTINT (prevline
) - 1,
1041 if (XFASTINT (prevline
) == BEGV
1043 || ! indented_beyond_p (XFASTINT (prevline
), selective
))
1044 #ifdef USE_TEXT_PROPERTIES
1045 /* watch out for newlines with `invisible' property */
1046 && NILP (Fget_char_property (prevline
, Qinvisible
, window
))
1051 pos
= *compute_motion (XFASTINT (prevline
), 0,
1052 lmargin
+ (XFASTINT (prevline
) == 1
1054 from
, 1 << (INTBITS
- 2), 0,
1055 width
, hscroll
, 0, XWINDOW (window
));
1058 from
= XFASTINT (prevline
);
1061 /* If we made exactly the desired vertical distance,
1062 or if we hit beginning of buffer,
1063 return point found */
1064 if (vpos
>= vtarget
)
1066 val_vmotion
.bufpos
= from
;
1067 val_vmotion
.vpos
= vpos
;
1068 val_vmotion
.hpos
= lmargin
;
1069 val_vmotion
.contin
= 0;
1070 val_vmotion
.prevhpos
= 0;
1071 return &val_vmotion
;
1074 /* Otherwise find the correct spot by moving down */
1078 DEFUN ("vertical-motion", Fvertical_motion
, Svertical_motion
, 1, 2, 0,
1079 "Move to start of screen line LINES lines down.\n\
1080 If LINES is negative, this is moving up.\n\
1082 The optional second argument WINDOW specifies the window to use for\n\
1083 parameters such as width, horizontal scrolling, and so on.\n\
1084 the default is the selected window.\n\
1085 It does not matter what buffer is displayed in WINDOW.\n\
1086 `vertical-motion' always uses the current buffer.\n\
1088 Sets point to position found; this may be start of line\n\
1089 or just the start of a continuation line.\n\
1090 Returns number of lines moved; may be closer to zero than LINES\n\
1091 if beginning or end of buffer was reached.")
1093 Lisp_Object lines
, window
;
1095 struct position pos
;
1096 register struct window
*w
;
1098 CHECK_NUMBER (lines
, 0);
1099 if (! NILP (window
))
1100 CHECK_WINDOW (window
, 0);
1102 window
= selected_window
;
1104 w
= XWINDOW (window
);
1106 pos
= *vmotion (point
, XINT (lines
), window_internal_width (w
) - 1,
1107 /* Not XFASTINT since perhaps could be negative */
1108 XINT (w
->hscroll
), window
);
1110 SET_PT (pos
.bufpos
);
1111 return make_number (pos
.vpos
);
1114 /* file's initialization. */
1118 DEFVAR_BOOL ("indent-tabs-mode", &indent_tabs_mode
,
1119 "*Indentation can insert tabs if this is non-nil.\n\
1120 Setting this variable automatically makes it local to the current buffer.");
1121 indent_tabs_mode
= 1;
1123 defsubr (&Scurrent_indentation
);
1124 defsubr (&Sindent_to
);
1125 defsubr (&Scurrent_column
);
1126 defsubr (&Smove_to_column
);
1127 defsubr (&Svertical_motion
);
1128 defsubr (&Scompute_motion
);