From 0a39aa64d14fc5a039bb358f185f2b1345a870fd Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Thu, 2 Mar 2017 18:22:37 -0500 Subject: [PATCH] add-transient-hook!: fix indentation --- core/core-lib.el | 1 + 1 file changed, 1 insertion(+) diff --git a/core/core-lib.el b/core/core-lib.el index 5a8ff83f0..d29a0ce3c 100644 --- a/core/core-lib.el +++ b/core/core-lib.el @@ -102,6 +102,7 @@ compilation." "Attaches transient forms to a hook (can also be a function, which will be advised instead). These forms will be evaluated only once when that function/hook is first invoked, then it detaches itself." + (declare (indent 1)) (let ((fn (intern (format "doom--transient-hook-%s" hook)))) `(progn (defun ,fn (&rest _)