aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero <[email protected]>2002-04-19 13:46:02 +0000
committerJuanma Barranquero <[email protected]>2002-04-19 13:46:02 +0000
commit58b1103e0e47d26596ed518fa8a61c2bf5e6edb5 (patch)
treed01eec6ee46fab84eae8f89d541ecbe4ac14b398
parent175e150b915b7810ea3f963d310f64824dc8f17d (diff)
(Fmove_to_column): Remove unused local variable `next_boundary_byte'.
(current_column_1): Likewise.
-rw-r--r--src/ChangeLog6
-rw-r--r--src/indent.c10
2 files changed, 8 insertions, 8 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index b8f085ec9f..286ee38b7f 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,9 @@
+2002-04-19 Juanma Barranquero <[email protected]>
+
+ * indent.c (Fmove_to_column): Remove unused local variable
+ `next_boundary_byte'.
+ (current_column_1): Likewise.
+
2002-04-19 Eli Zaretskii <[email protected]>
* msdos.c (Qhbar): New variable.
diff --git a/src/indent.c b/src/indent.c
index 244e544865..437875f34d 100644
--- a/src/indent.c
+++ b/src/indent.c
@@ -512,7 +512,7 @@ current_column_1 ()
/* Start the scan at the beginning of this line with column number 0. */
register int col = 0;
int scan, scan_byte;
- int next_boundary, next_boundary_byte;
+ int next_boundary;
int opoint = PT, opoint_byte = PT_BYTE;
scan_newline (PT, PT_BYTE, BEGV, BEGV_BYTE, -1, 1);
@@ -520,7 +520,6 @@ current_column_1 ()
scan = PT, scan_byte = PT_BYTE;
SET_PT_BOTH (opoint, opoint_byte);
next_boundary = scan;
- next_boundary_byte = scan_byte;
if (tab_width <= 0 || tab_width > 1000) tab_width = 8;
@@ -540,7 +539,6 @@ current_column_1 ()
goto endloop;
if (scan != old_scan)
scan_byte = CHAR_TO_BYTE (scan);
- next_boundary_byte = CHAR_TO_BYTE (next_boundary);
}
/* Check composition sequence. */
@@ -936,9 +934,7 @@ The return value is the current column. */)
Lisp_Object val;
int prev_col = 0;
int c = 0;
- int next_boundary;
-
- int pos_byte, next_boundary_byte;
+ int next_boundary, pos_byte;
if (tab_width <= 0 || tab_width > 1000) tab_width = 8;
CHECK_NATNUM (column);
@@ -948,7 +944,6 @@ The return value is the current column. */)
pos_byte = PT_BYTE;
end = ZV;
next_boundary = pos;
- next_boundary_byte = PT_BYTE;
/* If we're starting past the desired column,
back up to beginning of line and scan from there. */
@@ -968,7 +963,6 @@ The return value is the current column. */)
pos = skip_invisible (pos, &next_boundary, end, Qnil);
if (pos != prev)
pos_byte = CHAR_TO_BYTE (pos);
- next_boundary_byte = CHAR_TO_BYTE (next_boundary);
if (pos >= end)
goto endloop;
}