Function: smart-flash-tag
smart-flash-tag is a byte-compiled function defined in hmouse-tag.el.
Signature
(smart-flash-tag TAG START END)
Documentation
Try to flash TAG at START to END in current buffer and return TAG.
This indicates that TAG is serving as a hyperlink button.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hmouse-tag.el
(defun smart-flash-tag (tag start end)
"Try to flash TAG at START to END in current buffer and return TAG.
This indicates that TAG is serving as a hyperlink button."
;; Button flashing code might not yet have been loaded if the whole
;; Hyperbole system has not been started.
(when (and (fboundp 'hui:but-flash)
(fboundp 'ibut:label-set))
(ibut:label-set tag start end)
(hui:but-flash))
tag)