annotate src/xdiff/README.txt @ 35188:965c65610164 default tip

Added tag v9.1.0414 for changeset de9a4c63e943711d1cd7e9ac50fb0baf4cbbf33c
author Christian Brabandt <cb@256bit.org>
date Thu, 16 May 2024 21:00:48 +0200
parents f84e5db372ea
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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
32174
f84e5db372ea patch 9.0.1418: the included xdiff code is a bit outdated
Bram Moolenaar <Bram@vim.org>
parents: 26438
diff changeset
3 The files were last updated March 17, 2023 from git release v.2.40.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
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25709
diff changeset
16 The /* */ comments are kept to make syncing to a newer version easier, do not
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25709
diff changeset
17 change them to // comments!
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25709
diff changeset
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.