Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Removed support for old RCS style -rREV command line. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
9f7997d307f0804b7f324e7369bb53d4 |
User & Date: | peter 2018-01-14 20:19:37.825 |
Context
2018-01-14
| ||
20:26 | Release 2.8.1 check-in: 06092a2d97 user: peter tags: trunk | |
20:19 | Removed support for old RCS style -rREV command line. check-in: 9f7997d307 user: peter tags: trunk | |
20:17 | Clean up after dir diff fixes check-in: 9d15692c0d user: peter tags: trunk | |
Changes
Changes to Changes.
1 2 3 4 5 6 7 8 | 2018-01-14 Process directory diff in a nicer order. 2018-01-11 Bumped revision to 2.8.1 Corrected detected of Emacs for Registry. (Broken in 2.7.4) 2017-12-28 | > | 1 2 3 4 5 6 7 8 9 | 2018-01-14 Removed support for old RCS style -rREV command line. Process directory diff in a nicer order. 2018-01-11 Bumped revision to 2.8.1 Corrected detected of Emacs for Registry. (Broken in 2.7.4) 2017-12-28 |
︙ | ︙ |
Changes to doc/revision.txt.
︙ | ︙ | |||
47 48 49 50 51 52 53 | <pre>hg diff | eskil -</pre> If file names are given after -review, only the listed files are included. If supported, the Commit button will be enabled allowing the viewed differences to be committed. <ul>RCS/CVS</ul> | | | 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | <pre>hg diff | eskil -</pre> If file names are given after -review, only the listed files are included. If supported, the Commit button will be enabled allowing the viewed differences to be committed. <ul>RCS/CVS</ul> For RCS and CVS the arguments to -r are standard version numbers just like to their -r options. If a revision is an integer, it is added to the last number in the current version, thus giving relative versions. E.g. -1 gives the second to last version. <ul>Subversion</ul> For Subversion the arguments to -r are standard version numbers just like its -r option. If a revision is a negative integer, the log is searched backwards for earlier versions. E.g. -1 gives the second to last version. <ul>Git</ul> |
︙ | ︙ |
Changes to htdocs/revision.wiki.
︙ | ︙ | |||
78 79 80 81 82 83 84 | Eskil can be used as a conflict resolution tool. See examples below for settings. <h1>Tools Details</h1> <h2>RCS/CVS</h2> | | | 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 | Eskil can be used as a conflict resolution tool. See examples below for settings. <h1>Tools Details</h1> <h2>RCS/CVS</h2> For RCS and CVS the arguments to -r are standard version numbers just like to their -r options. If a revision is an integer, it is added to the last number in the current version, thus giving relative versions. E.g. -1 gives the second to last version. <h2>Subversion</h2> For Subversion the arguments to -r are standard version numbers just like its -r option. If a revision is a negative integer, the log is searched backwards for earlier versions. E.g. -1 gives the second to last version. |
︙ | ︙ |
Changes to src/startup.tcl.
︙ | ︙ | |||
820 821 822 823 824 825 826 | continue } if {$arg eq "-"} { # Allow "-" for stdin patch processing lappend files "-" continue } | < < < < < < | 820 821 822 823 824 825 826 827 828 829 830 831 832 833 | continue } if {$arg eq "-"} { # Allow "-" for stdin patch processing lappend files "-" continue } # Handle unknowns if {![dict exists $::eskil(opts) $arg]} { # Try to see if it is an unique abbreviation of an option. set match [allOpts $arg*] if {[llength $match] == 1} { set arg [lindex $match 0] } else { |
︙ | ︙ |