# HG changeset patch # User Christian Brabandt # Date 1697052609 -7200 # Node ID 6d7a054bf2e3d68149abe618df611e65849f152b # Parent f0194c09529a66928451470d1ebdf36612e5d9cf patch 9.0.2013: Unicode tables outdated Commit: https://github.com/vim/vim/commit/a634b92b969e1bcb47551a39bf4e11e41ba9aa17 Author: Christian Brabandt Date: Wed Oct 11 21:24:49 2023 +0200 patch 9.0.2013: Unicode tables outdated Problem: Unicode tables outdated Solution: Update Unicode tables to v15.1 (released 23.09.2023) closes: #13311 Signed-off-by: Christian Brabandt diff --git a/src/mbyte.c b/src/mbyte.c --- a/src/mbyte.c +++ b/src/mbyte.c @@ -1419,14 +1419,13 @@ utf_char2cells(int c) {0x2e80, 0x2e99}, {0x2e9b, 0x2ef3}, {0x2f00, 0x2fd5}, - {0x2ff0, 0x2ffb}, - {0x3000, 0x303e}, + {0x2ff0, 0x303e}, {0x3041, 0x3096}, {0x3099, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x3190, 0x31e3}, - {0x31f0, 0x321e}, + {0x31ef, 0x321e}, {0x3220, 0x3247}, {0x3250, 0x4dbf}, {0x4e00, 0xa48c}, @@ -3152,8 +3151,10 @@ static convertStruct foldCase[] = {0x1fbe,0x1fbe,-1,-7173}, {0x1fc8,0x1fcb,1,-86}, {0x1fcc,0x1fcc,-1,-9}, + {0x1fd3,0x1fd3,-1,-7235}, {0x1fd8,0x1fd9,1,-8}, {0x1fda,0x1fdb,1,-100}, + {0x1fe3,0x1fe3,-1,-7219}, {0x1fe8,0x1fe9,1,-8}, {0x1fea,0x1feb,1,-112}, {0x1fec,0x1fec,-1,-7}, @@ -3210,6 +3211,7 @@ static convertStruct foldCase[] = {0xa7d0,0xa7d6,6,1}, {0xa7d8,0xa7f5,29,1}, {0xab70,0xabbf,1,-38864}, + {0xfb05,0xfb05,-1,1}, {0xff21,0xff3a,1,32}, {0x10400,0x10427,1,40}, {0x104b0,0x104d3,1,40}, diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -705,6 +705,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2013, +/**/ 2012, /**/ 2011,