Mercurial > emacs
changeset 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 | 392bc50108e8 |
children | 4d83a1e04d99 |
files | src/indent.c |
diffstat | 1 files changed, 1 insertions(+), 2 deletions(-) [+] |
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;