Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Release 1.3 |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
8873c0ac6f7cfc46ff48178d83c19bf4 |
User & Date: | spjutp 1998-09-21 11:12:40.000 |
Context
1998-11-30
| ||
15:51 | Use both files for display. Better RCS handling. check-in: 60a86635a3 user: spjutp tags: trunk | |
1998-09-21
| ||
11:12 | Release 1.3 check-in: 8873c0ac6f user: spjutp tags: trunk | |
1998-09-08
| ||
14:57 | Diff only option. Printing. 2nd stage word mode. check-in: be677d7faa user: spjutp tags: trunk | |
Changes
Changes to src/eskil.tcl.
︙ | ︙ | |||
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | # -line : improve display. See online help for details. # -block : The default is -block, but this can be slow if there # are large change blocks. # # -char : The analysis of changes can be done on either # -word : character or word basis. -char is the default. # # Author Peter Spjuth 980612 # # Revised By Date Remark # # 1.0 DC-PS 980612 New Version. # 1.1 DC-PS 980807 Parsing of change blocks added # Options menu and variables changed # Command line options added # 1.2 DC-PS 980818 Improved yscroll # Added map next to y-scrollbar | > > > | | | | | | | | | | | 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 | # -line : improve display. See online help for details. # -block : The default is -block, but this can be slow if there # are large change blocks. # # -char : The analysis of changes can be done on either # -word : character or word basis. -char is the default. # # -2nd : Turn on or off second stage parsing. # -no2nd : It is on by default. # # Author Peter Spjuth 980612 # # Revised By Date Remark # # 1.0 DC-PS 980612 New Version. # 1.1 DC-PS 980807 Parsing of change blocks added # Options menu and variables changed # Command line options added # 1.2 DC-PS 980818 Improved yscroll # Added map next to y-scrollbar # 1.3 DC-PS 980921 Added Prev Diff button # Added colour options, and Only diffs option # Added 2nd stage line parsing # Improved block parsing # Added print # #----------------------------------------------- # the next line restarts using wish \ exec wish "$0" "$@" set debug 0 set diffver "Version 1.3 980921" proc myform {lineNo text} { return [format "%3d: %s\n" $lineNo $text] } proc myforml {lineNo} { return [format "%3d: " $lineNo] } proc maxabs {a b} { return [expr {abs($a) > abs($b) ? $a : $b}] } #2nd stage line parsing #Recursively look for common substrings in strings s1 and s2 proc compareMidString {s1 s2 res1Name res2Name {test 0}} { global Pref upvar $res1Name res1 upvar $res2Name res2 set len1 [string length $s1] set len2 [string length $s2] #Is s1 a substring of s2 ? if {$len1 < $len2} { set t [string first $s1 $s2] |
︙ | ︙ | |||
138 139 140 141 142 143 144 | for {} {$newp1 > $newt} {incr newp1 -1} { if {[string index $s1 $newp1] == " "} break } } incr newp1 if {$newp1 - $newt > $minlen} { | | | 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 | for {} {$newp1 > $newt} {incr newp1 -1} { if {[string index $s1 $newp1] == " "} break } } incr newp1 if {$newp1 - $newt > $minlen} { set foundlen [expr {$newp1 - $newt}] set found1 $newt set found2 [expr {$i + $newt - $t}] set minlen $foundlen set u [expr {$t + $minlen}] } } else { set foundlen [expr {$p1 - $t}] |
︙ | ︙ | |||
180 181 182 183 184 185 186 | return } #Compare two lines to find inequalities to highlight. #The return value is, for each line, a list where the first, third etc. #element is equal between the lines. The second, fourth etc. will be #highlighted. | | | | > > | 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 | return } #Compare two lines to find inequalities to highlight. #The return value is, for each line, a list where the first, third etc. #element is equal between the lines. The second, fourth etc. will be #highlighted. proc comparelines {line1 line2 res1Name res2Name {test 0}} { global Pref upvar $res1Name res1 upvar $res2Name res2 #Skip white space in both ends set apa1 [string trimleft $line1] set leftp1 [expr {[string length $line1] - [string length $apa1]}] set mid1 [string trimright $line1] set apa2 [string trimleft $line2] set leftp2 [expr {[string length $line2] - [string length $apa2]}] set mid2 [string trimright $line2] #Check for matching left chars/words. #leftp1 and leftp2 will be the indicies of the first difference set len1 [string length $apa1] set len2 [string length $apa2] set len [expr {$len1 < $len2 ? $len1 : $len2}] for {set t 0; set s 0; set flag 0} {$t < $len} {incr t} { if {[set c [string index $apa1 $t]] != [string index $apa2 $t]} { incr flag 2 |
︙ | ︙ | |||
220 221 222 223 224 225 226 | } elseif {$flag == 3} { incr s } incr leftp1 $s incr leftp2 $s } | | > | 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 | } elseif {$flag == 3} { incr s } incr leftp1 $s incr leftp2 $s } #Check for matching right chars/words. #t1 and t2 will be the indicies of the last difference set len1 [string length $mid1] set len2 [string length $mid2] set t1 [expr {$len1 - 1}] set t2 [expr {$len2 - 1}] set s1 $t1 |
︙ | ︙ | |||
272 273 274 275 276 277 278 | if {$Pref(extralineparse) != 0 && $leftp1 <= $t1 && $leftp2 <= $t2} { compareMidString $mid1 $mid2 mid1 mid2 $test set res1 [eval lreplace \$res1 1 1 $mid1] set res2 [eval lreplace \$res2 1 1 $mid2] } } | | | > | > | | > > > | | > > > | | | > | | 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 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 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 | if {$Pref(extralineparse) != 0 && $leftp1 <= $t1 && $leftp2 <= $t2} { compareMidString $mid1 $mid2 mid1 mid2 $test set res1 [eval lreplace \$res1 1 1 $mid1] set res2 [eval lreplace \$res2 1 1 $mid2] } } #Count how many characters are common between two lines proc comparelines2 {line1 line2} { comparelines $line1 $line2 res1 res2 1 #Add lengths of every other element set sumsame 0 set sumdiff1 0 set sumdiff2 0 foreach {same diff} $res1 { incr sumsame [string length $same] incr sumdiff1 [string length $diff] } foreach {same diff} $res2 { incr sumdiff2 [string length $diff] } return [expr {$sumsame - [maxabs $sumdiff1 $sumdiff2]}] } #Decide how to display change blocks proc compareblocks {block1 block2} { set size1 [llength $block1] set size2 [llength $block2] #Swap if block1 is bigger if {$size1 > $size2} { set apa $block1 set block1 $block2 set block2 $apa set size1 [llength $block1] set size2 [llength $block2] set dsym a set asym d } else { set dsym d set asym a } #Collect statistics set result {} set scores {} foreach line1 $block1 { set bestscore 0 set bestline 0 set i 0 foreach line2 $block2 { set x [comparelines2 $line1 $line2] if {$x > $bestscore} { set bestscore $x set bestline $i } incr i } lappend result $bestline lappend scores $bestscore } #If result is in order, no problem. #Otherwise, try to adjust result to make it ordered if {$size1 > 1} { set bad 1 for {set loop 0} {$bad != "" && $loop < 2} {incr loop} { set bad {} for {set i 0; set j 1} {$j < $size1} {incr i; incr j} { if {[lindex $result $i] >= [lindex $result $j]} { lappend bad $i } } foreach i $bad { set next 0 |
︙ | ︙ | |||
347 348 349 350 351 352 353 354 355 356 357 358 359 360 | set l3 [lindex $result $j] if {$i + 2 >= $size1} { set l4 [expr {$size2 + 10}] } else { set l4 [lindex $result [expr {$i + 2}]] } set si [lindex $scores $i] set sj [lindex $scores $j] if {$si < $sj} { for {set t [expr {$l3 - 1}]} {$t > $l1} {incr t -1} { if {[lsearch $result $t] == -1} { set result [lreplace $result $i $i $t] set next 1 | > | 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 | set l3 [lindex $result $j] if {$i + 2 >= $size1} { set l4 [expr {$size2 + 10}] } else { set l4 [lindex $result [expr {$i + 2}]] } #Try to move the one with lowest score first set si [lindex $scores $i] set sj [lindex $scores $j] if {$si < $sj} { for {set t [expr {$l3 - 1}]} {$t > $l1} {incr t -1} { if {[lsearch $result $t] == -1} { set result [lreplace $result $i $i $t] set next 1 |
︙ | ︙ | |||
387 388 389 390 391 392 393 | } } if {$next == 1} continue } } } } | | | 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 | } } if {$next == 1} continue } } } } set apa {} set t1 0 set t2 0 while {$t1 < $size1 || $t2 < $size2} { if {$t1 < $size1} { set r [lindex $result $t1] if {$r < $t2 || $t2 >= $size2} { |
︙ | ︙ | |||
413 414 415 416 417 418 419 420 421 422 423 424 425 426 | lappend apa $asym incr t2 } } return $apa } proc insertMatchingLines {line1 line2} { global doingLine1 doingLine2 Pref if {$Pref(parse) != "none"} { comparelines $line1 $line2 res1 res2 set dotag 0 .t1 insert end [myforml $doingLine1] change | > > | 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 | lappend apa $asym incr t2 } } return $apa } #Insert one line in each text widget. #Mark them as changed, and optionally parse them. proc insertMatchingLines {line1 line2} { global doingLine1 doingLine2 Pref if {$Pref(parse) != "none"} { comparelines $line1 $line2 res1 res2 set dotag 0 .t1 insert end [myforml $doingLine1] change |
︙ | ︙ | |||
448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 | .t1 insert end [myform $doingLine1 $line1] change .t2 insert end [myform $doingLine2 $line2] change } incr doingLine1 incr doingLine2 } proc dotext {ch1data ch2 n1 n2 line1 line2} { global doingLine1 doingLine2 Pref mapList mapMax if {$n1 == 0 && $n2 == 0} { if {$Pref(onlydiffs) == 1} return while {[gets $ch2 apa] != -1} { .t2 insert end [myform $doingLine2 $apa] .t1 insert end [myform $doingLine1 $apa] incr doingLine2 incr doingLine1 incr mapMax | > > > > > > | 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 | .t1 insert end [myform $doingLine1 $line1] change .t2 insert end [myform $doingLine2 $line2] change } incr doingLine1 incr doingLine2 } #Process one of the change/add/delete blocks reported by diff. #ch1data contains n1 lines of text from the left file #ch2 is a file channel for the right file #n1/n2 is the number of lines involved #line1/line2 says on what lines this block starts proc dotext {ch1data ch2 n1 n2 line1 line2} { global doingLine1 doingLine2 Pref mapList mapMax if {$n1 == 0 && $n2 == 0} { #All blocks has been processed. Continue until end of file. if {$Pref(onlydiffs) == 1} return while {[gets $ch2 apa] != -1} { .t2 insert end [myform $doingLine2 $apa] .t1 insert end [myform $doingLine1 $apa] incr doingLine2 incr doingLine1 incr mapMax |
︙ | ︙ | |||
486 487 488 489 490 491 492 493 494 495 496 497 498 499 | incr doingLine1 incr doingLine2 } if {$doingLine2 != $line2} { .t1 insert end "**Bad alignment here!! $doingLine2 $line2**\n" .t2 insert end "**Bad alignment here!! $doingLine2 $line2**\n" } if {$n1 == $n2 && ($n1 == 1 || $Pref(parse) != "block")} { for {set t 0} {$t < $n1} {incr t} { set line1 [lindex $ch1data $t] gets $ch2 line2 insertMatchingLines $line1 $line2 } | > > | 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 | incr doingLine1 incr doingLine2 } if {$doingLine2 != $line2} { .t1 insert end "**Bad alignment here!! $doingLine2 $line2**\n" .t2 insert end "**Bad alignment here!! $doingLine2 $line2**\n" } #Process the block if {$n1 == $n2 && ($n1 == 1 || $Pref(parse) != "block")} { for {set t 0} {$t < $n1} {incr t} { set line1 [lindex $ch1data $t] gets $ch2 line2 insertMatchingLines $line1 $line2 } |
︙ | ︙ | |||
617 618 619 620 621 622 623 | proc disableRedo {} { .mf.m entryconfigure 1 -state disabled } proc busyCursor {} { global oldcursor oldcursor2 | > | | > < < < < < < < < < < < < < | < < | 643 644 645 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 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 | proc disableRedo {} { .mf.m entryconfigure 1 -state disabled } proc busyCursor {} { global oldcursor oldcursor2 if {![info exists oldcursor]} { set oldcursor [. cget -cursor] set oldcursor2 [.t1 cget -cursor] } . config -cursor watch .t1 config -cursor watch .t2 config -cursor watch } proc normalCursor {} { global oldcursor oldcursor2 . config -cursor $oldcursor .t1 config -cursor $oldcursor2 .t2 config -cursor $oldcursor2 } proc doDiff {} { global leftFile rightFile leftOK rightOK RCS global eqLabel RCS Pref doingLine1 doingLine2 global mapList mapMax if {$RCS == 0 && ($leftOK == 0 || $rightOK == 0)} { disableRedo return } else { enableRedo } busyCursor .t1 delete 1.0 end .t2 delete 1.0 end set mapList {} set mapMax 0 update idletasks if {$RCS} { set differr [catch {eval exec rcsdiff $Pref(dopt) $Pref(ignore) $rightFile} diffres] } else { set differr [catch {eval exec diff $Pref(dopt) $Pref(ignore) $leftFile $rightFile} diffres] } set apa [split $diffres "\n"] set result {} set result2 {} foreach i $apa { if {[string match {[0-9]*} $i]} { lappend result $i } |
︙ | ︙ | |||
743 744 745 746 747 748 749 | } dotext "" $ch2 0 0 0 0 close $ch2 drawMap -1 normalCursor | < | 756 757 758 759 760 761 762 763 764 765 766 767 768 769 | } dotext "" $ch2 0 0 0 0 close $ch2 drawMap -1 normalCursor } proc doOpenLeft {} { global leftFile leftDir rightDir leftOK if {![info exists leftDir]} { if {[info exists rightDir]} { set leftDir $rightDir |
︙ | ︙ | |||
850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 | return "\n " } else { return "\0bggray\{1.0\}\n \0bggray\{$gray\}" } } proc printDiffs {} { set tmpFile [file nativename ~/tcldiff.enscript] set tmpFile2 [file nativename ~/tcldifftmp.ps] set tmpFile3 [file nativename ~/tcldiff.ps] set ch [open $tmpFile "w"] set lines1 {} set lines2 {} set tdump1 [.t1 dump -tag -text 1.0 end] set tdump2 [.t2 dump -tag -text 1.0 end] foreach tdump [list $tdump1 $tdump2] \ | > | | 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 | return "\n " } else { return "\0bggray\{1.0\}\n \0bggray\{$gray\}" } } proc printDiffs {} { busyCursor set tmpFile [file nativename ~/tcldiff.enscript] set tmpFile2 [file nativename ~/tcldifftmp.ps] set tmpFile3 [file nativename ~/tcldiff.ps] set ch [open $tmpFile "w"] set lines1 {} set lines2 {} set tdump1 [.t1 dump -tag -text 1.0 end] set tdump2 [.t2 dump -tag -text 1.0 end] foreach tdump [list $tdump1 $tdump2] \ lineName {lines1 lines2} wrapName {wrap1 wrap2} { set lines {} set wraps {} set line "" set newline 0 set gray 1.0 set chars 0 set wrapc 0 |
︙ | ︙ | |||
914 915 916 917 918 919 920 | } tagoff { append line "\0bggray\{1.0\}" set gray 1.0 } } } | | | | 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 | } tagoff { append line "\0bggray\{1.0\}" set gray 1.0 } } } set $lineName $lines set $wrapName $wraps } set wraplines1 {} set wraplines2 {} foreach l1 $lines1 l2 $lines2 w1 $wrap1 w2 $wrap2 { if {$w1 > 0} { |
︙ | ︙ | |||
966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 | puts -nonewline $ch "\f" } close $ch catch {exec enscript -c -B -e -p $tmpFile2 $tmpFile} catch {exec mpage -aA2P $tmpFile2 > $tmpFile3} } proc my_yview args { eval .t1 yview $args eval .t2 yview $args } proc my_yscroll args { eval .sby set $args my_yview moveto [lindex $args 0] } proc chFont {} { global Pref font configure myfont -size $Pref(fontsize) | > > > > > > > > > > > > > > < < > | | 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 | puts -nonewline $ch "\f" } close $ch catch {exec enscript -c -B -e -p $tmpFile2 $tmpFile} catch {exec mpage -aA2P $tmpFile2 > $tmpFile3} normalCursor destroy .dp toplevel .dp wm title .dp "Diff Print" button .dp.b -text Close -command {destroy .dp} label .dp.l -anchor w -justify left -text "The following files have\ been created:\n$tmpFile\nInput file to enscript.\ \n$tmpFile2\nCreated with 'enscript -c -B -e -p $tmpFile2\ $tmpFile'\n$tmpFile3\nCreated with 'mpage -aA2P $tmpFile2 >\ $tmpFile3'" pack .dp.b -side bottom pack .dp.l -side top } proc my_yview args { eval .t1 yview $args eval .t2 yview $args } proc my_yscroll args { eval .sby set $args my_yview moveto [lindex $args 0] } proc chFont {} { global Pref font configure myfont -size $Pref(fontsize) } proc applyColor {} { global Pref .t1 tag configure new1 -foreground $Pref(colornew1) -background $Pref(bgnew1) .t1 tag configure change -foreground $Pref(colorchange) -background $Pref(bgchange) .t2 tag configure new2 -foreground $Pref(colornew2) -background $Pref(bgnew2) .t2 tag configure change -foreground $Pref(colorchange) -background $Pref(bgchange) } #Build the main window proc makeDiffWin {} { global Pref tcl_platform debug eval destroy [winfo children .] frame .f grid .f - - - -row 0 -sticky news menubutton .mf -text File -underline 0 -menu .mf.m menu .mf.m if {$debug == 1} { .mf.m add command -label "Redo Diff" -underline 5 -command doDiff } else { .mf.m add command -label "Redo Diff" -underline 5 -command doDiff -state disabled } .mf.m add separator .mf.m add command -label "Open Both" -underline 0 -command openBoth .mf.m add command -label "Open Left File" -command openLeft .mf.m add command -label "Open Right File" -command openRight |
︙ | ︙ | |||
1055 1056 1057 1058 1059 1060 1061 | .mo.mp add radiobutton -label "Characters" -variable Pref(lineparsewords) -value "0" .mo.mp add radiobutton -label "Words" -variable Pref(lineparsewords) -value "1" .mo.mp add separator .mo.mp add checkbutton -label "Use 2nd stage" -variable Pref(extralineparse) menubutton .mh -text Help -underline 0 -menu .mh.m menu .mh.m | | | 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 | .mo.mp add radiobutton -label "Characters" -variable Pref(lineparsewords) -value "0" .mo.mp add radiobutton -label "Words" -variable Pref(lineparsewords) -value "1" .mo.mp add separator .mo.mp add checkbutton -label "Use 2nd stage" -variable Pref(extralineparse) menubutton .mh -text Help -underline 0 -menu .mh.m menu .mh.m .mh.m add command -label "Help" -command makeHelpWin .mh.m add command -label "About" -command makeAboutWin button .bfn -text "Next Diff" -relief raised -command findNext button .bfp -text "Prev Diff" -relief raised -command findPrev entry .eo -width 10 -textvariable Pref(dopt) label .lo -text "Diff Options" |
︙ | ︙ | |||
1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 | set Pref(parse) "line" } elseif {$arg == "-block"} { set Pref(parse) "block" } elseif {$arg == "-char"} { set Pref(lineparsewords) 0 } elseif {$arg == "-word"} { set Pref(lineparsewords) 1 } elseif {$arg == "-nodiff"} { set noautodiff 1 } elseif {[string range $arg 0 0] == "-"} { set Pref(dopt) "$Pref(dopt) $arg" } else { set apa [glob -nocomplain $arg] if {$apa == ""} { | > > > > | 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 | set Pref(parse) "line" } elseif {$arg == "-block"} { set Pref(parse) "block" } elseif {$arg == "-char"} { set Pref(lineparsewords) 0 } elseif {$arg == "-word"} { set Pref(lineparsewords) 1 } elseif {$arg == "-2nd"} { set Pref(extralineparse) 1 } elseif {$arg == "-no2nd"} { set Pref(extralineparse) 0 } elseif {$arg == "-nodiff"} { set noautodiff 1 } elseif {[string range $arg 0 0] == "-"} { set Pref(dopt) "$Pref(dopt) $arg" } else { set apa [glob -nocomplain $arg] if {$apa == ""} { |
︙ | ︙ | |||
1400 1401 1402 1403 1404 1405 1406 | set rightDir $fulldir set rightFile $fullname set rightOK 1 set leftFile "RCS" if {$noautodiff == "1"} { enableRedo } else { | | | | 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 | set rightDir $fulldir set rightFile $fullname set rightOK 1 set leftFile "RCS" if {$noautodiff == "1"} { enableRedo } else { after idle doDiff } } else { set leftDir $fulldir set leftFile $fullname set leftOK 1 } } elseif {$len >= 2} { set fullname [file join [pwd] [lindex $files 0]] set fulldir [file dirname $fullname] set leftDir $fulldir set leftFile $fullname set leftOK 1 set fullname [file join [pwd] [lindex $files 1]] set fulldir [file dirname $fullname] set rightDir $fulldir set rightFile $fullname set rightOK 1 if {$noautodiff == "1"} { enableRedo } else { after idle doDiff } } } proc saveOptions {} { global Pref set ch [open "~/.diffrc" "w"] |
︙ | ︙ | |||
1447 1448 1449 1450 1451 1452 1453 | global Pref set Pref(fontsize) 9 set Pref(ignore) "-b" set Pref(dopt) "" set Pref(parse) "block" set Pref(lineparsewords) "0" | | | > | 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 | global Pref set Pref(fontsize) 9 set Pref(ignore) "-b" set Pref(dopt) "" set Pref(parse) "block" set Pref(lineparsewords) "0" set Pref(extralineparse) 1 set Pref(colorchange) red set Pref(colornew1) darkgreen set Pref(colornew2) blue set Pref(bgchange) gray set Pref(bgnew1) gray set Pref(bgnew2) gray set Pref(onlydiffs) 0 if {[file exists "~/.diffrc"]} { source "~/.diffrc" } } if {![winfo exists .f]} { getOptions makeDiffWin update idletasks parseCommandLine } |