From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: A Soare Newsgroups: gmane.emacs.help Subject: Re: (list) and '(list) Date: Mon, 30 Apr 2007 20:15:12 +0200 (CEST) Message-ID: <7103591.275521177956912146.JavaMail.www@wwinf4205> Reply-To: alinsoar@voila.fr NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1177956934 16016 80.91.229.12 (30 Apr 2007 18:15:34 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 30 Apr 2007 18:15:34 +0000 (UTC) To: "Emacs Help [help-gnu-emacs]" Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Apr 30 20:15:31 2007 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1HiaPJ-0007Nk-EP for geh-help-gnu-emacs@m.gmane.org; Mon, 30 Apr 2007 20:15:29 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HiaVW-0003w4-6f for geh-help-gnu-emacs@m.gmane.org; Mon, 30 Apr 2007 14:21:54 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HiaVI-0003vp-VG for help-gnu-emacs@gnu.org; Mon, 30 Apr 2007 14:21:40 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HiaVI-0003vd-DM for help-gnu-emacs@gnu.org; Mon, 30 Apr 2007 14:21:40 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HiaVI-0003va-Au for help-gnu-emacs@gnu.org; Mon, 30 Apr 2007 14:21:40 -0400 Original-Received: from smtp3.voila.fr ([193.252.22.173]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1HiaP4-00077F-Ob for help-gnu-emacs@gnu.org; Mon, 30 Apr 2007 14:15:14 -0400 Original-Received: from me-wanadoo.net (localhost [127.0.0.1]) by mwinf4203.voila.fr (SMTP Server) with ESMTP id 320AC1C00085 for ; Mon, 30 Apr 2007 20:15:12 +0200 (CEST) Original-Received: from wwinf4205 (wwinf4205 [10.232.2.32]) by mwinf4203.voila.fr (SMTP Server) with ESMTP id 269041C00082 for ; Mon, 30 Apr 2007 20:15:12 +0200 (CEST) X-ME-UUID: 20070430181512158.269041C00082@mwinf4203.voila.fr X-Originating-IP: [86.107.96.49] X-Wum-Nature: EMAIL-NATURE X-WUM-FROM: |~| X-WUM-TO: |~| X-WUM-REPLYTO: |~| X-detected-kernel: Linux 2.4-2.6 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:43413 Archived-At: Now the utility of my question is the following. I rewrote the indentation of lisp code (I am still working on, but the base is done). There are still problems. Look one: (+ 1 2 3 4 5 6) This is a list that calls a function. Now this case: (setq a '(a b c d e f) With the current indentation, we would have: (setq a '(a b c d e f) I do not like this. I want to indent for the quoted lists so: (setq a '(a b c d e f) So I need the simplesc code that detects whether a list is commented or not. Alin Soare.