aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2019-08-22 17:49:40 +0300
committerEli Zaretskii2019-08-22 17:49:40 +0300
commitd9b83465c7c392d36bcbe44ccc6b66e3bec22b2d (patch)
treecadcaba4c11ea1f19677b9bcdb82d897ab7b1b2e
parentef8531d262081d91ecf2a4f349bc63a0fede90d4 (diff)
downloademacs-d9b83465c7c392d36bcbe44ccc6b66e3bec22b2d.tar.gz
emacs-d9b83465c7c392d36bcbe44ccc6b66e3bec22b2d.zip
Improve documentation of 'ispell-skip-html'
* lisp/textmodes/ispell.el (ispell-skip-html): Doc fix. (Bug#37141)
-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)