summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/calc/calc-arith.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/calc/calc-arith.el b/lisp/calc/calc-arith.el
index 810ed7bdd9f..feb3c9d25a8 100644
--- a/lisp/calc/calc-arith.el
+++ b/lisp/calc/calc-arith.el
@@ -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))))))