Function: ibut:is-p

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

Signature

(ibut:is-p OBJECT)

Documentation

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

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hbut.el
(defun    ibut:is-p (object)
  "Return non-nil if OBJECT is a symbol representing an implicit Hyperbole button."
  (when (symbolp object)
    (let ((categ (hattr:get object 'categ)))
      (and categ
	   (or (eq categ 'implicit)
	       (string-match "\\`ibtypes::" (symbol-name categ)))))))