blob: 3302abc24daccace636552b7a578ba00e9310ebe [file] [log] [blame]
Bram Moolenaare828b762018-09-10 17:51:58 +02001The files in this directory come from the xdiff implementation in git.
2You can find it here: https://github.com/git/git/tree/master/xdiff
Yee Cheng Chin5fedb8a2023-03-20 17:30:52 +00003The files were last updated March 17, 2023 from git release v.2.40.0
Bram Moolenaare828b762018-09-10 17:51:58 +02004
5This is originally based on libxdiff, which can be found here:
6http://www.xmailserver.org/xdiff-lib.html
7
8The git version was used because it has been maintained and improved.
9And since it's part of git it is expected to be reliable.
10
11The code is distributed under the GNU LGPL license. It is included in the
12COPYING file.
13
Bram Moolenaare797abf2018-09-10 21:22:15 +020014Changes in these files were made to avoid compiler warnings.
15
Bram Moolenaar47003982021-12-05 21:54:04 +000016The /* */ comments are kept to make syncing to a newer version easier, do not
17change them to // comments!
18
Bram Moolenaare828b762018-09-10 17:51:58 +020019The first work for including xdiff in Vim was done by Christian Brabandt.