Function: ebut:is-p

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

Signature

(ebut:is-p OBJECT)

Documentation

Return non-nil if OBJECT is a symbol representing an explicit Hyperbole button.

Source Code

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