aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorDave Love <[email protected]>2001-02-16 15:05:24 +0000
committerDave Love <[email protected]>2001-02-16 15:05:24 +0000
commit11570a8ffe9a23eec4ae6f80b2178fe0a964aa98 (patch)
tree6b8abdca494c16ab7a2e403841595a760717a1c6 /lisp
parentdad75588920ec315906b694315d343a27ad96a45 (diff)
(flyspell-get-word): Return string without
properties.
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)))))
;*---------------------------------------------------------------------*/