From 8f64a0eb31a85952950f5065ecdd493e038ca5cd Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Mon, 31 Aug 2020 00:01:13 -0400 Subject: [PATCH] Fix #3871: void-function doom-autoload-error Due to calling an error as if it were a function. --- core/core.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/core.el b/core/core.el index c8cfb0495..6ac54ac22 100644 --- a/core/core.el +++ b/core/core.el @@ -544,7 +544,7 @@ to least)." "run 'doom sync' on the command line to repair it")) ;; Otherwise, something inside the autoloads file is triggering this ;; error; forward it! - (apply #'doom-autoload-error e)))) + (signal 'doom-autoload-error e)))) ;; Load shell environment, optionally generated from 'doom env'. No need ;; to do so if we're in terminal Emacs, where Emacs correctly inherits