[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/src/indent.c
From: |
Juanma Barranquero |
Subject: |
[Emacs-diffs] Changes to emacs/src/indent.c |
Date: |
Wed, 17 Apr 2002 10:19:01 -0400 |
Index: emacs/src/indent.c
diff -c emacs/src/indent.c:1.147 emacs/src/indent.c:1.148
*** emacs/src/indent.c:1.147 Tue Mar 5 13:56:16 2002
--- emacs/src/indent.c Wed Apr 17 10:19:00 2002
***************
*** 938,944 ****
int c = 0;
int next_boundary;
! int pos_byte, end_byte, next_boundary_byte;
if (tab_width <= 0 || tab_width > 1000) tab_width = 8;
CHECK_NATNUM (column);
--- 938,944 ----
int c = 0;
int next_boundary;
! int pos_byte, next_boundary_byte;
if (tab_width <= 0 || tab_width > 1000) tab_width = 8;
CHECK_NATNUM (column);
***************
*** 947,953 ****
pos = PT;
pos_byte = PT_BYTE;
end = ZV;
- end_byte = ZV_BYTE;
next_boundary = pos;
next_boundary_byte = PT_BYTE;
--- 947,952 ----
- [Emacs-diffs] Changes to emacs/src/indent.c,
Juanma Barranquero <=