aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman2002-05-28 20:24:32 +0000
committerRichard M. Stallman2002-05-28 20:24:32 +0000
commit2520dc0caa5fd0cd7ff221ea9d4fe86d8623efac (patch)
treec63195103c9de0e93080606f61c583345f975ec2 /src
parentccb3c8deafcbbeb4029fb8e09b0c4f930783f253 (diff)
downloademacs-2520dc0caa5fd0cd7ff221ea9d4fe86d8623efac.tar.gz
emacs-2520dc0caa5fd0cd7ff221ea9d4fe86d8623efac.zip
(syms_of_eval): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/eval.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/eval.c b/src/eval.c
index 0acd7325a85..33bda7bfc57 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -3240,14 +3240,19 @@ syms_of_eval ()
3240 DEFVAR_INT ("max-specpdl-size", &max_specpdl_size, 3240 DEFVAR_INT ("max-specpdl-size", &max_specpdl_size,
3241 doc: /* *Limit on number of Lisp variable bindings & unwind-protects. 3241 doc: /* *Limit on number of Lisp variable bindings & unwind-protects.
3242If Lisp code tries to make more than this many at once, 3242If Lisp code tries to make more than this many at once,
3243an error is signaled. */); 3243an error is signaled.
3244You can safely use a value considerably larger than the default value,
3245if that proves inconveniently small. However, if you increase it too far,
3246Emacs could run out of memory trying to make the stack bigger. */);
3244 3247
3245 DEFVAR_INT ("max-lisp-eval-depth", &max_lisp_eval_depth, 3248 DEFVAR_INT ("max-lisp-eval-depth", &max_lisp_eval_depth,
3246 doc: /* *Limit on depth in `eval', `apply' and `funcall' before error. 3249 doc: /* *Limit on depth in `eval', `apply' and `funcall' before error.
3247This limit is to catch infinite recursions for you before they cause 3250
3251This limit serves to catch infinite recursions for you before they cause
3248actual stack overflow in C, which would be fatal for Emacs. 3252actual stack overflow in C, which would be fatal for Emacs.
3249You can safely make it considerably larger than its default value, 3253You can safely make it considerably larger than its default value,
3250if that proves inconveniently small. */); 3254if that proves inconveniently small. However, if you increase it too far,
3255Emacs could overflow the real C stack, and crash. */);
3251 3256
3252 DEFVAR_LISP ("quit-flag", &Vquit_flag, 3257 DEFVAR_LISP ("quit-flag", &Vquit_flag,
3253 doc: /* Non-nil causes `eval' to abort, unless `inhibit-quit' is non-nil. 3258 doc: /* Non-nil causes `eval' to abort, unless `inhibit-quit' is non-nil.