From: Eli Zaretskii Date: Thu, 22 Aug 2019 14:49:40 +0000 (+0300) Subject: Improve documentation of 'ispell-skip-html' X-Git-Tag: emacs-27.0.90~1328^2~135 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d9b83465c7c392d36bcbe44ccc6b66e3bec22b2d;p=emacs.git Improve documentation of 'ispell-skip-html' * lisp/textmodes/ispell.el (ispell-skip-html): Doc fix. (Bug#37141) --- 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." "Indicates whether ispell should skip spell checking of SGML markup. If t, always skip SGML markup; if nil, never skip; if non-t and non-nil, guess whether SGML markup should be skipped according to the name of the -buffer's major mode." +buffer's major mode. + +SGML markup is any text inside the brackets \"<>\" or entities +such as \"&\". See `ispell-html-skip-alists' for more details. + +This variable affects spell-checking of HTML, XML, and SGML files." :type '(choice (const :tag "always" t) (const :tag "never" nil) (const :tag "use-mode-name" use-mode-name)) :group 'ispell)