From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: A Soare Newsgroups: gmane.emacs.devel Subject: Re: Indentation of LISP code Date: Thu, 5 Apr 2007 17:10:04 +0200 (CEST) Message-ID: <11332127.71111175785804482.JavaMail.www@wwinf4206> 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 1175785962 13823 80.91.229.12 (5 Apr 2007 15:12:42 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 5 Apr 2007 15:12:42 +0000 (UTC) To: "Emacs Dev [emacs-devel]" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Apr 05 17:12:10 2007 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1HZTbR-0005BY-Ko for ged-emacs-devel@m.gmane.org; Thu, 05 Apr 2007 17:10:21 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HZTep-0007dl-2O for ged-emacs-devel@m.gmane.org; Thu, 05 Apr 2007 11:13:51 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HZTec-0007aL-2N for emacs-devel@gnu.org; Thu, 05 Apr 2007 11:13:38 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HZTeb-0007Zu-Dz for emacs-devel@gnu.org; Thu, 05 Apr 2007 11:13:37 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HZTeb-0007Zq-7A for emacs-devel@gnu.org; Thu, 05 Apr 2007 11:13:37 -0400 Original-Received: from smtp3.voila.fr ([193.252.22.173]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1HZTbC-00061A-Vg for emacs-devel@gnu.org; Thu, 05 Apr 2007 11:10:07 -0400 Original-Received: from me-wanadoo.net (localhost [127.0.0.1]) by mwinf4204.voila.fr (SMTP Server) with ESMTP id 841331C00078 for ; Thu, 5 Apr 2007 17:10:04 +0200 (CEST) Original-Received: from wwinf4206 (wwinf4206 [10.232.2.33]) by mwinf4204.voila.fr (SMTP Server) with ESMTP id 791221C0004E for ; Thu, 5 Apr 2007 17:10:04 +0200 (CEST) X-ME-UUID: 20070405151004496.791221C0004E@mwinf4204.voila.fr X-Originating-IP: [89.34.170.37] X-Wum-Nature: EMAIL-NATURE X-WUM-FROM: |~| X-WUM-TO: |~| X-WUM-REPLYTO: |~| X-detected-kernel: Linux 2.4-2.6 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:69086 Archived-At: In this moment one ignores the indentation of commented lines with ;;; like this one: ;;; this is a commented line. However: (defun lisp-indent-region (start end) "Indent every line whose first char is between START and END inclusive." (save-excursion (asa;;;a <=<= THIS LINE IS NOT IGNORED, IT IS TREATED AS DOUBLE COMMENTED )) ) (USE INDENT REGION TO INDENT) In future (after the release) this indentation should be ignored too or treated as double commented ;;? alin soare.