diff options
author | James McCoy <jamessan@jamessan.com> | 2017-06-05 23:17:54 -0400 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2017-06-06 06:15:16 -0400 |
commit | dafc14b9691dfa9af143c0372f84b9288163c30a (patch) | |
tree | d6ab31ecae0ef67b2355f529070d31c2ec24ec01 /src/nvim/eval.lua | |
parent | cb8efa4fefd845e6cf42c9d14384bd291327cfe8 (diff) | |
download | rneovim-dafc14b9691dfa9af143c0372f84b9288163c30a.tar.gz rneovim-dafc14b9691dfa9af143c0372f84b9288163c30a.tar.bz2 rneovim-dafc14b9691dfa9af143c0372f84b9288163c30a.zip |
vim-patch:8.0.0477
Problem: The client-server test may hang when failing.
Solution: Set a timer. Add assert_report()
https://github.com/vim/vim/commit/42205551b140bee8b419b24abe210f56bb80b35e
Diffstat (limited to 'src/nvim/eval.lua')
-rw-r--r-- | src/nvim/eval.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/eval.lua b/src/nvim/eval.lua index 334e10eb6c..30766a0734 100644 --- a/src/nvim/eval.lua +++ b/src/nvim/eval.lua @@ -33,6 +33,7 @@ return { assert_match={args={2, 3}}, assert_notequal={args={2, 3}}, assert_notmatch={args={2, 3}}, + assert_report={args=1}, assert_true={args={1, 2}}, atan={args=1, func="float_op_wrapper", data="&atan"}, atan2={args=2}, |