Function: hsys-org-set-ibut-label
hsys-org-set-ibut-label is a byte-compiled function defined in
hsys-org.el.
Signature
(hsys-org-set-ibut-label START-END)
Documentation
Record the label and START-END positions of any implicit button at point.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hsys-org.el
(defun hsys-org-set-ibut-label (start-end)
"Record the label and START-END positions of any implicit button at point."
(when (consp start-end)
(ibut:label-set (ibut:key-to-label
(ibut:label-to-key
(buffer-substring-no-properties
(car start-end) (cdr start-end))))
(car start-end) (cdr start-end))))