mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-26 19:18:50 +00:00
* net/tramp-ftp.el: Require 'cl when byte-compiling.
This commit is contained in:
parent
680d5d1783
commit
efe78a6c0b
@ -1,3 +1,11 @@
|
||||
2008-03-29 Michael Albinus <michael.albinus@gmx.de>
|
||||
|
||||
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 <dann@ics.uci.edu>
|
||||
|
||||
* vc-hooks.el (vc-menu-map-filter): Be more careful when finding
|
||||
|
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user