Variable: password-cache-expiry

password-cache-expiry is a customizable variable defined in password-cache.el.gz.

Value

16

Documentation

How many seconds passwords are cached, or nil to disable expiring.

Whether passwords are cached at all is controlled by password-cache.

Source Code

;; Defined in /usr/src/emacs/lisp/password-cache.el.gz
;;;###autoload
(defcustom password-cache-expiry 16
  "How many seconds passwords are cached, or nil to disable expiring.
Whether passwords are cached at all is controlled by `password-cache'."
  :group 'password
  :type '(choice (const :tag "Never" nil)
		 (integer :tag "Seconds")))