From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/28208 Path: main.gmane.org!not-for-mail From: Shigeru OKUMURA Newsgroups: gmane.emacs.gnus.general Subject: pop3.el Date: Tue, 14 Dec 1999 22:00:16 +0900 (JST) Sender: owner-ding@hpc.uh.edu Message-ID: <199912141300.dBED0G301827@tomoyochan.jaist.ac.jp> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035165098 28711 80.91.224.250 (21 Oct 2002 01:51:38 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 01:51:38 +0000 (UTC) Return-Path: Original-Received: from spinoza.math.uh.edu (spinoza.math.uh.edu [129.7.128.18]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id IAA14045 for ; Tue, 14 Dec 1999 08:02:34 -0500 (EST) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by spinoza.math.uh.edu (8.9.1/8.9.1) with ESMTP id HAB25035; Tue, 14 Dec 1999 07:02:29 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Tue, 14 Dec 1999 07:02:20 -0600 (CST) Original-Received: from sclp3.sclp.com (root@sclp3.sclp.com [204.252.123.139]) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id HAA05391 for ; Tue, 14 Dec 1999 07:02:11 -0600 (CST) Original-Received: from tomoyochan.jaist.ac.jp (dm1d10.jaist.ac.jp [150.65.40.120]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id IAA14040 for ; Tue, 14 Dec 1999 08:01:45 -0500 (EST) Original-Received: (from sokumura@localhost) by tomoyochan.jaist.ac.jp (8.10.0.Beta6/8.10.0.Beta6) id dBED0G301827; Tue, 14 Dec 1999 22:00:16 +0900 (JST) X-Authentication-Warning: tomoyochan.jaist.ac.jp: sokumura set sender to shigeru@okunet.gr.jp using -f Original-To: ding@gnus.org X-Face-Version: X-Face utility v1.3.6.7 - "Yellow Submarine (remix)" with Select X-Face v0.14 - "Keep Under Cover" X-Face: Sd]@{mH4hY6Fq7?d_Nsm?}?Uc]7,E)a@4skeYByOMItVDy`5s)`${yfQY+d8siN27;u}%yU \St(8;3~'(As,tnEe!p5%x<(]E#R\D${o),q(5OMEkMI$1,Se.|#Y0YdQ`8.a[Yo'4Xi,=;yf User-Agent: Gnus/5.0803 (Gnus v5.8.3) Emacs/20.5.92 Original-Lines: 34 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:28208 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:28208 This patch is for running properly pop3.el on emacs. Is this right? 1999-12-14 Shigeru OKUMURA * 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