From: Juanma Barranquero Date: Wed, 17 Apr 2002 14:19:15 +0000 (+0000) Subject: (Fmove_to_column): Remove unused local variable `end_byte'. X-Git-Tag: ttn-vms-21-2-B4~15562 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=59b7fa6569f8b865b6ef688a8531d745f1cc67d4;p=emacs.git (Fmove_to_column): Remove unused local variable `end_byte'. --- 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;