aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2008-05-17 20:10:06 +0000
committerGlenn Morris2008-05-17 20:10:06 +0000
commitbcb04d981a77dff646af0d844ac7240824147927 (patch)
tree25178b2b06fa62f4d42126464d6f0f9a1aaced73
parentac342f28c0d4c7d6e9b73ae22853d60f1cd80e9e (diff)
downloademacs-bcb04d981a77dff646af0d844ac7240824147927.tar.gz
emacs-bcb04d981a77dff646af0d844ac7240824147927.zip
(top-level): Load auth-source when compiling.
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/net/tramp.el7
2 files changed, 6 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index e0c77499698..821fb8580a6 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
12008-05-17 Glenn Morris <rgm@gnu.org> 12008-05-17 Glenn Morris <rgm@gnu.org>
2 2
3 * net/tramp.el (top-level): Load auth-source when compiling.
4
3 * progmodes/fortran.el (fortran-font-lock-keywords-2): Add .eqv., .neqv. 5 * progmodes/fortran.el (fortran-font-lock-keywords-2): Add .eqv., .neqv.
4 6
52008-05-17 Andreas Schwab <schwab@suse.de> 72008-05-17 Andreas Schwab <schwab@suse.de>
diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el
index fb124389278..a026b45c4d2 100644
--- a/lisp/net/tramp.el
+++ b/lisp/net/tramp.el
@@ -87,9 +87,10 @@
87(require 'shell) 87(require 'shell)
88(require 'advice) 88(require 'advice)
89 89
90(if (featurep 'xemacs) 90(eval-and-compile
91 (load "auth-source" 'noerror) 91 (if (featurep 'xemacs)
92 (require 'auth-source nil 'noerror)) 92 (load "auth-source" 'noerror)
93 (require 'auth-source nil 'noerror)))
93 94
94;; Requiring 'tramp-cache results in an endless loop. 95;; Requiring 'tramp-cache results in an endless loop.
95(autoload 'tramp-get-file-property "tramp-cache") 96(autoload 'tramp-get-file-property "tramp-cache")