Gnus development mailing list
 help / color / mirror / Atom feed
* some still bad
@ 1996-09-07  1:34 Michael Harnois
  1996-09-07  2:00 ` Steven L Baur
  0 siblings, 1 reply; 2+ messages in thread
From: Michael Harnois @ 1996-09-07  1:34 UTC (permalink / raw)


Alas, alack, and ah, s*&# ... as of 0.27 read-active-file 'some still
exhibits the same misbehavior on native nntp groups ... I know you're
getting tired of hearing about this ...

+  Michael D. Harnois           +  The Christian ideal has not been      +
+  Pastor, computer nerd,       +  tried and found wanting; it has been  +
+  Linux user, Havanese owner   +  found difficult and left untried.     + 
+  mharnois@sbt.net             +          --G. K. Chesterton            +


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: some still bad
  1996-09-07  1:34 some still bad Michael Harnois
@ 1996-09-07  2:00 ` Steven L Baur
  0 siblings, 0 replies; 2+ messages in thread
From: Steven L Baur @ 1996-09-07  2:00 UTC (permalink / raw)


>>>>> "Michael" == Michael Harnois <mharnois@sbt.net> 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.


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~1996-09-07  2:00 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1996-09-07  1:34 some still bad Michael Harnois
1996-09-07  2:00 ` Steven L Baur

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).