From: Michael Albinus Date: Mon, 22 Oct 2018 07:05:48 +0000 (+0200) Subject: Improve Tramp backward compatibility X-Git-Tag: emacs-27.0.90~4265 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1d2b386ec4dcd8a5844fae3173ba454a51999a56;p=emacs.git Improve Tramp backward compatibility * lisp/net/tramp-compat.el: (tramp-unload-file-name-handlers): Declare it, for backward compatibility. --- diff --git a/lisp/net/tramp-compat.el b/lisp/net/tramp-compat.el index c3777e6e737..ec8e54509d1 100644 --- a/lisp/net/tramp-compat.el +++ b/lisp/net/tramp-compat.el @@ -29,6 +29,11 @@ ;;; Code: +;; In Emacs 24 and 25, `tramp-unload-file-name-handlers' is not +;; autoloaded. So we declare it here in order to avoid recursive +;; load. This will be overwritten in tramp.el. +(defun tramp-unload-file-name-handlers ()) + (require 'auth-source) (require 'advice) (require 'cl-lib)