Gnus development mailing list
 help / color / mirror / Atom feed
From: sigurd@12move.de (Karl Pflästerer)
Subject: Re: Missing washing function
Date: Tue, 28 Oct 2003 21:58:18 +0100	[thread overview]
Message-ID: <m3brs1f5ii.fsf@hamster.pflaesterer.de> (raw)
In-Reply-To: <sh4qxtrwh0.fsf@tux.gnu.franken.de>

On 28 Oct 2003, Karl Eichwalder <- ke@gnu.franken.de wrote:

> sigurd@12move.de (Karl Pflästerer) writes:

>> I wrote some time ago about the same problem in the german gnus NG.  I
>> had first written a new washing function which treated an article as
>> format=flowed; afterwards I saw that `W Q'
>> (`gnus-article-fill-long-lines') does a good job there.  Try it first.

> In this case `W Q' does nothing.  Maybe, it's time to update gnus; I'm
> using a CVS version older than 2003-05-19.

Maybe.  If it doesn't work try the following function.  I use it
sometimes and it works.  The keybindings are (still) free.  Reiner
proposed in that thread that if that function should make it in Gnus
some keybindings should be changed.

here is his proposal 
,----[ Message-ID: <v9adenikkj.fsf@marauder.physik.uni-ulm.de> ]
| Bisher:
| 
| W Q		gnus-article-fill-long-lines
| W w		gnus-article-fill-cited-article
| 
| Nachher (nur als Beispiel):
| 
| W Q		gnus-article-fill-long-lines
| W w		gnus-article-fill-cited-article
| (Diese sollte man aus Komptibilitätsgründen wohl nicht wegnehmen.)
| W F L		gnus-article-fill-long-lines
| W F l		gnus-article-fill-cited-article
| W F F		gnus-article-fill-flowed
`----


(defun gnus-article-fill-flowed ()
  (interactive)
  (save-excursion
    (set-buffer gnus-article-buffer)
    (save-restriction
      (let ((buffer-read-only nil))
	(gnus-narrow-to-body)
	(fill-flowed)))))

(define-key gnus-summary-wash-map "WF" 'gnus-article-fill-flowed)
(define-key gnus-summary-mode-map "WF" 'gnus-article-fill-flowed)


Does this help?

   KP

-- 
You know you've been sitting in front of your Lisp machine too long
when you go out to the junk food machine and start wondering how to
make it give you the CADR of Item H so you can get that yummie
chocolate cupcake that's stuck behind the disgusting vanilla one.



  reply	other threads:[~2003-10-28 20:58 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-10-25 17:43 Karl Eichwalder
2003-10-28  0:51 ` Karl Pflästerer
2003-10-28 19:30   ` Karl Eichwalder
2003-10-28 20:58     ` Karl Pflästerer [this message]
2003-10-28 22:01       ` Jesper Harder
2003-10-29  1:50         ` Karl Pflästerer
2003-10-30 19:52           ` Karl Eichwalder

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=m3brs1f5ii.fsf@hamster.pflaesterer.de \
    --to=sigurd@12move.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).