diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/indent.c | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index ff9b581af30..90ea2c07707 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2001-11-09 Pavel Jan,Bm(Bk <Pavel@Janik.cz> | ||
| 2 | |||
| 3 | * indent.c (current_column_1): Remove unused variable `prev_col'. | ||
| 4 | |||
| 1 | 2001-11-07 Jason Rumney <jasonr@gnu.org> | 5 | 2001-11-07 Jason Rumney <jasonr@gnu.org> |
| 2 | 6 | ||
| 3 | * w32term.c (x_display_and_set_cursor): Do not move system caret | 7 | * w32term.c (x_display_and_set_cursor): Do not move system caret |
diff --git a/src/indent.c b/src/indent.c index 835ad6a25b4..2e57e3775f5 100644 --- a/src/indent.c +++ b/src/indent.c | |||
| @@ -608,7 +608,6 @@ current_column_1 () | |||
| 608 | goto endloop; | 608 | goto endloop; |
| 609 | if (c == '\t') | 609 | if (c == '\t') |
| 610 | { | 610 | { |
| 611 | int prev_col = col; | ||
| 612 | col += tab_width; | 611 | col += tab_width; |
| 613 | col = col / tab_width * tab_width; | 612 | col = col / tab_width * tab_width; |
| 614 | } | 613 | } |