(current_column_1): Remove unused variable `prev_col'.

This commit is contained in:
Pavel Janík 2001-11-06 13:22:01 +00:00
parent 17893c65bd
commit 4d994a7910
2 changed files with 2 additions and 1 deletions

View file

@ -5,6 +5,8 @@
* fontset.c (fontset_font_pattern): Remove unused variable
`family_registry'.
* indent.c (current_column_1): Remove unused variable `prev_col'.
2001-11-05 Richard M. Stallman <rms@gnu.org>
* m/news-risc.h (BROKEN_PROTOTYPES): Defined.

View file

@ -590,7 +590,6 @@ current_column_1 ()
goto endloop;
if (c == '\t')
{
int prev_col = col;
col += tab_width;
col = col / tab_width * tab_width;
}