Can't byte compile js2 mode
sixohsix opened this issue · 5 comments
I attempted to byte-compile your version of js2 mode to make it fast. (It is currently not usable without byte-compilation). I did:
M-x byte-compile-file ...
I received:
Compiling file /home/miv/.emacs-lib/js2-mode.el at Tue Aug 16 11:50:32 2011
Entering directory `/home/miv/.emacs-lib/'
js2-mode.el:6960:24:Error: Variable binding depth exceeds max-specpdl-size
Apparently it works if I do it from the command line:
emacs --batch -f batch-byte-compile js2-mode.el
Now it works. Apparently I just can't read the documentation. Maybe you could add a warning that people should not use the byte compiler inside emacs to compile the file.
It's a known problem on some configurations.
A warning may be appropriate, I agree.
Thanks for the discussion. I'll add the warning message to the documentation.
@sixohsix Could you try to reproduce the issue with the current master?
I think it may be fixed now.
Yup, I updated to master and recompiled within emacs, and it worked fine. Thanks for your work!