Function: hyrolo-get-file-list
hyrolo-get-file-list is a byte-compiled function defined in hyrolo.el.
Signature
(hyrolo-get-file-list)
Documentation
Return the current expanded list of HyRolo search files.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hyrolo.el
(defun hyrolo-get-file-list ()
"Return the current expanded list of HyRolo search files."
(if (equal hyrolo-file-list (symbol-value 'hyrolo-file-list))
(or hyrolo--expanded-file-list hyrolo-file-list
(hyrolo-expand-path-list nil))
;; lexical-binding is enabled and there is a local binding of
;; `hyrolo-file-list', so expand it.
(hyrolo-expand-path-list hyrolo-file-list)))