Function: hbut:to-key-src
hbut:to-key-src is a byte-compiled function defined in hbut.el.
Signature
(hbut:to-key-src &optional FULL-FLAG)
Documentation
Return key source (usually unqualified) for current Hyperbole button.
Also set current buffer to key source. With optional FULL-FLAG when source is a pathname, return the full pathname.
Aliases
ebut:to-key-src
ibut:to-key-src
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hbut.el
(defun hbut:to-key-src (&optional full-flag)
"Return key source (usually unqualified) for current Hyperbole button.
Also set current buffer to key source.
With optional FULL-FLAG when source is a pathname, return the full pathname."
(let ((src (hbut:get-key-src full-flag)))
(hbut:key-src-set-buffer src)))