Function: hattr:ibtype-is-p

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

Signature

(hattr:ibtype-is-p IBTYPE-SYMBOL &optional IBUT-SYMBOL)

Documentation

Return t if IBTYPE-SYMBOL matches an ibut's ='categ attr value.

The ibut used defaults to ='hbut:current or the optional IBUT-SYMBOL.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hbut.el
(defun hattr:ibtype-is-p (ibtype-symbol &optional ibut-symbol)
  "Return t if IBTYPE-SYMBOL matches an ibut's \='categ attr value.
The ibut used defaults to \='hbut:current or the optional IBUT-SYMBOL."
  (hattr:is-p 'categ
	      (or (ibtype:elisp-symbol ibtype-symbol) ibtype-symbol)
	      ibut-symbol))