From 57ffc12c75379aac582e75d154a132fe0903a4bc Mon Sep 17 00:00:00 2001 From: 10sr <8.slashes@gmail.com> Date: Fri, 29 Mar 2019 19:42:10 +0900 Subject: [PATCH] Add comment --- emacs.el | 1 + 1 file changed, 1 insertion(+) diff --git a/emacs.el b/emacs.el index dc0ae2c..390e31d 100644 --- a/emacs.el +++ b/emacs.el @@ -24,6 +24,7 @@ "If `after-init-hook' has been run, call FUNC immediately. Otherwize hook it." (if after-init-time + ;; Currently after-init-hook is run just after setting after-init-hook (funcall func) (add-hook 'after-init-hook func)))