changeset 24076:6236e60302e2

(make-flyspell-overlay): fix front stickiness.
author Richard M. Stallman <rms@gnu.org>
date Fri, 15 Jan 1999 14:47:50 +0000
parents 516b3dad7381
children b5abeb8ab500
files lisp/textmodes/flyspell.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/textmodes/flyspell.el	Fri Jan 15 03:21:44 1999 +0000
+++ b/lisp/textmodes/flyspell.el	Fri Jan 15 14:47:50 1999 +0000
@@ -871,7 +871,7 @@
 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)