Function: math-compare-lists

math-compare-lists is a byte-compiled function defined in calc-ext.el.gz.

Signature

(math-compare-lists A B)

Source Code

;; Defined in /usr/src/emacs/lisp/calc/calc-ext.el.gz
(defun math-compare-lists (a b)
  (cond ((null a) (null b))
	((null b) nil)
	(t (and (Math-equal (car a) (car b))
		(math-compare-lists (cdr a) (cdr b))))))