summaryrefslogtreecommitdiff
path: root/src/indent.c
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2002-04-17 14:19:15 +0000
committerJuanma Barranquero <lekktu@gmail.com>2002-04-17 14:19:15 +0000
commit59b7fa6569f8b865b6ef688a8531d745f1cc67d4 (patch)
tree3ed8bb43cdf68253d8633f033ca9fab24b9f2714 /src/indent.c
parent3f67ae94e0f031d289b86e340c2c7e41a053094a (diff)
downloademacs-59b7fa6569f8b865b6ef688a8531d745f1cc67d4.tar.gz
(Fmove_to_column): Remove unused local variable `end_byte'.
Diffstat (limited to 'src/indent.c')
-rw-r--r--src/indent.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/indent.c b/src/indent.c
index c084890c069..244e5448653 100644
--- a/src/indent.c
+++ b/src/indent.c
@@ -938,7 +938,7 @@ The return value is the current column. */)
int c = 0;
int next_boundary;
- int pos_byte, end_byte, next_boundary_byte;
+ int pos_byte, next_boundary_byte;
if (tab_width <= 0 || tab_width > 1000) tab_width = 8;
CHECK_NATNUM (column);
@@ -947,7 +947,6 @@ The return value is the current column. */)
pos = PT;
pos_byte = PT_BYTE;
end = ZV;
- end_byte = ZV_BYTE;
next_boundary = pos;
next_boundary_byte = PT_BYTE;