]> git.eshelyaron.com Git - emacs.git/commitdiff
* net/tramp-cache.el (tramp-flush-connection-property): Remove EVENT.
authorMichael Albinus <michael.albinus@gmx.de>
Sun, 3 Feb 2008 12:02:39 +0000 (12:02 +0000)
committerMichael Albinus <michael.albinus@gmx.de>
Sun, 3 Feb 2008 12:02:39 +0000 (12:02 +0000)
lisp/net/tramp-cache.el

index 4654c212ee390195033846bdcddb9dc68fc13e01..945823959cd349e4b561524e9c5407b71deeef48 100644 (file)
@@ -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)