From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: Why does fill-paragraph insert a "-" char on wrapped lines? Date: Sun, 01 Apr 2007 15:25:36 -0400 Message-ID: References: <460EFF1F.8080205@gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1175455554 1843 80.91.229.12 (1 Apr 2007 19:25:54 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 1 Apr 2007 19:25:54 +0000 (UTC) Cc: Emacs Devel To: "Lennart Borgman \(gmail\)" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Apr 01 21:25:45 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 1HY5gN-000412-Pi for ged-emacs-devel@m.gmane.org; Sun, 01 Apr 2007 21:25:44 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HY5jK-00023g-EY for ged-emacs-devel@m.gmane.org; Sun, 01 Apr 2007 15:28:46 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HY5jH-00023J-1z for emacs-devel@gnu.org; Sun, 01 Apr 2007 15:28:43 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HY5jE-0001y4-My for emacs-devel@gnu.org; Sun, 01 Apr 2007 15:28:41 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HY5jE-0001xu-F3 for emacs-devel@gnu.org; Sun, 01 Apr 2007 15:28:40 -0400 Original-Received: from tomts10.bellnexxia.net ([209.226.175.54] helo=tomts10-srv.bellnexxia.net) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1HY5gH-00078J-0g for emacs-devel@gnu.org; Sun, 01 Apr 2007 15:25:37 -0400 Original-Received: from pastel.home ([70.53.194.92]) by tomts10-srv.bellnexxia.net (InterMail vM.5.01.06.13 201-253-122-130-113-20050324) with ESMTP id <20070401192536.QZSM1723.tomts10-srv.bellnexxia.net@pastel.home> for ; Sun, 1 Apr 2007 15:25:36 -0400 Original-Received: by pastel.home (Postfix, from userid 20848) id 0DBEF7F3F; Sun, 1 Apr 2007 15:25:36 -0400 (EDT) In-Reply-To: <460EFF1F.8080205@gmail.com> (Lennart Borgman's message of "Sun\, 01 Apr 2007 02\:38\:55 +0200") User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.96 (gnu/linux) X-detected-kernel: Solaris 8 (1) 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:68896 Archived-At: > When fill-paragraph is applied to > ;; - This is a long line that will wrap when it is filled. > it is filled like this > ;; - This is a long line that will wrap when it is > ;; - filled. > I do not understand why there is a "-" char on the second line > above. I would expect that it looked like > ;; - This is a long line that will wrap when it is > ;; filled. It's a limitation of the current adaptive-fill-mode code. It actually works in my local Emacs implementation, because I've added various hacks to it, but this is post-22. Stefan