mirror of
https://github.com/neovim/neovim.git
synced 2025-09-14 23:38:17 +00:00
Replace vim_isxdigit() with to ascii_isxdigit() defined in ascii.h
This commit is contained in:
@@ -4722,7 +4722,7 @@ int get_literal(void)
|
||||
if (hex
|
||||
|| unicode != 0
|
||||
) {
|
||||
if (!vim_isxdigit(nc))
|
||||
if (!ascii_isxdigit(nc))
|
||||
break;
|
||||
cc = cc * 16 + hex2nr(nc);
|
||||
} else if (octal) {
|
||||
|
Reference in New Issue
Block a user