1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-30 19:53:09 +00:00

(flyspell-get-word): Return string without

properties.
This commit is contained in:
Dave Love 2001-02-16 15:05:24 +00:00
parent dad7558892
commit 11570a8ffe
2 changed files with 6 additions and 1 deletions

View 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.

View 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)))))
;*---------------------------------------------------------------------*/