aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/textmodes/ispell.el7
1 files changed, 6 insertions, 1 deletions
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el
index 9dfa9f3c448..5c77e03b0b2 100644
--- a/lisp/textmodes/ispell.el
+++ b/lisp/textmodes/ispell.el
@@ -394,7 +394,12 @@ for language-specific arguments."
394 "Indicates whether ispell should skip spell checking of SGML markup. 394 "Indicates whether ispell should skip spell checking of SGML markup.
395If t, always skip SGML markup; if nil, never skip; if non-t and non-nil, 395If t, always skip SGML markup; if nil, never skip; if non-t and non-nil,
396guess whether SGML markup should be skipped according to the name of the 396guess whether SGML markup should be skipped according to the name of the
397buffer's major mode." 397buffer's major mode.
398
399SGML markup is any text inside the brackets \"<>\" or entities
400such as \"&amp;\". See `ispell-html-skip-alists' for more details.
401
402This variable affects spell-checking of HTML, XML, and SGML files."
398 :type '(choice (const :tag "always" t) (const :tag "never" nil) 403 :type '(choice (const :tag "always" t) (const :tag "never" nil)
399 (const :tag "use-mode-name" use-mode-name)) 404 (const :tag "use-mode-name" use-mode-name))
400 :group 'ispell) 405 :group 'ispell)