changeset 95624:164c226d4a0d

Remove unnecessary eval-when-compiles and eval-and-compiles.
author Glenn Morris <rgm@gnu.org>
date Sat, 07 Jun 2008 02:39:43 +0000
parents 5358d3f9137d
children ca7011bae7f9
files lisp/net/netrc.el
diffstat 1 files changed, 3 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/net/netrc.el	Sat Jun 07 02:38:59 2008 +0000
+++ b/lisp/net/netrc.el	Sat Jun 07 02:39:43 2008 +0000
@@ -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)