diff options
author | Stephen Eglen <stephen@gnu.org> | 1998-02-22 17:34:42 +0000 |
---|---|---|
committer | Stephen Eglen <stephen@gnu.org> | 1998-02-22 17:34:42 +0000 |
commit | d1ebc62e6ca3ab4d6f714326ed8ae2c626d30bf1 (patch) | |
tree | 3d57efac375e8ff39a313e107d21bcd112a148a4 /lisp/textmodes/spell.el | |
parent | ceb7e4f8e7946d6225f82d497cc46a05f4b49340 (diff) | |
download | emacs-d1ebc62e6ca3ab4d6f714326ed8ae2c626d30bf1.tar.gz |
Customized.
Diffstat (limited to 'lisp/textmodes/spell.el')
-rw-r--r-- | lisp/textmodes/spell.el | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/lisp/textmodes/spell.el b/lisp/textmodes/spell.el index c413459a3d7..780eeb883d8 100644 --- a/lisp/textmodes/spell.el +++ b/lisp/textmodes/spell.el @@ -31,13 +31,22 @@ ;;; Code: -(defvar spell-command "spell" - "*Command to run the spell program.") +(defgroup spell nil + "Interface to the UNIX spell(1) program." + :prefix "spell-" + :group 'applications) -(defvar spell-filter nil +(defcustom spell-command "spell" + "*Command to run the spell program." + :type 'string + :group 'spell) + +(defcustom spell-filter nil "*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.") +nil means don't alter the text before checking it." + :type 'function + :group 'spell) ;;;###autoload (put 'spell-filter 'risky-local-variable t) |