diff options
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buffer.c b/src/buffer.c index 6cf0e232c27..0043a442be1 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -2677,7 +2677,7 @@ evaporate_overlays (pos) | |||
| 2677 | if (endpos < pos) | 2677 | if (endpos < pos) |
| 2678 | break; | 2678 | break; |
| 2679 | if (endpos == pos && OVERLAY_POSITION (OVERLAY_START (overlay)) == pos | 2679 | if (endpos == pos && OVERLAY_POSITION (OVERLAY_START (overlay)) == pos |
| 2680 | && Foverlay_get (overlay, Qevaporate)) | 2680 | && ! NILP (Foverlay_get (overlay, Qevaporate))) |
| 2681 | hit_list = Fcons (overlay, hit_list); | 2681 | hit_list = Fcons (overlay, hit_list); |
| 2682 | } | 2682 | } |
| 2683 | else | 2683 | else |
| @@ -2690,7 +2690,7 @@ evaporate_overlays (pos) | |||
| 2690 | if (startpos > pos) | 2690 | if (startpos > pos) |
| 2691 | break; | 2691 | break; |
| 2692 | if (startpos == pos && OVERLAY_POSITION (OVERLAY_END (overlay)) == pos | 2692 | if (startpos == pos && OVERLAY_POSITION (OVERLAY_END (overlay)) == pos |
| 2693 | && Foverlay_get (overlay, Qevaporate)) | 2693 | && ! NILP (Foverlay_get (overlay, Qevaporate))) |
| 2694 | hit_list = Fcons (overlay, hit_list); | 2694 | hit_list = Fcons (overlay, hit_list); |
| 2695 | } | 2695 | } |
| 2696 | for (; CONSP (hit_list); hit_list = XCONS (hit_list)->cdr) | 2696 | for (; CONSP (hit_list); hit_list = XCONS (hit_list)->cdr) |