Mercurial > emacs
diff src/indent.c @ 44652:fcb7dec0b719
(Fmove_to_column): Remove unused local variable `end_byte'.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Wed, 17 Apr 2002 14:19:00 +0000 |
parents | 30053d20015f |
children | 2ea69a6d8885 |
line wrap: on
line diff
--- a/src/indent.c Wed Apr 17 13:49:49 2002 +0000 +++ b/src/indent.c Wed Apr 17 14:19:00 2002 +0000 @@ -938,7 +938,7 @@ 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 @@ pos = PT; pos_byte = PT_BYTE; end = ZV; - end_byte = ZV_BYTE; next_boundary = pos; next_boundary_byte = PT_BYTE;