(math-check-known-square-matrixp): Change order in which value is checked.

This commit is contained in:
Jay Belanger 2005-10-10 19:59:18 +00:00
parent 9c40111a84
commit 16d661843e

View file

@ -383,8 +383,6 @@
(cond
((memq 'sqmatrix (nth 1 decl))
t)
((memq 'matrix (nth 1 decl))
nil)
((and (eq (car a) 'var)
(boundp (nth 2 a))
(setq val (symbol-value (nth 2 a))))
@ -394,6 +392,8 @@
(eq calc-matrix-mode 'sqmatrix))
(eq (car-safe a) 'var))
t)
((memq 'matrix (nth 1 decl))
nil)
(t
nil))))))