Function: hbut:ibut-key-list

hbut:ibut-key-list is a byte-compiled function defined in hbut.el.

Signature

(hbut:ibut-key-list &optional KEY-SRC)

Documentation

Return a list of implicit 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:ibut-key-list (&optional key-src)
  "Return a list of implicit button label keys.
Keys in optional KEY-SRC or the current buffer."
  (save-excursion
    (when (hbut:key-src-set-buffer (or key-src (current-buffer)))
      (save-restriction
	(widen)
	(ibut:label-map (lambda (label _start _end) (ibut:label-to-key label)))))))