Function: symbol-function
symbol-function is a function defined in data.c.
Signature
(symbol-function SYMBOL)
Documentation
Return SYMBOL's function definition.
Probably introduced at or before Emacs version 17.
Source Code
// Defined in /usr/src/emacs/src/data.c
{
CHECK_SYMBOL (symbol);
return XSYMBOL (symbol)->u.s.function;
}