From efe78a6c0b68c4c3413cac6fb02d9148b1e0e017 Mon Sep 17 00:00:00 2001 From: Michael Albinus Date: Sat, 29 Mar 2008 20:26:14 +0000 Subject: [PATCH] * net/tramp-ftp.el: Require 'cl when byte-compiling. --- lisp/ChangeLog | 8 ++++++++ lisp/net/tramp-ftp.el | 6 +++++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c4ad170e5f0..5b0c18b60bc 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,11 @@ +2008-03-29 Michael Albinus + + Sync with Tramp 2.1.13. + + * net/tramp-ftp.el: Require 'cl when byte-compiling. + + * net/trampver.el: Update release number. + 2008-03-29 Dan Nicolaescu * vc-hooks.el (vc-menu-map-filter): Be more careful when finding diff --git a/lisp/net/tramp-ftp.el b/lisp/net/tramp-ftp.el index cb0aa698ea9..71be05c1ab1 100644 --- a/lisp/net/tramp-ftp.el +++ b/lisp/net/tramp-ftp.el @@ -32,7 +32,11 @@ (require 'tramp) (autoload 'tramp-set-connection-property "tramp-cache") -(eval-when-compile (require 'custom)) +(eval-when-compile + + ;; Pacify byte-compiler. + (require 'cl) + (require 'custom)) ;; Disable Ange-FTP from file-name-handler-alist. ;; To handle EFS, the following functions need to be dealt with: -- 2.39.2