Function: subr-native-lambda-list

subr-native-lambda-list is a function defined in data.c.

Signature

(subr-native-lambda-list SUBR)

Documentation

Return the lambda list for a native-compiled lisp/d function or t otherwise.

Source Code

// Defined in /usr/src/emacs/src/data.c
{
  CHECK_SUBR (subr);

#ifdef HAVE_NATIVE_COMP
  if (NATIVE_COMP_FUNCTION_DYNP (subr))
    return XSUBR (subr)->lambda_list;
#endif
  return Qt;
}