aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/textmodes
diff options
context:
space:
mode:
authorStephen Leake2019-09-10 03:37:51 -0700
committerStephen Leake2019-09-10 03:37:51 -0700
commit3d442312889ef2d14c07282d0aff6199d00cc165 (patch)
tree74034ca2dded6ed233d0701b4cb5c10a0b5e9034 /lisp/textmodes
parentac1a2e260e8ece34500b5879f766b4e54ee57b94 (diff)
parent74e9799bd89484b8d15bdd6597c68fc00d07e7f7 (diff)
downloademacs-3d442312889ef2d14c07282d0aff6199d00cc165.tar.gz
emacs-3d442312889ef2d14c07282d0aff6199d00cc165.zip
Merge commit '74e9799bd89484b8d15bdd6597c68fc00d07e7f7'
Diffstat (limited to 'lisp/textmodes')
-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)