From 739394c764d017b8411e9c4e48b6ae1d0735060b Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Fri, 15 Jan 1999 14:47:50 +0000 Subject: [PATCH] (make-flyspell-overlay): fix front stickiness. --- lisp/textmodes/flyspell.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/textmodes/flyspell.el b/lisp/textmodes/flyspell.el index 56521877c7c..44664b01938 100644 --- a/lisp/textmodes/flyspell.el +++ b/lisp/textmodes/flyspell.el @@ -871,7 +871,7 @@ if the character at POS has any other property." BEG and END specify the range in the buffer of that word. FACE and MOUSE-FACE specify the `face' and `mouse-face' properties for the overlay." - (let ((flyspell-overlay (make-overlay beg end))) + (let ((flyspell-overlay (make-overlay beg end nil t nil))) (overlay-put flyspell-overlay 'face face) (overlay-put flyspell-overlay 'mouse-face mouse-face) (overlay-put flyspell-overlay 'flyspell-overlay t) -- 2.39.2