From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Thien-Thi Nguyen Newsgroups: gmane.emacs.devel Subject: Re: Hi, I'm back! + Re: Strange eval-after-load Date: 02 Jul 2006 13:28:33 -0400 Message-ID: References: <20060702133304.GA4008@muc.de> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1151861336 13402 80.91.229.2 (2 Jul 2006 17:28:56 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 2 Jul 2006 17:28:56 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Jul 02 19:28:54 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1Fx5kY-0000DM-NK for ged-emacs-devel@m.gmane.org; Sun, 02 Jul 2006 19:28:51 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Fx5kY-0000NN-6F for ged-emacs-devel@m.gmane.org; Sun, 02 Jul 2006 13:28:50 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Fx5kL-0000LO-JF for emacs-devel@gnu.org; Sun, 02 Jul 2006 13:28:37 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Fx5kK-0000JZ-0v for emacs-devel@gnu.org; Sun, 02 Jul 2006 13:28:37 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Fx5kJ-0000JM-P9 for emacs-devel@gnu.org; Sun, 02 Jul 2006 13:28:35 -0400 Original-Received: from [67.59.132.6] (helo=mail.agora-net.com) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA:32) (Exim 4.52) id 1Fx5xa-0007GR-Fn for emacs-devel@gnu.org; Sun, 02 Jul 2006 13:42:18 -0400 Original-Received: from ttn by mail.agora-net.com with local (Exim 4.50) id 1Fx5kH-0003px-Ur; Sun, 02 Jul 2006 13:28:33 -0400 Original-To: Alan Mackenzie In-Reply-To: <20060702133304.GA4008@muc.de> Original-Lines: 25 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.4 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:56378 Archived-At: Alan Mackenzie 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