aboutsummaryrefslogtreecommitdiff
path: root/modules/wrap-up.el
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-07-24 08:46:04 -0500
committerCraig Jennings <c@cjennings.net>2026-07-24 08:46:04 -0500
commitd9ab1074991ee3c4c680024b14d6de0475560380 (patch)
tree00b9459181efaececd8da2c065c69ac92b0a8bc2 /modules/wrap-up.el
parent7e5aa31731a6d6446055729fb7597d549ff637f4 (diff)
downloaddotemacs-d9ab1074991ee3c4c680024b14d6de0475560380.tar.gz
dotemacs-d9ab1074991ee3c4c680024b14d6de0475560380.zip
fix: correct four wrong behaviors and drop three dead code paths
- yt-dlp downloads claimed completion when tsp had merely queued them. - A fresh machine opened org links in EWW, not Chrome. - ArchWiki search raised a raw error instead of the install hint. - The pre-commit hook kept running when its cd failed. - Removed a second device-grouping implementation nothing called. - Removed a redundant epub advice that ran on every file visit. - Removed a buffer-burying clause naming a mode Emacs doesn't define. - Moved the Hugo bindings onto the custom prefix map. - The ArchWiki docs path is now a variable, making it testable.
Diffstat (limited to 'modules/wrap-up.el')
-rw-r--r--modules/wrap-up.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/wrap-up.el b/modules/wrap-up.el
index e28ba845..6901901f 100644
--- a/modules/wrap-up.el
+++ b/modules/wrap-up.el
@@ -23,12 +23,12 @@
"Bury comint and compilation buffers."
(dolist (buf (buffer-list))
(with-current-buffer buf
+ ;; Byte-compilation output arrives in `emacs-lisp-compilation-mode',
+ ;; which derives from `compilation-mode' and so is covered by that clause.
(when (or (derived-mode-p 'comint-mode)
(derived-mode-p 'compilation-mode)
(derived-mode-p 'debugger-mode)
- (derived-mode-p 'elisp-compile-mode)
- (derived-mode-p 'messages-buffer-mode)
- ) ;; byte-compilations
+ (derived-mode-p 'messages-buffer-mode))
(bury-buffer)))))
(defun cj/bury-buffers-after-delay ()