[Codestriker-user] Problems with tab expansion in codestriker
Brought to you by:
sits
|
From: Chris W. <Chr...@jd...> - 2012-02-29 15:38:09
|
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 |