Function: calc-encase-atoms

calc-encase-atoms is an autoloaded and byte-compiled function defined in calc-sel.el.gz.

Signature

(calc-encase-atoms X)

Source Code

;; Defined in /usr/src/emacs/lisp/calc/calc-sel.el.gz
;;; The following ensures that no two subformulas will be "eq" to each other!
(defun calc-encase-atoms (x)
  (if (or (not (consp x))
	  (equal x '(float 0 0)))
      (list 'cplx x 0)
    (calc-encase-atoms-rec x)
    x))