X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=man%2Flispref%2Feval.texi;h=d9dbfe101575bca1704305844d92bce009dd6cbd;hb=71ab40bdfa99fee513520d26127f44a32db1a4f6;hp=71ce6d2930276a2516f5cf24a5fa0967ef8650a1;hpb=98a6e4055a1fa624c592ac06f79287d55196ca37;p=chise%2Fxemacs-chise.git- diff --git a/man/lispref/eval.texi b/man/lispref/eval.texi index 71ce6d2..d9dbfe1 100644 --- a/man/lispref/eval.texi +++ b/man/lispref/eval.texi @@ -74,7 +74,7 @@ recursively, so that its value can be passed as an argument to the function @code{car}. Evaluation of a function call ultimately calls the function specified -in it. @xref{Functions}. The execution of the function may itself work +in it. @xref{Functions and Commands}. The execution of the function may itself work by evaluating the function definition; or the function may be a Lisp primitive implemented in C, or it may be a byte-compiled function (@pxref{Byte Compilation}). @@ -182,7 +182,7 @@ This limit, with the associated error when it is exceeded, is one way that Lisp avoids infinite recursion on an ill-defined function. @cindex Lisp nesting error -The default value of this variable is 500. If you set it to a value +The default value of this variable is 1000. If you set it to a value less than 100, Lisp will reset it to 100 if the given value is reached. @code{max-specpdl-size} provides another limit on nesting.