PythonNut / quark-emacs

:rocket: An incredible wonderland of code
MIT License
137 stars 6 forks source link

"Re-entering top level after C stack overflow" #92

Closed PythonNut closed 6 years ago

PythonNut commented 6 years ago

This happens sporadically.

May be related to #90.

PythonNut commented 6 years ago

On my XPS 13:

(setq max-specpdl-size 100000
      max-lisp-eval-depth 20000)

(defun f1 () (f1))

(f1)

Causes lisp nesting exceeds 'max-lisp-eval-depth'.

Changing max-lisp-eval-depth to 30000 causes Re-entering top level after C stack overflow.