From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Damien Kick Newsgroups: gmane.emacs.help Subject: common-lisp-indent-function and ` Date: Thu, 16 Nov 2006 03:22:32 +0000 (UTC) Message-ID: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1163647833 18047 80.91.229.2 (16 Nov 2006 03:30:33 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 16 Nov 2006 03:30:33 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Nov 16 04:30:31 2006 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1GkXxI-0003Xc-Rf for geh-help-gnu-emacs@m.gmane.org; Thu, 16 Nov 2006 04:30:25 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GkXxH-0007HU-Om for geh-help-gnu-emacs@m.gmane.org; Wed, 15 Nov 2006 22:30:23 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1GkXx4-0007HN-TD for help-gnu-emacs@gnu.org; Wed, 15 Nov 2006 22:30:11 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1GkXx3-0007HB-Gh for help-gnu-emacs@gnu.org; Wed, 15 Nov 2006 22:30:10 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GkXx3-0007H5-AC for help-gnu-emacs@gnu.org; Wed, 15 Nov 2006 22:30:09 -0500 Original-Received: from [80.91.229.2] (helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA:32) (Exim 4.52) id 1GkXx3-00030a-8O for help-gnu-emacs@gnu.org; Wed, 15 Nov 2006 22:30:09 -0500 Original-Received: from root by ciao.gmane.org with local (Exim 4.43) id 1GkXww-0003Tp-Oi for help-gnu-emacs@gnu.org; Thu, 16 Nov 2006 04:30:02 +0100 Original-Received: from wwwgate4.motorola.com ([129.188.69.169]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 16 Nov 2006 04:30:02 +0100 Original-Received: from dkixk by wwwgate4.motorola.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 16 Nov 2006 04:30:02 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-To: help-gnu-emacs@gnu.org Original-Lines: 17 Original-X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: main.gmane.org User-Agent: Loom/3.14 (http://gmane.org/) X-Loom-IP: 129.188.69.169 (Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.8) Gecko/20061025 Firefox/1.5.0.8) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:38747 Archived-At: I'm using "GNU Emacs 21.2.1 (powerpc-apple-darwin, X toolkit) of 2006-09-20 on Damien-Kicks-Computer.local" and SLIME 2.0. I'm having problems with the indentation behavior of backquoted forms. What follows are two forms and the way in which they are being indented. `(mapcar #'(lambda (element) element) list) ` (mapcar #'(lambda (element) element) list) Is there any way to get the first form indented as follows? `(mapcar #'(lambda (element) element) list) I don't want to have to put the space between the #\` and the #\(. Help?