From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/54501 Path: main.gmane.org!not-for-mail From: sigurd@12move.de (Karl =?iso-8859-1?q?Pfl=E4sterer?=) Newsgroups: gmane.emacs.gnus.general Subject: Re: Missing washing function Date: Tue, 28 Oct 2003 21:58:18 +0100 Organization: Lemis World Sender: ding-owner@lists.math.uh.edu Message-ID: References: NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: sea.gmane.org 1067375159 30411 80.91.224.253 (28 Oct 2003 21:05:59 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 28 Oct 2003 21:05:59 +0000 (UTC) Original-X-From: ding-owner+M3042@lists.math.uh.edu Tue Oct 28 22:05:57 2003 Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1AEb2L-0001pT-00 for ; Tue, 28 Oct 2003 22:05:57 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 1AEazb-0000YF-00; Tue, 28 Oct 2003 15:03:07 -0600 Original-Received: from justine.libertine.org ([66.139.78.221]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1AEazT-0000Y9-00 for ding@lists.math.uh.edu; Tue, 28 Oct 2003 15:02:59 -0600 Original-Received: from quimby.gnus.org (quimby.gnus.org [80.91.224.244]) by justine.libertine.org (Postfix) with ESMTP id 3A7083A006D for ; Tue, 28 Oct 2003 15:02:58 -0600 (CST) Original-Received: from news by quimby.gnus.org with local (Exim 3.35 #1 (Debian)) id 1AEazR-00089q-00 for ; Tue, 28 Oct 2003 22:02:57 +0100 Original-To: ding@gnus.org Original-Path: wintendo.pflaesterer.de!not-for-mail Original-Newsgroups: gnus.ding Original-Lines: 57 Original-NNTP-Posting-Host: p62.246.27.148.tisdip.tiscali.de Original-X-Trace: quimby.gnus.org 1067374977 31361 62.246.27.148 (28 Oct 2003 21:02:57 GMT) Original-X-Complaints-To: usenet@quimby.gnus.org Original-NNTP-Posting-Date: Tue, 28 Oct 2003 21:02:57 +0000 (UTC) X-Face: #iIcL\6>Qj/G*F@AL9T*v/R$j@7Q`6#FU&Flg6u6aVsLdWf(H$U5>:;&*>oy>jOIWgA%8w* A!V7X`\fEGoQ[@D'@i^*p3FCC6&Rg~JT/H_*MOX;"o~flADb8^ Mail-Copies-To: never User-Agent: Gnus/5.1003 (Gnus v5.10.3) Hamster/2.0.3.0 Cancel-Lock: sha1:t3yhbucNK/QBQ2+FykFg84iw8zA= Precedence: bulk Xref: main.gmane.org gmane.emacs.gnus.general:54501 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:54501 On 28 Oct 2003, Karl Eichwalder <- ke@gnu.franken.de wrote: > sigurd@12move.de (Karl Pfl=E4sterer) 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=3Dflowed; 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=20 ,----[ Message-ID: ] | Bisher: |=20 | W Q gnus-article-fill-long-lines | W w gnus-article-fill-cited-article |=20 | Nachher (nur als Beispiel): |=20 | W Q gnus-article-fill-long-lines | W w gnus-article-fill-cited-article | (Diese sollte man aus Komptibilit=E4tsgr=FCnden 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 --=20 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.