Using Codestriker 1.9.10 with SVN 1.6, getting tab expansion problems. See the following:
458 if( attempt_num < 4 ) 459 ++attempt_num; 460 else 461 TSK_sleep( ticks_per_attempt ); 462 } while( PRD_getticks() < end_tick ); The tab expansion setting is at 8 for this display. I did an od dump of the patch looking at the data representing lines 459 and 461 that they both have three tab chars and nothing else before the text, yet they have unequal tab expansion. This patch has the following white space prior to the text on the lines: Line 458 two tab lead in, nothing else Line 459 three tab lead in, nothing else Line 460 two tab lead in, nothing else Line 461 three tab lead in, nothing else Line 462 one tab lead in, nothing else Changing the display setting to 4 spaces per tabs yields: 458 if( attempt_num < 4 ) 459 ++attempt_num; 460 else 461 TSK_sleep( ticks_per_attempt ); 462 } while( PRD_getticks() < end_tick ); Any ideas what the problem is? Tx, Chris ------------------------------------------------------------------------------ Virtualization & Cloud Management Using Capacity Planning Cloud computing makes use of virtualization - but cloud computing also focuses on allowing computing to be delivered as a service. http://www.accelacomm.com/jaw/sfnl/114/51521223/ _______________________________________________ Codestriker-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/codestriker-user
