aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Schwab1998-06-24 09:14:31 +0000
committerAndreas Schwab1998-06-24 09:14:31 +0000
commita47de72938e3b6d14638069c399aee78d2ff6711 (patch)
treebf00664f7d8c503283f6ec7d56c534a4e59f7238
parent5786b3ed4c6e05a191acec6e56734b76da55afd0 (diff)
downloademacs-a47de72938e3b6d14638069c399aee78d2ff6711.tar.gz
emacs-a47de72938e3b6d14638069c399aee78d2ff6711.zip
(ispell-highlight-p, ispell-check-comments,
ispell-help-in-bufferp, ispell-skip-sgml): Use `other' widget type.
-rw-r--r--lisp/textmodes/ispell.el9
1 files changed, 5 insertions, 4 deletions
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el
index 2499111a767..ed4dee74c61 100644
--- a/lisp/textmodes/ispell.el
+++ b/lisp/textmodes/ispell.el
@@ -151,7 +151,7 @@
151(defcustom ispell-highlight-p 'block 151(defcustom ispell-highlight-p 'block
152 "*Highlight spelling errors when non-nil. 152 "*Highlight spelling errors when non-nil.
153When set to `block', assumes a block cursor with TTY displays." 153When set to `block', assumes a block cursor with TTY displays."
154 :type '(choice (const block) (const t) (const nil)) 154 :type '(choice (const block) (const nil) (other :tag "on" t))
155 :group 'ispell) 155 :group 'ispell)
156 156
157(defcustom ispell-highlight-face 'highlight 157(defcustom ispell-highlight-face 'highlight
@@ -169,7 +169,7 @@ slightly different."
169When set to `exclusive', ONLY comments are checked. (For code comments). 169When set to `exclusive', ONLY comments are checked. (For code comments).
170Warning! Not checking comments, when a comment start is embedded in strings, 170Warning! Not checking comments, when a comment start is embedded in strings,
171may produce undesired results." 171may produce undesired results."
172 :type '(choice (const exclusive) (const t) (const nil)) 172 :type '(choice (const exclusive) (const nil) (other :tag "on" t))
173 :group 'ispell) 173 :group 'ispell)
174 174
175(defcustom ispell-query-replace-choices nil 175(defcustom ispell-query-replace-choices nil
@@ -300,7 +300,7 @@ The following valued are supported:
300 for a couple of seconds. 300 for a couple of seconds.
301 electric Pop up a new buffer and display a long help message there. 301 electric Pop up a new buffer and display a long help message there.
302 User can browse and then exit the help mode." 302 User can browse and then exit the help mode."
303 :type '(choice (const electric) (const t) (const nil)) 303 :type '(choice (const electric) (const nil) (other :tag "t" t))
304 304
305 :group 'ispell) 305 :group 'ispell)
306 306
@@ -818,7 +818,8 @@ for skipping in latex mode.")
818If t, always skip SGML markup; if nil, never skip; if non-t and non-nil, 818If t, always skip SGML markup; if nil, never skip; if non-t and non-nil,
819guess whether SGML markup should be skipped according to the name of the 819guess whether SGML markup should be skipped according to the name of the
820buffer's major mode." 820buffer's major mode."
821 :type '(choice (const use-mode-name) (const t) (const nil)) 821 :type '(choice (const t) (const nil)
822 (other :tag "use-mode-name" use-mode-name))
822 :group 'ispell) 823 :group 'ispell)
823 824
824(defvar ispell-local-pdict ispell-personal-dictionary 825(defvar ispell-local-pdict ispell-personal-dictionary