]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove unnecessary eval-when-compiles and eval-and-compiles.
authorGlenn Morris <rgm@gnu.org>
Sat, 7 Jun 2008 02:39:43 +0000 (02:39 +0000)
committerGlenn Morris <rgm@gnu.org>
Sat, 7 Jun 2008 02:39:43 +0000 (02:39 +0000)
lisp/net/netrc.el

index ae06af872b98086b182b18bc059551ff217bf15c..ca219defab5e3c3e30e0fd080b40694b0b54f8d3 100644 (file)
 ;;;
 
 ;; 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)