diff options
author | Richard M. Stallman <rms@gnu.org> | 1998-05-19 03:45:57 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1998-05-19 03:45:57 +0000 |
commit | a9f0a989a17f47f9d25b7a426b4e82a8ff684ee4 (patch) | |
tree | d62b5592064177c684f1509989b223623db3f24c /lispref/eval.texi | |
parent | c6d6572475603083762cb0155ae966de7710bb9c (diff) | |
download | emacs-a9f0a989a17f47f9d25b7a426b4e82a8ff684ee4.tar.gz |
*** empty log message ***
Diffstat (limited to 'lispref/eval.texi')
-rw-r--r-- | lispref/eval.texi | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lispref/eval.texi b/lispref/eval.texi index 512e6d927b2..d49aba1cc16 100644 --- a/lispref/eval.texi +++ b/lispref/eval.texi @@ -464,6 +464,9 @@ Emacs Lisp with a reference to where each is described. @item quote @pxref{Quoting} +@item save-current-buffer +@pxref{Current Buffer} + @item save-excursion @pxref{Excursions} @@ -657,8 +660,10 @@ The depth limit counts internal uses of @code{eval}, @code{apply}, and expressions, and recursive evaluation of function call arguments and function body forms, as well as explicit calls in Lisp code. -The default value of this variable is 200. If you set it to a value +The default value of this variable is 300. If you set it to a value less than 100, Lisp will reset it to 100 if the given value is reached. +Entry to the Lisp debugger increases the value, if there is little room +left, to make sure the debugger itself has room to execute. @code{max-specpdl-size} provides another limit on nesting. @xref{Local Variables}. |