vim/src/xdiff
Zoltan Arpadffy 1c8e233cb8
patch 9.0.2153: no support to build on OpenVMS
Problem:  no support to build on OpenVMS
Solution: Add OpenVMS X86_64 platform port

closes: #13623

Co-authored-by: errael <errael@raelity.com>
Co-authored-by: K.Takata <kentkt@csc.jp>
Signed-off-by: Zoltan Arpadffy <zoltan.arpadffy@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
2023-12-05 16:04:23 +01:00
..
COPYING
README.txt patch 9.0.1418: the included xdiff code is a bit outdated 2023-03-20 17:30:52 +00:00
xdiff.h patch 9.0.1418: the included xdiff code is a bit outdated 2023-03-20 17:30:52 +00:00
xdiffi.c patch 9.0.1418: the included xdiff code is a bit outdated 2023-03-20 17:30:52 +00:00
xdiffi.h patch 9.0.1418: the included xdiff code is a bit outdated 2023-03-20 17:30:52 +00:00
xemit.c patch 9.0.1418: the included xdiff code is a bit outdated 2023-03-20 17:30:52 +00:00
xemit.h
xhistogram.c patch 9.0.1418: the included xdiff code is a bit outdated 2023-03-20 17:30:52 +00:00
xinclude.h
xmacros.h patch 9.0.2153: no support to build on OpenVMS 2023-12-05 16:04:23 +01:00
xpatience.c patch 9.0.1418: the included xdiff code is a bit outdated 2023-03-20 17:30:52 +00:00
xprepare.c patch 9.0.1418: the included xdiff code is a bit outdated 2023-03-20 17:30:52 +00:00
xprepare.h
xtypes.h
xutils.c patch 9.0.1699: compile warning for xdiff/xutils on MS-Windows 2023-08-12 20:50:55 +02:00
xutils.h patch 9.0.1418: the included xdiff code is a bit outdated 2023-03-20 17:30:52 +00:00

The files in this directory come from the xdiff implementation in git.
You can find it here: https://github.com/git/git/tree/master/xdiff
The files were last updated March 17, 2023 from git release v.2.40.0

This is originally based on libxdiff, which can be found here:
http://www.xmailserver.org/xdiff-lib.html

The git version was used because it has been maintained and improved.
And since it's part of git it is expected to be reliable.

The code is distributed under the GNU LGPL license.  It is included in the
COPYING file.

Changes in these files were made to avoid compiler warnings.

The /* */ comments are kept to make syncing to a newer version easier, do not
change them to // comments!

The first work for including xdiff in Vim was done by Christian Brabandt.