From 778652bfd6cb7fa08096f8b44e038c265d4c45d6 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Fri, 17 Apr 2020 03:20:20 -0400 Subject: [PATCH] Fix void-function doom-try-hook This snuck into a recent commit, but the function hasn't been renamed yet. --- core/autoload/config.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/autoload/config.el b/core/autoload/config.el index 770a704fc..eb3acac93 100644 --- a/core/autoload/config.el +++ b/core/autoload/config.el @@ -88,7 +88,7 @@ Runs `doom-reload-hook' afterwards." (unwind-protect (doom-initialize-modules 'force) (general-auto-unbind-keys t))) - (run-hook-wrapped 'doom-reload-hook #'doom-try-hook) + (run-hook-wrapped 'doom-reload-hook #'doom-try-run-hook) (print! (success "Config successfully reloaded!"))) (user-error "Failed to reload your config")))