Mercurial > vim
annotate src/xdiff/README.txt @ 28614:9ae2c32841fb v8.2.4831
patch 8.2.4831: crash when using maparg() and unmapping simplified keys
Commit: https://github.com/vim/vim/commit/2c8a7ebdad9da017bfb6dc8a0f46acea77ec2e17
Author: zeertzjq <zeertzjq@outlook.com>
Date: Tue Apr 26 21:36:21 2022 +0100
patch 8.2.4831: crash when using maparg() and unmapping simplified keys
Problem: Crash when using maparg() and unmapping simplified keys.
Solution: Do not keep a mapblock pointer. (closes https://github.com/vim/vim/issues/10294)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 26 Apr 2022 22:45:03 +0200 |
parents | c725b8e17f1f |
children | f84e5db372ea |
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 |
25709
d5142d87f898
patch 8.2.3390: included xdiff code is outdated
Bram Moolenaar <Bram@vim.org>
parents:
14704
diff
changeset
|
3 The files were last updated August 31, 2021 from git release v.2.33.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 | 16 The /* */ comments are kept to make syncing to a newer version easier, do not |
17 change them to // comments! | |
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. |