diff options
| author | Stefan Kangas | 2024-07-07 12:52:56 +0200 |
|---|---|---|
| committer | Stefan Kangas | 2024-07-07 13:38:42 +0200 |
| commit | 3e999f70a4d0f1ebdb45da305207e2b45f88059f (patch) | |
| tree | ab5c3c3a7c798f4e91efc46624b34562a1666c70 | |
| parent | 4a1f2053cdce65efd00de4e211de89f56a549a61 (diff) | |
| download | emacs-3e999f70a4d0f1ebdb45da305207e2b45f88059f.tar.gz emacs-3e999f70a4d0f1ebdb45da305207e2b45f88059f.zip | |
; checkdoc: More interactive mode tagging
| -rw-r--r-- | lisp/emacs-lisp/checkdoc.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/checkdoc.el b/lisp/emacs-lisp/checkdoc.el index a329638ed1c..43584b19181 100644 --- a/lisp/emacs-lisp/checkdoc.el +++ b/lisp/emacs-lisp/checkdoc.el | |||
| @@ -1085,7 +1085,7 @@ Optional argument TAKE-NOTES causes all errors to be logged." | |||
| 1085 | Evaluation is done first so the form will be read before the | 1085 | Evaluation is done first so the form will be read before the |
| 1086 | documentation is checked. If there is a documentation error, then the display | 1086 | documentation is checked. If there is a documentation error, then the display |
| 1087 | of what was evaluated will be overwritten by the diagnostic message." | 1087 | of what was evaluated will be overwritten by the diagnostic message." |
| 1088 | (interactive) | 1088 | (interactive nil emacs-lisp-mode) |
| 1089 | (call-interactively #'eval-defun) | 1089 | (call-interactively #'eval-defun) |
| 1090 | (checkdoc-defun)) | 1090 | (checkdoc-defun)) |
| 1091 | 1091 | ||
| @@ -1096,7 +1096,7 @@ Call `error' if the doc string has problems. If NO-ERROR is | |||
| 1096 | non-nil, then do not call error, but call `message' instead. | 1096 | non-nil, then do not call error, but call `message' instead. |
| 1097 | If the doc string passes the test, then check the function for rogue white | 1097 | If the doc string passes the test, then check the function for rogue white |
| 1098 | space at the end of each line." | 1098 | space at the end of each line." |
| 1099 | (interactive) | 1099 | (interactive nil emacs-lisp-mode) |
| 1100 | (save-excursion | 1100 | (save-excursion |
| 1101 | (beginning-of-defun) | 1101 | (beginning-of-defun) |
| 1102 | (when (checkdoc--next-docstring) | 1102 | (when (checkdoc--next-docstring) |
| @@ -2836,7 +2836,7 @@ function called to create the messages." | |||
| 2836 | ;;;###autoload | 2836 | ;;;###autoload |
| 2837 | (defun checkdoc-package-keywords () | 2837 | (defun checkdoc-package-keywords () |
| 2838 | "Find package keywords that aren't in `finder-known-keywords'." | 2838 | "Find package keywords that aren't in `finder-known-keywords'." |
| 2839 | (interactive) | 2839 | (interactive nil emacs-lisp-mode) |
| 2840 | (require 'finder) | 2840 | (require 'finder) |
| 2841 | (let ((unrecognized-keys | 2841 | (let ((unrecognized-keys |
| 2842 | (cl-remove-if | 2842 | (cl-remove-if |