aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2001-02-07 23:34:37 +0000
committerDave Love2001-02-07 23:34:37 +0000
commitb3df46225378132deb26d2c88dfa9d8d2b0555a2 (patch)
treea7852cb228ddc387cd7e3e6c3936b29cbbde1629
parent8919155a8fa9e6cd4cb4681cffeb22a3c6134a62 (diff)
downloademacs-b3df46225378132deb26d2c88dfa9d8d2b0555a2.tar.gz
emacs-b3df46225378132deb26d2c88dfa9d8d2b0555a2.zip
(spell-filter): Fix :type.
-rw-r--r--lisp/textmodes/spell.el2
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 @@
46 "*Filter function to process text before passing it to spell program. 46 "*Filter function to process text before passing it to spell program.
47This function might remove text-processor commands. 47This function might remove text-processor commands.
48nil means don't alter the text before checking it." 48nil means don't alter the text before checking it."
49 :type 'function 49 :type '(choice (const nil) function)
50 :group 'spell) 50 :group 'spell)
51 51
52;;;###autoload 52;;;###autoload