From: Glenn Morris Date: Sat, 7 Jun 2008 02:39:43 +0000 (+0000) Subject: Remove unnecessary eval-when-compiles and eval-and-compiles. X-Git-Tag: emacs-pretest-23.0.90~5044 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=91ed8a5614187eb6b97aef11e814fc922b122704;p=emacs.git Remove unnecessary eval-when-compiles and eval-and-compiles. --- diff --git a/lisp/net/netrc.el b/lisp/net/netrc.el index ae06af872b9..ca219defab5 100644 --- a/lisp/net/netrc.el +++ b/lisp/net/netrc.el @@ -34,15 +34,14 @@ ;;; ;; use encrypt if loaded (encrypt-file-alist has to be set as well) -(eval-and-compile - (autoload 'encrypt-find-model "encrypt") - (autoload 'encrypt-insert-file-contents "encrypt")) +(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 - (defvar encrypt-file-alist) ;; This is unnecessary in the compiled version as it is a macro. (if (fboundp 'bound-and-true-p) (defalias 'netrc-bound-and-true-p 'bound-and-true-p)