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: lisp-indent-line Date: Mon, 12 Mar 2007 11:22:04 +0100 (CET) Message-ID: <2116238.244751173694924707.JavaMail.www@wwinf4001> 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 1173694953 20873 80.91.229.12 (12 Mar 2007 10:22:33 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 12 Mar 2007 10:22:33 +0000 (UTC) To: "Emacs Dev [emacs-devel]" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Mar 12 11:22:26 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 1HQhfa-0003sw-C4 for ged-emacs-devel@m.gmane.org; Mon, 12 Mar 2007 11:22:22 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HQhgE-0001aZ-6t for ged-emacs-devel@m.gmane.org; Mon, 12 Mar 2007 05:23:02 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HQhg1-0001aN-0F for emacs-devel@gnu.org; Mon, 12 Mar 2007 06:22:49 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HQhfy-0001aA-Gl for emacs-devel@gnu.org; Mon, 12 Mar 2007 06:22:47 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HQhfy-0001a7-BG for emacs-devel@gnu.org; Mon, 12 Mar 2007 05:22:46 -0500 Original-Received: from smtp1.voila.fr ([193.252.22.174]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1HQhfJ-0002CY-ND for emacs-devel@gnu.org; Mon, 12 Mar 2007 06:22:05 -0400 Original-Received: from me-wanadoo.net (localhost [127.0.0.1]) by mwinf4002.voila.fr (SMTP Server) with ESMTP id C026A1C002F5 for ; Mon, 12 Mar 2007 11:22:04 +0100 (CET) Original-Received: from wwinf4001 (wwinf4001 [172.22.157.28]) by mwinf4002.voila.fr (SMTP Server) with ESMTP id AF97F1C002EB for ; Mon, 12 Mar 2007 11:22:04 +0100 (CET) X-ME-UUID: 20070312102204719.AF97F1C002EB@mwinf4002.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:67777 Archived-At: (defun new-lisp-indent-line (&optional whole-exp) "Indent current line as Lisp code. With argument, indent any additional lines of the same expression rigidly along with this one." (interactive "P") ...) lisp-indent-line has one parameter. However, it is never used in the code as far as I see... I do not understand its logic... Can somebody explain me its logic , please? what means that: "With argument, indent any additional lines of the same expression rigidly along with this one." ? Is it an important feature that worth to be kept in future? a soare.