Function: hywiki-cache-default-file

hywiki-cache-default-file is a byte-compiled function defined in hywiki.el.

Signature

(hywiki-cache-default-file &optional DIRECTORY)

Documentation

Return a HyWiki cache file for optional DIRECTORY or hywiki-directory.

The filename is either the string value of hywiki-cache-file, or else the value of hywiki-cache-default-file(var)/hywiki-cache-default-file(fun). The filename returned is an absolute path.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hywiki.el
(defun hywiki-cache-default-file (&optional directory)
  "Return a HyWiki cache file for optional DIRECTORY or `hywiki-directory'.
The filename is either the string value of `hywiki-cache-file', or else the
value of `hywiki-cache-default-file'.  The filename returned is an
absolute path."
  (expand-file-name (or hywiki-cache-file hywiki-cache-default-file)
		    (or directory hywiki-directory)))