diff options
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buffer.c b/src/buffer.c index 9facc4b7ab8..a7299f4a49e 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -4099,7 +4099,7 @@ report_overlay_modification (Lisp_Object start, Lisp_Object end, bool after, | |||
| 4099 | } | 4099 | } |
| 4100 | /* Test for intersecting intervals. This does the right thing | 4100 | /* Test for intersecting intervals. This does the right thing |
| 4101 | for both insertion and deletion. */ | 4101 | for both insertion and deletion. */ |
| 4102 | if (! insertion || (end_arg > obegin && begin_arg < oend)) | 4102 | if (end_arg > obegin && begin_arg < oend) |
| 4103 | { | 4103 | { |
| 4104 | Lisp_Object prop = Foverlay_get (overlay, Qmodification_hooks); | 4104 | Lisp_Object prop = Foverlay_get (overlay, Qmodification_hooks); |
| 4105 | if (!NILP (prop)) | 4105 | if (!NILP (prop)) |