Mercurial > emacs
diff lisp/net/netrc.el @ 91204:53108e6cea98
Merge from emacs--devo--0
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-294
author | Miles Bader <miles@gnu.org> |
---|---|
date | Thu, 06 Dec 2007 09:51:45 +0000 |
parents | 880960b70474 d549ccffa35b |
children | 56a72e2bd635 |
line wrap: on
line diff
--- a/lisp/net/netrc.el Thu Dec 06 07:36:30 2007 +0000 +++ b/lisp/net/netrc.el Thu Dec 06 09:51:45 2007 +0000 @@ -39,11 +39,6 @@ (if (fboundp 'point-at-eol) 'point-at-eol 'line-end-position)) -;; autoload encrypt - -(eval-and-compile - (autoload 'encrypt-find-model "encrypt") - (autoload 'encrypt-insert-file-contents "encrypt")) (defgroup netrc nil "Netrc configuration." @@ -60,13 +55,8 @@ (let ((tokens '("machine" "default" "login" "password" "account" "macdef" "force" "port")) - (encryption-model (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)) @@ -190,8 +180,7 @@ (setq type (or type 'tcp)) (while (and (setq service (pop services)) (not (and (= number (cadr service)) - (eq type (caddr service))))) - ) + (eq type (car (cddr service))))))) (car service))) (defun netrc-find-service-number (name &optional type) @@ -200,8 +189,7 @@ (setq type (or type 'tcp)) (while (and (setq service (pop services)) (not (and (string= name (car service)) - (eq type (caddr service))))) - ) + (eq type (car (cddr service))))))) (cadr service))) (provide 'netrc)