Variant of sublis-fn that performs no simplification.
(fsublis-fn alist term bound-vars) → (mv vars new-term)
The meaning of the starting
Function:
(defun fsublis-fn (alist term bound-vars) (declare (xargs :guard (and (symbol-alistp alist) (pseudo-termp term) (symbol-listp bound-vars)))) (let ((__function__ 'fsublis-fn)) (declare (ignorable __function__)) (fsublis-fn-rec alist term bound-vars t)))