Function: hproperty:but-clear

hproperty:but-clear is a byte-compiled function defined in hproperty.el.

Signature

(hproperty:but-clear &optional POS PROPERTY VALUE)

Documentation

Remove highlighting from any named Hyperbole button at point or POS.

If optional PROPERTY and VALUE are given, remove highlighting only if the PROPERTY at the position matches VALUE.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hproperty.el
(defun hproperty:but-clear (&optional pos property value)
  "Remove highlighting from any named Hyperbole button at point or POS.
If optional PROPERTY and VALUE are given, remove highlighting only if
the PROPERTY at the position matches VALUE."
  (let ((but (hproperty:but-get pos property value)))
    (when but
      (delete-overlay but))))