Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Corrected display of ancestor lines in three-way merge. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
e64e1eb72f46d97148f978657a671eca |
User & Date: | peter 2012-08-30 20:42:55.591 |
Context
2012-09-17
| ||
01:56 | Avoid getting double .-files in dirdiff on Windows. Try to preserve file name objects to keep internal file system representations as much as possible. Avoid unnessecary file system queries during dirdiff to make it more efficient, specially against network drives. check-in: 3fad1f0f9a user: peter tags: trunk | |
2012-08-30
| ||
20:42 | Corrected display of ancestor lines in three-way merge. check-in: e64e1eb72f user: peter tags: trunk | |
2012-08-21
| ||
21:23 | Bumped revision to 2.6.3 check-in: e7c607b7a4 user: peter tags: trunk | |
Changes
Changes to Changes.
1 2 3 4 5 6 7 | 2012-08-21 Bumped revision to 2.6.3 2012-08-21 Added Preferences menu for Pivot value. 2012-08-21 | > > > | 1 2 3 4 5 6 7 8 9 10 | 2012-08-30 Corrected display of ancestor lines in three-way merge. 2012-08-21 Bumped revision to 2.6.3 2012-08-21 Added Preferences menu for Pivot value. 2012-08-21 |
︙ | ︙ |
Changes to doc/tutorial.txt.
︙ | ︙ | |||
41 42 43 44 45 46 47 | <b>Three way merge</b> <bullet> \u2022\tDouble click on merge.txt to bring up the diff. \u2022\tSelect menu File->Open Ancestor File. \u2022\tSelect file mergeanc.txt </bullet> | | | 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | <b>Three way merge</b> <bullet> \u2022\tDouble click on merge.txt to bring up the diff. \u2022\tSelect menu File->Open Ancestor File. \u2022\tSelect file mergeanc.txt </bullet> The merge window will appear with most changes merged. Conflicts are marked with gray, and a row of asterisks in the status bar. Conflicts are resolved to the right initially. Navigate between conflicts using ctrl-up/down keys. Select side with left/right keys. Hover over the status bar to see ancestor info. <b>Regular expression preprocessing</b> Double click on enum.c to bring up the diff. [write something here to explain the problem and the goal] [add reference to re_syntax and regsub manuals] <bullet> |
︙ | ︙ |
Changes to src/merge.tcl.
︙ | ︙ | |||
70 71 72 73 74 75 76 | } lappend eskil($top,leftMergeData) $data1 lappend eskil($top,rightMergeData) $data2 set eskil($top,mergeSelection,$changeNo) \ [WhichSide $top $line1 $n1 $line2 $n2 conflict comment ancLines] set eskil($top,mergeSelection,Conflict,$changeNo) $conflict set eskil($top,mergeSelection,Comment,$changeNo) $comment | > | > | 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 | } lappend eskil($top,leftMergeData) $data1 lappend eskil($top,rightMergeData) $data2 set eskil($top,mergeSelection,$changeNo) \ [WhichSide $top $line1 $n1 $line2 $n2 conflict comment ancLines] set eskil($top,mergeSelection,Conflict,$changeNo) $conflict set eskil($top,mergeSelection,Comment,$changeNo) $comment set ancLines [lsort -dictionary -unique $ancLines] set eskil($top,mergeSelection,AncLines,$changeNo) \ "Lines from ancestor file:\n[join $ancLines \n]" if {$conflict} { set eskil($top,mergeSelection,AnyConflict) 1 } incr changeNo } set data1 {} set data2 {} |
︙ | ︙ | |||
587 588 589 590 591 592 593 | # This chunk has lines only to the right # Look for changes on the right side for {set t $line2} {$t < $line2 + $n2} {incr t} { if {[info exists ::eskil($top,ancestorRight,$t)]} { set right($::eskil($top,ancestorRight,$t)) 1 } if {[info exists ::eskil($top,ancestorRight,$t,lines)]} { | | | 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 | # This chunk has lines only to the right # Look for changes on the right side for {set t $line2} {$t < $line2 + $n2} {incr t} { if {[info exists ::eskil($top,ancestorRight,$t)]} { set right($::eskil($top,ancestorRight,$t)) 1 } if {[info exists ::eskil($top,ancestorRight,$t,lines)]} { lappend ancLines {*}$::eskil($top,ancestorRight,$t,lines) } } if {[array size right] == 0} { # No changes to the right, so deleted to the left : Keep left side set comment "Left: Delete" return 1 } |
︙ | ︙ | |||
615 616 617 618 619 620 621 | # This chunk has lines only to the left # Look for changes on the left side for {set t $line1} {$t < $line1 + $n1} {incr t} { if {[info exists ::eskil($top,ancestorLeft,$t)]} { set left($::eskil($top,ancestorLeft,$t)) 1 } if {[info exists ::eskil($top,ancestorLeft,$t,lines)]} { | | | 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 | # This chunk has lines only to the left # Look for changes on the left side for {set t $line1} {$t < $line1 + $n1} {incr t} { if {[info exists ::eskil($top,ancestorLeft,$t)]} { set left($::eskil($top,ancestorLeft,$t)) 1 } if {[info exists ::eskil($top,ancestorLeft,$t,lines)]} { lappend ancLines {*}$::eskil($top,ancestorLeft,$t,lines) } } if {[array size left] == 0} { # No changes to the left, so deleted to the right : Keep right side set comment "Right: Delete" return 2 } |
︙ | ︙ | |||
644 645 646 647 648 649 650 | # Collect left side info for {set t $line1} {$t < $line1 + $n1} {incr t} { if {[info exists ::eskil($top,ancestorLeft,$t)]} { set left($::eskil($top,ancestorLeft,$t)) 1 } if {[info exists ::eskil($top,ancestorLeft,$t,lines)]} { | | | | 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 | # Collect left side info for {set t $line1} {$t < $line1 + $n1} {incr t} { if {[info exists ::eskil($top,ancestorLeft,$t)]} { set left($::eskil($top,ancestorLeft,$t)) 1 } if {[info exists ::eskil($top,ancestorLeft,$t,lines)]} { lappend ancLines {*}$::eskil($top,ancestorLeft,$t,lines) } } # No changes against ancestor on left side means it is just # changed to the right : Keep right if {[array size left] == 0} { set comment "Right: Change" return 2 } # Collect right side info for {set t $line2} {$t < $line2 + $n2} {incr t} { if {[info exists ::eskil($top,ancestorRight,$t)]} { set right($::eskil($top,ancestorRight,$t)) 1 } if {[info exists ::eskil($top,ancestorRight,$t,lines)]} { lappend ancLines {*}$::eskil($top,ancestorRight,$t,lines) } } # No changes against ancestor on right side means it is just # changed to the left : Keep left if {[array size right] == 0} { set comment "Left: Change" |
︙ | ︙ |