diff options
| author | Michael Albinus | 2006-11-18 17:42:32 +0000 |
|---|---|---|
| committer | Michael Albinus | 2006-11-18 17:42:32 +0000 |
| commit | d8d555f293dc2f35ed35bd06f18c074d27e2197f (patch) | |
| tree | 1fb80629af7eed6fa765d2b1c68c6e39fd31ef79 /lisp/net | |
| parent | 59e24ad3334e8035b90711f94b4cbd9c85b20161 (diff) | |
| download | emacs-d8d555f293dc2f35ed35bd06f18c074d27e2197f.tar.gz emacs-d8d555f293dc2f35ed35bd06f18c074d27e2197f.zip | |
* net/tramp.el (top): cl and custom are always required.
Diffstat (limited to 'lisp/net')
| -rw-r--r-- | lisp/net/tramp.el | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el index 54bb6946498..3c6733e6dfa 100644 --- a/lisp/net/tramp.el +++ b/lisp/net/tramp.el | |||
| @@ -149,12 +149,11 @@ Otherwise, use a separate filename syntax for Tramp.") | |||
| 149 | (when (featurep 'tramp-smb) | 149 | (when (featurep 'tramp-smb) |
| 150 | (unload-feature 'tramp-smb 'force))))))) | 150 | (unload-feature 'tramp-smb 'force))))))) |
| 151 | 151 | ||
| 152 | (eval-when-compile | 152 | (require 'cl) |
| 153 | (require 'cl) | 153 | (require 'custom) |
| 154 | (require 'custom) | 154 | ;; Emacs 19.34 compatibility hack -- is this needed? |
| 155 | ;; Emacs 19.34 compatibility hack -- is this needed? | 155 | (or (>= emacs-major-version 20) |
| 156 | (or (>= emacs-major-version 20) | 156 | (load "cl-seq")) |
| 157 | (load "cl-seq"))) | ||
| 158 | 157 | ||
| 159 | (unless (boundp 'custom-print-functions) | 158 | (unless (boundp 'custom-print-functions) |
| 160 | (defvar custom-print-functions nil)) ; not autoloaded before Emacs 20.4 | 159 | (defvar custom-print-functions nil)) ; not autoloaded before Emacs 20.4 |