Function: symtable:hyperbole-actype-p
symtable:hyperbole-actype-p is a byte-compiled function defined in
hact.el.
Signature
(symtable:hyperbole-actype-p SYMBOL-OR-NAME)
Documentation
Return Elisp symbol for SYMBOL-OR-NAME if a Hyperbole action type, else nil.
This excludes Emacs Lisp functions which may be used as action types. Use actype:elisp-symbol to include these.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hact.el
(defsubst symtable:hyperbole-actype-p (symbol-or-name)
"Return Elisp symbol for SYMBOL-OR-NAME if a Hyperbole action type, else nil.
This excludes Emacs Lisp functions which may be used as action types.
Use `actype:elisp-symbol' to include these."
(when (or (symbolp symbol-or-name) (stringp symbol-or-name))
(or (symtable:get symbol-or-name symtable:actypes))))