diff options
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 |