aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2001-02-16 15:05:24 +0000
committerDave Love2001-02-16 15:05:24 +0000
commit11570a8ffe9a23eec4ae6f80b2178fe0a964aa98 (patch)
tree6b8abdca494c16ab7a2e403841595a760717a1c6
parentdad75588920ec315906b694315d343a27ad96a45 (diff)
downloademacs-11570a8ffe9a23eec4ae6f80b2178fe0a964aa98.tar.gz
emacs-11570a8ffe9a23eec4ae6f80b2178fe0a964aa98.zip
(flyspell-get-word): Return string without
properties.
-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 58407876833..6b7ad6f8081 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12001-02-16 Dave Love <fx@gnu.org>
2
3 * textmodes/flyspell.el (flyspell-get-word): Return string without
4 properties.
5
12001-02-16 Eli Zaretskii <eliz@is.elta.co.il> 62001-02-16 Eli Zaretskii <eliz@is.elta.co.il>
2 7
3 * generic.el (generic-find-file-regexp): Doc fix. 8 * generic.el (generic-find-file-regexp): Doc fix.
diff --git a/lisp/textmodes/flyspell.el b/lisp/textmodes/flyspell.el
index b1290c9cb8c..707315a0232 100644
--- a/lisp/textmodes/flyspell.el
+++ b/lisp/textmodes/flyspell.el
@@ -1221,7 +1221,7 @@ Word syntax described by `ispell-dictionary-alist' (which see)."
1221 (progn 1221 (progn
1222 (setq start (match-beginning 0) 1222 (setq start (match-beginning 0)
1223 end (point) 1223 end (point)
1224 word (buffer-substring start end)) 1224 word (buffer-substring-no-properties start end))
1225 (list word start end))))) 1225 (list word start end)))))
1226 1226
1227;*---------------------------------------------------------------------*/ 1227;*---------------------------------------------------------------------*/