Function: hproperty:but-set

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

Signature

(hproperty:but-set BUTTON PROPERTY VALUE)

Documentation

Set BUTTON PROPERTY to VALUE.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hproperty.el
(defun hproperty:but-set (button property value)
  "Set BUTTON PROPERTY to VALUE."
  (if (and (overlayp button) (symbolp property))
      (overlay-put button property value)
    (error "(hproperty:but-set): Invalid button: '%s' or property: '%s'"
	   button property)))