help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Intrusive spaces


From: Mathias Dahl
Subject: Re: Intrusive spaces
Date: Thu, 08 Jun 2006 10:01:04 +0200
User-agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (windows-nt)

"B. T. Raven" <ecinmn@alcisp.com> writes:

> 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.

I agree with the other reply, that I would expect a space to separate
what was originally a newline character.

Anyway, why not just search and replace all newlines with an empty
string. Something like this should work:

(defun replace-newline-with-nothing ()
  (while (search-forward-regexp "\n" nil t)
    (replace-match "")))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]