Gnus development mailing list
 help / color / mirror / Atom feed
* pop3.el
@ 1999-12-14 13:00 Shigeru OKUMURA
  1999-12-14 14:59 ` pop3.el Stainless Steel Rat
  0 siblings, 1 reply; 4+ messages in thread
From: Shigeru OKUMURA @ 1999-12-14 13:00 UTC (permalink / raw)



This patch is for running properly pop3.el on emacs.
Is this right?
	
1999-12-14 Shigeru OKUMURA <shigeru@okunet.gr.jp>

        * pop3.el (pop3-read-passwd): if emacsen can load
	 passwd or subr, use read-passwd.
	

*** pop3.el.original	Tue Dec 14 21:20:15 1999
--- pop3.el	Tue Dec 14 21:24:59 1999
***************
*** 215,221 ****
  (defvar pop3-read-passwd nil)
  (defun pop3-read-passwd (prompt)
    (if (not pop3-read-passwd)
!       (if (load "passwd" t)
  	  (setq pop3-read-passwd 'read-passwd)
  	(autoload 'ange-ftp-read-passwd "ange-ftp")
  	(setq pop3-read-passwd 'ange-ftp-read-passwd)))
--- 215,222 ----
  (defvar pop3-read-passwd nil)
  (defun pop3-read-passwd (prompt)
    (if (not pop3-read-passwd)
!       (if (or (load "passwd" t)
! 	      (load "subr" t))
  	  (setq pop3-read-passwd 'read-passwd)
  	(autoload 'ange-ftp-read-passwd "ange-ftp")
  	(setq pop3-read-passwd 'ange-ftp-read-passwd)))


-- 
;; Shigeru OKUMURA <shigeru@okunet.gr.jp>


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

* Re: pop3.el
  1999-12-14 13:00 pop3.el Shigeru OKUMURA
@ 1999-12-14 14:59 ` Stainless Steel Rat
  1999-12-14 18:52   ` pop3.el Shigeru OKUMURA
  0 siblings, 1 reply; 4+ messages in thread
From: Stainless Steel Rat @ 1999-12-14 14:59 UTC (permalink / raw)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

* Shigeru OKUMURA <shigeru@okunet.gr.jp>  on Tue, 14 Dec 1999
| This patch is for running properly pop3.el on emacs.
| Is this right?

| 1999-12-14 Shigeru OKUMURA <shigeru@okunet.gr.jp>

|         * pop3.el (pop3-read-passwd): if emacsen can load
| 	 passwd or subr, use read-passwd.

Not knowing what `subr' is, I cannot say.  But as I do not maintain pop3.el 
anymore you should probably send your bug reports to the Emacs buglist.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.0g (GNU/Linux)
Comment: For info see http://www.gnupg.org

iD8DBQE4Vltngl+vIlSVSNkRAs9cAKDoQ2GJdE2Oq5pP1USAQ0mwCDc4vACglMe5
Ia9rFmMVeurDNxxNn+Ehy3g=
=g034
-----END PGP SIGNATURE-----

-- 
Rat <ratinox@peorth.gweep.net>    \ Warning: pregnant women, the elderly, and
Minion of Nathan - Nathan says Hi! \ children under 10 should avoid prolonged
PGP Key: at a key server near you!  \ exposure to Happy Fun Ball.



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

* Re: pop3.el
  1999-12-14 14:59 ` pop3.el Stainless Steel Rat
@ 1999-12-14 18:52   ` Shigeru OKUMURA
  1999-12-14 20:36     ` pop3.el Stainless Steel Rat
  0 siblings, 1 reply; 4+ messages in thread
From: Shigeru OKUMURA @ 1999-12-14 18:52 UTC (permalink / raw)



Stainless Steel Rat <ratinox@peorth.gweep.net> writes:

> Not knowing what `subr' is, I cannot say.  But as I do not maintain pop3.el 
> anymore you should probably send your bug reports to the Emacs buglist.

I don't think emacs' bug. 
When I was testing in Emacs-19.28 and Emacs-19.34, pop3.el use ange-ftp-read-passwd.
But, Emacs-20.* don't have ange-ftp-read-passwd.
Would you please apply this patch in pgnus repository?


*** pop3.el.original	Wed Dec 15 03:48:51 1999
--- pop3.el	Wed Dec 15 03:49:19 1999
***************
*** 215,221 ****
  (defvar pop3-read-passwd nil)
  (defun pop3-read-passwd (prompt)
    (if (not pop3-read-passwd)
!       (if (load "passwd" t)
  	  (setq pop3-read-passwd 'read-passwd)
  	(autoload 'ange-ftp-read-passwd "ange-ftp")
  	(setq pop3-read-passwd 'ange-ftp-read-passwd)))
--- 215,224 ----
  (defvar pop3-read-passwd nil)
  (defun pop3-read-passwd (prompt)
    (if (not pop3-read-passwd)
!       (if (or (and (load "subr" t)
! 		   (fboundp 'read-passwd))
! 	      (and (load "passwd" t)
! 		   (fboundp 'read-passwd)))
  	  (setq pop3-read-passwd 'read-passwd)
  	(autoload 'ange-ftp-read-passwd "ange-ftp")
  	(setq pop3-read-passwd 'ange-ftp-read-passwd)))

-- 
;; Shigeru OKUMURA <shigeru@okunet.gr.jp>


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

* Re: pop3.el
  1999-12-14 18:52   ` pop3.el Shigeru OKUMURA
@ 1999-12-14 20:36     ` Stainless Steel Rat
  0 siblings, 0 replies; 4+ messages in thread
From: Stainless Steel Rat @ 1999-12-14 20:36 UTC (permalink / raw)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

* Shigeru OKUMURA <shigeru@okunet.gr.jp>  on Tue, 14 Dec 1999
| When I was testing in Emacs-19.28 and Emacs-19.34, pop3.el use
| ange-ftp-read-passwd.
| But, Emacs-20.* don't have ange-ftp-read-passwd.

Yes, this is the primary reason I do not maintain pop3.el anymore, because
my code was changed out from under me without being informed.

| Would you please apply this patch in pgnus repository?

I do not maintain pop3.el anymore, which means that what is bundled with
Gnus is technically obsolete.  Try using the pop3.el that ships with your
version of Emacs instead.  That should work; if not, then there is a bug in 
Emacs.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.0g (GNU/Linux)
Comment: For info see http://www.gnupg.org

iD8DBQE4VqpHgl+vIlSVSNkRAtuNAJwPhkBLnmcZkbFGBzeS6QorGRj+kgCdHnK6
BCwSG0mrpR6c9iaTgUDTqz8=
=Gdrs
-----END PGP SIGNATURE-----

-- 
Rat <ratinox@peorth.gweep.net>    \ If Happy Fun Ball begins to smoke, get
Minion of Nathan - Nathan says Hi! \ away immediately. Seek shelter and cover
PGP Key: at a key server near you!  \ head.



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

end of thread, other threads:[~1999-12-14 20:36 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1999-12-14 13:00 pop3.el Shigeru OKUMURA
1999-12-14 14:59 ` pop3.el Stainless Steel Rat
1999-12-14 18:52   ` pop3.el Shigeru OKUMURA
1999-12-14 20:36     ` pop3.el Stainless Steel Rat

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).