diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/indent.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/indent.c b/src/indent.c index 2f0786c7878..f10221b082a 100644 --- a/src/indent.c +++ b/src/indent.c | |||
| @@ -354,7 +354,6 @@ current_column () | |||
| 354 | register int tab_width = XINT (current_buffer->tab_width); | 354 | register int tab_width = XINT (current_buffer->tab_width); |
| 355 | int ctl_arrow = !NILP (current_buffer->ctl_arrow); | 355 | int ctl_arrow = !NILP (current_buffer->ctl_arrow); |
| 356 | register struct Lisp_Char_Table *dp = buffer_display_table (); | 356 | register struct Lisp_Char_Table *dp = buffer_display_table (); |
| 357 | int stopchar; | ||
| 358 | 357 | ||
| 359 | if (PT == last_known_column_point | 358 | if (PT == last_known_column_point |
| 360 | && MODIFF == last_known_column_modified) | 359 | && MODIFF == last_known_column_modified) |
| @@ -1609,7 +1608,7 @@ DEFUN ("compute-motion", Fcompute_motion, Scompute_motion, 7, 7, 0, | |||
| 1609 | Lisp_Object from, frompos, to, topos; | 1608 | Lisp_Object from, frompos, to, topos; |
| 1610 | Lisp_Object width, offsets, window; | 1609 | Lisp_Object width, offsets, window; |
| 1611 | { | 1610 | { |
| 1612 | Lisp_Object bufpos, hpos, vpos, prevhpos, contin; | 1611 | Lisp_Object bufpos, hpos, vpos, prevhpos; |
| 1613 | struct position *pos; | 1612 | struct position *pos; |
| 1614 | int hscroll, tab_offset; | 1613 | int hscroll, tab_offset; |
| 1615 | 1614 | ||