diff options
author | Dave Love <fx@gnu.org> | 2001-02-07 23:34:37 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2001-02-07 23:34:37 +0000 |
commit | b3df46225378132deb26d2c88dfa9d8d2b0555a2 (patch) | |
tree | a7852cb228ddc387cd7e3e6c3936b29cbbde1629 /lisp/textmodes/spell.el | |
parent | 8919155a8fa9e6cd4cb4681cffeb22a3c6134a62 (diff) | |
download | emacs-b3df46225378132deb26d2c88dfa9d8d2b0555a2.tar.gz |
(spell-filter): Fix :type.
Diffstat (limited to 'lisp/textmodes/spell.el')
-rw-r--r-- | lisp/textmodes/spell.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/spell.el b/lisp/textmodes/spell.el index bd58262963b..e8fe420a842 100644 --- a/lisp/textmodes/spell.el +++ b/lisp/textmodes/spell.el @@ -46,7 +46,7 @@ "*Filter function to process text before passing it to spell program. This function might remove text-processor commands. nil means don't alter the text before checking it." - :type 'function + :type '(choice (const nil) function) :group 'spell) ;;;###autoload |