From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/7826 Path: main.gmane.org!not-for-mail From: Steven L Baur Newsgroups: gmane.emacs.gnus.general Subject: Re: some still bad Date: 06 Sep 1996 19:00:37 -0700 Sender: steve@miranova.com Message-ID: References: <87loenf6py.fsf@mharnois.sbt.net> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 (generated by tm-edit 7.82) Content-Type: text/plain; charset=US-ASCII X-Trace: main.gmane.org 1035148085 8670 80.91.224.250 (20 Oct 2002 21:08:05 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 21:08:05 +0000 (UTC) Return-Path: ding-request@ifi.uio.no Original-Received: from ifi.uio.no (ifi.uio.no [129.240.64.2]) by deanna.miranova.com (8.7.5/8.6.9) with SMTP id UAA19985 for ; Fri, 6 Sep 1996 20:02:36 -0700 Original-Received: from deanna.miranova.com (root@deanna.miranova.com [206.190.83.1]) by ifi.uio.no with ESMTP (8.6.11/ifi2.4) id for ; Sat, 7 Sep 1996 04:51:06 +0200 Original-Received: (from steve@localhost) by deanna.miranova.com (8.7.5/8.6.9) id TAA19419; Fri, 6 Sep 1996 19:00:38 -0700 Original-To: ding@ifi.uio.no X-Url: http://www.miranova.com/%7Esteve/ Mail-Copies-To: never X-Face: #!T9!#9s-3o8)*uHlX{Ug[xW7E7Wr!*L46-OxqMu\xz23v|R9q}lH?cRS{rCNe^'[`^sr5" f8*@r4ipO6Jl!:Ccqp:9I OSS'2{-)-4wBnVeg0S\O4Al@)uC[pD|+ In-Reply-To: Michael Harnois's message of 06 Sep 1996 20:34:49 -0500 Original-Lines: 40 X-Mailer: Red Gnus v0.27/XEmacs 19.14 Xref: main.gmane.org gmane.emacs.gnus.general:7826 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:7826 >>>>> "Michael" == Michael Harnois writes: Michael> Alas, alack, and ah, s*&# ... as of 0.27 read-active-file Michael> 'some still exhibits the same misbehavior on native nntp Michael> groups ... I know you're getting tired of hearing about this Michael> ... The test for whether an nntp server groks LIST ACTIVE group is bogus. The workaround for now is to hardcode the test: (setq nntp-server-list-active-group nil) On another note ... The following patch is one way to fix the gnus-make-directory botch: =================================================================== RCS file: RCS/gnus-util.el,v retrieving revision 1.10 diff -u -r1.10 gnus-util.el --- gnus-util.el 1996/09/05 19:00:59 1.10 +++ gnus-util.el 1996/09/06 05:39:07 @@ -538,10 +538,11 @@ (defun gnus-make-directory (directory) "Make DIRECTORY (and all its parents) if it doesn't exist." - (when (not (file-exists-p directory)) + (if (file-exists-p directory) + t (make-directory directory t) t)) - + (provide 'gnus-util) ;;; gnus-util.el ends here -- steve@miranova.com baur Unsolicited commercial e-mail will be billed at $250/message. What are the last two letters of "doesn't" and "can't"? Coincidence? I think not.