changeset 91485:202f9737703b

* net/tramp-cache.el (tramp-flush-connection-property): Remove EVENT.
author Michael Albinus <michael.albinus@gmx.de>
date Sun, 03 Feb 2008 12:02:39 +0000
parents 7ddf7059d131
children 76c777ce052a
files lisp/net/tramp-cache.el
diffstat 1 files changed, 2 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/net/tramp-cache.el	Sun Feb 03 12:00:51 2008 +0000
+++ b/lisp/net/tramp-cache.el	Sun Feb 03 12:02:39 2008 +0000
@@ -203,17 +203,14 @@
       (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)