]> git.eshelyaron.com Git - emacs.git/commitdiff
Use special-mode in checkdoc status buffer
authorNicholas Vollmer <iarchivedmywholelife@gmail.com>
Fri, 5 Jan 2024 17:22:10 +0000 (12:22 -0500)
committerStefan Kangas <stefankangas@gmail.com>
Fri, 5 Jan 2024 21:58:39 +0000 (22:58 +0100)
* lisp/emacs-lisp/checkdoc.el (checkdoc-display-status-buffer): Use
`special-mode'.  (Bug#68268)

lisp/emacs-lisp/checkdoc.el

index 80eaf93c3b72deb623e006088a2a422c7f153fd6..82c6c03a59242429b6e32eab4c2ca49e4dec3ce5 100644 (file)
@@ -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)