]> code.delx.au - gnu-emacs/commitdiff
(Fmove_to_column): Remove unused local variable `end_byte'.
authorJuanma Barranquero <lekktu@gmail.com>
Wed, 17 Apr 2002 14:19:15 +0000 (14:19 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Wed, 17 Apr 2002 14:19:15 +0000 (14:19 +0000)
src/ChangeLog
src/indent.c

index cb38544455c094ed844a8fde74d96e92fef1952e..0604df403fe5eb07040fe5b294098d312f4ae294 100644 (file)
@@ -1,3 +1,8 @@
+2002-04-17  Juanma Barranquero  <lektu@terra.es>
+
+       * indent.c (Fmove_to_column): Remove unused local variable
+       `end_byte'.
+
 2002-04-17  Eli Zaretskii  <eliz@is.elta.co.il>
 
        * window.c (coordinates_in_window): Don't report on margin area
index c084890c069f5def9c245ca25cd6ee1795437979..244e54486536989d7605969803b5cfcb509259f9 100644 (file)
@@ -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;