Function: tramp-flush-file-property

tramp-flush-file-property is an autoloaded and byte-compiled function defined in tramp-cache.el.gz.

Signature

(tramp-flush-file-property KEY FILE PROPERTY)

Documentation

Remove PROPERTY of FILE in the cache context of KEY.

Source Code

;; Defined in /usr/src/emacs/lisp/net/tramp-cache.el.gz
;;;###tramp-autoload
(defun tramp-flush-file-property (key file property)
  "Remove PROPERTY of FILE in the cache context of KEY."
  (setq key (tramp-file-name-unify key file))
  (unless (eq key tramp-cache-undefined)
    (remhash property (tramp-get-hash-table key))
    (tramp-message key 8 "%s %s" (tramp-file-name-localname key) property)
    (when (>= tramp-verbose 10)
      (let ((var (intern (concat "tramp-cache-set-count-" property))))
	(makunbound var)))))