Function: math-body-refers-to

math-body-refers-to is an autoloaded and byte-compiled function defined in calc-prog.el.gz.

Signature

(math-body-refers-to BODY THING)

Source Code

;; Defined in /usr/src/emacs/lisp/calc/calc-prog.el.gz
(defun math-body-refers-to (body thing)
  (or (equal body thing)
      (and (consp body)
	   (or (math-body-refers-to (car body) thing)
	       (math-body-refers-to (cdr body) thing)))))