# HG changeset patch # User Richard M. Stallman # Date 1131324601 0 # Node ID 8bf6bc8d7145ff508de461350016fc3df01ff352 # Parent 11893f0cbfb1c454cfa54a9d94e2d4cbbf238dfd (flyspell-external-point-words): flyspell-get-word returns a list, not just a string. diff -r 11893f0cbfb1 -r 8bf6bc8d7145 lisp/textmodes/flyspell.el --- a/lisp/textmodes/flyspell.el Mon Nov 07 00:49:17 2005 +0000 +++ b/lisp/textmodes/flyspell.el Mon Nov 07 00:50:01 2005 +0000 @@ -1362,7 +1362,7 @@ ;; Detect when WORD can't be checked properly ;; because flyspell-get-word finds ;; just part of it, and treat that as ok. - (if (< (length (flyspell-get-word nil)) + (if (< (length (car (flyspell-get-word nil))) (length word)) nil (flyspell-word))))