[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Bug with merge/diff

From: Brannon King <notacommie_at_gmail.com>
Date: 2007-03-08 20:29:31 CET

The following two examples don't merge correctly, in my opinion. The if
statement on the bottom should take priority over the indentation of the
braces.

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
        }
}

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tortoisesvn.tigris.org
For additional commands, e-mail: dev-help@tortoisesvn.tigris.org
Received on Thu Mar 8 20:29:47 2007

This is an archived mail posted to the TortoiseSVN Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.