diff options
| author | Stefan Monnier | 2008-02-07 04:11:05 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2008-02-07 04:11:05 +0000 |
| commit | 3ae565b3860790e4ec77a86d0d868a16dd1953ef (patch) | |
| tree | 289f54b77a5d5e301112b003b0f4939fee955e47 /src/buffer.c | |
| parent | 146b6e5507b52128c049480cde2cfea7315e99a9 (diff) | |
| download | emacs-3ae565b3860790e4ec77a86d0d868a16dd1953ef.tar.gz emacs-3ae565b3860790e4ec77a86d0d868a16dd1953ef.zip | |
* xselect.c (x_handle_dnd_message):
* xmenu.c (digest_single_submenu, xmenu_show):
* xdisp.c (with_echo_area_buffer_unwind_data, format_mode_line_unwind_data)
(unwind_format_mode_line, display_menu_bar):
* eval.c (Ffetch_bytecode):
* doc.c (store_function_docstring):
* ccl.c (resolve_symbol_ccl_program, ccl_get_compiled_code)
(Fccl_execute, Fccl_execute_on_string, Fregister_code_conversion_map):
* buffer.c (add_overlay_mod_hooklist): Use ASET.
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/buffer.c b/src/buffer.c index c18e3ad8ddf..f48254142e1 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -4227,8 +4227,10 @@ add_overlay_mod_hooklist (functionlist, overlay) | |||
| 4227 | if (last_overlay_modification_hooks_used == oldsize) | 4227 | if (last_overlay_modification_hooks_used == oldsize) |
| 4228 | last_overlay_modification_hooks = larger_vector | 4228 | last_overlay_modification_hooks = larger_vector |
| 4229 | (last_overlay_modification_hooks, oldsize * 2, Qnil); | 4229 | (last_overlay_modification_hooks, oldsize * 2, Qnil); |
| 4230 | AREF (last_overlay_modification_hooks, last_overlay_modification_hooks_used++) = functionlist; | 4230 | ASET (last_overlay_modification_hooks, last_overlay_modification_hooks_used, |
| 4231 | AREF (last_overlay_modification_hooks, last_overlay_modification_hooks_used++) = overlay; | 4231 | functionlist); last_overlay_modification_hooks_used++; |
| 4232 | ASET (last_overlay_modification_hooks, last_overlay_modification_hooks_used, | ||
| 4233 | overlay); last_overlay_modification_hooks_used++; | ||
| 4232 | } | 4234 | } |
| 4233 | 4235 | ||
| 4234 | /* Run the modification-hooks of overlays that include | 4236 | /* Run the modification-hooks of overlays that include |