home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / gnu / lucid / bug-lucid-emacs / text0220.txt < prev    next >
Encoding:
Text File  |  1993-07-04  |  1.3 KB  |  42 lines

  1. I'm getting a bit fed up of this "bug" which seem to appear in all versions of gnus.
  2. FSF 19 has a hack which allows you to get round it but really there is a better way.
  3. Basically if you specify gnus-nntp-service as nil then gnus still looks for a nntp
  4. server and prompts you for one if gnus-nntp-server is nil. If you then reply with
  5. a null string it uses the local host. Really it should get things right automatically.
  6. Here is a fix which cures this.
  7.  
  8. andy
  9.  
  10. Andy Piper                    email: ajp@uk.ac.cam.eng
  11. Cambridge University Engineering Department     tel: +44 223 33 2754
  12. Trumpington St
  13. Cambridge, UK
  14.  
  15. *** gnus.el     Mon Mar 15 15:45:24 1993
  16. --- gnus.el     Fri Jun  4 16:43:47 1993
  17. ***************
  18. *** 5106,5113 ****
  19.         ;; Stream is already opened.
  20.         nil
  21.       ;; Open NNTP server.
  22. !     (if (or confirm
  23. !           (null gnus-nntp-server))
  24.         (if (and (boundp 'gnus-secondary-servers) gnus-secondary-servers)
  25.             ;; Read server name with completion.
  26.             (setq gnus-nntp-server
  27. --- 5106,5114 ----
  28.         ;; Stream is already opened.
  29.         nil
  30.       ;; Open NNTP server.
  31. !     (if (and gnus-nntp-service
  32. !            (or confirm
  33. !                (null gnus-nntp-server)))
  34.         (if (and (boundp 'gnus-secondary-servers) gnus-secondary-servers)
  35.             ;; Read server name with completion.
  36.             (setq gnus-nntp-server
  37.  
  38.  
  39. ---
  40.  
  41.  
  42.