From 07d27bb226471006b1c7e12b679870fd5a74840e Mon Sep 17 00:00:00 2001 From: 10sr <8slashes+git@gmail.com> Date: Thu, 31 Dec 2015 22:44:33 +0900 Subject: [PATCH] Try to fix with-eval-after-load polyfill --- emacs.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emacs.el b/emacs.el index 7ff77ef..d0a730b 100644 --- a/emacs.el +++ b/emacs.el @@ -35,7 +35,7 @@ (defmacro with-eval-after-load (file &rest body) "Execute BODY after FILE is loaded." (declare (indent 1)) - `(eval-after-load ,file '(progn ,@body)))) + `(eval-after-load ,file (quote (progn ,@body))))) (defun call-after-init (func) "If `after-init-hook' has been run, call FUNC immediately.