summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/checkdoc.el
diff options
context:
space:
mode:
authorNicholas Vollmer <iarchivedmywholelife@gmail.com>2024-01-05 12:22:10 -0500
committerStefan Kangas <stefankangas@gmail.com>2024-01-05 22:58:39 +0100
commit790b5982175b8dcd45fe444379e8039b6cc05e97 (patch)
tree117ee1f07f5dc95dfff3fe38a01ac3703656157e /lisp/emacs-lisp/checkdoc.el
parentf9acf12f6f17b57265d19079e6973d167a328536 (diff)
downloademacs-790b5982175b8dcd45fe444379e8039b6cc05e97.tar.gz
emacs-790b5982175b8dcd45fe444379e8039b6cc05e97.tar.bz2
emacs-790b5982175b8dcd45fe444379e8039b6cc05e97.zip
Use special-mode in checkdoc status buffer
* lisp/emacs-lisp/checkdoc.el (checkdoc-display-status-buffer): Use `special-mode'. (Bug#68268)
Diffstat (limited to 'lisp/emacs-lisp/checkdoc.el')
-rw-r--r--lisp/emacs-lisp/checkdoc.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/checkdoc.el b/lisp/emacs-lisp/checkdoc.el
index 80eaf93c3b7..82c6c03a592 100644
--- a/lisp/emacs-lisp/checkdoc.el
+++ b/lisp/emacs-lisp/checkdoc.el
@@ -556,7 +556,8 @@ the users will view as each check is completed."
"Display and update the status buffer for the current checkdoc mode.
CHECK is a list of four strings stating the current status of each
test; the nth string describes the status of the nth test."
- (let (temp-buffer-setup-hook)
+ (let (temp-buffer-setup-hook
+ (temp-buffer-show-hook #'special-mode))
(with-output-to-temp-buffer "*Checkdoc Status*"
(mapc #'princ
(list "Buffer comments and tags: " (nth 0 check)