Function: closurep

closurep is a function defined in data.c.

Signature

(closurep OBJECT)

Documentation

Return t if OBJECT is a function of type closure.

View in manual

Probably introduced at or before Emacs version 30.1.

Source Code

// Defined in /usr/src/emacs/src/data.c
{
  if (CLOSUREP (object))
    return Qt;
  return Qnil;
}