I've been randomly getting the following error in emacs:
Variable binding depth exceeds max-specpdl-size
...and I've been getting it at very random moments. After researching this, it seems as though some elisp somewhere is recursing too deeply. Are there any strategies for tracking this down? I'm totally at a loss as far as what is actually causing this.
I've gotten some errors indicating something along the lines of infinite recursion with ropemacs (but these are usually Python errors). Could something be misconfigured with ropemacs?
Update: Interestingly enough, I've found that I always get this error if I do a "C-h a" for "speedbar" but not for "rope-".
For me too it did not work. I found with C-h+v that actually
max-specpdl-size
was not changed to5
at all by thesetq
. I then tried to set it interactively with M-xset-variable
. That too did not change its value. Finally I managed to set it with M-xcustomize-variable
.Btw, on my system
max-specpdl-size
was140
and thus to small. I had to increase it to1000
, not in order to get a backtrace and debug it, but to make it work.