diff options
| author | Juanma Barranquero | 2002-04-17 14:19:15 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2002-04-17 14:19:15 +0000 |
| commit | 59b7fa6569f8b865b6ef688a8531d745f1cc67d4 (patch) | |
| tree | 3ed8bb43cdf68253d8633f033ca9fab24b9f2714 /src | |
| parent | 3f67ae94e0f031d289b86e340c2c7e41a053094a (diff) | |
| download | emacs-59b7fa6569f8b865b6ef688a8531d745f1cc67d4.tar.gz emacs-59b7fa6569f8b865b6ef688a8531d745f1cc67d4.zip | |
(Fmove_to_column): Remove unused local variable `end_byte'.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/indent.c | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index cb38544455c..0604df403fe 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2002-04-17 Juanma Barranquero <lektu@terra.es> | ||
| 2 | |||
| 3 | * indent.c (Fmove_to_column): Remove unused local variable | ||
| 4 | `end_byte'. | ||
| 5 | |||
| 1 | 2002-04-17 Eli Zaretskii <eliz@is.elta.co.il> | 6 | 2002-04-17 Eli Zaretskii <eliz@is.elta.co.il> |
| 2 | 7 | ||
| 3 | * window.c (coordinates_in_window): Don't report on margin area | 8 | * window.c (coordinates_in_window): Don't report on margin area |
diff --git a/src/indent.c b/src/indent.c index c084890c069..244e5448653 100644 --- a/src/indent.c +++ b/src/indent.c | |||
| @@ -938,7 +938,7 @@ The return value is the current column. */) | |||
| 938 | int c = 0; | 938 | int c = 0; |
| 939 | int next_boundary; | 939 | int next_boundary; |
| 940 | 940 | ||
| 941 | int pos_byte, end_byte, next_boundary_byte; | 941 | int pos_byte, next_boundary_byte; |
| 942 | 942 | ||
| 943 | if (tab_width <= 0 || tab_width > 1000) tab_width = 8; | 943 | if (tab_width <= 0 || tab_width > 1000) tab_width = 8; |
| 944 | CHECK_NATNUM (column); | 944 | CHECK_NATNUM (column); |
| @@ -947,7 +947,6 @@ The return value is the current column. */) | |||
| 947 | pos = PT; | 947 | pos = PT; |
| 948 | pos_byte = PT_BYTE; | 948 | pos_byte = PT_BYTE; |
| 949 | end = ZV; | 949 | end = ZV; |
| 950 | end_byte = ZV_BYTE; | ||
| 951 | next_boundary = pos; | 950 | next_boundary = pos; |
| 952 | next_boundary_byte = PT_BYTE; | 951 | next_boundary_byte = PT_BYTE; |
| 953 | 952 | ||