From 1a0b96d35633d5950fa5af036ef49d272818eceb Mon Sep 17 00:00:00 2001 From: Michael Albinus Date: Sun, 3 Feb 2008 12:02:39 +0000 Subject: [PATCH] * net/tramp-cache.el (tramp-flush-connection-property): Remove EVENT. --- lisp/net/tramp-cache.el | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/lisp/net/tramp-cache.el b/lisp/net/tramp-cache.el index 4654c212ee3..945823959cd 100644 --- a/lisp/net/tramp-cache.el +++ b/lisp/net/tramp-cache.el @@ -203,17 +203,14 @@ PROPERTY is set persistent when KEY is a vector." (error nil)) value)) -(defun tramp-flush-connection-property (key event) +(defun tramp-flush-connection-property (key) "Remove all properties identified by KEY. -KEY identifies the connection, it is either a process or a -vector. EVENT is not used, it is just applied because this -function is intended to run also as process sentinel." +KEY identifies the connection, it is either a process or a vector." ;; Unify key by removing localname from vector. Work with a copy in ;; order to avoid side effects. (when (vectorp key) (setq key (copy-sequence key)) (aset key 3 nil)) -; (tramp-message key 7 "%s" event) (remhash key tramp-cache-data)) (defun tramp-cache-print (table) -- 2.39.5