# HG changeset patch # User Dave Love # Date 982335866 0 # Node ID 4c28e9406f5015207997c35287d9c749c1cb9397 # Parent 908ea71eca8405b300e3b5627a71fd83369a9f39 (flyspell-get-word): Return string without properties. diff -r 908ea71eca84 -r 4c28e9406f50 lisp/textmodes/flyspell.el --- a/lisp/textmodes/flyspell.el Fri Feb 16 14:57:10 2001 +0000 +++ b/lisp/textmodes/flyspell.el Fri Feb 16 15:04:26 2001 +0000 @@ -1221,7 +1221,7 @@ (progn (setq start (match-beginning 0) end (point) - word (buffer-substring start end)) + word (buffer-substring-no-properties start end)) (list word start end))))) ;*---------------------------------------------------------------------*/