(math-check-known-square-matrixp): Change order in which value is checked.
This commit is contained in:
parent
9c40111a84
commit
16d661843e
1 changed files with 2 additions and 2 deletions
|
|
@ -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))))))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue