Function: hyrolo-set-file-list
hyrolo-set-file-list is an autoloaded and byte-compiled function
defined in hyrolo.el.
Signature
(hyrolo-set-file-list SYMBOL VALUE)
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hyrolo.el
;;;###autoload
(defun hyrolo-set-file-list (symbol value)
(setq hyrolo--expanded-file-list (hyrolo-expand-path-list value))
(if value
(set-default symbol value)
(setq value hyrolo--expanded-file-list)
(set-default symbol hyrolo--expanded-file-list))
(when (hyrolo-any-file-type-problem-p)
(error "(HyRolo): Invalid files used in `hyrolo-file-list'; see the *HyRolo Errors* buffer"))
;; Prompt user to rename old personal rolo file to new name, if necessary.
(unless (or noninteractive (hyperb:stack-frame '(hyrolo-rename)))
(call-interactively 'hyrolo-rename)))