Function: calc-more-recursion-depth
calc-more-recursion-depth is an autoloaded, interactive and
byte-compiled function defined in calc-stuff.el.gz.
Signature
(calc-more-recursion-depth N)
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-stuff.el.gz
(message "%d-" num))))) ; a (lame) simulation of the real thing...
(defun calc-more-recursion-depth (n)
(interactive "P")
(calc-wrapper
(if (calc-is-inverse)
(calc-less-recursion-depth n)
(let ((n (if n (prefix-numeric-value n) 2)))
(if (> n 1)
(setq max-lisp-eval-depth (* max-lisp-eval-depth n))))
(message "max-lisp-eval-depth is now %d" max-lisp-eval-depth))))