diff options
author | Sean Dewar <seandewar@users.noreply.github.com> | 2020-11-24 21:46:43 +0000 |
---|---|---|
committer | Sean Dewar <seandewar@users.noreply.github.com> | 2021-09-15 21:19:29 +0100 |
commit | bfeecd0b418cf03a974c57082f4fc647b90aef06 (patch) | |
tree | 1e7ffd77738dfe99ebc5eca0f57d7da97d884cfe /src/nvim/eval.h | |
parent | 9095101743b2606fb1d5f7a5a1216f22d2fb2b4a (diff) | |
download | rneovim-bfeecd0b418cf03a974c57082f4fc647b90aef06.tar.gz rneovim-bfeecd0b418cf03a974c57082f4fc647b90aef06.tar.bz2 rneovim-bfeecd0b418cf03a974c57082f4fc647b90aef06.zip |
vim-patch:8.1.0736: code for Blob not sufficiently tested
Problem: Code for Blob not sufficiently tested.
Solution: Add more tests. Fix uncovered crash. Add test_null_blob().
https://github.com/vim/vim/commit/c0f5a78c15b194f23bedb82e6825e34f481e6532
eval0 and ex_echo's emsg-specific changes have already been ported.
These tests uncover another crash that was fixed in v8.1.0738.
Diffstat (limited to 'src/nvim/eval.h')
-rw-r--r-- | src/nvim/eval.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/eval.h b/src/nvim/eval.h index e5a65122f1..2452a0a8c8 100644 --- a/src/nvim/eval.h +++ b/src/nvim/eval.h @@ -167,6 +167,7 @@ typedef enum { VV__NULL_STRING, // String with NULL value. For test purposes only. VV__NULL_LIST, // List with NULL value. For test purposes only. VV__NULL_DICT, // Dictionary with NULL value. For test purposes only. + VV__NULL_BLOB, // Blob with NULL value. For test purposes only. VV_LUA, } VimVarIndex; |