aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPavel Janík2001-11-06 13:22:01 +0000
committerPavel Janík2001-11-06 13:22:01 +0000
commit4d994a79100c894fb56fd8a19e95f633e3d0d309 (patch)
tree9b6ccdbbf29b43d67f4b25c8ea1b79eb76402070 /src
parent17893c65bd5bdb6620726220820b3af7aaa80ddd (diff)
downloademacs-4d994a79100c894fb56fd8a19e95f633e3d0d309.tar.gz
emacs-4d994a79100c894fb56fd8a19e95f633e3d0d309.zip
(current_column_1): Remove unused variable `prev_col'.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog2
-rw-r--r--src/indent.c1
2 files changed, 2 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index ed69bfea1aa..da2e7ffaa27 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -5,6 +5,8 @@
5 * fontset.c (fontset_font_pattern): Remove unused variable 5 * fontset.c (fontset_font_pattern): Remove unused variable
6 `family_registry'. 6 `family_registry'.
7 7
8 * indent.c (current_column_1): Remove unused variable `prev_col'.
9
82001-11-05 Richard M. Stallman <rms@gnu.org> 102001-11-05 Richard M. Stallman <rms@gnu.org>
9 11
10 * m/news-risc.h (BROKEN_PROTOTYPES): Defined. 12 * m/news-risc.h (BROKEN_PROTOTYPES): Defined.
diff --git a/src/indent.c b/src/indent.c
index 2a62ab6feda..835ad6a25b4 100644
--- a/src/indent.c
+++ b/src/indent.c
@@ -590,7 +590,6 @@ current_column_1 ()
590 goto endloop; 590 goto endloop;
591 if (c == '\t') 591 if (c == '\t')
592 { 592 {
593 int prev_col = col;
594 col += tab_width; 593 col += tab_width;
595 col = col / tab_width * tab_width; 594 col = col / tab_width * tab_width;
596 } 595 }