]> code.delx.au - gnu-emacs/commitdiff
(make-flyspell-overlay): fix front stickiness.
authorRichard M. Stallman <rms@gnu.org>
Fri, 15 Jan 1999 14:47:50 +0000 (14:47 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 15 Jan 1999 14:47:50 +0000 (14:47 +0000)
lisp/textmodes/flyspell.el

index 56521877c7ccd994ff3c748cd6f33de6b2140c40..44664b01938f0805929dccd152cd2c02b3db5258 100644 (file)
@@ -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)