Function: hui:hbut-term-unhighlight

hui:hbut-term-unhighlight is a byte-compiled function defined in hui.el.

Signature

(hui:hbut-term-unhighlight START END)

Documentation

For terminals only: Remove any emphasis from hyper-button at START to _END.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui.el
(defun hui:hbut-term-unhighlight (start _end)
  "For terminals only: Remove any emphasis from hyper-button at START to _END."
  (save-excursion
    (save-restriction
      (goto-char start)
      (narrow-to-region (point-min) start)
      (sit-for 0)
      (setq inverse-video nil))))