diff options
| author | Eli Zaretskii | 2019-08-22 17:49:40 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2019-08-22 17:49:40 +0300 |
| commit | d9b83465c7c392d36bcbe44ccc6b66e3bec22b2d (patch) | |
| tree | cadcaba4c11ea1f19677b9bcdb82d897ab7b1b2e | |
| parent | ef8531d262081d91ecf2a4f349bc63a0fede90d4 (diff) | |
| download | emacs-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.el | 7 |
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. |
| 395 | If t, always skip SGML markup; if nil, never skip; if non-t and non-nil, | 395 | If t, always skip SGML markup; if nil, never skip; if non-t and non-nil, |
| 396 | guess whether SGML markup should be skipped according to the name of the | 396 | guess whether SGML markup should be skipped according to the name of the |
| 397 | buffer's major mode." | 397 | buffer's major mode. |
| 398 | |||
| 399 | SGML markup is any text inside the brackets \"<>\" or entities | ||
| 400 | such as \"&\". See `ispell-html-skip-alists' for more details. | ||
| 401 | |||
| 402 | This 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) |