Function: hyrolo-refresh-file-list

hyrolo-refresh-file-list is a byte-compiled function defined in hyrolo.el.

Signature

(hyrolo-refresh-file-list)

Documentation

Refresh from disk the internal list of files given by hyrolo-file-list.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hyrolo.el
(defun hyrolo-refresh-file-list ()
  "Refresh from disk the internal list of files given by `hyrolo-file-list'."
  (if hyrolo-file-list
      (setq hyrolo--expanded-file-list (hyrolo-expand-path-list hyrolo-file-list))
    (setq hyrolo-file-list (hyrolo-expand-path-list nil)
	  hyrolo--expanded-file-list hyrolo-file-list))
  (when (hyrolo-any-file-type-problem-p)
    (error "(HyRolo): Invalid files used in `hyrolo-file-list'; see the *HyRolo Errors* buffer")))