diff options
author | ZyX <kp-pav@yandex.ru> | 2017-03-12 21:58:57 +0300 |
---|---|---|
committer | ZyX <kp-pav@yandex.ru> | 2017-03-29 10:08:45 +0300 |
commit | bc87d23c28c10c70b4addaf18ae16bcbe0682c8a (patch) | |
tree | cf90454d9e40e6108f44e971d7bb405bd69ba784 /src/nvim/vim.h | |
parent | b222453c95dbe466b79abd578642fa6038770a55 (diff) | |
download | rneovim-bc87d23c28c10c70b4addaf18ae16bcbe0682c8a.tar.gz rneovim-bc87d23c28c10c70b4addaf18ae16bcbe0682c8a.tar.bz2 rneovim-bc87d23c28c10c70b4addaf18ae16bcbe0682c8a.zip |
unittests: Add tests for dictionary indexing
Diffstat (limited to 'src/nvim/vim.h')
-rw-r--r-- | src/nvim/vim.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/vim.h b/src/nvim/vim.h index e16ee00309..cc0587fb88 100644 --- a/src/nvim/vim.h +++ b/src/nvim/vim.h @@ -30,7 +30,7 @@ Error: configure did not run properly.Check auto/config.log. #include "nvim/os/os_defs.h" /* bring lots of system header files */ /// length of a buffer to store a number in ASCII (64 bits binary + NUL) -#define NUMBUFLEN 65 +enum { NUMBUFLEN = 65 }; // flags for vim_str2nr() #define STR2NR_BIN 1 |