From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Lennart Borgman (gmail)" Newsgroups: gmane.emacs.devel Subject: Re: Why does fill-paragraph insert a "-" char on wrapped lines? Date: Mon, 02 Apr 2007 01:45:56 +0200 Message-ID: <46104434.7040103@gmail.com> References: <460EFF1F.8080205@gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1175471204 12069 80.91.229.12 (1 Apr 2007 23:46:44 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 1 Apr 2007 23:46:44 +0000 (UTC) Cc: Emacs Devel To: Stefan Monnier Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Apr 02 01:46:37 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 1HY9kr-0005Df-JT for ged-emacs-devel@m.gmane.org; Mon, 02 Apr 2007 01:46:37 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HY9np-0003AE-DK for ged-emacs-devel@m.gmane.org; Sun, 01 Apr 2007 19:49:41 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HY9nm-0003A7-4e for emacs-devel@gnu.org; Sun, 01 Apr 2007 19:49:38 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HY9ni-00039t-7A for emacs-devel@gnu.org; Sun, 01 Apr 2007 19:49:37 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HY9ni-00039q-1B for emacs-devel@gnu.org; Sun, 01 Apr 2007 19:49:34 -0400 Original-Received: from ch-smtp01.sth.basefarm.net ([80.76.149.212]) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1HY9kj-0000HU-3k for emacs-devel@gnu.org; Sun, 01 Apr 2007 19:46:29 -0400 Original-Received: from c83-254-145-24.bredband.comhem.se ([83.254.145.24]:65399 helo=[127.0.0.1]) by ch-smtp01.sth.basefarm.net with esmtp (Exim 4.63) (envelope-from ) id 1HY9kh-0003Ye-3K; Mon, 02 Apr 2007 01:46:27 +0200 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.10) Gecko/20070221 Thunderbird/1.5.0.10 Mnenhy/0.7.5.666 In-Reply-To: X-Antivirus: avast! (VPS 000730-0, 2007-04-02), Outbound message X-Antivirus-Status: Clean X-Scan-Result: No virus found in message 1HY9kh-0003Ye-3K. X-Scan-Signature: ch-smtp01.sth.basefarm.net 1HY9kh-0003Ye-3K c2c74435a5c952eba21d206ab67bacb4 X-detected-kernel: Linux 2.6? (barebone, rare!) 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:68913 Archived-At: Stefan Monnier wrote: >> 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. Thanks, I hoped it was something simple we could agree upon now.