Function: math-rwcomp-no-vars
math-rwcomp-no-vars is a byte-compiled function defined in
calc-rewr.el.gz.
Signature
(math-rwcomp-no-vars EXPR)
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-rewr.el.gz
(defun math-rwcomp-no-vars (expr)
(if (Math-primp expr)
(or (not (eq (car-safe expr) 'var))
(math-const-var expr))
(and (not (memq (car expr) '(calcFunc-condition
calcFunc-select calcFunc-quote
calcFunc-plain calcFunc-opt
calcFunc-por calcFunc-pand
calcFunc-pnot calcFunc-apply
calcFunc-cons calcFunc-rcons)))
(progn
(while (and (setq expr (cdr expr))
(math-rwcomp-no-vars (car expr))))
(null expr)))))