table.c | table.c | |||
---|---|---|---|---|
skipping to change at line 3733 | skipping to change at line 3733 | |||
/* Increment the number of values in this row. Note row indices are | /* Increment the number of values in this row. Note row indices are | |||
one-based. */ | one-based. */ | |||
} else { | } else { | |||
w1[ iold - 1 ]++; | w1[ iold - 1 ]++; | |||
} | } | |||
} | } | |||
/* Loop round all columns in the Table. */ | /* Loop round all columns in the Table. */ | |||
ncol = astGetNcolumn( this ); | ncol = astGetNcolumn( this ); | |||
inew = nrow; | ||||
for( icol = 1; icol <= ncol; icol++ ) { | for( icol = 1; icol <= ncol; icol++ ) { | |||
/* Get the column name */ | /* Get the column name */ | |||
col = astColumnName( this, icol ); | col = astColumnName( this, icol ); | |||
/* Loop round all the old row numbers. Skip empty rows.*/ | /* Loop round all the old row numbers. Skip empty rows.*/ | |||
inew = 0; | inew = 0; | |||
for( iold = 0; iold < nrow; iold++ ) { | for( iold = 0; iold < nrow; iold++ ) { | |||
if( w1[ iold ] > 0 ) { | if( w1[ iold ] > 0 ) { | |||
End of changes. 1 change blocks. | ||||
0 lines changed or deleted | 1 lines changed or added | |||
This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/ |