From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: Lisp indentation. Date: Mon, 14 Mar 2005 07:58:12 -0500 Message-ID: <87d5u28jyu.fsf-monnier+emacs@gnu.org> References: <87mztbmk6r.fsf@xs4all.nl> <87psy31xz0.fsf@xs4all.nl> <87fyyzbqrd.fsf-monnier+emacs@gnu.org> <87ll8rwluh.fsf@xs4all.nl> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1110805191 25945 80.91.229.2 (14 Mar 2005 12:59:51 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 14 Mar 2005 12:59:51 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Mar 14 13:59:51 2005 Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DApAU-0006Ds-Ou for ged-emacs-devel@m.gmane.org; Mon, 14 Mar 2005 13:59:35 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DApQB-0000xH-07 for ged-emacs-devel@m.gmane.org; Mon, 14 Mar 2005 08:15:47 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DApPz-0000wu-OY for emacs-devel@gnu.org; Mon, 14 Mar 2005 08:15:35 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DApPx-0000w6-Pj for emacs-devel@gnu.org; Mon, 14 Mar 2005 08:15:35 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DApPx-0000w2-Iy for emacs-devel@gnu.org; Mon, 14 Mar 2005 08:15:33 -0500 Original-Received: from [209.226.175.74] (helo=tomts20-srv.bellnexxia.net) by monty-python.gnu.org with esmtp (Exim 4.34) id 1DAp9A-0000Dr-GH for emacs-devel@gnu.org; Mon, 14 Mar 2005 07:58:12 -0500 Original-Received: from alfajor ([67.71.27.21]) by tomts20-srv.bellnexxia.net (InterMail vM.5.01.06.10 201-253-122-130-110-20040306) with ESMTP id <20050314125812.UVUX2034.tomts20-srv.bellnexxia.net@alfajor>; Mon, 14 Mar 2005 07:58:12 -0500 Original-Received: by alfajor (Postfix, from userid 1000) id 1EBC7D74A3; Mon, 14 Mar 2005 07:58:12 -0500 (EST) Original-To: Lute Kamstra In-Reply-To: <87ll8rwluh.fsf@xs4all.nl> (Lute Kamstra's message of "Sun, 13 Mar 2005 17:29:26 +0100") User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (gnu/linux) 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 X-MailScanner-To: ged-emacs-devel@m.gmane.org Xref: news.gmane.org gmane.emacs.devel:34570 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:34570 > I tried it with eval-when-compile in byte-run.el. With current CVS Oh, right, the `declare' only works after subr.el has been loaded, so it's ignored if you use it in byte-run.el or in backquote.el. See (setq macro-declaration-function 'macro-declaration-function) in subr.el. Feel free to fix byte-run.el to not use `declare' (with a note explaining why), or to move the `macro-declaration-function' from subr.el to byte-run.el. Stefan