From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/19104 Path: main.gmane.org!not-for-mail From: Jan Vroonhof Newsgroups: gmane.emacs.gnus.general Subject: Re: Bug sending messages unplugged Date: 24 Nov 1998 11:03:56 +0100 Sender: owner-ding@hpc.uh.edu Message-ID: References: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 X-Trace: main.gmane.org 1035157515 9868 80.91.224.250 (20 Oct 2002 23:45:15 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 23:45:15 +0000 (UTC) Return-Path: Original-Received: from karazm.math.uh.edu (karazm.math.uh.edu [129.7.128.1]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id FAA24370 for ; Tue, 24 Nov 1998 05:05:53 -0500 (EST) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by karazm.math.uh.edu (8.9.1/8.9.1) with ESMTP id EAB02538; Tue, 24 Nov 1998 04:04:40 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Tue, 24 Nov 1998 04:04:28 -0600 (CST) Original-Received: from sclp3.sclp.com (root@sclp3.sclp.com [204.252.123.139]) by sina.hpc.uh.edu (8.7.3/8.7.3) with ESMTP id EAA28404 for ; Tue, 24 Nov 1998 04:04:17 -0600 (CST) Original-Received: from frege.math.ethz.ch (root@frege-d-math-north-g-west.math.ethz.ch [129.132.145.3]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id FAA24343 for ; Tue, 24 Nov 1998 05:04:08 -0500 (EST) Original-Received: from bolzano (vroonhof@bolzano [129.132.146.140]) by frege.math.ethz.ch (8.8.8/Main-STAT-mailer) with ESMTP id LAA19712 for ; Tue, 24 Nov 1998 11:03:47 +0100 (MET) Original-Received: (vroonhof@localhost) by bolzano (SMI-8.6/D-MATH-client) id LAA26062; Tue, 24 Nov 1998 11:03:58 +0100 Original-To: ding@gnus.org In-Reply-To: Wes Hardaker's message of "Mon, 23 Nov 1998 21:54:16 GMT" Original-Lines: 61 User-Agent: Gnus/5.070051 (Pterodactyl Gnus v0.51) XEmacs/21.0 (Pyrenean-pre6) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:19104 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:19104 Wes Hardaker writes: > I submitted a bug report to Lars, and he said its lazy-shot's fault > and I should submit the bug to that author instead. I didn't want to > do that until determining the exact "fault" first, since I suspect > they'd say its was Gnus' fault. It is too late now. I have seen it :-) > >> lazy-shot-fontify-internal(#"> nil nil nil "") > >> lazy-shot-lock-extent(# nil) > >> lazy-shot-redisplay-function(#) It is indeed a Lazy-shot bug. It is fixed in 21.0. Gnus is probably copying parts of the buffer around into strings and lazy-shot does not like that very much. However this is also a good indication Gnus is using buffer-substring somewhere where it probably needs buffer-substring-noproperties. =================================================================== RCS file: /usr/CVSroot/XEmacs/xemacs-packages/oa/edit-utils/lazy-shot.el,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- oa/edit-utils/lazy-shot.el 1998/01/14 06:36:17 1.1 +++ oa/edit-utils/lazy-shot.el 1998/04/18 14:31:24 1.2 @@ -157,7 +157,7 @@ (defun lazy-shot-lock-extent (extent stealth) "Font-lock the EXTENT. Called from redisplay-trigger functions and stealth locking functions" - (when (extent-live-p extent) + (when (and (extent-live-p extent) (null (extent-detached-p extent))) (let ((start (extent-start-position extent)) (end (extent-end-position extent)) (buffer (extent-object extent))) > > Colin> This is very weird. Is this the entire stack trace? It seems a > Colin> little truncated. > > Yes it is, actually. I get them too. The odd thing is that I only > get them when sending news, not mail. > > Anyway, I think what is happening is that gnus places the articles in > a new buffer (*mail* oddly enough, since its news) and then font lock > is swinging on them after that. What I'm not sure of is if its > happening before or after the article gets sent. I think its before > (which is bad) not after (which would be bad for me, because it means > I've sent multiple copies of messages to my newserver because of the > above bug). > > -- > "Ninjas aren't dangerous. They're more afraid of you than you are of them." > -- Jan Vroonhof http://www.math.ethz.ch/~vroonhof/ Mathematik, vroonhof @ math.ethz.ch HG E16, ETH-Zentrum, Tel: +41-1-6325456/25154 Raemistrasse 101, CH-8092 Zuerich. Fax: +41-1-6321085