From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "B. T. Raven" Newsgroups: gmane.emacs.help Subject: Intrusive spaces Date: Wed, 7 Jun 2006 11:20:16 -0500 Organization: UseNetServer.com Message-ID: <12e5c$4486fcc6$49edeed$27185@DIALUPUSA.NET> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1149698551 18732 80.91.229.2 (7 Jun 2006 16:42:31 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 7 Jun 2006 16:42:31 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Jun 07 18:42:30 2006 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1Fo166-0000te-NX for geh-help-gnu-emacs@m.gmane.org; Wed, 07 Jun 2006 18:41:34 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Fo166-0008Bg-3k for geh-help-gnu-emacs@m.gmane.org; Wed, 07 Jun 2006 12:41:34 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news.tele.dk!news.tele.dk!small.news.tele.dk!news.netcologne.de!newsfeed-fusi2.netcologne.de!208.49.83.154.MISMATCH!atl-c08.usenetserver.com!news.usenetserver.com!pc02.usenetserver.com!DIALUPUSA.NET!not-for-mail Original-Newsgroups: gnu.emacs.help X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Original-X-Complaints-To: abuse@usenetserver.com Original-Lines: 31 Original-X-Trace: 12e5c4486fcc6a13b7b4827185 Original-Xref: shelby.stanford.edu gnu.emacs.help:139724 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:35348 Archived-At: I ran M-| bc on this region: define fact(n) { if (n <= 1) return (n); return (n * fact(n-1)); } fact(666) The resulting very big number fills about 24 lines each terminated with C-j. I then ran the following function (defun unfill-paragraph () ;; bound to C-x M-q "Do the opposite of fill-paragraph; stuff all lines in the current paragraph into a single long line." (interactive) (let ((fill-column 90002000)) (fill-paragraph nil))) on those 24 lines. Instead of joining them seamlessly, it puts in a space where the C-j had been. I haven't noticed this happening with ordinary text before. This happens with 21.3 on dos shell msw98. ??? Thanks, Ed --