diff options
| author | Dave Love | 2001-02-16 15:05:24 +0000 |
|---|---|---|
| committer | Dave Love | 2001-02-16 15:05:24 +0000 |
| commit | 11570a8ffe9a23eec4ae6f80b2178fe0a964aa98 (patch) | |
| tree | 6b8abdca494c16ab7a2e403841595a760717a1c6 /lisp/textmodes | |
| parent | dad75588920ec315906b694315d343a27ad96a45 (diff) | |
| download | emacs-11570a8ffe9a23eec4ae6f80b2178fe0a964aa98.tar.gz emacs-11570a8ffe9a23eec4ae6f80b2178fe0a964aa98.zip | |
(flyspell-get-word): Return string without
properties.
Diffstat (limited to 'lisp/textmodes')
| -rw-r--r-- | lisp/textmodes/flyspell.el | 2 |
1 files changed, 1 insertions, 1 deletions
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 | ;*---------------------------------------------------------------------*/ |