diff options
| -rw-r--r-- | lisp/emacs-lisp/checkdoc.el | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/lisp/emacs-lisp/checkdoc.el b/lisp/emacs-lisp/checkdoc.el index c22dfb2eb26..fd25b0f981f 100644 --- a/lisp/emacs-lisp/checkdoc.el +++ b/lisp/emacs-lisp/checkdoc.el | |||
| @@ -262,14 +262,15 @@ with these words enabled." | |||
| 262 | ;;;###autoload(put 'checkdoc-ispell-list-words 'safe-local-variable #'list-of-strings-p) | 262 | ;;;###autoload(put 'checkdoc-ispell-list-words 'safe-local-variable #'list-of-strings-p) |
| 263 | 263 | ||
| 264 | (defcustom checkdoc-max-keyref-before-warn nil | 264 | (defcustom checkdoc-max-keyref-before-warn nil |
| 265 | "If non-nil, number of \\\\=[command-to-keystroke] tokens allowed in a doc string. | 265 | "Maximum number of \\\\=[command-to-keystroke] tokens allowed in a doc string. |
| 266 | Any more than this and a warning is generated suggesting that the construct | 266 | |
| 267 | \\\\={mapvar} be used instead. If the value is nil, never warn. | 267 | Any more than this and a warning is generated suggesting that the |
| 268 | 268 | construct \\\\={mapvar} be used instead. If the value is nil, never | |
| 269 | It used to not be practical to use `\\\\=[...]' very many times, | 269 | warn. |
| 270 | because display of the documentation string would become slow. | 270 | |
| 271 | This is not an issue on modern machines, unless you have | 271 | It used to be impractical to use `\\\\=[...]' very many times, because |
| 272 | thousands of substitutions." | 272 | display of the documentation string would become slow. This is not an |
| 273 | issue on modern machines, unless you have thousands of substitutions." | ||
| 273 | :type '(choice (const nil) | 274 | :type '(choice (const nil) |
| 274 | integer) | 275 | integer) |
| 275 | :version "28.1") | 276 | :version "28.1") |