help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: max-lisp-eval-depth


From: Stefan Monnier
Subject: Re: max-lisp-eval-depth
Date: Wed, 30 Jan 2013 17:01:07 -0500
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (gnu/linux)

> And then other times, I can't enter my Inbox because of
> "max-lisp-eval-depth."

That's either because there's an infinite recursion (in which case you
need to fix the corresponding code), or because the code uses more stack
space than provided.
You can fix the latter problem either by increasing the stack space (by
setting max-lisp-eval-depth to a larger value) or by reducing the
stack usage.  Byte-compiled code uses much less stack space, so if you
use Elisp packages without byte-compiling them, the first thing I'd
suggest is to byte-compile them.


        Stefan


reply via email to

[Prev in Thread] Current Thread [Next in Thread]