comparison test/index.tst @ 21174:a223cce1daa4

strip trailing space from source files we maintain * gl2ps-renderer.cc, gl2ps-renderer.h, pt-eval.cc CmplxCHOL.cc, sparse-lu.h, datetick.m, index.tst: Strip trailing whitespace.
author John W. Eaton <jwe@octave.org>
date Mon, 01 Feb 2016 08:53:01 -0500
parents 99d373870017
children a4faec57f4c8
comparison
equal deleted inserted replaced
21170:1edaf1ee65eb 21174:a223cce1daa4
574 %! abc = [1 2; 3 4]; 574 %! abc = [1 2; 3 4];
575 %!error <abc\(1\+0i\): subscripts must be real> abc(complex(1)) 575 %!error <abc\(1\+0i\): subscripts must be real> abc(complex(1))
576 %!error <abc\(1\+0.5i,_\): subscripts must be real> abc(1+0.5*i,3) 576 %!error <abc\(1\+0.5i,_\): subscripts must be real> abc(1+0.5*i,3)
577 %!error <abc\(_,0-2i\): subscripts must be real> abc(2,0-2*i) 577 %!error <abc\(_,0-2i\): subscripts must be real> abc(2,0-2*i)
578 578
579 ## bug #35841 579 ## bug #35841
580 %!test 580 %!test
581 %! a(1,1,1).b(1) = 2; 581 %! a(1,1,1).b(1) = 2;
582 %! a(1,1,1).b(1) = 3; 582 %! a(1,1,1).b(1) = 3;
583 583
584 ## bug #39789 584 ## bug #39789
585 %!test 585 %!test
586 %! c = cell(1,1,1); 586 %! c = cell(1,1,1);
587 %! c{1,1,1} = zeros(5, 2); 587 %! c{1,1,1} = zeros(5, 2);
588 %! c{1,1,1}(:, 1) = 1; 588 %! c{1,1,1}(:, 1) = 1;