From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matt Lundin Subject: Re: lists and fill-region Date: Wed, 09 Mar 2011 19:32:33 -0500 Message-ID: <87pqpz24ta.fsf@fastmail.fm> References: <87d3m0m6gy.fsf@fastmail.fm> <87oc5j25xr.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from [140.186.70.92] (port=41563 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PxTnw-0003QS-R8 for emacs-orgmode@gnu.org; Wed, 09 Mar 2011 19:32:37 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PxTnv-0000GT-II for emacs-orgmode@gnu.org; Wed, 09 Mar 2011 19:32:36 -0500 Received: from out5.smtp.messagingengine.com ([66.111.4.29]:54674) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PxTnv-0000GH-DJ for emacs-orgmode@gnu.org; Wed, 09 Mar 2011 19:32:35 -0500 In-Reply-To: <87oc5j25xr.fsf@gmail.com> (Nicolas's message of "Thu, 10 Mar 2011 01:08:16 +0100") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: michael hohn Cc: emacs-orgmode@gnu.org Nicolas writes: > Hello, > > Matt Lundin writes: > >> A related bug: >> >>> - one >>> - very, very, very, very, very, very, very, very, very, very, very, >>> very, long >>> - short >> >> If one calls unfill-paragraph on the "very, very" line above, nothing >> happens. In the past, unfill paragraph would turn the item into a single >> line, which is very convenient for fixing improperly indented multi-line >> items. > > Could you tell me if the problem with unfill-paragraph persists? The problem is solved in the most recent git. Thanks! > If it does, as there is no unfill-paragraph in standard Emacs, could > you provide the definition you gave it? You are right. Sometimes it is difficult to remember where Emacs begins and one's own customizations end. :) Here is unfill-paragraph (grabbed from the emacswiki, I believe): --8<---------------cut here---------------start------------->8--- (defun unfill-paragraph () (interactive) (let ((fill-column (point-max))) (fill-paragraph nil))) --8<---------------cut here---------------end--------------->8--- Thanks again, Matt