mirror of
https://github.com/neovim/neovim.git
synced 2026-08-14 03:04:54 +00:00
docs: update version.c #41092
vim-patch:8.2.0110: prop_find() is not implemented vim-patch:8.2.0318: Vim9: types not sufficiently tested vim-patch:8.2.0518: a terminal falls back to setting $TERM to "xterm" vim-patch:8.2.0543: Vim9: function with varargs does not work properly vim-patch:8.2.0571: double free when passing invalid argument to job_start() vim-patch:8.2.0582: color ramp test does not show text colors vim-patch:8.2.1641: Vim9: cannot use 0 or 1 where a bool is expected vim-patch:8.2.1692: build fails because TTFLAG_STATIC is missing vim-patch:8.2.1855: Vim9: get error message when nothing is wrong vim-patch:8.2.3104: Vim9: unspecified function type causes type error vim-patch:8.2.3479: crash when calling job_start with an invalid argument vim-patch:8.2.3481: failures when char is unsigned vim-patch:9.0.1377: job_status() may return "dead" if the process parent changed vim-patch:9.0.2084: Vim9: abstract static methods are possible vim-patch:9.1.0751: Error callback for term_start() not used vim-patch:9.1.1094: Vim9: problem finding implemented method in type hierarchy vim-patch:9.2.0889: VMS: spurious "INVALID DECC FEATURE VALUE" message at every startup vim-patch:6351c1775 CI: Bump github/codeql-action vim-patch:64b0196a9 runtime(doc): remove todo entry for test_codestyle errors vim-patch:8.2.0073: initializing globals with COMMA is clumsy vim-patch:8.2.0253: crash when using :disassamble without argument vim-patch:8.2.0306: Vim9: :substitute(pat(repl does not work in Vim9 script vim-patch:8.2.0311: Vim9: insufficient script tests vim-patch:8.2.0486: Vim9: some code and error messages not tested vim-patch:8.2.0529: Vim9: function argument with default not checked vim-patch:8.2.0530: test crashes on s390 vim-patch:8.2.0604: :startinsert in a terminal window used later vim-patch:8.2.0652: compiler warning for char conversion
This commit is contained in:
committed by
GitHub
parent
825cb3790e
commit
7604aa5ef0
@@ -59,7 +59,7 @@ char *version_cflags = "Compilation: " NVIM_VERSION_CFLAGS;
|
||||
|
||||
static const int vim_versions[] = { 801, 802, 900, 901, 902 };
|
||||
|
||||
static const int num_patches[] = { 2333, 3873, 1629, 1680, 592 };
|
||||
static const int num_patches[] = { 2333, 3874, 1629, 1681, 604 };
|
||||
|
||||
static const int *included_patchsets[] = {
|
||||
(const int[]) { // 801
|
||||
@@ -2108,9 +2108,7 @@ static const int *included_patchsets[] = {
|
||||
// 251
|
||||
250, 249, 248, 247, 246, 245, 244, 243, 242, 241, 240, 239,
|
||||
// 238
|
||||
237, 236, 235, 234, 233,
|
||||
// 232
|
||||
231, 230, 229, 228, 227, 226, 225, 224, 223,
|
||||
237, 236, 235, 234, 233, 232, 231, 230, 229, 228, 227, 226, 225, 224, 223,
|
||||
// 222
|
||||
221, 220, 219, 218, 217, 216, 215, 214, 213, 212, 211, 210,
|
||||
// 209
|
||||
@@ -3625,8 +3623,8 @@ static const int *included_patchsets[] = {
|
||||
// 55
|
||||
54, 53, 52,
|
||||
// 50-51
|
||||
49, 48, 47, 46,
|
||||
// 44-45
|
||||
49, 48, 47, 46, 45,
|
||||
// 44
|
||||
43, 42, 41, 40, 39, 38, 37, 36, 35,
|
||||
// 34
|
||||
33, 32, 31,
|
||||
@@ -3643,6 +3641,12 @@ static const int *included_patchsets[] = {
|
||||
// 0
|
||||
},
|
||||
(const int[]) { // 902
|
||||
894,
|
||||
// 893
|
||||
892,
|
||||
// 886-891
|
||||
885, 884, 883, 882, 881, 880, 879, 878, 877, 876,
|
||||
// 875
|
||||
874,
|
||||
// 872-873
|
||||
871, 870, 869, 868,
|
||||
|
||||
Reference in New Issue
Block a user