From a830b0e41adb07e3e808298a12919de988ab351c Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Wed, 8 Jan 2025 20:03:07 -0500 Subject: [PATCH] fix: doom-compat: end-of-file error Fix: #8233 Fix: #8232 Amend: d6037a24d4eb --- lisp/doom-compat.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/doom-compat.el b/lisp/doom-compat.el index b8cdccd6e..42dfc1bc5 100644 --- a/lisp/doom-compat.el +++ b/lisp/doom-compat.el @@ -147,7 +147,7 @@ The functions in the hook are called with one parameter -- the (define-advice disable-theme (:around (fn theme) trigger-hooks) (when (custom-theme-enabled-p theme) (funcall fn theme) - (run-hook-with-args 'enable-theme-functions theme))) + (run-hook-with-args 'enable-theme-functions theme)))) ;;; From Emacs 30+