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