From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/21195 Path: main.gmane.org!not-for-mail From: Hrvoje Niksic Newsgroups: gmane.emacs.gnus.general Subject: Re: nnmail-fetched-sources (was: Re: Background mail scannig? - works now, kinda...) Date: 14 Feb 1999 20:24:33 +0100 Sender: owner-ding@hpc.uh.edu Message-ID: <871zjs94b2.fsf@pc-hrvoje.srce.hr> References: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035159347 21774 80.91.224.250 (21 Oct 2002 00:15:47 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 00:15:47 +0000 (UTC) Return-Path: Original-Received: from spinoza.math.uh.edu (spinoza.math.uh.edu [129.7.128.18]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id OAA09401 for ; Sun, 14 Feb 1999 14:26:08 -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 NAB11572; Sun, 14 Feb 1999 13:24:44 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Sun, 14 Feb 1999 13:25:31 -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 NAA14358 for ; Sun, 14 Feb 1999 13:25:09 -0600 (CST) Original-Received: from pc-hrvoje.srce.hr (mail@pc-hrvoje.srce.hr [161.53.2.132]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id OAA09391 for ; Sun, 14 Feb 1999 14:25:00 -0500 (EST) Original-Received: from hniksic by pc-hrvoje.srce.hr with local (Exim 2.05 #1 (Debian)) id 10C79e-000477-00; Sun, 14 Feb 1999 20:24:34 +0100 Original-To: ding@gnus.org X-Attribution: Hrvoje X-Face: &{dT~)Pu6V<0y?>3p$;@vh\`C7xB~A0T-J%Og)J,@-1%q6Q+, gs<-9M#&`I8cJp2b1{vPE|~+JE+gx;a7%BG{}nY^ehK1"q#rG O,Rn1A_Cy%t]V=Brv7h writes: > I've seen this error. In pgnus-0.76, if I M-g on a group in the > group buffer I'm told the same (non-existent variable). It seems > somehow that the relevant parts of nnmail are not being autoloaded > (?). For me "M-x load-library nnmail" fixes the problem. > > The same seems to be true of gnus-draft (resending doesn't work 'til > I M-x load-libary gnus-draft...) These could be more instances of the infamous autoloading-within-let problem, as demonstrated by: (let ((some-variable nil)) ... code that happens to autoload the module where some-variable is defined... ) ;; some-variable is now unbound!