From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/45817 Path: main.gmane.org!not-for-mail From: Simon Josefsson Newsgroups: gmane.emacs.gnus.general Subject: Re: WARNING: The attached message make Gnus eat all resources Date: Fri, 26 Jul 2002 14:53:01 +0200 Sender: owner-ding@hpc.uh.edu Message-ID: References: NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1027688002 17488 127.0.0.1 (26 Jul 2002 12:53:22 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Fri, 26 Jul 2002 12:53:22 +0000 (UTC) Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by main.gmane.org with esmtp (Exim 3.33 #1 (Debian)) id 17Y4av-0004Xx-00 for ; Fri, 26 Jul 2002 14:53:21 +0200 Original-Received: from sina.hpc.uh.edu ([129.7.128.10] ident=lists) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 17Y4au-0008AL-00; Fri, 26 Jul 2002 07:53:20 -0500 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Fri, 26 Jul 2002 07:53:45 -0500 (CDT) Original-Received: from sclp3.sclp.com (qmailr@sclp3.sclp.com [209.196.61.66]) by sina.hpc.uh.edu (8.9.3/8.9.3) with SMTP id HAA27918 for ; Fri, 26 Jul 2002 07:53:34 -0500 (CDT) Original-Received: (qmail 10957 invoked by alias); 26 Jul 2002 12:53:04 -0000 Original-Received: (qmail 10952 invoked from network); 26 Jul 2002 12:53:03 -0000 Original-Received: from 178.230.13.217.in-addr.dgcsystems.net (HELO yxa.extundo.com) (217.13.230.178) by gnus.org with SMTP; 26 Jul 2002 12:53:03 -0000 Original-Received: from latte.josefsson.org (yxa.extundo.com [217.13.230.178]) (authenticated bits=0) by yxa.extundo.com (8.12.5/8.12.5) with ESMTP id g6QCr1kd028006 for ; Fri, 26 Jul 2002 14:53:02 +0200 Original-To: ding@gnus.org Mail-Copies-To: nobody X-Hashcash: 020726:ding@gnus.org:f082477ee7c38757 In-Reply-To: (Nevin Kapur's message of "Tue, 23 Jul 2002 10:58:53 -0400") Original-Lines: 26 User-Agent: Gnus/5.090007 (Oort Gnus v0.07) Emacs/21.2 (i386-debian-linux-gnu) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:45817 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:45817 Nevin Kapur writes: > The attached message will make Gnus eat all resources for a *long* > time -- I C-g'd after about a minute. Debug on quit suggests > something to do with flow-fill and filladapt in turn. > > On an unrelated note, when I tried to forward the message with C-c > C-f, it stripped out the Content-Type header which made the bug go > away. Does this fix it? Fill-adapt is IMHO evil as it redefines existing elisp functions. --- flow-fill.el.~6.11.~ 2002-06-09 21:47:48.000000000 +0200 +++ flow-fill.el 2002-07-08 15:30:31.000000000 +0200 @@ -135,7 +135,8 @@ (unless sig (condition-case nil (let ((fill-prefix (when quote (concat quote " "))) - (fill-column (eval fill-flowed-display-column))) + (fill-column (eval fill-flowed-display-column)) + filladapt-mode) (fill-region (fill-flowed-point-at-bol) (min (1+ (fill-flowed-point-at-eol)) (point-max)) 'left 'nosqueeze))