mirror of
https://github.com/neovim/neovim.git
synced 2025-09-17 16:58:17 +00:00
vim-patch:7.4.602
Problem: ":set" does not accept hex numbers as documented.
Solution: Use vim_str2nr(). (ZyX)
18400e6430
This commit is contained in:
@@ -1214,17 +1214,10 @@ do_set (
|
||||
errmsg = e_invarg;
|
||||
goto skip;
|
||||
}
|
||||
}
|
||||
/* allow negative numbers (for 'undolevels') */
|
||||
else if (*arg == '-' || ascii_isdigit(*arg)) {
|
||||
i = 0;
|
||||
if (*arg == '-')
|
||||
i = 1;
|
||||
value = strtol((char *)arg, NULL, 0);
|
||||
if (arg[i] == '0' && TOLOWER_ASC(arg[i + 1]) == 'x')
|
||||
i += 2;
|
||||
while (ascii_isdigit(arg[i]))
|
||||
++i;
|
||||
} else if (*arg == '-' || ascii_isdigit(*arg)) {
|
||||
// Allow negative (for 'undolevels'), octal and
|
||||
// hex numbers.
|
||||
vim_str2nr(arg, NULL, &i, true, true, &value, NULL);
|
||||
if (arg[i] != NUL && !ascii_iswhite(arg[i])) {
|
||||
errmsg = e_invarg;
|
||||
goto skip;
|
||||
|
Reference in New Issue
Block a user