From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/14433 Path: main.gmane.org!not-for-mail From: Colin Rafferty Newsgroups: gmane.emacs.gnus.general Subject: Re: two minor patches, and expiry inefficiency Date: 05 Mar 1998 12:28:38 -0500 Sender: owner-ding@hpc.uh.edu Message-ID: References: <9803050221.AA07124@phiphi.cygnus.com> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 (generated by tm-edit 7.108) Content-Type: text/plain; charset=US-ASCII X-Trace: main.gmane.org 1035153625 15053 80.91.224.250 (20 Oct 2002 22:40:25 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 22:40:25 +0000 (UTC) Return-Path: Original-Received: from xemacs.org (xemacs.cs.uiuc.edu [128.174.252.16]) by altair.xemacs.org (8.8.8/8.8.8) with ESMTP id JAA17513 for ; Thu, 5 Mar 1998 09:36:04 -0800 Original-Received: from gizmo.hpc.uh.edu (gizmo.hpc.uh.edu [129.7.102.31]) by xemacs.org (8.8.5/8.8.5) with ESMTP id LAA06601 for ; Thu, 5 Mar 1998 11:31:28 -0600 (CST) Original-Received: from sina.hpc.uh.edu (sina.hpc.uh.edu [129.7.3.5]) by gizmo.hpc.uh.edu (8.7.6/8.7.3) with ESMTP id MAN12088; Thu, 5 Mar 1998 12:06:08 -0600 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Thu, 05 Mar 1998 11:29:50 -0600 (CST) Original-Received: from claymore.vcinet.com (claymore.vcinet.com [208.205.12.23]) by sina.hpc.uh.edu (8.7.3/8.7.3) with SMTP id LAA17074 for ; Thu, 5 Mar 1998 11:29:41 -0600 (CST) Original-Received: (qmail 20513 invoked by uid 504); 5 Mar 1998 17:29:21 -0000 Original-Received: (qmail 20508 invoked from network); 5 Mar 1998 17:29:21 -0000 Original-Received: from hudutilf01.ml.com (HELO hudutilgw.ml.com) (198.242.49.31) by claymore.vcinet.com with SMTP; 5 Mar 1998 17:29:20 -0000 Original-Received: from ml2.ml.com ([199.201.37.130]) by hudutilgw.ml.com (8.8.7/8.8.7/MLgwo-3.05) with ESMTP id MAA28956 for ; Thu, 5 Mar 1998 12:29:59 -0500 (EST) Original-Received: from pme-mail.spspme.ml.com (pme-mail.spspme.ml.com [169.242.123.95]) by ml2.ml.com (8.8.7/8.8.7/MLml4-2.08) with SMTP id MAA07627 for ; Thu, 5 Mar 1998 12:28:42 -0500 (EST) Original-Received: from spssunp.spspme.ml.com by pme-mail.spspme.ml.com (SMI-8.6/ML55SMX-1.02) id MAA13883; Thu, 5 Mar 1998 12:27:59 -0500 Original-Received: by spssunp.spspme.ml.com (SMI-8.6/SMI-SVR4) id MAA02230; Thu, 5 Mar 1998 12:28:40 -0500 Original-To: (ding) GNUS Mailing List X-Face: y,o:AU/bfCrS+zS/W"^puB!rT!G7?U1Mvp1Hd{6h^>X4@Xp5,|g+rG>4gv/iy^&x9`k#s!]X~{]Js>@A4c}4Z"Ct7=#1nPS:?mrWH8c#>$)>/Wc5yuX_OFO1(4cZM{LvsKWVQSl~/i>!n[-B*i-alq[/m\bsdy;W4p(_ic;$BE.oG@eJf@sr#x#}FT<=H8Ozu%g;JpVz:v_~vt[>ef/MeNeo3~D^R]]*bB7{HB|E1$wfMzw X-Y-Zippy: Now that I have my ``APPLE,'' I comprehend COST ACCOUNTING!! In-Reply-To: Ken Raeburn's message of "Wed, 4 Mar 1998 21:21:50 -0500" Original-Lines: 29 X-Mailer: Quassia Gnus v0.29/XEmacs 20.5(beta29) - "Loashan" Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:14433 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:14433 Ken Raeburn writes: > Sat Feb 28 23:33:40 1998 Ken Raeburn > * nnml.el (nnml-article-to-file): Don't add extra "/" when > building pathname. > Index: nnml.el > =================================================================== > RCS file: /0h/users/raeburn/.cvsfiles/lib/elisp/gnus/lisp/nnml.el,v > retrieving revision 1.1.1.39 > diff -p -u -r1.1.1.39 nnml.el > --- nnml.el 1998/02/26 04:10:28 1.1.1.39 > +++ nnml.el 1998/03/05 01:51:07 > @@ -480,7 +480,7 @@ all. This may very well take some time. > ;; Just to make sure nothing went wrong when reading over NFS -- > ;; check once more. > (when (file-exists-p > - (setq file (concat nnml-current-directory "/" > + (setq file (concat nnml-current-directory > (number-to-string article)))) > (nnml-update-file-alist t) > file)))) This should probably use `expand-file-name' instead of `concat', so that it totally avoids all the the issues of trailing slashes. -- Colin