aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/textmodes/flyspell.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 5840787683..6b7ad6f808 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2001-02-16 Dave Love <[email protected]>
+
+ * textmodes/flyspell.el (flyspell-get-word): Return string without
+ properties.
+
2001-02-16 Eli Zaretskii <[email protected]>
* generic.el (generic-find-file-regexp): Doc fix.
diff --git a/lisp/textmodes/flyspell.el b/lisp/textmodes/flyspell.el
index b1290c9cb8..707315a023 100644
--- a/lisp/textmodes/flyspell.el
+++ b/lisp/textmodes/flyspell.el
@@ -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)))))
;*---------------------------------------------------------------------*/