From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/28745 Path: main.gmane.org!not-for-mail From: Hamish Macdonald Newsgroups: gmane.emacs.gnus.general Subject: nnheader.el Date: Thu, 13 Jan 2000 09:10:54 -0500 Sender: owner-ding@hpc.uh.edu Message-ID: <6wd7r6jc41.fsf_-_@rhea.micro.lucent.com> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035165537 31426 80.91.224.250 (21 Oct 2002 01:58:57 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 01:58:57 +0000 (UTC) Return-Path: Original-Received: from spinoza.math.uh.edu (spinoza.math.uh.edu [129.7.128.18]) by mailhost.sclp.com (Postfix) with ESMTP id 42F8DD051E for ; Thu, 13 Jan 2000 09:57:13 -0500 (EST) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by spinoza.math.uh.edu (8.9.1/8.9.1) with ESMTP id IAB06377; Thu, 13 Jan 2000 08:56:44 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Thu, 13 Jan 2000 08:56:38 -0600 (CST) Original-Received: from Post-Office.UH.EDU (Post-Office.UH.EDU [129.7.1.20]) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id IAA12262 for ; Thu, 13 Jan 2000 08:56:24 -0600 (CST) Original-Received: from mailhost.sclp.com (sclp3.sclp.com [204.252.123.139]) by Post-Office.UH.EDU (PMDF V5.2-32 #40812) with ESMTP id <0FOA00NJF43GUE@Post-Office.UH.EDU> for ding@hpc.uh.edu; Thu, 13 Jan 2000 08:54:53 -0600 (CST) Original-Received: from hoemlsrv.firewall.lucent.com (hoemail1.lucent.com [192.11.226.161]) by mailhost.sclp.com (Postfix) with ESMTP id 94D49D051F for ; Thu, 13 Jan 2000 09:10:39 -0500 (EST) Original-Received: from hoemlsrv.firewall.lucent.com (localhost [127.0.0.1]) by hoemlsrv.firewall.lucent.com (Pro-8.9.3/8.9.3) with ESMTP id JAA24958 for ; Thu, 13 Jan 2000 09:10:39 -0500 (EST) Original-Received: from paris-lucent.lucent.com (h135-121-208-7.lucent.com [135.121.208.7]) by hoemlsrv.firewall.lucent.com (Pro-8.9.3/8.9.3) with ESMTP id JAA24943 for ; Thu, 13 Jan 2000 09:10:38 -0500 (EST) Original-Received: from rhea.micro.lucent.com (rhea.micro.lucent.com [135.121.208.165]) by paris-lucent.lucent.com (8.9.1b+Sun/8.9.1) with ESMTP id JAA03529 for ; Thu, 13 Jan 2000 09:09:46 -0500 (EST) Original-Received: (from hamishm@localhost) by rhea.micro.lucent.com (8.9.1b+Sun/8.9.1) id JAA08818; Thu, 13 Jan 2000 09:10:54 -0500 (EST) In-reply-to: David Hedbor's message of "05 Jan 2000 14:33:24 -0800" Original-To: ding@gnus.org User-Agent: Gnus/5.0802 (Gnus v5.8.2) XEmacs/21.1 (Biscayne) Original-Lines: 23 X-Authentication-warning: rhea.micro.lucent.com: hamishm set sender to hamishm@lucent.com using -f Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:28745 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:28745 In gnus 5.8.2, nnheader.el contains the following code (at line 48): (eval-and-compile (autoload 'nnmail-message-id "nnmail") (autoload 'mail-position-on-field "sendmail") (autoload 'message-remove-header "message") (autoload 'cancel-function-timers "timers") (autoload 'gnus-point-at-eol "gnus-util") (autoload 'gnus-delete-line "gnus-util") (autoload 'gnus-buffer-live-p "gnus-util")) The autoload of cancel-function-timers is incorrect under XEmacs-21.1.7. XEmacs already provides an autoload for cancel-function-timers if the fsf-compat package is present. There is no "timers" lisp library available, so any use of cancel-function-timers will result in error. Luckily my gnus usage pattern never results in a call to cancel-function-timers, but other packages that I try that attempt to use it fail. Perhaps that autoload should be conditionalized on (featurep 'xemacs) ? Regards, Hamish.