diff options
author | Michael Albinus <michael.albinus@gmx.de> | 2022-09-04 19:25:21 +0200 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2022-09-04 19:25:21 +0200 |
commit | 4eb3e6bdda2f233186f5a27f2ec5f50916eb73ef (patch) | |
tree | 4f85ed58bb7c66ce41c4958cc7f05ba5f9603ed2 /lisp/net | |
parent | 2dfce43103e5fa098f362bc6d715c3857e9cdc08 (diff) | |
download | emacs-4eb3e6bdda2f233186f5a27f2ec5f50916eb73ef.tar.gz emacs-4eb3e6bdda2f233186f5a27f2ec5f50916eb73ef.tar.bz2 emacs-4eb3e6bdda2f233186f5a27f2ec5f50916eb73ef.zip |
Fix comment in tramp.el
Diffstat (limited to 'lisp/net')
-rw-r--r-- | lisp/net/tramp.el | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el index bf8c5d4a3df..b24525de3a5 100644 --- a/lisp/net/tramp.el +++ b/lisp/net/tramp.el @@ -1431,9 +1431,14 @@ calling HANDLER.") ;; internal data structure. Convenience functions for internal ;; data structure. -;; The basic structure for remote file names. We must autoload it in -;; tramp-loaddefs.el, because some functions, which need it, wouldn't -;; work otherwise when unloading / reloading Tramp. (Bug#50869) +;; The basic structure for remote file names. + +;; Note: We started autoloading it in tramp-loaddefs.el, because some +;; functions, which needed it, wouldn't work otherwise when unloading +;; / reloading Tramp (Bug#50869). +;; This bug is fixed in Emacs 29, but other parts of Tramp have grown +;; dependencies on having this in tramp-loaddefs.el in the mean time, +;; so .... here we are. ;;;###tramp-autoload(require 'cl-lib) ;;;###tramp-autoload (progn |