From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Lars Brinkhoff Newsgroups: gmane.emacs.devel Subject: Re: Incorrect indentation after :name Date: Tue, 05 Jul 2005 09:07:32 +0200 Organization: nocrew Message-ID: <85oe9hvih7.fsf@junk.nocrew.org> References: <42C80B48.3080103@student.lu.se> <87r7edhlsu.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 1120548485 15427 80.91.229.2 (5 Jul 2005 07:28:05 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 5 Jul 2005 07:28:05 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Jul 05 09:28:04 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DphqH-00010N-HL for ged-emacs-devel@m.gmane.org; Tue, 05 Jul 2005 09:27:41 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DphrW-0005U6-Q2 for ged-emacs-devel@m.gmane.org; Tue, 05 Jul 2005 03:28:58 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DphoA-0003pz-NW for emacs-devel@gnu.org; Tue, 05 Jul 2005 03:25:31 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Dpho5-0003mZ-3i for emacs-devel@gnu.org; Tue, 05 Jul 2005 03:25:26 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Dpho3-0003Sl-Q1 for emacs-devel@gnu.org; Tue, 05 Jul 2005 03:25:23 -0400 Original-Received: from [80.91.229.2] (helo=ciao.gmane.org) by monty-python.gnu.org with esmtp (TLS-1.0:RSA_AES_128_CBC_SHA:16) (Exim 4.34) id 1DphdM-0002uB-6w for emacs-devel@gnu.org; Tue, 05 Jul 2005 03:14:20 -0400 Original-Received: from list by ciao.gmane.org with local (Exim 4.43) id 1DphXD-0007Ks-IK for emacs-devel@gnu.org; Tue, 05 Jul 2005 09:07:59 +0200 Original-Received: from c-e56e73d5.027-12-67626717.cust.bredbandsbolaget.se ([213.115.110.229]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 05 Jul 2005 09:07:59 +0200 Original-Received: from lars by c-e56e73d5.027-12-67626717.cust.bredbandsbolaget.se with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 05 Jul 2005 09:07:59 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-To: emacs-devel@gnu.org Original-Lines: 11 Original-X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: c-e56e73d5.027-12-67626717.cust.bredbandsbolaget.se User-Agent: Gnus/5.1007 (Gnus v5.10.7) Emacs/21.4 (gnu/linux) Cancel-Lock: sha1:uCIxqnGDr4zw3G/JGxOwrxgSM68= 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:40398 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:40398 Stefan Monnier writes: > The check for `fboundp' is to try and "correctly" indent things like > > '(with-current-buffer buf > (do-something)) > > which occur sometimes in macros. Somewhat related to this, I have a patch to improve indentation of macros that are defined with defmacro* and uses &body. The macro must be loaded for my code to do its job.