diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-08-24 16:48:05 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-08-24 17:02:05 -0400 |
commit | 1dc088ea7dff8921d5580078f31a3a660ee16dc0 (patch) | |
tree | 9b7d45b5757c28db187d38e08da88ee79440eb2f /src/nvim/eval.lua | |
parent | 01b5499eea24961f0163b0ca3728c649aad53bbf (diff) | |
download | rneovim-1dc088ea7dff8921d5580078f31a3a660ee16dc0.tar.gz rneovim-1dc088ea7dff8921d5580078f31a3a660ee16dc0.tar.bz2 rneovim-1dc088ea7dff8921d5580078f31a3a660ee16dc0.zip |
vim-patch:8.1.1111: it is not easy to check for infinity
Problem: It is not easy to check for infinity.
Solution: Add isinf(). (Ozaki Kiichi, closes vim/vim#3787)
https://github.com/vim/vim/commit/fda1bff39f89775b20a2d88ef3903656d52f66ad
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 bc3e612b0a..a21e5a6f5d 100644 --- a/src/nvim/eval.lua +++ b/src/nvim/eval.lua @@ -189,6 +189,7 @@ return { insert={args={2, 3}}, invert={args=1}, isdirectory={args=1}, + isinf={args=1}, islocked={args=1}, isnan={args=1}, id={args=1}, |