]> git.eshelyaron.com Git - emacs.git/commitdiff
* net/tramp-cache.el (tramp-flush-connection-property): Add trace message.
authorMichael Albinus <michael.albinus@gmx.de>
Wed, 7 Oct 2009 11:27:10 +0000 (11:27 +0000)
committerMichael Albinus <michael.albinus@gmx.de>
Wed, 7 Oct 2009 11:27:10 +0000 (11:27 +0000)
lisp/net/tramp-cache.el

index 3b1f4d46aaddb4eca64fb301c0941a1ed5331fda..1bb29d1766fa9f9f675f97263e6a0499d9f57358 100644 (file)
@@ -238,6 +238,13 @@ KEY identifies the connection, it is either a process or a vector."
   (when (vectorp key)
     (setq key (copy-sequence key))
     (aset key 3 nil))
+  (tramp-message
+   key 7 "%s %s" key
+   (let (properties)
+     (maphash
+      (lambda (x y) (add-to-list 'properties x 'append))
+      (gethash key tramp-cache-data))
+     properties))
   (setq tramp-cache-data-changed t)
   (remhash key tramp-cache-data))