From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Werner LEMBERG Newsgroups: gmane.emacs.devel Subject: filling bug in text-mode Date: Wed, 05 Oct 2005 22:40:26 +0200 (CEST) Message-ID: <20051005.224026.229265335.wl@gnu.org> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1128548320 23238 80.91.229.2 (5 Oct 2005 21:38:40 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 5 Oct 2005 21:38:40 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Oct 05 23:38:38 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1ENGvw-0001aY-QW for ged-emacs-devel@m.gmane.org; Wed, 05 Oct 2005 23:36:17 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ENGvw-0006jm-5K for ged-emacs-devel@m.gmane.org; Wed, 05 Oct 2005 17:36:16 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1ENGvk-0006hr-GW for emacs-devel@gnu.org; Wed, 05 Oct 2005 17:36:04 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1ENGvj-0006hD-19 for emacs-devel@gnu.org; Wed, 05 Oct 2005 17:36:04 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ENGvi-0006h9-Oo for emacs-devel@gnu.org; Wed, 05 Oct 2005 17:36:02 -0400 Original-Received: from [212.227.126.188] (helo=moutng.kundenserver.de) by monty-python.gnu.org with esmtp (Exim 4.34) id 1ENGvi-0002yc-Nq for emacs-devel@gnu.org; Wed, 05 Oct 2005 17:36:03 -0400 Original-Received: from p5788AFB3.dip0.t-ipconnect.de [87.136.175.179] (helo=rigel.site) by mrelayeu.kundenserver.de with ESMTP (Nemesis), id 0ML2ov-1ENGvh1Mf9-0001JY; Wed, 05 Oct 2005 23:36:01 +0200 Original-Received: from localhost (localhost [127.0.0.1]) by rigel.site (8.12.10/8.12.10/SuSE Linux 0.7) with ESMTP id j95KeQFu001836 for ; Wed, 5 Oct 2005 22:40:26 +0200 Original-To: emacs-devel@gnu.org X-Mailer: Mew version 4.2.50 on Emacs 22.0.50.1 / Mule 5.0 (SAKAKI) X-Provags-ID: kundenserver.de abuse@kundenserver.de login:2dc398bc694a1e60948148ba0a42c0da 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:43589 Archived-At: [GNU Emacs 22.0.50.1 (i686-pc-linux-gnu, GTK+ Version 2.2.4) of 2005-06-27] Consider the following text in text-mode: ---- It's not necessary to buy a new computer just for a DVD drive... Today, the most important part of a computer is the amount of RAM -- the more, the better. It's far more important than a fast CPU. ---- Now set the column width to 70 chars and execute `fill-paragraph' -- the string `drive...' should be moved to the first line, since the last period is followed by two spaces, but nothing happens. Why? This looks like a bug to me. Werner