diff options
author | James McCoy <jamessan@jamessan.com> | 2017-02-27 21:02:57 -0500 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2017-02-27 21:40:16 -0500 |
commit | adc6e636fea64a432656d747f3979d682c94d6e2 (patch) | |
tree | 15006d5a125d94fd502b43432c9b268e620887a3 /src/nvim/eval_defs.h | |
parent | f3d8bc8b61fc46f5ff00c10391cb8dd2ce469a53 (diff) | |
download | rneovim-adc6e636fea64a432656d747f3979d682c94d6e2.tar.gz rneovim-adc6e636fea64a432656d747f3979d682c94d6e2.tar.bz2 rneovim-adc6e636fea64a432656d747f3979d682c94d6e2.zip |
vim-patch:7.4.2095
Problem: Man test fails when run with the GUI.
Solution: Adjust for different behavior of GUI. Add assert_inrange().
https://github.com/vim/vim/commit/61c04493b00f85d0b97436260a9ef9ab82143b78
Only changes related to assert_inrange() were included, since we have a
distinct man plugin.
Diffstat (limited to 'src/nvim/eval_defs.h')
-rw-r--r-- | src/nvim/eval_defs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/eval_defs.h b/src/nvim/eval_defs.h index fb2822b851..39028fdb11 100644 --- a/src/nvim/eval_defs.h +++ b/src/nvim/eval_defs.h @@ -278,6 +278,7 @@ typedef enum ASSERT_NOTEQUAL, ASSERT_MATCH, ASSERT_NOTMATCH, + ASSERT_INRANGE, ASSERT_OTHER, } assert_type_T; |