]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix thinko in tramp-cache.el
authorMichael Albinus <michael.albinus@gmx.de>
Sun, 5 Apr 2020 16:29:10 +0000 (18:29 +0200)
committerMichael Albinus <michael.albinus@gmx.de>
Sun, 5 Apr 2020 16:29:10 +0000 (18:29 +0200)
* lisp/net/tramp-cache.el (tramp-set-connection-property)
(tramp-flush-connection-property)
(tramp-flush-connection-properties): Use `tramp-file-name-p'.

lisp/net/tramp-cache.el

index 93eeb16f547dd8bc0852b1fa3f40eafba54ab8be..09e30f000f461336b51219510c96d4a67f81e609 100644 (file)
@@ -339,7 +339,7 @@ Return VALUE."
   (when-let ((hash (tramp-get-hash-table key)))
     (puthash property value hash))
   (setq tramp-cache-data-changed
-       (or tramp-cache-data-changed (tramp-tramp-file-p key)))
+       (or tramp-cache-data-changed (tramp-file-name-p key)))
   (tramp-message key 7 "%s %s" property value)
   value)
 
@@ -368,7 +368,7 @@ PROPERTY is set persistent when KEY is a `tramp-file-name' structure."
   (when-let ((hash (tramp-get-hash-table key)))
     (remhash property hash))
   (setq tramp-cache-data-changed
-       (or tramp-cache-data-changed (tramp-tramp-file-p key)))
+       (or tramp-cache-data-changed (tramp-file-name-p key)))
   (tramp-message key 7 "%s" property))
 
 ;;;###tramp-autoload
@@ -388,7 +388,7 @@ used to cache connection properties of the local machine."
    (when-let ((hash (gethash key tramp-cache-data)))
      (hash-table-keys hash)))
   (setq tramp-cache-data-changed
-       (or tramp-cache-data-changed (tramp-tramp-file-p key)))
+       (or tramp-cache-data-changed (tramp-file-name-p key)))
   (remhash key tramp-cache-data))
 
 ;;;###tramp-autoload