Variable: woman-cache-filename

woman-cache-filename is a customizable variable defined in woman.el.gz.

Value

nil

Documentation

The full pathname of the WoMan directory and topic cache file.

It is used to save and restore the cache between sessions. This is
especially useful with remote-mounted man page files! The default
value of nil suppresses this action. The standard non-nil filename is "~/.wmncach.el". Remember that a prefix argument forces the woman command to update and re-write the cache.

Source Code

;; Defined in /usr/src/emacs/lisp/woman.el.gz
(defcustom woman-cache-filename nil
  "The full pathname of the WoMan directory and topic cache file.
It is used to save and restore the cache between sessions.  This is
especially useful with remote-mounted man page files!  The default
value of nil suppresses this action.  The `standard' non-nil
filename is \"~/.wmncach.el\".  Remember that a prefix argument forces
the `woman' command to update and re-write the cache."
  :type '(choice (const :tag "None" nil)
		 (const :tag "~/.wmncach.el" "~/.wmncach.el")
		 file)
  :group 'woman-interface)