Function: hywiki-get-glossary-file

hywiki-get-glossary-file is a byte-compiled function defined in hywiki.el.

Signature

(hywiki-get-glossary-file &optional FILE)

Documentation

Return the glossary file for the current HyWiki.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260822.1645/hywiki.el
(defun hywiki-get-glossary-file (&optional file)
  "Return the glossary file for the current HyWiki."
  (expand-file-name (if (and (stringp file) (not (string-empty-p file)))
                        file
                      (concat "Glossary" hywiki-file-extension))
                    hywiki-directory))