165
|
1 /* Indentation functions.
|
573
|
2 Copyright (C) 1985, 1986, 1987, 1988, 1992 Free Software Foundation, Inc.
|
165
|
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 "screen.h"
|
|
26 #include "window.h"
|
|
27 #include "termchar.h"
|
|
28 #include "termopts.h"
|
|
29 #include "disptab.h"
|
|
30
|
|
31 /* Indentation can insert tabs if this is non-zero;
|
|
32 otherwise always uses spaces */
|
|
33 int indent_tabs_mode;
|
|
34
|
|
35 #define min(a, b) ((a) < (b) ? (a) : (b))
|
|
36 #define max(a, b) ((a) > (b) ? (a) : (b))
|
|
37
|
|
38 #define CR 015
|
|
39
|
|
40 /* These three values memoize the current column to avoid recalculation */
|
|
41 /* Some things in set last_known_column_point to -1
|
|
42 to mark the memoized value as invalid */
|
|
43 /* Last value returned by current_column */
|
|
44 int last_known_column;
|
|
45 /* Value of point when current_column was called */
|
|
46 int last_known_column_point;
|
|
47 /* Value of MODIFF when current_column was called */
|
|
48 int last_known_column_modified;
|
|
49
|
|
50 /* Get the display table to use for the current buffer. */
|
|
51
|
|
52 struct Lisp_Vector *
|
|
53 buffer_display_table ()
|
|
54 {
|
|
55 Lisp_Object thisbuf;
|
|
56
|
|
57 thisbuf = current_buffer->display_table;
|
|
58 if (XTYPE (thisbuf) == Lisp_Vector
|
|
59 && XVECTOR (thisbuf)->size == DISP_TABLE_SIZE)
|
|
60 return XVECTOR (thisbuf);
|
|
61 if (XTYPE (Vstandard_display_table) == Lisp_Vector
|
|
62 && XVECTOR (Vstandard_display_table)->size == DISP_TABLE_SIZE)
|
|
63 return XVECTOR (Vstandard_display_table);
|
|
64 return 0;
|
|
65 }
|
|
66
|
|
67 DEFUN ("current-column", Fcurrent_column, Scurrent_column, 0, 0, 0,
|
|
68 "Return the horizontal position of point. Beginning of line is column 0.\n\
|
|
69 This is calculated by adding together the widths of all the displayed\n\
|
|
70 representations of the character between the start of the previous line\n\
|
|
71 and point. (eg control characters will have a width of 2 or 4, tabs\n\
|
|
72 will have a variable width)\n\
|
|
73 Ignores finite width of screen, which means that this function may return\n\
|
|
74 values greater than (screen-width).\n\
|
|
75 Whether the line is visible (if `selective-display' is t) has no effect;\n\
|
|
76 however, ^M is treated as end of line when `selective-display' is t.")
|
|
77 ()
|
|
78 {
|
|
79 Lisp_Object temp;
|
|
80 XFASTINT (temp) = current_column ();
|
|
81 return temp;
|
|
82 }
|
|
83
|
327
|
84 /* Cancel any recorded value of the horizontal position. */
|
|
85
|
|
86 invalidate_current_column ()
|
|
87 {
|
|
88 last_known_column_point = 0;
|
|
89 }
|
|
90
|
165
|
91 int
|
|
92 current_column ()
|
|
93 {
|
|
94 register int col;
|
|
95 register unsigned char *ptr, *stop;
|
|
96 register int tab_seen;
|
|
97 int post_tab;
|
|
98 register int c;
|
|
99 register int tab_width = XINT (current_buffer->tab_width);
|
488
|
100 int ctl_arrow = !NILP (current_buffer->ctl_arrow);
|
165
|
101 register struct Lisp_Vector *dp = buffer_display_table ();
|
|
102 int stopchar;
|
|
103
|
|
104 if (point == last_known_column_point
|
|
105 && MODIFF == last_known_column_modified)
|
|
106 return last_known_column;
|
|
107
|
|
108 /* Make a pointer for decrementing through the chars before point. */
|
|
109 ptr = &FETCH_CHAR (point - 1) + 1;
|
|
110 /* Make a pointer to where consecutive chars leave off,
|
|
111 going backwards from point. */
|
|
112 if (point == BEGV)
|
|
113 stop = ptr;
|
|
114 else if (point <= GPT || BEGV > GPT)
|
|
115 stop = BEGV_ADDR;
|
|
116 else
|
|
117 stop = GAP_END_ADDR;
|
|
118
|
|
119 if (tab_width <= 0 || tab_width > 20) tab_width = 8;
|
|
120
|
|
121 col = 0, tab_seen = 0, post_tab = 0;
|
|
122
|
|
123 while (1)
|
|
124 {
|
|
125 if (ptr == stop)
|
|
126 {
|
|
127 /* We stopped either for the beginning of the buffer
|
|
128 or for the gap. */
|
|
129 if (ptr == BEGV_ADDR)
|
|
130 break;
|
|
131 /* It was the gap. Jump back over it. */
|
|
132 stop = BEGV_ADDR;
|
|
133 ptr = GPT_ADDR;
|
|
134 /* Check whether that brings us to beginning of buffer. */
|
|
135 if (BEGV >= GPT) break;
|
|
136 }
|
|
137
|
|
138 c = *--ptr;
|
|
139 if (c >= 040 && c < 0177
|
|
140 && (dp == 0 || XTYPE (DISP_CHAR_ROPE (dp, c)) != Lisp_String))
|
|
141 {
|
|
142 col++;
|
|
143 }
|
|
144 else if (c == '\n')
|
|
145 break;
|
|
146 else if (c == '\r' && EQ (current_buffer->selective_display, Qt))
|
|
147 break;
|
|
148 else if (c == '\t')
|
|
149 {
|
|
150 if (tab_seen)
|
|
151 col = ((col + tab_width) / tab_width) * tab_width;
|
|
152
|
|
153 post_tab += col;
|
|
154 col = 0;
|
|
155 tab_seen = 1;
|
|
156 }
|
|
157 else if (dp != 0 && XTYPE (DISP_CHAR_ROPE (dp, c)) == Lisp_String)
|
|
158 col += XSTRING (DISP_CHAR_ROPE (dp, c))->size / sizeof (GLYPH);
|
|
159 else
|
|
160 col += (ctl_arrow && c < 0200) ? 2 : 4;
|
|
161 }
|
|
162
|
|
163 if (tab_seen)
|
|
164 {
|
|
165 col = ((col + tab_width) / tab_width) * tab_width;
|
|
166 col += post_tab;
|
|
167 }
|
|
168
|
|
169 last_known_column = col;
|
|
170 last_known_column_point = point;
|
|
171 last_known_column_modified = MODIFF;
|
|
172
|
|
173 return col;
|
|
174 }
|
|
175
|
|
176
|
|
177 DEFUN ("indent-to", Findent_to, Sindent_to, 1, 2, "NIndent to column: ",
|
|
178 "Indent from point with tabs and spaces until COLUMN is reached.\n\
|
|
179 Optional second argument MIN says always do at least MIN spaces\n\
|
|
180 even if that goes past COLUMN; by default, MIN is zero.")
|
|
181 (col, minimum)
|
|
182 Lisp_Object col, minimum;
|
|
183 {
|
|
184 int mincol;
|
|
185 register int fromcol;
|
|
186 register int tab_width = XINT (current_buffer->tab_width);
|
|
187
|
|
188 CHECK_NUMBER (col, 0);
|
488
|
189 if (NILP (minimum))
|
165
|
190 XFASTINT (minimum) = 0;
|
|
191 CHECK_NUMBER (minimum, 1);
|
|
192
|
|
193 fromcol = current_column ();
|
|
194 mincol = fromcol + XINT (minimum);
|
|
195 if (mincol < XINT (col)) mincol = XINT (col);
|
|
196
|
|
197 if (fromcol == mincol)
|
|
198 return make_number (mincol);
|
|
199
|
|
200 if (tab_width <= 0 || tab_width > 20) tab_width = 8;
|
|
201
|
|
202 if (indent_tabs_mode)
|
|
203 {
|
|
204 Lisp_Object n;
|
|
205 XFASTINT (n) = mincol / tab_width - fromcol / tab_width;
|
|
206 if (XFASTINT (n) != 0)
|
|
207 {
|
|
208 Finsert_char (make_number ('\t'), n);
|
|
209
|
|
210 fromcol = (mincol / tab_width) * tab_width;
|
|
211 }
|
|
212 }
|
|
213
|
|
214 XFASTINT (col) = mincol - fromcol;
|
|
215 Finsert_char (make_number (' '), col);
|
|
216
|
|
217 last_known_column = mincol;
|
|
218 last_known_column_point = point;
|
|
219 last_known_column_modified = MODIFF;
|
|
220
|
|
221 XSETINT (col, mincol);
|
|
222 return col;
|
|
223 }
|
|
224
|
|
225 DEFUN ("current-indentation", Fcurrent_indentation, Scurrent_indentation,
|
|
226 0, 0, 0,
|
|
227 "Return the indentation of the current line.\n\
|
|
228 This is the horizontal position of the character\n\
|
|
229 following any initial whitespace.")
|
|
230 ()
|
|
231 {
|
|
232 Lisp_Object val;
|
|
233
|
|
234 XFASTINT (val) = position_indentation (find_next_newline (point, -1));
|
|
235 return val;
|
|
236 }
|
|
237
|
|
238 position_indentation (pos)
|
|
239 register int pos;
|
|
240 {
|
|
241 register int column = 0;
|
|
242 register int tab_width = XINT (current_buffer->tab_width);
|
|
243 register unsigned char *p;
|
|
244 register unsigned char *stop;
|
|
245
|
|
246 if (tab_width <= 0 || tab_width > 20) tab_width = 8;
|
|
247
|
|
248 stop = &FETCH_CHAR (BUFFER_CEILING_OF (pos)) + 1;
|
|
249 p = &FETCH_CHAR (pos);
|
|
250 while (1)
|
|
251 {
|
|
252 while (p == stop)
|
|
253 {
|
|
254 if (pos == ZV)
|
|
255 return column;
|
|
256 pos += p - &FETCH_CHAR (pos);
|
|
257 p = &FETCH_CHAR (pos);
|
|
258 stop = &FETCH_CHAR (BUFFER_CEILING_OF (pos)) + 1;
|
|
259 }
|
|
260 switch (*p++)
|
|
261 {
|
|
262 case ' ':
|
|
263 column++;
|
|
264 break;
|
|
265 case '\t':
|
|
266 column += tab_width - column % tab_width;
|
|
267 break;
|
|
268 default:
|
|
269 return column;
|
|
270 }
|
|
271 }
|
|
272 }
|
|
273
|
|
274 DEFUN ("move-to-column", Fmove_to_column, Smove_to_column, 1, 2, 0,
|
|
275 "Move point to column COLUMN in the current line.\n\
|
|
276 The column of a character is calculated by adding together the widths\n\
|
|
277 as displayed of the previous characters in the line.\n\
|
|
278 This function ignores line-continuation;\n\
|
|
279 there is no upper limit on the column number a character can have\n\
|
|
280 and horizontal scrolling has no effect.\n\n\
|
|
281 If specified column is within a character, point goes after that character.\n\
|
|
282 If it's past end of line, point goes to end of line.\n\n\
|
|
283 A non-nil second (optional) argument FORCE means, if the line\n\
|
|
284 is too short to reach column COLUMN then add spaces/tabs to get there,\n\
|
|
285 and if COLUMN is in the middle of a tab character, change it to spaces.")
|
|
286 (column, force)
|
|
287 Lisp_Object column, force;
|
|
288 {
|
|
289 register int pos;
|
|
290 register int col = current_column ();
|
|
291 register int goal;
|
|
292 register int end;
|
|
293 register int tab_width = XINT (current_buffer->tab_width);
|
488
|
294 register int ctl_arrow = !NILP (current_buffer->ctl_arrow);
|
165
|
295 register struct Lisp_Vector *dp = buffer_display_table ();
|
|
296
|
|
297 Lisp_Object val;
|
|
298 int prev_col;
|
|
299 int c;
|
|
300
|
|
301 if (tab_width <= 0 || tab_width > 20) tab_width = 8;
|
|
302 CHECK_NATNUM (column, 0);
|
|
303 goal = XINT (column);
|
|
304
|
|
305 retry:
|
|
306 pos = point;
|
|
307 end = ZV;
|
|
308
|
|
309 /* If we're starting past the desired column,
|
|
310 back up to beginning of line and scan from there. */
|
|
311 if (col > goal)
|
|
312 {
|
|
313 pos = find_next_newline (pos, -1);
|
|
314 col = 0;
|
|
315 }
|
|
316
|
|
317 while (col < goal && pos < end)
|
|
318 {
|
|
319 c = FETCH_CHAR (pos);
|
|
320 if (c == '\n')
|
|
321 break;
|
|
322 if (c == '\r' && EQ (current_buffer->selective_display, Qt))
|
|
323 break;
|
|
324 pos++;
|
|
325 if (c == '\t')
|
|
326 {
|
|
327 prev_col = col;
|
|
328 col += tab_width;
|
|
329 col = col / tab_width * tab_width;
|
|
330 }
|
|
331 else if (dp != 0 && XTYPE (DISP_CHAR_ROPE (dp, c)) == Lisp_String)
|
|
332 col += XSTRING (DISP_CHAR_ROPE (dp, c))->size / sizeof (GLYPH);
|
|
333 else if (ctl_arrow && (c < 040 || c == 0177))
|
|
334 col++;
|
|
335 else if (c < 040 || c >= 0177)
|
|
336 col += 3;
|
|
337 else
|
|
338 col++;
|
|
339 }
|
|
340
|
|
341 SET_PT (pos);
|
|
342
|
|
343 /* If a tab char made us overshoot, change it to spaces
|
|
344 and scan through it again. */
|
488
|
345 if (!NILP (force) && col > goal && c == '\t' && prev_col < goal)
|
165
|
346 {
|
573
|
347 int old_point;
|
|
348
|
165
|
349 del_range (point - 1, point);
|
573
|
350 Findent_to (make_number (goal), Qnil);
|
|
351 old_point = point;
|
|
352 Findent_to (make_number (col), Qnil);
|
|
353 SET_PT (old_point);
|
165
|
354 }
|
|
355
|
|
356 /* If line ends prematurely, add space to the end. */
|
488
|
357 if (col < goal && !NILP (force))
|
165
|
358 Findent_to (make_number (col = goal));
|
|
359
|
|
360 last_known_column = col;
|
|
361 last_known_column_point = point;
|
|
362 last_known_column_modified = MODIFF;
|
|
363
|
|
364 XFASTINT (val) = col;
|
|
365 return val;
|
|
366 }
|
|
367
|
|
368 struct position val_compute_motion;
|
|
369
|
|
370 /* Scan the current buffer forward from offset FROM, pretending that
|
|
371 this is at line FROMVPOS, column FROMHPOS, until reaching buffer
|
|
372 offset TO or line TOVPOS, column TOHPOS (whichever comes first),
|
|
373 and return the ending buffer position and screen location.
|
|
374
|
|
375 WIDTH is the number of columns available to display text;
|
|
376 compute_motion uses this to handle continuation lines and such.
|
|
377 HSCROLL is the number of columns not being displayed at the left
|
|
378 margin; this is usually taken from a window's hscroll member.
|
543
|
379 TAB_OFFSET is the number of columns of the first tab that aren't
|
|
380 being displayed, perhaps because of a continuation line or
|
|
381 something.
|
165
|
382
|
|
383 compute_motion returns a pointer to a struct position. The bufpos
|
|
384 member gives the buffer position at the end of the scan, and hpos
|
|
385 and vpos give its cartesian location. I'm not clear on what the
|
|
386 other members are.
|
|
387
|
|
388 For example, to find the buffer position of column COL of line LINE
|
|
389 of a certain window, pass the window's starting location as FROM
|
|
390 and the window's upper-left coordinates as FROMVPOS and FROMHPOS.
|
|
391 Pass the buffer's ZV as TO, to limit the scan to the end of the
|
|
392 visible section of the buffer, and pass LINE and COL as TOVPOS and
|
|
393 TOHPOS.
|
|
394
|
|
395 When displaying in window w, a typical formula for WIDTH is:
|
|
396
|
|
397 window_width - 1
|
|
398 - (window_width + window_left != screen_width)
|
|
399
|
|
400 where
|
|
401 window_width is XFASTINT (w->width),
|
|
402 window_left is XFASTINT (w->left),
|
|
403 and screen_width = SCREEN_WIDTH (XSCREEN (window->screen))
|
|
404
|
|
405 This accounts for the continuation-line backslashes, and the window
|
|
406 borders if the window is split vertically. */
|
|
407
|
|
408 struct position *
|
|
409 compute_motion (from, fromvpos, fromhpos, to, tovpos, tohpos, width, hscroll, tab_offset)
|
|
410 int from, fromvpos, fromhpos, to, tovpos, tohpos;
|
|
411 register int width;
|
|
412 int hscroll, tab_offset;
|
|
413 {
|
526
|
414 register int hpos = fromhpos;
|
|
415 register int vpos = fromvpos;
|
165
|
416
|
|
417 register int pos;
|
|
418 register int c;
|
|
419 register int tab_width = XFASTINT (current_buffer->tab_width);
|
488
|
420 register int ctl_arrow = !NILP (current_buffer->ctl_arrow);
|
165
|
421 register struct Lisp_Vector *dp = buffer_display_table ();
|
|
422 int selective
|
|
423 = XTYPE (current_buffer->selective_display) == Lisp_Int
|
|
424 ? XINT (current_buffer->selective_display)
|
488
|
425 : !NILP (current_buffer->selective_display) ? -1 : 0;
|
526
|
426 int prev_vpos, prev_hpos;
|
165
|
427 int selective_rlen
|
|
428 = (selective && dp && XTYPE (DISP_INVIS_ROPE (dp)) == Lisp_String
|
|
429 ? XSTRING (DISP_INVIS_ROPE (dp))->size / sizeof (GLYPH) : 0);
|
|
430
|
|
431 if (tab_width <= 0 || tab_width > 20) tab_width = 8;
|
526
|
432 for (pos = from; pos < to; pos++)
|
165
|
433 {
|
526
|
434 /* Stop if past the target screen position. */
|
|
435 if (vpos > tovpos
|
|
436 || (vpos == tovpos && hpos >= tohpos))
|
|
437 break;
|
|
438
|
|
439 prev_vpos = vpos;
|
|
440 prev_hpos = hpos;
|
|
441
|
165
|
442 c = FETCH_CHAR (pos);
|
|
443 if (c >= 040 && c < 0177
|
|
444 && (dp == 0 || XTYPE (DISP_CHAR_ROPE (dp, c)) != Lisp_String))
|
526
|
445 hpos++;
|
165
|
446 else if (c == '\t')
|
|
447 {
|
526
|
448 hpos += tab_width - ((hpos + tab_offset + hscroll - (hscroll > 0)
|
|
449 /* Add tab_width here to make sure positive.
|
|
450 hpos can be negative after continuation
|
|
451 but can't be less than -tab_width. */
|
|
452 + tab_width)
|
|
453 % tab_width);
|
165
|
454 }
|
|
455 else if (c == '\n')
|
|
456 {
|
|
457 if (selective > 0 && position_indentation (pos + 1) >= selective)
|
|
458 {
|
|
459 /* Skip any number of invisible lines all at once */
|
|
460 do
|
|
461 {
|
526
|
462 while (++pos < to && FETCH_CHAR (pos) != '\n');
|
165
|
463 }
|
|
464 while (selective > 0 && position_indentation (pos + 1) >= selective);
|
|
465 pos--;
|
|
466 /* Allow for the " ..." that is displayed for them. */
|
|
467 if (selective_rlen)
|
|
468 {
|
526
|
469 hpos += selective_rlen;
|
|
470 if (hpos >= width)
|
|
471 hpos = width;
|
165
|
472 }
|
|
473 }
|
|
474 else
|
526
|
475 {
|
|
476 /* A visible line. */
|
|
477 vpos++;
|
|
478 hpos = 0;
|
|
479 }
|
|
480 hpos -= hscroll;
|
|
481 if (hscroll > 0) hpos++; /* Count the ! on column 0 */
|
165
|
482 tab_offset = 0;
|
|
483 }
|
|
484 else if (c == CR && selective < 0)
|
|
485 {
|
|
486 /* In selective display mode,
|
|
487 everything from a ^M to the end of the line is invisible */
|
526
|
488 while (pos < to && FETCH_CHAR (pos) != '\n') pos++;
|
|
489 /* Stop *before* the real newline. */
|
165
|
490 pos--;
|
|
491 /* Allow for the " ..." that is displayed for them. */
|
|
492 if (selective_rlen)
|
|
493 {
|
526
|
494 hpos += selective_rlen;
|
|
495 if (hpos >= width)
|
|
496 hpos = width;
|
165
|
497 }
|
|
498 }
|
|
499 else if (dp != 0 && XTYPE (DISP_CHAR_ROPE (dp, c)) == Lisp_String)
|
526
|
500 hpos += XSTRING (DISP_CHAR_ROPE (dp, c))->size / sizeof (GLYPH);
|
165
|
501 else
|
526
|
502 hpos += (ctl_arrow && c < 0200) ? 2 : 4;
|
165
|
503
|
526
|
504 /* Handle right margin. */
|
|
505 if (hpos >= width
|
|
506 && (hpos > width
|
|
507 || (pos < ZV - 1
|
165
|
508 && FETCH_CHAR (pos + 1) != '\n')))
|
|
509 {
|
526
|
510 if (vpos > tovpos
|
|
511 || (vpos == tovpos && hpos >= tohpos))
|
165
|
512 break;
|
|
513 if (hscroll
|
|
514 || (truncate_partial_width_windows
|
|
515 && width + 1 < SCREEN_WIDTH (selected_screen))
|
488
|
516 || !NILP (current_buffer->truncate_lines))
|
165
|
517 {
|
526
|
518 /* Truncating: skip to newline. */
|
|
519 while (pos < to && FETCH_CHAR (pos) != '\n') pos++;
|
165
|
520 pos--;
|
|
521 }
|
|
522 else
|
|
523 {
|
526
|
524 /* Continuing. */
|
|
525 vpos++;
|
|
526 hpos -= width;
|
165
|
527 tab_offset += width;
|
|
528 }
|
|
529
|
|
530 }
|
|
531 }
|
|
532
|
|
533 val_compute_motion.bufpos = pos;
|
526
|
534 val_compute_motion.hpos = hpos;
|
|
535 val_compute_motion.vpos = vpos;
|
|
536 val_compute_motion.prevhpos = prev_hpos;
|
165
|
537
|
|
538 /* Nonzero if have just continued a line */
|
|
539 val_compute_motion.contin
|
526
|
540 = (pos != from
|
|
541 && (val_compute_motion.vpos != prev_vpos)
|
|
542 && c != '\n');
|
165
|
543
|
|
544 return &val_compute_motion;
|
|
545 }
|
|
546
|
|
547
|
|
548 /* Return the column of position POS in window W's buffer,
|
|
549 rounded down to a multiple of the internal width of W.
|
|
550 This is the amount of indentation of position POS
|
|
551 that is not visible in its horizontal position in the window. */
|
|
552
|
|
553 int
|
|
554 pos_tab_offset (w, pos)
|
|
555 struct window *w;
|
|
556 register int pos;
|
|
557 {
|
|
558 int opoint = point;
|
|
559 int col;
|
|
560 int width = XFASTINT (w->width) - 1
|
|
561 - (XFASTINT (w->width) + XFASTINT (w->left)
|
|
562 != SCREEN_WIDTH (XSCREEN (w->screen)));
|
|
563
|
|
564 if (pos == BEGV || FETCH_CHAR (pos - 1) == '\n')
|
|
565 return 0;
|
|
566 SET_PT (pos);
|
|
567 col = current_column ();
|
|
568 SET_PT (opoint);
|
|
569 return col - (col % width);
|
|
570 }
|
|
571
|
|
572 /* start_hpos is the hpos of the first character of the buffer:
|
|
573 zero except for the minibuffer window,
|
|
574 where it is the width of the prompt. */
|
|
575
|
|
576 struct position val_vmotion;
|
|
577
|
|
578 struct position *
|
|
579 vmotion (from, vtarget, width, hscroll, window)
|
|
580 register int from, vtarget, width;
|
|
581 int hscroll;
|
|
582 Lisp_Object window;
|
|
583 {
|
|
584 struct position pos;
|
|
585 /* vpos is cumulative vertical position, changed as from is changed */
|
|
586 register int vpos = 0;
|
|
587 register int prevline;
|
|
588 register int first;
|
|
589 int lmargin = hscroll > 0 ? 1 - hscroll : 0;
|
|
590 int selective
|
|
591 = XTYPE (current_buffer->selective_display) == Lisp_Int
|
|
592 ? XINT (current_buffer->selective_display)
|
488
|
593 : !NILP (current_buffer->selective_display) ? -1 : 0;
|
165
|
594 int start_hpos = (EQ (window, minibuf_window) ? minibuf_prompt_width : 0);
|
|
595
|
|
596 retry:
|
|
597 if (vtarget > vpos)
|
|
598 {
|
|
599 /* Moving downward is simple, but must calculate from beg of line
|
|
600 to determine hpos of starting point */
|
|
601 if (from > BEGV && FETCH_CHAR (from - 1) != '\n')
|
|
602 {
|
|
603 prevline = find_next_newline (from, -1);
|
|
604 while (selective > 0
|
|
605 && prevline > BEGV
|
|
606 && position_indentation (prevline) >= selective)
|
|
607 prevline = find_next_newline (prevline - 1, -1);
|
|
608 pos = *compute_motion (prevline, 0,
|
|
609 lmargin + (prevline == 1 ? start_hpos : 0),
|
526
|
610 from, 1 << (INTBITS - 2), 0,
|
165
|
611 width, hscroll, 0);
|
|
612 }
|
|
613 else
|
|
614 {
|
|
615 pos.hpos = lmargin + (from == 1 ? start_hpos : 0);
|
|
616 pos.vpos = 0;
|
|
617 }
|
|
618 return compute_motion (from, vpos, pos.hpos,
|
526
|
619 ZV, vtarget, - (1 << (INTBITS - 2)),
|
165
|
620 width, hscroll, pos.vpos * width);
|
|
621 }
|
|
622
|
|
623 /* To move upward, go a line at a time until
|
|
624 we have gone at least far enough */
|
|
625
|
|
626 first = 1;
|
|
627
|
|
628 while ((vpos > vtarget || first) && from > BEGV)
|
|
629 {
|
|
630 prevline = from;
|
|
631 while (1)
|
|
632 {
|
|
633 prevline = find_next_newline (prevline - 1, -1);
|
|
634 if (prevline == BEGV
|
|
635 || selective <= 0
|
|
636 || position_indentation (prevline) < selective)
|
|
637 break;
|
|
638 }
|
|
639 pos = *compute_motion (prevline, 0,
|
|
640 lmargin + (prevline == 1 ? start_hpos : 0),
|
526
|
641 from, 1 << (INTBITS - 2), 0,
|
165
|
642 width, hscroll, 0);
|
|
643 vpos -= pos.vpos;
|
|
644 first = 0;
|
|
645 from = prevline;
|
|
646 }
|
|
647
|
|
648 /* If we made exactly the desired vertical distance,
|
|
649 or if we hit beginning of buffer,
|
|
650 return point found */
|
|
651 if (vpos >= vtarget)
|
|
652 {
|
|
653 val_vmotion.bufpos = from;
|
|
654 val_vmotion.vpos = vpos;
|
|
655 val_vmotion.hpos = lmargin;
|
|
656 val_vmotion.contin = 0;
|
|
657 val_vmotion.prevhpos = 0;
|
|
658 return &val_vmotion;
|
|
659 }
|
|
660
|
|
661 /* Otherwise find the correct spot by moving down */
|
|
662 goto retry;
|
|
663 }
|
|
664
|
|
665 DEFUN ("vertical-motion", Fvertical_motion, Svertical_motion, 1, 1, 0,
|
|
666 "Move to start of screen line LINES lines down.\n\
|
|
667 If LINES is negative, this is moving up.\n\
|
|
668 Sets point to position found; this may be start of line\n\
|
|
669 or just the start of a continuation line.\n\
|
|
670 Returns number of lines moved; may be closer to zero than LINES\n\
|
|
671 if beginning or end of buffer was reached.")
|
|
672 (lines)
|
|
673 Lisp_Object lines;
|
|
674 {
|
|
675 struct position pos;
|
|
676 register struct window *w = XWINDOW (selected_window);
|
|
677 int width = XFASTINT (w->width) - 1
|
|
678 - (XFASTINT (w->width) + XFASTINT (w->left)
|
|
679 != SCREEN_WIDTH (XSCREEN (w->screen)));
|
|
680
|
|
681 CHECK_NUMBER (lines, 0);
|
|
682
|
|
683 pos = *vmotion (point, XINT (lines), width,
|
|
684 /* Not XFASTINT since perhaps could be negative */
|
|
685 XINT (w->hscroll), selected_window);
|
|
686
|
|
687 SET_PT (pos.bufpos);
|
|
688 return make_number (pos.vpos);
|
|
689 }
|
|
690
|
|
691 syms_of_indent ()
|
|
692 {
|
|
693 DEFVAR_BOOL ("indent-tabs-mode", &indent_tabs_mode,
|
|
694 "*Indentation can insert tabs if this is non-nil.\n\
|
|
695 Setting this variable automatically makes it local to the current buffer.");
|
|
696 indent_tabs_mode = 1;
|
|
697
|
|
698 defsubr (&Scurrent_indentation);
|
|
699 defsubr (&Sindent_to);
|
|
700 defsubr (&Scurrent_column);
|
|
701 defsubr (&Smove_to_column);
|
|
702 defsubr (&Svertical_motion);
|
|
703 }
|