Function: kfile:read-name
kfile:read-name is a byte-compiled function defined in kfile.el.
Signature
(kfile:read-name PROMPT EXISTING-P)
Documentation
PROMPT for and read a koutline file name. EXISTING-P means must exist.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kfile.el
(defun kfile:read-name (prompt existing-p)
"PROMPT for and read a koutline file name. EXISTING-P means must exist."
(let ((filename))
(while (not filename)
(setq filename (read-file-name prompt nil nil existing-p))
(when (or (null filename) (equal filename ""))
(beep) (setq filename nil)))
filename))