Skip to content
  • Liam M. Healy's avatar
    Fix iterate extension to increment properly · e85d75dc
    Liam M. Healy authored
    In the iterate extension :matrix-element, the first element of
    following rows was repeated due to an error in the logic of the
    expansion. 
    Example: 
    (defparameter m1 #m(1 2 3 ^ 0 6 8))
    (iter:iter (iter:for e :matrix-element m1) (princ e) (princ " "))
    1.0 2.0 3.0 0.0 0.0 6.0 8.0
    This is now fixed.
    
    Problem reported on SO, and sent to mailing list by Joshua Taylor.
    e85d75dc