diff options
| author | Glenn Morris | 2007-12-04 04:32:47 +0000 |
|---|---|---|
| committer | Glenn Morris | 2007-12-04 04:32:47 +0000 |
| commit | fd48cd1850a268afab416e836cd3b333a7f6e31e (patch) | |
| tree | c29be1dddf9f7514c9ed206ef1d5be0c1069ffa0 | |
| parent | 2e282009895d3aff074ed089e1f5dd725fbecb8c (diff) | |
| download | emacs-fd48cd1850a268afab416e836cd3b333a7f6e31e.tar.gz emacs-fd48cd1850a268afab416e836cd3b333a7f6e31e.zip | |
Require password-cache or password.
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/net/tramp.el | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e96ca3b2b54..eb6adaca886 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -4,6 +4,8 @@ | |||
| 4 | (top-level): Don't require cl when compiling. | 4 | (top-level): Don't require cl when compiling. |
| 5 | (password-read-and-add): Doc fix. Make obsolete. | 5 | (password-read-and-add): Doc fix. Make obsolete. |
| 6 | 6 | ||
| 7 | * net/tramp.el: Require password-cache or password. | ||
| 8 | |||
| 7 | * emulation/cua-base.el (top-level): Move (provide 'cua-base) to end. | 9 | * emulation/cua-base.el (top-level): Move (provide 'cua-base) to end. |
| 8 | No longer provide 'cua. Don't require cua-rect, cua-gmrk when | 10 | No longer provide 'cua. Don't require cua-rect, cua-gmrk when |
| 9 | compiling. | 11 | compiling. |
diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el index ad80f11b8ae..95959b15a7c 100644 --- a/lisp/net/tramp.el +++ b/lisp/net/tramp.el | |||
| @@ -83,7 +83,8 @@ | |||
| 83 | ;; be mandatory | 83 | ;; be mandatory |
| 84 | (if (featurep 'xemacs) | 84 | (if (featurep 'xemacs) |
| 85 | (load "password" 'noerror) | 85 | (load "password" 'noerror) |
| 86 | (require 'password nil 'noerror)) ;from No Gnus, also in tar ball | 86 | (or (require 'password-cache nil 'noerror) |
| 87 | (require 'password nil 'noerror))) ; from No Gnus, also in tar ball | ||
| 87 | 88 | ||
| 88 | (require 'shell) | 89 | (require 'shell) |
| 89 | (require 'advice) | 90 | (require 'advice) |