From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Lute Kamstra Newsgroups: gmane.emacs.devel Subject: Re: Lisp indentation. Date: Mon, 14 Mar 2005 14:55:51 +0100 Message-ID: <87mzt672mw.fsf@xs4all.nl> References: <87mztbmk6r.fsf@xs4all.nl> <87psy31xz0.fsf@xs4all.nl> <87fyyzbqrd.fsf-monnier+emacs@gnu.org> <87ll8rwluh.fsf@xs4all.nl> <87d5u28jyu.fsf-monnier+emacs@gnu.org> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1110809260 6039 80.91.229.2 (14 Mar 2005 14:07:40 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 14 Mar 2005 14:07:40 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Mar 14 15:07:39 2005 Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DAqDw-0005nu-Lr for ged-emacs-devel@m.gmane.org; Mon, 14 Mar 2005 15:07:13 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DAqTd-0001TD-DI for ged-emacs-devel@m.gmane.org; Mon, 14 Mar 2005 09:23:25 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DAqOF-0007ce-Gg for emacs-devel@gnu.org; Mon, 14 Mar 2005 09:17:51 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DAqO6-0007X9-EP for emacs-devel@gnu.org; Mon, 14 Mar 2005 09:17:44 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DAqO0-0007RX-EA for emacs-devel@gnu.org; Mon, 14 Mar 2005 09:17:36 -0500 Original-Received: from [194.109.24.32] (helo=smtp-vbr12.xs4all.nl) by monty-python.gnu.org with esmtp (Exim 4.34) id 1DAq2u-0005Ui-24 for emacs-devel@gnu.org; Mon, 14 Mar 2005 08:55:48 -0500 Original-Received: from pijl (a80-127-67-124.adsl.xs4all.nl [80.127.67.124]) by smtp-vbr12.xs4all.nl (8.12.11/8.12.11) with ESMTP id j2EDtkb6014529; Mon, 14 Mar 2005 14:55:46 +0100 (CET) (envelope-from Lute.Kamstra@xs4all.nl) Original-Received: from lute by pijl with local (Exim 3.36 #1 (Debian)) id 1DAq2x-00064W-00; Mon, 14 Mar 2005 14:55:51 +0100 Original-To: Stefan Monnier In-Reply-To: <87d5u28jyu.fsf-monnier+emacs@gnu.org> (Stefan Monnier's message of "Mon, 14 Mar 2005 07:58:12 -0500") User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (gnu/linux) Original-Lines: 17 X-Virus-Scanned: by XS4ALL Virus Scanner 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:34573 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:34573 Stefan Monnier writes: >> 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. I see: byte-run.el and backquote.el are loaded before subr.el by loadup.el. I'll move macro-declaration-function to byte-run.el and put in a comment why it should be there. Lute.