Mercurial > emacs
changeset 18920:9c03cae980ed
(syms_of_eval): Doc fix.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 23 Jul 1997 16:34:32 +0000 |
parents | fd6c9bd9ca6b |
children | 099aeb6bf4ea |
files | src/eval.c |
diffstat | 1 files changed, 4 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/eval.c Wed Jul 23 04:22:58 1997 +0000 +++ b/src/eval.c Wed Jul 23 16:34:32 1997 +0000 @@ -2882,10 +2882,12 @@ syms_of_eval () { DEFVAR_INT ("max-specpdl-size", &max_specpdl_size, - "Limit on number of Lisp variable bindings & unwind-protects before error."); + "*Limit on number of Lisp variable bindings & unwind-protects.\n\ +If Lisp code tries to make more than this many at once,\n\ +an error is signaled."); DEFVAR_INT ("max-lisp-eval-depth", &max_lisp_eval_depth, - "Limit on depth in `eval', `apply' and `funcall' before error.\n\ + "*Limit on depth in `eval', `apply' and `funcall' before error.\n\ This limit is to catch infinite recursions for you before they cause\n\ actual stack overflow in C, which would be fatal for Emacs.\n\ You can safely make it considerably larger than its default value,\n\