comparison src/indent.c @ 34967:78e2d17df950

(current_column): Remove unused variable `stopchar'. (Fcompute_motion): Remove unused variable `contin'.
author Eli Zaretskii <eliz@gnu.org>
date Tue, 02 Jan 2001 14:05:57 +0000
parents 69c9cd380fd2
children d11cb64840ee
comparison
equal deleted inserted replaced
34966:23a62cf7d0eb 34967:78e2d17df950
352 int post_tab; 352 int post_tab;
353 register int c; 353 register int c;
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)
361 return last_known_column; 360 return last_known_column;
362 361
1607 0) 1606 0)
1608 (from, frompos, to, topos, width, offsets, window) 1607 (from, frompos, to, topos, width, offsets, window)
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
1616 CHECK_NUMBER_COERCE_MARKER (from, 0); 1615 CHECK_NUMBER_COERCE_MARKER (from, 0);
1617 CHECK_CONS (frompos, 0); 1616 CHECK_CONS (frompos, 0);