summaryrefslogtreecommitdiff
path: root/src/xdiff
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.2.5073: clang on MS-Windows produces warningsv8.2.5073Bram Moolenaar2022-06-091-1/+1
| | | | | Problem: Clang on MS-Windows produces warnings. Solution: Avoid the warnings. (Yegappan Lakshmanan, closes #10546)
* Update runtime filesBram Moolenaar2021-12-051-0/+3
|
* patch 8.2.3437: compiler warnings for 32/64 bit usagev8.2.3437Mike Williams2021-09-132-2/+2
| | | | | Problem: Compiler warnings for 32/64 bit usage. Solution: Add type casts. (Mike Williams, closes #8870)
* patch 8.2.3390: included xdiff code is outdatedv8.2.3390Christian Brabandt2021-08-3114-143/+236
| | | | | Problem: Included xdiff code is outdated. Solution: Sync with xdiff in git 2.33. (Christian Brabandt, closes #8431)
* patch 8.1.2389: using old C style commentsv8.1.2389Bram Moolenaar2019-12-0413-76/+76
| | | | | Problem: Using old C style comments. Solution: Use // comments where appropriate.
* patch 8.1.0766: various problems when using Vim on VMSv8.1.0766Bram Moolenaar2019-01-172-2/+10
| | | | | Problem: Various problems when using Vim on VMS. Solution: Various fixes. Define long_long_T. (Zoltan Arpadffy)
* patch 8.1.0432: compiler warning for signed/unsignedv8.1.0432Bram Moolenaar2018-09-251-1/+1
| | | | | Problem: Compiler warning for signed/unsigned. Solution: Add type cast. (Mike Williams)
* patch 8.1.0396: another compiler warning on 64-bit MS-Windowsv8.1.0396Bram Moolenaar2018-09-161-1/+1
| | | | | Problem: Another compiler warning on 64-bit MS-Windows. Solution: Add type cast. (Mike Williams)
* patch 8.1.0381: variable declaration not at start of blockv8.1.0381Bram Moolenaar2018-09-131-5/+4
| | | | | Problem: Variable declaration not at start of block. Solution: Fix line ordering.
* patch 8.1.0378: CI build failurev8.1.0378Bram Moolenaar2018-09-132-2/+2
| | | | | Problem: CI build failure. Solution: Include vim.h as ../vim.h. Fix compiler warning.
* patch 8.1.0377: xdiff doesn't use the Vim memory allocation functionsv8.1.0377Bram Moolenaar2018-09-133-9/+14
| | | | | | Problem: Xdiff doesn't use the Vim memory allocation functions. Solution: Change the xdl_ defines. Check for out-of-memory. Rename "ignored" to "vim_ignored".
* patch 8.1.0366: pieces of the xdiff code are not usedv8.1.0366Bram Moolenaar2018-09-101-0/+18
| | | | | Problem: Pieces of the xdiff code are not used. Solution: Add "#if 0" to omit unused code.
* patch 8.1.0364: compiler warning in xdiff codev8.1.0364Bram Moolenaar2018-09-102-1/+5
| | | | | Problem: Compiler warning in xdiff code. (Yegappan Lakshmanan) Solution: Initialize directly.
* patch 8.1.0360: using an external diff program is slow and inflexiblev8.1.0360Bram Moolenaar2018-09-1016-0/+4062
Problem: Using an external diff program is slow and inflexible. Solution: Include the xdiff library. (Christian Brabandt, closes #2732) Use it by default.