From 9a4bbb5b7c8bc9f188b8ee6fe6d199ad71c90f54 Mon Sep 17 00:00:00 2001 From: 10sr <8slashes+git@gmail.com> Date: Thu, 31 Dec 2015 23:10:14 +0900 Subject: [PATCH] emacs.el: with-eval-after-load polyfill: Add debug t --- emacs.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emacs.el b/emacs.el index d0a730b..666f5ad 100644 --- a/emacs.el +++ b/emacs.el @@ -34,7 +34,7 @@ ;; polyfill for Emacs < 24.4 (defmacro with-eval-after-load (file &rest body) "Execute BODY after FILE is loaded." - (declare (indent 1)) + (declare (indent 1) (debug t)) `(eval-after-load ,file (quote (progn ,@body))))) (defun call-after-init (func)