diff options
| author | Pavel Janík | 2001-11-09 06:22:21 +0000 |
|---|---|---|
| committer | Pavel Janík | 2001-11-09 06:22:21 +0000 |
| commit | 40ef1eda444a59c3a76e2a70e478da47c964e9c6 (patch) | |
| tree | 368ca97ba4806d8d39fb370ef7cb497c28795087 /src | |
| parent | 4fa23df572a9634cf5af8df773f8e154bb5a33e7 (diff) | |
| download | emacs-40ef1eda444a59c3a76e2a70e478da47c964e9c6.tar.gz emacs-40ef1eda444a59c3a76e2a70e478da47c964e9c6.zip | |
(current_column_1): Remove unused variable `prev_col'.
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 | } |