|
From: | Thien-Thi Nguyen |
Subject: | Re: Hi, I'm back! + Re: Strange eval-after-load |
Date: | 02 Jul 2006 13:28:33 -0400 |
User-agent: | Gnus/5.09 (Gnus v5.9.0) Emacs/21.4 |
Alan Mackenzie <address@hidden> writes: > ;; Make edebug understand the macros. > (eval-after-load "edebug" > '(progn > (def-edebug-spec cc-eval-when-compile t) > (def-edebug-spec c-point t) > ..... > )) each defmacro can include a `declare' form which can include a (debug SPEC) clause. i wonder if: (def-edebug-spec cc-eval-when-compile t) is equivalent to (defmacro cc-eval-when-compile (...) (declare (debug t)) ...) ? if so, these particular usages of `eval-after-load' are no longer necessary. thi
[Prev in Thread] | Current Thread | [Next in Thread] |