Function: indirect-function

indirect-function is a function defined in data.c.

Signature

(indirect-function OBJECT)

Documentation

Return the function at the end of OBJECT's function chain.

If OBJECT is not a symbol, just return it. Otherwise, follow all function indirections to find the final function binding and return it.

View in manual

Probably introduced at or before Emacs version 25.1.

Source Code

// Defined in /usr/src/emacs/src/data.c
{
  return indirect_function (object);
}