Function: math-rewrite-heads-rec
math-rewrite-heads-rec is a byte-compiled function defined in
calc-rewr.el.gz.
Signature
(math-rewrite-heads-rec EXPR)
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-rewr.el.gz
(defun math-rewrite-heads-rec (expr)
(or (memq (car expr) math-rewrite-heads-skips)
(progn
(or (memq (car expr) math-rewrite-heads-heads)
(memq (car expr) math-rewrite-heads-blanks)
(memq 'algebraic (get (car expr) 'math-rewrite-props))
(setq math-rewrite-heads-heads (cons (car expr) math-rewrite-heads-heads)))
(while (setq expr (cdr expr))
(or (Math-primp (car expr))
(math-rewrite-heads-rec (car expr)))))))