Function: subr-type

subr-type is a function defined in data.c.

Signature

(subr-type SUBR)

Documentation

Return the type of SUBR.

Source Code

// Defined in /usr/src/emacs/src/data.c
{
  CHECK_SUBR (subr);
#ifdef HAVE_NATIVE_COMP
  return SUBR_TYPE (subr);
#else
  return Qnil;
#endif
}