I was informed from the TortoiseSVN mailing list that I need to post this
problem here. The following two examples don't diff correctly (in my
opinion). The "if" statement on the bottom should take priority over the
indentation of the braces. Is there some setting I could tweak to improve
the performance of the diff tool for code like this?
File 1:
if(a){
b
c
d
e
while(f){
if(g)
break;
}
if(g && h && i)
return
}
File 2:
lock(sr){
if(a){
b
c
d
e
while(f){
if(g && h && i)
break;
}
if(g && h && i)
return
}
}
Thanks for your time,
Brannon
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Thu Mar 29 18:05:50 2007