diff options
author | Felipe Oliveira Carvalho <felipekde@gmail.com> | 2015-04-22 19:49:53 -0300 |
---|---|---|
committer | Felipe Oliveira Carvalho <felipekde@gmail.com> | 2015-04-24 20:37:13 -0300 |
commit | 2ca8afc74eada76f50ae60dbb0d6f1804d36bed5 (patch) | |
tree | 4f272a27dd1d2529382d7d1cc409c988a87b2dee /src/nvim/edit.c | |
parent | caabcae0b7470731e793c199b905bfa1bb696914 (diff) | |
download | rneovim-2ca8afc74eada76f50ae60dbb0d6f1804d36bed5.tar.gz rneovim-2ca8afc74eada76f50ae60dbb0d6f1804d36bed5.tar.bz2 rneovim-2ca8afc74eada76f50ae60dbb0d6f1804d36bed5.zip |
Replace vim_isxdigit() with to ascii_isxdigit() defined in ascii.h
Diffstat (limited to 'src/nvim/edit.c')
-rw-r--r-- | src/nvim/edit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/edit.c b/src/nvim/edit.c index b90ed61b45..89970f5965 100644 --- a/src/nvim/edit.c +++ b/src/nvim/edit.c @@ -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) { |