(math-add-symb-fancy): Check the length of the correct variable.

This commit is contained in:
Jay Belanger 2006-01-21 04:52:06 +00:00
parent a6c72dc393
commit 6a056c5d38
2 changed files with 4 additions and 1 deletions

View file

@ -3,6 +3,9 @@
* calc/calcalg2.el (calc-sum-rec): Fix the sum when the lower
limit is 0.
* calc/calc-arith.el (math-add-symb-fancy): Check the length of
the correct variable.
2006-01-20 Carsten Dominik <dominik@science.uva.nl>
* textmodes/org.el: (org-open-at-point): Fixed bug with matching a

View file

@ -1201,7 +1201,7 @@
(and (math-known-scalarp b)
(math-add (nth 1 a) b))))
(and (eq (car-safe b) 'calcFunc-idn)
(= (length a) 2)
(= (length b) 2)
(or (and (math-square-matrixp a)
(math-add a (math-mimic-ident (nth 1 b) a)))
(and (math-known-scalarp a)