Function: math-check-complete

math-check-complete is a byte-compiled function defined in calc.el.gz.

Signature

(math-check-complete A)

Source Code

;; Defined in /usr/src/emacs/lisp/calc/calc.el.gz
;; Verify that A is a complete object and return A.  [x x] [Public]
(defun math-check-complete (a)
  (cond ((integerp a) a)
	((eq (car-safe a) 'incomplete)
	 (calc-incomplete-error a))
	((consp a) a)
	(t (error "Invalid data object encountered"))))