Function: actype:def-symbol

actype:def-symbol is a byte-compiled function defined in hact.el.

Signature

(actype:def-symbol ACTYPE)

Documentation

Return the abbreviated symbol for ACTYPE used in its defact.

ACTYPE must be a symbol or string that begins with actype:: or nil is returned.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hact.el
(defun    actype:def-symbol (actype)
  "Return the abbreviated symbol for ACTYPE used in its `defact'.
ACTYPE must be a symbol or string that begins with `actype::' or nil
is returned."
  (let ((name (if (stringp actype)
		  actype
		(symbol-name actype))))
    (when (string-match "\\`actypes::" name)
      (intern (substring name (match-end 0))))))