Gnus development mailing list
 help / color / mirror / Atom feed
From: Steven L Baur <steve@miranova.com>
Subject: Re: Red Gnus v0.1 is released
Date: 30 Jul 1996 18:36:28 -0700	[thread overview]
Message-ID: <m2enltmcf7.fsf@deanna.miranova.com> (raw)
In-Reply-To: Sudish Joseph's message of 30 Jul 1996 20:25:59 -0400

Sudish's patch didn't help me at all :-(.

gnus-default-nntp-server is defined too late in gnus-load.el, so I
tried this patch:
===================================================================
RCS file: RCS/gnus-load.el,v
retrieving revision 1.1
diff -u -r1.1 gnus-load.el
--- gnus-load.el	1996/07/30 23:53:48	1.1
+++ gnus-load.el	1996/07/31 01:11:35
@@ -34,6 +34,13 @@
 ;; Site dependent variables.  These variables should be defined in
 ;; paths.el.
 
+(defvar gnus-default-nntp-server nil
+  "Specify a default NNTP server.
+This variable should be defined in paths.el, and should never be set
+by the user.
+If you want to change servers, you should use `gnus-select-method'.
+See the documentation to that variable.")
+
 ;; Don't touch this variable.
 (defvar gnus-nntp-service "nntp"
   "*NNTP service name (\"nntp\" or 119).
@@ -139,13 +146,6 @@
 you could set this variable:
 
 (setq gnus-secondary-select-methods '((nnml \"\")))")
-
-(defvar gnus-default-nntp-server nil
-  "Specify a default NNTP server.
-This variable should be defined in paths.el, and should never be set
-by the user.
-If you want to change servers, you should use `gnus-select-method'.
-See the documentation to that variable.")
 
 (defvar gnus-backup-default-subscribed-newsgroups
   '("news.announce.newusers" "news.groups.questions" "gnu.emacs.gnus")


I'm still bombing in two places:
While compiling toplevel forms in file /usr/lib/xemacs/rgnus-0.01/lisp/earcon.el:
  !! End of stream ((#<buffer " *Compiler Input*">))

I can't figure this one out, since earcon.el hasn't changed in several
versions (and omits the patch I recently submitted :-( to boot).

Also this code is definitely incorrect:
nndoc.el:
(defun nndoc-add-type (definition &optional position)  
  "Add document DEFINITION to the list of nndoc document definitions.
If POSITION is nil or `last', the definition will be added
as the last checked definition, if t or `first', add as the
first definition, and if any other symbol, add after that
symbol in the alist."        
  (cond                                                             
   ((or (null position) (eq position 'last))                              
    (setq nndoc-type-alist (nconc nndoc-type-alist (list definition))))
   ((or (eq position t) (eq position 'first))
    (push definition nndoc-type-alist))             
   (t                                                                  
    (let ((list (memq (assq position nndoc-type-alist))))
                 ^^^^
      (unless list                                              
        (error "No such position: %s" position))                 
      (setcdr list (cons definition (cdr list)))))))


memq requires two parameters and not one.  This is a new function, so
I'm can't tell from past code what this is supposed to accomplish
exactly.
-- 
steve@miranova.com baur
Unsolicited commercial e-mail will be proofread for $250/hour.
Andrea Seastrand: For your vote on the Telecom bill, I will vote for anyone
except you in November.


  reply	other threads:[~1996-07-31  1:36 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
1996-07-30 21:03 Lars Magne Ingebrigtsen
1996-07-31  0:23 ` Steven L Baur
1996-07-31  0:25 ` Sudish Joseph
1996-07-31  1:36   ` Steven L Baur [this message]
1996-07-31  3:35     ` Sudish Joseph
1996-07-31  7:44       ` Patch for async fetch munging articles bug Sudish Joseph
1996-07-31 10:59         ` Lars Magne Ingebrigtsen
1996-07-31 11:17   ` Red Gnus v0.1 is released Lars Magne Ingebrigtsen
1996-07-31  1:16 ` Carsten Leonhardt
1996-07-31  3:40   ` Sudish Joseph
1996-07-31  7:48     ` Sudish Joseph
1996-07-31  8:56 ` Christian Viken

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=m2enltmcf7.fsf@deanna.miranova.com \
    --to=steve@miranova.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).