(top-level): Load auth-source when compiling.

This commit is contained in:
Glenn Morris 2008-05-17 20:10:06 +00:00
parent ac342f28c0
commit bcb04d981a
2 changed files with 6 additions and 3 deletions

View file

@ -1,5 +1,7 @@
2008-05-17 Glenn Morris <rgm@gnu.org>
* net/tramp.el (top-level): Load auth-source when compiling.
* progmodes/fortran.el (fortran-font-lock-keywords-2): Add .eqv., .neqv.
2008-05-17 Andreas Schwab <schwab@suse.de>

View file

@ -87,9 +87,10 @@
(require 'shell)
(require 'advice)
(if (featurep 'xemacs)
(load "auth-source" 'noerror)
(require 'auth-source nil 'noerror))
(eval-and-compile
(if (featurep 'xemacs)
(load "auth-source" 'noerror)
(require 'auth-source nil 'noerror)))
;; Requiring 'tramp-cache results in an endless loop.
(autoload 'tramp-get-file-property "tramp-cache")