branch: elpa/isl
commit c52cf85711371b864c51f6da353d9a7b8a59fa54
Author: Thierry Volpiatto <[email protected]>
Commit: Thierry Volpiatto <[email protected]>
Fix flashing line with :extend attr
---
isearch-light.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/isearch-light.el b/isearch-light.el
index 012bf498010..c94a2555edd 100644
--- a/isearch-light.el
+++ b/isearch-light.el
@@ -273,7 +273,7 @@ It put overlay on current position, move to next overlay
using
(when isl-save-pos-to-mark-ring
(set-marker (mark-marker) isl-initial-pos)
(push-mark isl-initial-pos 'nomsg))
- (let ((ov (make-overlay (point-at-bol) (point-at-eol))))
+ (let ((ov (make-overlay (point-at-bol) (1+ (point-at-eol)))))
(overlay-put ov 'face 'isl-line)
(sit-for 0.2)
(delete-overlay ov)))