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: a principle for lisp-fill-paragraph Date: Fri, 20 Apr 2007 21:53:21 +0200 (CEST) Message-ID: <8151910.38841177098801418.JavaMail.www@wwinf4004> 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 1177098817 25582 80.91.229.12 (20 Apr 2007 19:53:37 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 20 Apr 2007 19:53:37 +0000 (UTC) To: "Emacs Dev [emacs-devel]" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Apr 20 21:53:30 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 1HezAf-00069W-B6 for ged-emacs-devel@m.gmane.org; Fri, 20 Apr 2007 21:53:29 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HezFk-0006Dx-Ke for ged-emacs-devel@m.gmane.org; Fri, 20 Apr 2007 15:58:44 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HezFg-0006DM-Qk for emacs-devel@gnu.org; Fri, 20 Apr 2007 15:58:40 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HezFf-0006DA-NT for emacs-devel@gnu.org; Fri, 20 Apr 2007 15:58:40 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HezFf-0006D7-J2 for emacs-devel@gnu.org; Fri, 20 Apr 2007 15:58:39 -0400 Original-Received: from smtp1.voila.fr ([193.252.22.174]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1HezAZ-0002Ub-Bi for emacs-devel@gnu.org; Fri, 20 Apr 2007 15:53:23 -0400 Original-Received: from me-wanadoo.net (localhost [127.0.0.1]) by mwinf4001.voila.fr (SMTP Server) with ESMTP id 77A0658002A3 for ; Fri, 20 Apr 2007 21:53:21 +0200 (CEST) Original-Received: from wwinf4004 (wwinf4004 [172.22.157.31]) by mwinf4001.voila.fr (SMTP Server) with ESMTP id 6AB7C5800275 for ; Fri, 20 Apr 2007 21:53:21 +0200 (CEST) X-ME-UUID: 20070420195321437.6AB7C5800275@mwinf4001.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: 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:69716 Archived-At: There is not normal always to bring 2 lines on a single line by fill-paragraph in lisp mode. ;; Indent each line of the list starting just after point. ;; A prefix argument specifies pretty-printing. by evaluation gives: ;; Indent each line of the list starting just after point. A prefix ;; argument specifies pretty-printing. Evaluating fill-paragraph will bring the 2 lines on a single line. In fact, for a new paragraph now I see that it is sufficient to keep a blank line: ;; A ;; ;; B And the lines will not be merged...