Function: hbut:is-p

hbut:is-p is a byte-compiled function defined in hbut.el.

Signature

(hbut:is-p OBJECT)

Documentation

Return the symbol if OBJECT is a symbol representing a Hyperbole button.

Aliases

hproperty:but-is-p

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hbut.el
(defun    hbut:is-p (object)
  "Return the symbol if OBJECT is a symbol representing a Hyperbole button."
 (and (symbolp object)
      (hattr:get object 'categ)
      object))