From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Mathias Dahl Newsgroups: gmane.emacs.help Subject: Re: Emacs as an external flowed-text editor? Date: Wed, 14 Jun 2006 17:44:06 +0200 Message-ID: References: <87lks2ociv.fsf@chemnitz.dialup.cs.tu-berlin.de> <87y7w2w57b.fsf@linux.site> <87d5dbommx.fsf@chemnitz.dialup.cs.tu-berlin.de> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1150303253 5886 80.91.229.2 (14 Jun 2006 16:40:53 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 14 Jun 2006 16:40:53 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Jun 14 18:40:49 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 1FqYPs-0007oU-36 for geh-help-gnu-emacs@m.gmane.org; Wed, 14 Jun 2006 18:40:28 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FqYPr-0003T6-GP for geh-help-gnu-emacs@m.gmane.org; Wed, 14 Jun 2006 12:40:27 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!postnews.google.com!news2.google.com!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 26 Original-X-Trace: individual.net J6p3L5a5LLhiSp4i/2QUsQnbKZzQvqwyJUGMl9vLcSNx5GRNfR User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (windows-nt) Cancel-Lock: sha1:OKehZsdm2m9uEShz+tozldm8hZM= Original-Xref: shelby.stanford.edu gnu.emacs.help:139845 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:35471 Archived-At: Bjoern Voigt writes: > Because flow-fill.el is already in Emacs/Gnus it's clear that Emacs can > display and compose flowed text. But I don't know what I have to write > into my .emacs file to activate this mode. I looked at flow-fill.el now and I don't see any mode in it. > The "fill-flowed" function is > not interactively avaliable after loading gnus/flow-fill.el with > "load-file", "autoload" or "require". What about just adding an interactive wrapper function so that you can flow-fill the text when you want? Something like this: (defun my-fill-flowed () "Call fill-flowed in flow-fill.el." (interactive) (require 'flow-fill) (fill-flowed)) You can probably arrange for that (or the normal `fill-flowed' of course) to be called when certain files or buffers open if you want, if there is any such "rule" that you could match against. /Mathias