Gnus development mailing list
 help / color / mirror / Atom feed
From: Shigeru OKUMURA <shigeru@okunet.gr.jp>
Subject: Re: pop3.el
Date: Wed, 15 Dec 1999 03:52:46 +0900 (JST)	[thread overview]
Message-ID: <199912141852.dBEIqkc19720@tomoyochan.jaist.ac.jp> (raw)
In-Reply-To: Stainless Steel Rat's message of "Tue, 14 Dec 1999 09:59:51 -0500"


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>


  reply	other threads:[~1999-12-14 18:52 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
1999-12-14 13:00 pop3.el Shigeru OKUMURA
1999-12-14 14:59 ` pop3.el Stainless Steel Rat
1999-12-14 18:52   ` Shigeru OKUMURA [this message]
1999-12-14 20:36     ` pop3.el Stainless Steel Rat

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=199912141852.dBEIqkc19720@tomoyochan.jaist.ac.jp \
    --to=shigeru@okunet.gr.jp \
    /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).