Use special-mode in checkdoc status buffer
* lisp/emacs-lisp/checkdoc.el (checkdoc-display-status-buffer): Use `special-mode'. (Bug#68268)
This commit is contained in:
parent
f9acf12f6f
commit
790b598217
1 changed files with 2 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue