Function: math-clean-arg

math-clean-arg is a byte-compiled function defined in calc-prog.el.gz.

Signature

(math-clean-arg ARG)

Source Code

;; Defined in /usr/src/emacs/lisp/calc/calc-prog.el.gz
(defun math-clean-arg (arg)
  (if (consp arg)
      (math-clean-arg (nth 1 arg))
    arg))