# HG changeset patch # User Katsumi Yamaoka # Date 1285214230 0 # Node ID b3141c4861e2febd20b9b235b9a8e9c8083edf70 # Parent 4ead2c32359c60b238e8f9d6bba2b26a8c4dfc7d netrc.el (netrc-parse): Remove encrypt.el mentions. diff -r 4ead2c32359c -r b3141c4861e2 lisp/ChangeLog --- a/lisp/ChangeLog Thu Sep 23 01:51:43 2010 +0000 +++ b/lisp/ChangeLog Thu Sep 23 03:57:10 2010 +0000 @@ -1,3 +1,7 @@ +2010-09-23 Teodor Zlatanov + + * net/netrc.el (netrc-parse): Remove encrypt.el mentions. + 2010-09-22 Dan Christensen * calendar/time-date.el (date-to-time): Try using parse-time-string diff -r 4ead2c32359c -r b3141c4861e2 lisp/net/netrc.el --- a/lisp/net/netrc.el Thu Sep 23 01:51:43 2010 +0000 +++ b/lisp/net/netrc.el Thu Sep 23 03:57:10 2010 +0000 @@ -34,14 +34,10 @@ ;;; .netrc and .authinfo rc parsing ;;; -;; use encrypt if loaded (encrypt-file-alist has to be set as well) -(autoload 'encrypt-find-model "encrypt") -(autoload 'encrypt-insert-file-contents "encrypt") (defalias 'netrc-point-at-eol (if (fboundp 'point-at-eol) 'point-at-eol 'line-end-position)) -(defvar encrypt-file-alist) (eval-when-compile ;; This is unnecessary in the compiled version as it is a macro. (if (fboundp 'bound-and-true-p) @@ -74,12 +70,8 @@ (let ((tokens '("machine" "default" "login" "password" "account" "macdef" "force" "port")) - (encryption-model (when (netrc-bound-and-true-p encrypt-file-alist) - (encrypt-find-model file))) alist elem result pair) - (if encryption-model - (encrypt-insert-file-contents file encryption-model) - (insert-file-contents file)) + (insert-file-contents file) (goto-char (point-min)) ;; Go through the file, line by line. (while (not (eobp))