Merge pull request #4090 from jbradaric/vim-7.4.739

vim-patch:7.4.739
This commit is contained in:
Florian Walch 2016-01-24 12:58:44 +01:00
commit c5f37c0fc0
2 changed files with 6 additions and 3 deletions

View File

@ -4638,10 +4638,13 @@ static int get_string_tv(char_u **arg, typval_T *rettv, int evaluate)
int n, nr;
int c = toupper(*p);
if (c == 'X')
if (c == 'X') {
n = 2;
else
} else if (*p == 'u') {
n = 4;
} else {
n = 8;
}
nr = 0;
while (--n >= 0 && ascii_isxdigit(p[1])) {
++p;

View File

@ -385,7 +385,7 @@ static int included_patches[] = {
// 742,
// 741,
// 740,
// 739,
739,
// 738 NA
// 737,
736,