Function: calc-less-recursion-depth
calc-less-recursion-depth is an autoloaded, interactive and
byte-compiled function defined in calc-stuff.el.gz.
Signature
(calc-less-recursion-depth N)
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-stuff.el.gz
(defun calc-less-recursion-depth (n)
(interactive "P")
(let ((n (if n (prefix-numeric-value n) 2)))
(if (> n 1)
(setq max-specpdl-size
(max (/ max-specpdl-size n) 600)
max-lisp-eval-depth
(max (/ max-lisp-eval-depth n) 200))))
(message "max-lisp-eval-depth is now %d" max-lisp-eval-depth))