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

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