diff options
author | Jesús <heckyel@hyperbola.info> | 2018-10-26 20:04:23 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2018-10-26 20:04:23 -0500 |
commit | 4a3d8a46f926bc810238ec32d7141b3c965abbd9 (patch) | |
tree | e1be0a0357e98038ed55fa19d572631e0ffc6680 /lisp/init-utils.el | |
parent | 179372135dadcf909b363172b7e848c57e7041f9 (diff) | |
download | emacs-personal-4a3d8a46f926bc810238ec32d7141b3c965abbd9.tar.lz emacs-personal-4a3d8a46f926bc810238ec32d7141b3c965abbd9.tar.xz emacs-personal-4a3d8a46f926bc810238ec32d7141b3c965abbd9.zip |
fix indent
Diffstat (limited to 'lisp/init-utils.el')
-rw-r--r-- | lisp/init-utils.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/init-utils.el b/lisp/init-utils.el index 64dadc6..a0b9fe0 100644 --- a/lisp/init-utils.el +++ b/lisp/init-utils.el @@ -15,8 +15,8 @@ (defmacro after-load (feature &rest body) "After FEATURE is loaded, evaluate BODY." (declare (indent defun)) - '(eval-after-load ,feature - '(progn ,@body)))) + '(eval-after-load, feature + '(progn, @body)))) ;; Elapsed time (myemacs/elapsed-time) |