diff options
author | Glenn Morris <rgm@gnu.org> | 2008-06-07 02:39:43 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2008-06-07 02:39:43 +0000 |
commit | 91ed8a5614187eb6b97aef11e814fc922b122704 (patch) | |
tree | d4cfa858341b0eeb1163811851479efa453358bb /lisp | |
parent | 3c5fa30ac92a7146ea31ce3c78ee8a03432a452f (diff) | |
download | emacs-91ed8a5614187eb6b97aef11e814fc922b122704.tar.gz |
Remove unnecessary eval-when-compiles and eval-and-compiles.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/net/netrc.el | 7 |
1 files changed, 3 insertions, 4 deletions
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) |