Mercurial > vim
annotate src/xdiff/README.txt @ 28040:aaff721a71c2
Added tag v8.2.4544 for changeset 0362ab7c1a02bbd5e34ccf469c42f7cf6b66374e
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 11 Mar 2022 16:00:03 +0100 |
parents | c725b8e17f1f |
children | f84e5db372ea |
rev | line source |
---|---|
14696
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
1 The files in this directory come from the xdiff implementation in git. |
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
2 You can find it here: https://github.com/git/git/tree/master/xdiff |
25709
d5142d87f898
patch 8.2.3390: included xdiff code is outdated
Bram Moolenaar <Bram@vim.org>
parents:
14704
diff
changeset
|
3 The files were last updated August 31, 2021 from git release v.2.33.0 |
14696
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
4 |
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
5 This is originally based on libxdiff, which can be found here: |
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
6 http://www.xmailserver.org/xdiff-lib.html |
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
7 |
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
8 The git version was used because it has been maintained and improved. |
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
9 And since it's part of git it is expected to be reliable. |
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
10 |
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
11 The code is distributed under the GNU LGPL license. It is included in the |
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
12 COPYING file. |
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
13 |
14704
150274bc6f5c
patch 8.1.0364: compiler warning in xdiff code
Christian Brabandt <cb@256bit.org>
parents:
14696
diff
changeset
|
14 Changes in these files were made to avoid compiler warnings. |
150274bc6f5c
patch 8.1.0364: compiler warning in xdiff code
Christian Brabandt <cb@256bit.org>
parents:
14696
diff
changeset
|
15 |
26438 | 16 The /* */ comments are kept to make syncing to a newer version easier, do not |
17 change them to // comments! | |
18 | |
14696
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
19 The first work for including xdiff in Vim was done by Christian Brabandt. |