Function: hbut:ebut-key-list
hbut:ebut-key-list is a byte-compiled function defined in hbut.el.
Signature
(hbut:ebut-key-list &optional KEY-SRC)
Documentation
Return a list of explicit button label keys.
Keys in optional KEY-SRC or the current buffer.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hbut.el
(defun hbut:ebut-key-list (&optional key-src)
"Return a list of explicit button label keys.
Keys in optional KEY-SRC or the current buffer."
(save-excursion
(save-restriction
(if (hbdata:to-entry-buf (or key-src (hypb:buffer-file-name)))
(let (hbuts)
(save-restriction
(narrow-to-region (point) (if (search-forward "\f" nil t)
(point) (point-max)))
(goto-char (point-min))
(ignore-errors
(while (setq hbuts (cons (car (read (current-buffer))) hbuts))))
hbuts))))))