File: eval.c.html
Defined variables (17)
backtrace-on-error-noninteractive | Non-nil means print backtrace on error in batch mode. |
backtrace-on-redisplay-error | Non-nil means create a backtrace if a lisp error occurs in redisplay. |
debug-ignored-errors | List of errors for which the debugger should not be called. |
debug-on-error | Non-nil means enter debugger if an error is signaled. |
debug-on-next-call | Non-nil means enter debugger before next ‘eval’, ‘apply’ or ‘funcall’. |
debug-on-quit | Non-nil means enter debugger if quit is signaled (C-g, for example). |
debug-on-signal | Non-nil means call the debugger regardless of condition handlers. |
debugger | Function to call to invoke debugger. |
debugger-may-continue | Non-nil means debugger may continue execution. |
debugger-stack-frame-as-list | Non-nil means display call stack frames as lists. |
inhibit-debugger | Non-nil means never enter the debugger. |
inhibit-quit | Non-nil inhibits C-g quitting from happening immediately. |
internal-make-interpreted-closure-function | Function to filter the env when constructing a closure. |
internal-when-entered-debugger | The number of keyboard events as of last time ‘debugger’ was called. |
max-lisp-eval-depth | Limit on depth in ‘eval’, ‘apply’ and ‘funcall’ before error. |
quit-flag | Non-nil causes ‘eval’ to abort, unless ‘inhibit-quit’ is non-nil. |
signal-hook-function | If non-nil, this is a function for ‘signal’ to call. |
Defined functions (49)
and | (CONDITIONS...) |
apply | (FUNCTION &rest ARGUMENTS) |
autoload | (FUNCTION FILE &optional DOCSTRING INTERACTIVE TYPE) |
autoload-do-load | (FUNDEF &optional FUNNAME MACRO-ONLY) |
backtrace--frames-from-thread | (THREAD) |
backtrace--locals | (NFRAMES &optional BASE) |
backtrace-debug | (LEVEL FLAG) |
backtrace-eval | (EXP NFRAMES &optional BASE) |
backtrace-frame--internal | (FUNCTION NFRAMES BASE) |
catch | (TAG BODY...) |
commandp | (FUNCTION &optional FOR-CALL-INTERACTIVELY) |
cond | (CLAUSES...) |
condition-case | (VAR BODYFORM &rest HANDLERS) |
default-toplevel-value | (SYMBOL) |
defconst | (SYMBOL INITVALUE [DOCSTRING]) |
defconst-1 | (SYM INITVALUE &optional DOCSTRING) |
defvar | (SYMBOL &optional INITVALUE DOCSTRING) |
defvar-1 | (SYM INITVALUE &optional DOCSTRING) |
defvaralias | (NEW-ALIAS BASE-VARIABLE &optional DOCSTRING) |
eval | (FORM &optional LEXICAL) |
fetch-bytecode | (OBJECT) |
func-arity | (FUNCTION) |
funcall | (FUNCTION &rest ARGUMENTS) |
funcall-with-delayed-message | (TIMEOUT MESSAGE FUNCTION) |
function | (ARG) |
functionp | (OBJECT) |
if | (COND THEN ELSE...) |
internal--define-uninitialized-variable | (SYMBOL &optional DOC) |
internal-make-var-non-special | (SYMBOL) |
let | (VARLIST BODY...) |
let* | (VARLIST BODY...) |
macroexpand | (FORM &optional ENVIRONMENT) |
mapbacktrace | (FUNCTION &optional BASE) |
or | (CONDITIONS...) |
prog1 | (FIRST BODY...) |
progn | (BODY...) |
quote | (ARG) |
run-hook-with-args | (HOOK &rest ARGS) |
run-hook-with-args-until-failure | (HOOK &rest ARGS) |
run-hook-with-args-until-success | (HOOK &rest ARGS) |
run-hook-wrapped | (HOOK WRAP-FUNCTION &rest ARGS) |
run-hooks | (&rest HOOKS) |
set-default-toplevel-value | (SYMBOL VALUE) |
setq | ([SYM VAL]...) |
signal | (ERROR-SYMBOL DATA) |
special-variable-p | (SYMBOL) |
throw | (TAG VALUE) |
unwind-protect | (BODYFORM UNWINDFORMS...) |
while | (TEST BODY...) |