summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Kangas <stefankangas@gmail.com>2022-12-14 23:46:38 +0100
committerStefan Kangas <stefankangas@gmail.com>2022-12-14 23:48:44 +0100
commit8ab1f09e0983f165e7081c8ea9f35ac9565e43db (patch)
tree4255ef396e43f4dc184a958ea95830cd5e7c8c4b
parent537f78b537ddd56198059bc02b5abc6e51c5b523 (diff)
downloademacs-8ab1f09e0983f165e7081c8ea9f35ac9565e43db.tar.gz
Mark flymake diagnostic modes as non-interactive
* lisp/progmodes/flymake.el (flymake-diagnostics-buffer-mode) (flymake-project-diagnostics-mode): Mark modes as non-interactive.
-rw-r--r--lisp/progmodes/flymake.el2
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/progmodes/flymake.el b/lisp/progmodes/flymake.el
index a4a8cd84050..7af62c35358 100644
--- a/lisp/progmodes/flymake.el
+++ b/lisp/progmodes/flymake.el
@@ -1635,6 +1635,7 @@ buffer."
(define-derived-mode flymake-diagnostics-buffer-mode tabulated-list-mode
"Flymake diagnostics"
"A mode for listing Flymake diagnostics."
+ :interactive nil
(setq tabulated-list-format flymake--diagnostics-base-tabulated-list-format)
(setq tabulated-list-entries
'flymake--diagnostics-buffer-entries)
@@ -1692,6 +1693,7 @@ some of this variable's contents the diagnostic listings.")
(define-derived-mode flymake-project-diagnostics-mode tabulated-list-mode
"Flymake diagnostics"
"A mode for listing Flymake diagnostics."
+ :interactive nil
(setq tabulated-list-format
(vconcat [("File" 25 t)]
flymake--diagnostics-base-tabulated-list-format))