]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/net/tramp.el (tramp-file-name-equal-p): Fix docstring.
authorMichael Albinus <michael.albinus@gmx.de>
Tue, 18 Oct 2022 17:39:34 +0000 (19:39 +0200)
committerMichael Albinus <michael.albinus@gmx.de>
Tue, 18 Oct 2022 17:39:34 +0000 (19:39 +0200)
lisp/net/tramp-integration.el
lisp/net/tramp.el

index 4be019edd9dd1c1bea09d21737aea366b715eb2c..78107e1a03baf9e9eb999bece24e86e9d5e6ac83 100644 (file)
@@ -125,6 +125,8 @@ been set up by `rfn-eshadow-setup-minibuffer'."
 
 ;; eshell.el keeps the path in `eshell-path-env'.  We must change it
 ;; when `default-directory' points to another host.
+;; This is fixed in Eshell with Emacs 29.1.
+
 (defun tramp-eshell-directory-change ()
   "Set `eshell-path-env' to $PATH of the host related to `default-directory'."
   ;; Remove last element of `(exec-path)', which is `exec-directory'.
index 4ff57e5d5604a30a1fc6fcea7424194337cf0fba..c06adb01e8cabfbeb93e9005146b6640e354058a 100644 (file)
@@ -1526,7 +1526,8 @@ same connection.  Make a copy in order to avoid side effects."
 
 ;; Comparison of file names is performed by `tramp-equal-remote'.
 (defun tramp-file-name-equal-p (vec1 vec2)
-  "Check, whether VEC1 and VEC2 denote the same `tramp-file-name'."
+  "Check, whether VEC1 and VEC2 denote the same `tramp-file-name'.
+LOCALNAME and HOP do not count."
   (and (tramp-file-name-p vec1) (tramp-file-name-p vec2)
        (equal (tramp-file-name-unify vec1)
              (tramp-file-name-unify vec2))))