Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Improved three-way merge |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
2f126fd6312f11bc06f9faaf95c6ebc7 |
User & Date: | peter.spjuth@gmail.com 2011-04-29 23:53:15.000 |
Context
2011-04-30
| ||
01:10 | More merge conflict cases handled check-in: 118eb090c6 user: peter.spjuth@gmail.com tags: trunk | |
2011-04-29
| ||
23:53 | Improved three-way merge check-in: 2f126fd631 user: peter.spjuth@gmail.com tags: trunk | |
2011-04-28
| ||
00:55 | Added test for merge check-in: fcbb229077 user: peter.spjuth@gmail.com tags: trunk | |
Changes
Changes to Changes.
1 2 3 4 5 6 7 | 2011-04-28 Code cleanup to get clean Nagelfar run 2011-04-28 Added three-way merge. Cmd line options -a and -fine. 2011-04-24 | > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 2011-04-30 Improved three-way merge. Highlight conflicts and navigate directly between conflicts. Include status for each merge chunk to see the descision made. Added Goto menu in merge window to get fewer toolbar buttons. Autodetect line endings in ancestor file to select merge output. 2011-04-28 Code cleanup to get clean Nagelfar run 2011-04-28 Added three-way merge. Cmd line options -a and -fine. 2011-04-24 |
︙ | ︙ |
Changes to doc/eskil.txt.
︙ | ︙ | |||
87 88 89 90 91 92 93 | You can, for each difference, select which version you want to appear in the output file. The buttons "LR", "L", "R" and "RL" select the lines from the left file, right file or both files. "Prev" and "Next" buttons moves between differences. "All L" and "All R" buttons select "L" or "R" for all differences. "Pure" ... "Save" saves the merge result to a file. | | | | 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 | You can, for each difference, select which version you want to appear in the output file. The buttons "LR", "L", "R" and "RL" select the lines from the left file, right file or both files. "Prev" and "Next" buttons moves between differences. "All L" and "All R" buttons select "L" or "R" for all differences. "Pure" ... "Save" saves the merge result to a file. On the keyboard, Up and Down keys means the same as "Prev" and "Next". Left and Right keys selects "L" and "R". Shift-Up and Shift-Down jumps 10 changes, or if there are conflicts jumps to next conflict. When saved it is the contents of the text widget that is saved which means you can hand edit there if you are careful. Press Escape to bring focus out of the text and make cursor keys navigate between changes. <b><ul>Examples of effects of parse options.</ul></b> Below are two example files, and five different results when using different options with those files. <example>Left file: \tRight file: <pre>NET '/I$1/N$1454' IC2-15 IC5-7 \tNET '/I$1/N$1454' IC1-4 IC2-15 IC5-2 IC5-7 |
︙ | ︙ |
Changes to src/merge.tcl.
1 2 3 | #---------------------------------------------------------------------- # Eskil, Merge function # | | < < > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | #---------------------------------------------------------------------- # Eskil, Merge function # # Copyright (c) 1998-2011, Peter Spjuth (peter.spjuth@gmail.com) # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; see the file COPYING. If not, write to # the Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Boston, MA 02111-1307, USA. # #---------------------------------------------------------------------- # Get all data from the files to merge proc collectMergeData {top} { global diff set diff($top,leftMergeData) {} set diff($top,rightMergeData) {} set diff($top,mergeSelection,AnyConflict) 0 if {![info exists ::diff($top,changes)]} { set ::diff($top,changes) {} } prepareFiles $top |
︙ | ︙ | |||
68 69 70 71 72 73 74 | gets $ch2 apa append data2 $apa\n incr doingLine2 } lappend diff($top,leftMergeData) $data1 lappend diff($top,rightMergeData) $data2 set diff($top,mergeSelection,$changeNo) \ | | > > > > > | 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 | gets $ch2 apa append data2 $apa\n incr doingLine2 } lappend diff($top,leftMergeData) $data1 lappend diff($top,rightMergeData) $data2 set diff($top,mergeSelection,$changeNo) \ [WhichSide $top $line1 $n1 $line2 $n2 conflict comment] set diff($top,mergeSelection,Conflict,$changeNo) $conflict set diff($top,mergeSelection,Comment,$changeNo) $comment if {$conflict} { set diff($top,mergeSelection,AnyConflict) 1 } incr changeNo } set data1 {} set data2 {} while {[gets $ch1 apa] != -1} { append data1 $apa\n incr doingLine1 |
︙ | ︙ | |||
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 | proc fillMergeWindow {top} { global diff set w $top.merge.t $w delete 1.0 end set marks {} set t 0 foreach {commLeft diffLeft} $diff($top,leftMergeData) \ {commRight diffRight} $diff($top,rightMergeData) { $w insert end $commRight if {![info exists diff($top,mergeSelection,$t)]} continue $w mark set merges$t insert $w mark gravity merges$t left switch $diff($top,mergeSelection,$t) { 1 { $w insert end $diffLeft merge$t } 2 { $w insert end $diffRight merge$t } 12 { $w insert end $diffLeft merge$t $w insert end $diffRight merge$t } 21 { $w insert end $diffRight merge$t $w insert end $diffLeft merge$t } } lappend marks mergee$t [$w index insert] incr t } foreach {mark index} $marks { $w mark set $mark $index } # Add fences to simplify some handling later $w mark set mergee-2 1.0 $w mark set mergee-1 1.0 $w mark set merges$t end $w mark set merges[expr {$t + 1}] end | > > > > > > > > > > > > | | | | | > > > > > > > > > > > > > > > > > > > > > > > | | < > > > | 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 | proc fillMergeWindow {top} { global diff set w $top.merge.t $w delete 1.0 end set marks {} set t 0 set firstConflict -1 foreach {commLeft diffLeft} $diff($top,leftMergeData) \ {commRight diffRight} $diff($top,rightMergeData) { $w insert end $commRight if {![info exists diff($top,mergeSelection,$t)]} continue $w mark set merges$t insert $w mark gravity merges$t left switch $diff($top,mergeSelection,$t) { 1 { $w insert end $diffLeft merge$t } 2 { $w insert end $diffRight merge$t } 12 { $w insert end $diffLeft merge$t $w insert end $diffRight merge$t } 21 { $w insert end $diffRight merge$t $w insert end $diffLeft merge$t } } if {$diff($top,mergeSelection,Conflict,$t)} { $w tag configure merge$t -background grey if {$firstConflict == -1} { set firstConflict $t } } lappend marks mergee$t [$w index insert] incr t } foreach {mark index} $marks { $w mark set $mark $index } # Add fences to simplify some handling later $w mark set mergee-2 1.0 $w mark set mergee-1 1.0 $w mark set merges$t end $w mark set merges[expr {$t + 1}] end set showFirst 0 if {$firstConflict != -1} { set showFirst $firstConflict } set diff($top,curMerge) $showFirst set diff($top,curMergeSel) $diff($top,mergeSelection,$showFirst) $w tag configure merge$showFirst -foreground red showDiff $top $showFirst update # If there is any diff, show the first if {$t > 0} { seeText $w merges$showFirst mergee$showFirst # Show status for first chunk set diff($top,mergeStatus) \ $diff($top,mergeSelection,Comment,$showFirst) } } # Move to and highlight another diff. proc nextMerge {top delta} { global diff set w $top.merge.t $w tag configure merge$diff($top,curMerge) -foreground "" set last [expr {[llength $diff($top,leftMergeData)] / 2 - 1}] if {$delta == -1000} { # Search backward for conflict for {set t [expr {$diff($top,curMerge) - 1}]} {$t >= 0} {incr t -1} { if {$diff($top,mergeSelection,Conflict,$t)} { set delta [expr {$t - $diff($top,curMerge)}] break } } } elseif {$delta == 1000} { # Search forward for conflict for {set t [expr {$diff($top,curMerge) + 1}]} {$t <= $last} {incr t} { if {$diff($top,mergeSelection,Conflict,$t)} { set delta [expr {$t - $diff($top,curMerge)}] break } } } set diff($top,curMerge) [expr {$diff($top,curMerge) + $delta}] if {$diff($top,curMerge) < 0} {set diff($top,curMerge) 0} if {$diff($top,curMerge) > $last} { set diff($top,curMerge) $last } set diff($top,curMergeSel) $diff($top,mergeSelection,$diff($top,curMerge)) $w tag configure merge$diff($top,curMerge) -foreground red showDiff $top $diff($top,curMerge) seeText $w merges$diff($top,curMerge) mergee$diff($top,curMerge) set diff($top,mergeStatus) \ $diff($top,mergeSelection,Comment,$diff($top,curMerge)) } # Select a merge setting for all diffs. proc selectMergeAll {top new} { global diff set end [expr {[llength $diff($top,leftMergeData)] / 2}] for {set t 0} {$t < $end} {incr t} { |
︙ | ︙ | |||
305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 | set diff($top,leftMergeData) {} set diff($top,rightMergeData) {} array unset diff $top,mergeSelection,* } # Create a window to display merge result. proc makeMergeWin {top} { if {![info exists ::diff($top,mergetranslation)]} { if {$::tcl_platform(platform) eq "windows"} { set ::diff($top,mergetranslation) crlf } else { set ::diff($top,mergetranslation) lf } } set w $top.merge if {![winfo exists $w]} { toplevel $w } else { destroy {*}[winfo children $w] } wm title $w "Merge result: [TitleTail $top]" menu $w.m $w configure -menu $w.m $w.m add cascade -label "File" -underline 0 -menu $w.m.mf menu $w.m.mf | > > | 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 | set diff($top,leftMergeData) {} set diff($top,rightMergeData) {} array unset diff $top,mergeSelection,* } # Create a window to display merge result. proc makeMergeWin {top} { collectMergeData $top if {![info exists ::diff($top,mergetranslation)]} { if {$::tcl_platform(platform) eq "windows"} { set ::diff($top,mergetranslation) crlf } else { set ::diff($top,mergetranslation) lf } } set w $top.merge if {![winfo exists $w]} { toplevel $w } else { destroy {*}[winfo children $w] } set anyC $::diff($top,mergeSelection,AnyConflict) wm title $w "Merge result: [TitleTail $top]" menu $w.m $w configure -menu $w.m $w.m add cascade -label "File" -underline 0 -menu $w.m.mf menu $w.m.mf |
︙ | ︙ | |||
343 344 345 346 347 348 349 350 351 352 353 354 355 356 | $w.m.ms add radiobutton -label "Right" -underline 0 -value 2 \ -variable diff($top,curMergeSel) -command "selectMerge $top" $w.m.ms add radiobutton -label "Right+Left" -value 21 \ -variable diff($top,curMergeSel) -command "selectMerge $top" $w.m.ms add separator $w.m.ms add command -label "All Left" -command "selectMergeAll $top 1" $w.m.ms add command -label "All Right" -command "selectMergeAll $top 2" $w.m add cascade -label "Config" -underline 0 -menu $w.m.mc menu $w.m.mc $w.m.mc add radiobutton -label "Line end LF" -value lf -variable diff($top,mergetranslation) $w.m.mc add radiobutton -label "Line end CRLF" -value crlf -variable diff($top,mergetranslation) if {$::diff($top,mode) eq "conflict"} { $w.m.mc add separator | > > > > > > > > > > > > > | 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 | $w.m.ms add radiobutton -label "Right" -underline 0 -value 2 \ -variable diff($top,curMergeSel) -command "selectMerge $top" $w.m.ms add radiobutton -label "Right+Left" -value 21 \ -variable diff($top,curMergeSel) -command "selectMerge $top" $w.m.ms add separator $w.m.ms add command -label "All Left" -command "selectMergeAll $top 1" $w.m.ms add command -label "All Right" -command "selectMergeAll $top 2" $w.m add cascade -label "Goto" -underline 0 -menu $w.m.mg menu $w.m.mg $w.m.mg add command -accelerator "Up" -label "Previous" -command "nextMerge $top -1" $w.m.mg add command -accelerator "Down" -label "Next" -command "nextMerge $top 1" if {$anyC} { $w.m.mg add command -accelerator "Shift-Up" -label "Previous Conflict" -command "nextMerge $top -1000" $w.m.mg add command -accelerator "Shift-Down" -label "Next Conflict" -command "nextMerge $top 1000" } else { $w.m.mg add command -accelerator "Shift-Up" -label "Previous 10" -command "nextMerge $top -10" $w.m.mg add command -accelerator "Shift-Down" -label "Next 10" -command "nextMerge $top 10" } $w.m add cascade -label "Config" -underline 0 -menu $w.m.mc menu $w.m.mc $w.m.mc add radiobutton -label "Line end LF" -value lf -variable diff($top,mergetranslation) $w.m.mc add radiobutton -label "Line end CRLF" -value crlf -variable diff($top,mergetranslation) if {$::diff($top,mode) eq "conflict"} { $w.m.mc add separator |
︙ | ︙ | |||
371 372 373 374 375 376 377 | -command "selectMerge $top" ttk::radiobutton $w.f.rb4 -text "RL" -value 21 \ -variable diff($top,curMergeSel) \ -command "selectMerge $top" bind $w <Key-Left> "focus $w; set diff($top,curMergeSel) 1; selectMerge $top" bind $w <Key-Right> "focus $w; set diff($top,curMergeSel) 2; selectMerge $top" | | | > > > > > > < | > > > > > > > > > > > | 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 | -command "selectMerge $top" ttk::radiobutton $w.f.rb4 -text "RL" -value 21 \ -variable diff($top,curMergeSel) \ -command "selectMerge $top" bind $w <Key-Left> "focus $w; set diff($top,curMergeSel) 1; selectMerge $top" bind $w <Key-Right> "focus $w; set diff($top,curMergeSel) 2; selectMerge $top" ttk::button $w.f.bl -text "Prev C" -command "nextMerge $top -1000" ttk::button $w.f.br -text "Next C" -command "nextMerge $top 1000" ttk::button $w.f.b1 -text "Prev" -command "nextMerge $top -1" ttk::button $w.f.b2 -text "Next" -command "nextMerge $top 1" bind $w <Key-Down> "focus $w ; nextMerge $top 1" bind $w <Key-Up> "focus $w ; nextMerge $top -1" bind $w <Shift-Key-Down> "focus $w ; nextMerge $top 10" bind $w <Shift-Key-Up> "focus $w ; nextMerge $top -10" ttk::button $w.f.bs -text "Save" -command "saveMerge $top" ttk::button $w.f.bq -text "Close" -command "closeMerge $top" wm protocol $w WM_DELETE_WINDOW "closeMerge $top" grid $w.f.rb1 $w.f.rb2 $w.f.rb3 $w.f.rb4 x $w.f.b1 $w.f.b2 x \ $w.f.bl $w.f.br x $w.f.bs $w.f.bq -sticky we -padx 1 if {!$anyC} { grid forget $w.f.bl $w.f.br } grid columnconfigure $w.f {4 7 10} -minsize 10 grid columnconfigure $w.f 10 -weight 1 grid columnconfigure $w.f {0 1 2 3} -uniform a grid columnconfigure $w.f {5 6 8 9 11 12} -uniform b #grid columnconfigure $w.f {11 13 14} -uniform c text $w.t -width 80 -height 20 -xscrollcommand "$w.sbx set" \ -yscrollcommand "$w.sby set" -font myfont scrollbar $w.sbx -orient horizontal -command "$w.t xview" scrollbar $w.sby -orient vertical -command "$w.t yview" bind $w.t <Key-Escape> [list focus $w] ttk::label $w.ls -textvariable ::diff($top,mergeStatus) # Prevent toplevel bindings on keys to fire while in the text widget. bindtags $w.t [list Text $w.t $w all] bind $w.t <Key-Left> "break" bind $w.t <Key-Right> "break" bind $w.t <Key-Down> "break" bind $w.t <Key-Up> "break" bind $w.t <Shift-Key-Down> "break" bind $w.t <Shift-Key-Up> "break" grid $w.f - -sticky news -row 0 grid $w.t $w.sby -sticky news grid $w.sbx x -sticky we grid $w.ls - -sticky we grid columnconfigure $w 0 -weight 1 grid rowconfigure $w 1 -weight 1 fillMergeWindow $top } # Compare each file against an ancestor file for three-way merge proc collectAncestorInfo {top dFile1 dFile2 opts} { if {![info exists ::diff($top,mergetranslation)]} { # Try to autodetect line endings in ancestor file set ch [open $::diff($top,ancestorFile) rb] set data [read $ch 10000] close $ch if {[string first \r\n $data] >= 0} { set ::diff($top,mergetranslation) crlf } else { set ::diff($top,mergetranslation) lf } } array unset ::diff $top,ancestorLeft,* array unset ::diff $top,ancestorRight,* set differrA1 [catch {DiffUtil::diffFiles {*}$opts \ $::diff($top,ancestorFile) $dFile1} diffresA1] set differrA2 [catch {DiffUtil::diffFiles {*}$opts \ $::diff($top,ancestorFile) $dFile2} diffresA2] if {$differrA1 != 0 || $differrA2 != 0} { |
︙ | ︙ | |||
472 473 474 475 476 477 478 | } } } #parray ::diff $top,ancestor* } # Use ancestor info to select which side to use in a merge chunk | > | > > > > > > > | | > > > | > > > > > | > > > | > > > | > > | | > > > > | | > > | > > > | | > > | > > > > > > > > > > < | 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 | } } } #parray ::diff $top,ancestor* } # Use ancestor info to select which side to use in a merge chunk ##nagelfar syntax WhichSide x x x x x n n proc WhichSide {top line1 n1 line2 n2 conflictName commentName} { upvar 1 $conflictName conflict $commentName comment set conflict 0 set comment "" if {$::diff($top,ancestorFile) eq ""} { # No ancestor info, just select right side return 2 } if {$n1 == 0} { # Only to the right set delLeft [info exists ::diff($top,ancestorLeft,d$line1)] # Inserted to right : Keep right side if {!$delLeft} { set comment "Right: Add" return 2 } for {set t $line2} {$t < $line2 + $n2} {incr t} { if {[info exists ::diff($top,ancestorRight,$t)]} { set right($::diff($top,ancestorRight,$t)) 1 } } # Deleted to left : Keep left side if {[array size right] == 0} { set comment "Left: Delete" return 1 } # Deleted to left and changed to the right : ?? (right for now) # FIXA set comment "*** Left: Delete, Right: Change" set conflict 1 return 2 } elseif {$n2 == 0} { # Only to the left, this can be: set delRight [info exists ::diff($top,ancestorRight,d$line2)] # Inserted to left : Keep left side if {!$delRight} { set comment "Left: Add" return 1 } for {set t $line1} {$t < $line1 + $n1} {incr t} { if {[info exists ::diff($top,ancestorLeft,$t)]} { set left($::diff($top,ancestorLeft,$t)) 1 } } # Deleted to right : Keep right side if {[array size left] == 0} { set comment "Right: Delete" return 2 } # Deleted to right and changed to the left : ?? (right for now) # FIXA set comment "*** Left: Change, Right: Delete" set conflict 1 return 2 } else { # Changed on both sides # Collect left side info for {set t $line1} {$t < $line1 + $n1} {incr t} { if {[info exists ::diff($top,ancestorLeft,$t)]} { set left($::diff($top,ancestorLeft,$t)) 1 } } # 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 ::diff($top,ancestorRight,$t)]} { set right($::diff($top,ancestorRight,$t)) 1 } } # 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" return 1 } if {[info exists left(a)] && ![info exists left(c)] && \ [info exists right(a)] && ![info exists right(c)]} { # Pure add on both sides, keep both set comment "*** Left: Add, Right: Add" set conflict 1 return 12 } # Changed in both, right for now # FIXA set comment "*** Left: Change, Right: Change" set conflict 1 return 2 } } |
Changes to tests/ancestor.txt.
︙ | ︙ | |||
61 62 63 64 65 66 67 68 69 70 71 72 73 74 | 47 48 Left: change Right: deleted block 49 50 51 52 53 54 55 56 57 58 59 | > | 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | 47 48 Left: change Right: deleted block 49 50 51 52 Added different 53 54 55 56 57 58 59 |
Changes to tests/left.txt.
︙ | ︙ | |||
62 63 64 65 66 67 68 69 70 71 72 73 74 75 | 47 48 Left: change Right: deleted block 49 50a 51 52 53 54 55 56 57 58 59 | > > | 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | 47 48 Left: change Right: deleted block 49 50a 51 52 Added different xxxxx 53 54 55 56 57 58 59 |
Changes to tests/merge.txt.
︙ | ︙ | |||
35 36 37 38 39 40 41 | 26 27 Left: Delete Right: change 28a 29 30 Left: change Right: delete | < | 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | 26 27 Left: Delete Right: change 28a 29 30 Left: change Right: delete 32 33 Added same xxx 34 35 36 |
︙ | ︙ | |||
61 62 63 64 65 66 67 | 45 Left: change same Right: add+change yyyy 46a 47 48 Left: change Right: deleted block | < < < > > > | 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | 45 Left: change same Right: add+change yyyy 46a 47 48 Left: change Right: deleted block 52 Added different xxxxx yyyyy 53 54 55 56 57 58 59 |
Changes to tests/right.txt.
︙ | ︙ | |||
59 60 61 62 63 64 65 66 67 68 69 70 71 72 | Left: change same Right: add+change yyyy 46a 47 48 Left: change Right: deleted block 52 53 54 55 56 57 58 59 | > > | 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | Left: change same Right: add+change yyyy 46a 47 48 Left: change Right: deleted block 52 Added different yyyyy 53 54 55 56 57 58 59 |