Function: math-flatten-lands
math-flatten-lands is an autoloaded and byte-compiled function defined
in calc-rewr.el.gz.
Signature
(math-flatten-lands EXPR)
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-rewr.el.gz
(defun math-flatten-lands (expr)
(if (eq (car-safe expr) 'calcFunc-land)
(append (math-flatten-lands (nth 1 expr))
(math-flatten-lands (nth 2 expr)))
(list expr)))