# HG changeset patch # User Bram Moolenaar # Date 1434708493 -7200 # Node ID 541abe8d5f557fbb7fcdb4844d20b1b0634ea72c # Parent ee39b0c5d55e3c87730b8ba867acfc2a8016ba91 patch 7.4.739 Problem: In a string "\U" only takes 4 digits, while after CTRL-V U eight digits can be used. Solution: Make "\U" also take eight digits. (Christian Brabandt) diff --git a/src/eval.c b/src/eval.c --- a/src/eval.c +++ b/src/eval.c @@ -5745,8 +5745,10 @@ get_string_tv(arg, rettv, evaluate) if (c == 'X') n = 2; + else if (*p == 'u') + n = 4; else - n = 4; + n = 8; nr = 0; while (--n >= 0 && vim_isxdigit(p[1])) { diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -742,6 +742,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 739, +/**/ 738, /**/ 737,