I'm not sure what flyspell version this is, as there is
unfortunately
nothing to indicate the version in the header of flyspell.el.
Yes, you are right.
Don't blame me. The guy at the FSF have removed
my standard header that do include a release number. I think the version
you are using is the 1.4d.
However, I have 3 problems with the one included in the latest
XEmacs
package.
1. The line (defvar flyspell-mode-map (make-sparse-keymap))
needs an autoload cookie above it.
Excuse me I don't see where the error is.
MAKE-SPARSE-KEYMAP is no more an
autoload function!
2. The lines adding the minor mode:
(add-minor-mode 'flyspell-mode
flyspell-mode-line-string
flyspell-mode-map
nil
flyspell-mode)
look like they should be
(add-minor-mode 'flyspell-mode
flyspell-mode-line-string
flyspell-mode-map
nil
#'flyspell-mode)
Note change in last line.
Here I see :-) You are right. Thanks for pointing me
out the error. I will
fix that for the next release.
3. I signal the following error the first time it is run (M-x
vm-mail):
Signaling: (wrong-type-argument number-char-or-marker-p nil)
flyspell-check-changed-word-p(59 59)
flyspell-post-command-hook()
as flyspell-pre-point is nil.
Yes, you are right but I have already had the
opportunity to fix that bug.
Please find the fixed version at:
http://kaolin.unice.fr/~serrano
One more time, thanks for your report,
--Manuel--