summaryrefslogtreecommitdiff
path: root/lisp/textmodes/spell.el
diff options
context:
space:
mode:
authorStephen Eglen <stephen@gnu.org>1998-02-22 17:34:42 +0000
committerStephen Eglen <stephen@gnu.org>1998-02-22 17:34:42 +0000
commitd1ebc62e6ca3ab4d6f714326ed8ae2c626d30bf1 (patch)
tree3d57efac375e8ff39a313e107d21bcd112a148a4 /lisp/textmodes/spell.el
parentceb7e4f8e7946d6225f82d497cc46a05f4b49340 (diff)
downloademacs-d1ebc62e6ca3ab4d6f714326ed8ae2c626d30bf1.tar.gz
Customized.
Diffstat (limited to 'lisp/textmodes/spell.el')
-rw-r--r--lisp/textmodes/spell.el17
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)