]> code.delx.au - gnu-emacs/commitdiff
(flyspell-get-word): Return string without
authorDave Love <fx@gnu.org>
Fri, 16 Feb 2001 15:05:24 +0000 (15:05 +0000)
committerDave Love <fx@gnu.org>
Fri, 16 Feb 2001 15:05:24 +0000 (15:05 +0000)
properties.

lisp/ChangeLog
lisp/textmodes/flyspell.el

index 58407876833101d16772ee87db7f29f96a71fca6..6b7ad6f8081ad450b800e930d0c15c094578e6d5 100644 (file)
@@ -1,3 +1,8 @@
+2001-02-16  Dave Love  <fx@gnu.org>
+
+       * textmodes/flyspell.el (flyspell-get-word): Return string without
+       properties.
+
 2001-02-16  Eli Zaretskii  <eliz@is.elta.co.il>
 
        * generic.el (generic-find-file-regexp): Doc fix.
index b1290c9cb8c81a04ecf776d9a674f0f0108cd329..707315a0232afa8e8625407913b0b46b27947973 100644 (file)
@@ -1221,7 +1221,7 @@ Word syntax described by `ispell-dictionary-alist' (which see)."
       (progn
        (setq start (match-beginning 0)
              end (point)
-             word (buffer-substring start end))
+             word (buffer-substring-no-properties start end))
        (list word start end)))))
 
 ;*---------------------------------------------------------------------*/