From 11570a8ffe9a23eec4ae6f80b2178fe0a964aa98 Mon Sep 17 00:00:00 2001 From: Dave Love Date: Fri, 16 Feb 2001 15:05:24 +0000 Subject: [PATCH] (flyspell-get-word): Return string without properties. --- lisp/ChangeLog | 5 +++++ lisp/textmodes/flyspell.el | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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 + + * textmodes/flyspell.el (flyspell-get-word): Return string without + properties. + 2001-02-16 Eli Zaretskii * 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))))) ;*---------------------------------------------------------------------*/ -- 2.39.2