From 59b7fa6569f8b865b6ef688a8531d745f1cc67d4 Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Wed, 17 Apr 2002 14:19:15 +0000 Subject: [PATCH] (Fmove_to_column): Remove unused local variable `end_byte'. --- src/ChangeLog | 5 +++++ src/indent.c | 3 +-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index cb38544455c..0604df403fe 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2002-04-17 Juanma Barranquero + + * indent.c (Fmove_to_column): Remove unused local variable + `end_byte'. + 2002-04-17 Eli Zaretskii * window.c (coordinates_in_window): Don't report on margin area 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; -- 2.39.2