Function: math-reject-arg
math-reject-arg is an autoloaded and byte-compiled function defined in
calc-misc.el.gz.
Signature
(math-reject-arg &optional A P OPTION)
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-misc.el.gz
;; Reject an argument to a calculator function. [Public]
;;;###autoload
(defun math-reject-arg (&optional a p option)
(if option
(calc-record-why option p a)
(if p
(calc-record-why p a)))
(signal 'wrong-type-argument (and a (if p (list p a) (list a)))))