Function: symtable:actype-p

symtable:actype-p is a byte-compiled function defined in hact.el.

Signature

(symtable:actype-p SYMBOL-OR-NAME)

Documentation

Return Elisp symbol for SYMBOL-OR-NAME if a Hyperbole action type.

May also be an Elisp function. Otherwise, return nil.

Aliases

actype:elisp-symbol

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hact.el
(defsubst symtable:actype-p (symbol-or-name)
  "Return Elisp symbol for SYMBOL-OR-NAME if a Hyperbole action type.
May also be an Elisp function.  Otherwise, return nil."
  (when (or (symbolp symbol-or-name) (stringp symbol-or-name))
    (or (symtable:get symbol-or-name symtable:actypes)
	(and (stringp symbol-or-name) (fboundp (intern-soft symbol-or-name))
	     (intern-soft symbol-or-name))
	(and (functionp symbol-or-name) symbol-or-name))))