diff options
| author | Paul Eggert | 2012-07-30 22:07:03 -0700 |
|---|---|---|
| committer | Paul Eggert | 2012-07-30 22:07:03 -0700 |
| commit | 3bd21e82ebb795ef367fa68624ed7b0799a8db50 (patch) | |
| tree | 0d26a5c79c722a8de0313d922b87d97fc6d28c49 | |
| parent | d77149619bc8407dff2532e9810348ef686d1e28 (diff) | |
| download | emacs-3bd21e82ebb795ef367fa68624ed7b0799a8db50.tar.gz emacs-3bd21e82ebb795ef367fa68624ed7b0799a8db50.zip | |
* indent.c (compute_motion): Remove unused local.
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/indent.c | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 300894a6617..b22f12a53b4 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2012-07-31 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | * indent.c (compute_motion): Remove unused local. | ||
| 4 | |||
| 1 | 2012-07-31 Glenn Morris <rgm@gnu.org> | 5 | 2012-07-31 Glenn Morris <rgm@gnu.org> |
| 2 | 6 | ||
| 3 | * conf_post.h [DARWIN_OS]: Move remaining contents of s/darwin.h here. | 7 | * conf_post.h [DARWIN_OS]: Move remaining contents of s/darwin.h here. |
diff --git a/src/indent.c b/src/indent.c index ec0977d5372..38772bb384b 100644 --- a/src/indent.c +++ b/src/indent.c | |||
| @@ -1136,7 +1136,6 @@ compute_motion (ptrdiff_t from, EMACS_INT fromvpos, EMACS_INT fromhpos, int did_ | |||
| 1136 | ptrdiff_t width_run_end = from; | 1136 | ptrdiff_t width_run_end = from; |
| 1137 | ptrdiff_t width_run_width = 0; | 1137 | ptrdiff_t width_run_width = 0; |
| 1138 | Lisp_Object *width_table; | 1138 | Lisp_Object *width_table; |
| 1139 | Lisp_Object buffer; | ||
| 1140 | 1139 | ||
| 1141 | /* The next buffer pos where we should consult the width run cache. */ | 1140 | /* The next buffer pos where we should consult the width run cache. */ |
| 1142 | ptrdiff_t next_width_run = from; | 1141 | ptrdiff_t next_width_run = from; |
| @@ -1156,7 +1155,6 @@ compute_motion (ptrdiff_t from, EMACS_INT fromvpos, EMACS_INT fromhpos, int did_ | |||
| 1156 | 1155 | ||
| 1157 | struct composition_it cmp_it; | 1156 | struct composition_it cmp_it; |
| 1158 | 1157 | ||
| 1159 | XSETBUFFER (buffer, current_buffer); | ||
| 1160 | XSETWINDOW (window, win); | 1158 | XSETWINDOW (window, win); |
| 1161 | 1159 | ||
| 1162 | width_run_cache_on_off (); | 1160 | width_run_cache_on_off (); |