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

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

Re: How to get all paragraphs in list?


From: Alessandro Bertulli
Subject: Re: How to get all paragraphs in list?
Date: Mon, 05 Sep 2022 11:13:29 +0200
User-agent: mu4e 1.8.9; emacs 29.0.50

Jean Louis <bugs@gnu.support> writes:

> (defun join-lines ()
>   "Joins lines of a paragraph of 100000 chars."
>   (interactive)
>   (let ((old fill-column))
>     (setq fill-column 100000)
>     (fill-paragraph nil)
>     (setq fill-column old)))

Sorry I don't have an answer to your question, but I wondered: would it
be better to have fill-column set to its maximum value? Which, as far as
I found, is (point-max)? Here is a SE answer I found
https://emacs.stackexchange.com/a/8181/29817

Alessandro



reply via email to

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