Eskil

Check-in [1ecf4871fe]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Include added files in Fossil patch
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 1ecf4871fea0d707f7ad9d6291efff7579cfde78
User & Date: peter 2012-02-14 21:15:03.202
Context
2012-02-17
21:55
Improved plugin viewer. check-in: 466c173c40 user: peter tags: trunk
2012-02-14
21:15
Include added files in Fossil patch check-in: 1ecf4871fe user: peter tags: trunk
2012-02-12
01:25
Add debug item to disable C version of DiffUtil check-in: 245c56a7e0 user: peter tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/rev.tcl.
463
464
465
466
467
468
469


470
471
472
473
474
475
476
            if {[catch {eval $cmd} fres]} {
                tk_messageBox -icon error -title "FOSSIL error" -message $fres
                return ""
            }
            append res $fres
        }
    } else {


        if {[catch {eval $cmd} res]} {
            tk_messageBox -icon error -title "FOSSIL error" -message $res
            return ""
        }
    }
    return $res
}







>
>







463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
            if {[catch {eval $cmd} fres]} {
                tk_messageBox -icon error -title "FOSSIL error" -message $fres
                return ""
            }
            append res $fres
        }
    } else {
        # Include added files
        lappend cmd -N
        if {[catch {eval $cmd} res]} {
            tk_messageBox -icon error -title "FOSSIL error" -message $res
            return ""
        }
    }
    return $res
}