diff options
| author | Richard M. Stallman | 1997-07-23 16:34:32 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-07-23 16:34:32 +0000 |
| commit | 7eaada67d59952a90cb44deb68998d73337f89f6 (patch) | |
| tree | edeba654f0b35c01bfde05f00d456c784fc28fdc /src/eval.c | |
| parent | e9e594568d14b97bb6f8527d80cd02bb5ec9dd07 (diff) | |
| download | emacs-7eaada67d59952a90cb44deb68998d73337f89f6.tar.gz emacs-7eaada67d59952a90cb44deb68998d73337f89f6.zip | |
(syms_of_eval): Doc fix.
Diffstat (limited to 'src/eval.c')
| -rw-r--r-- | src/eval.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/eval.c b/src/eval.c index e0de0c18636..8bf28ab74ea 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -2882,10 +2882,12 @@ If NFRAMES is more than the number of frames, the value is nil.") | |||
| 2882 | syms_of_eval () | 2882 | syms_of_eval () |
| 2883 | { | 2883 | { |
| 2884 | DEFVAR_INT ("max-specpdl-size", &max_specpdl_size, | 2884 | DEFVAR_INT ("max-specpdl-size", &max_specpdl_size, |
| 2885 | "Limit on number of Lisp variable bindings & unwind-protects before error."); | 2885 | "*Limit on number of Lisp variable bindings & unwind-protects.\n\ |
| 2886 | If Lisp code tries to make more than this many at once,\n\ | ||
| 2887 | an error is signaled."); | ||
| 2886 | 2888 | ||
| 2887 | DEFVAR_INT ("max-lisp-eval-depth", &max_lisp_eval_depth, | 2889 | DEFVAR_INT ("max-lisp-eval-depth", &max_lisp_eval_depth, |
| 2888 | "Limit on depth in `eval', `apply' and `funcall' before error.\n\ | 2890 | "*Limit on depth in `eval', `apply' and `funcall' before error.\n\ |
| 2889 | This limit is to catch infinite recursions for you before they cause\n\ | 2891 | This limit is to catch infinite recursions for you before they cause\n\ |
| 2890 | actual stack overflow in C, which would be fatal for Emacs.\n\ | 2892 | actual stack overflow in C, which would be fatal for Emacs.\n\ |
| 2891 | You can safely make it considerably larger than its default value,\n\ | 2893 | You can safely make it considerably larger than its default value,\n\ |