aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2008-06-07 02:39:43 +0000
committerGlenn Morris2008-06-07 02:39:43 +0000
commit91ed8a5614187eb6b97aef11e814fc922b122704 (patch)
treed4cfa858341b0eeb1163811851479efa453358bb
parent3c5fa30ac92a7146ea31ce3c78ee8a03432a452f (diff)
downloademacs-91ed8a5614187eb6b97aef11e814fc922b122704.tar.gz
emacs-91ed8a5614187eb6b97aef11e814fc922b122704.zip
Remove unnecessary eval-when-compiles and eval-and-compiles.
-rw-r--r--lisp/net/netrc.el7
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 @@
34;;; 34;;;
35 35
36;; use encrypt if loaded (encrypt-file-alist has to be set as well) 36;; use encrypt if loaded (encrypt-file-alist has to be set as well)
37(eval-and-compile 37(autoload 'encrypt-find-model "encrypt")
38 (autoload 'encrypt-find-model "encrypt") 38(autoload 'encrypt-insert-file-contents "encrypt")
39 (autoload 'encrypt-insert-file-contents "encrypt"))
40(defalias 'netrc-point-at-eol 39(defalias 'netrc-point-at-eol
41 (if (fboundp 'point-at-eol) 40 (if (fboundp 'point-at-eol)
42 'point-at-eol 41 'point-at-eol
43 'line-end-position)) 42 'line-end-position))
43(defvar encrypt-file-alist)
44(eval-when-compile 44(eval-when-compile
45 (defvar encrypt-file-alist)
46 ;; This is unnecessary in the compiled version as it is a macro. 45 ;; This is unnecessary in the compiled version as it is a macro.
47 (if (fboundp 'bound-and-true-p) 46 (if (fboundp 'bound-and-true-p)
48 (defalias 'netrc-bound-and-true-p 'bound-and-true-p) 47 (defalias 'netrc-bound-and-true-p 'bound-and-true-p)