Function: ibtype:def-symbol
ibtype:def-symbol is a byte-compiled function defined in hbut.el.
Signature
(ibtype:def-symbol IBTYPE)
Documentation
Return the abbreviated symbol for IBTYPE used in its defib.
IBTYPE must be a symbol or string that begins with ibtype:: or nil
is returned.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hbut.el
(defun ibtype:def-symbol (ibtype)
"Return the abbreviated symbol for IBTYPE used in its `defib'.
IBTYPE must be a symbol or string that begins with `ibtype::' or nil
is returned."
(let ((name (if (stringp ibtype)
ibtype
(symbol-name ibtype))))
(when (string-match "\\`ibtypes::" name)
(intern (substring name (match-end 0))))))