Holger Rauch <[EMAIL PROTECTED]> writes:
> I got the problem that when I press C-cC-vC-. I get the following Lisp
> error message:
>
> Lisp nesting exceeds max-lisp-eval-depth
Hi!
I got the same error on my linux box (RedHat). I solved it putting the
following 2 lines in my .emacs :
(setq max-lisp-eval-depth 3000)
(setq max-specpdl-size 3000)
It seems that your problem is about the exceeding of the value of the
first variable, which is 300 by default. Its use is only to avoid
infinite recursions, so it can be as high as it can bear.
As for the second variable, i can't remember where i read its use, but
i think it solved an analagous problem...
Hope it helped...
--
Sebastiano Ietti <[EMAIL PROTECTED]>