diff options
| author | lonerover <pathfinder1644@yahoo.com> | 2017-07-15 21:02:15 +0800 |
|---|---|---|
| committer | lonerover <pathfinder1644@yahoo.com> | 2017-07-19 11:48:10 +0800 |
| commit | b98ea04226d5ae7f2d8f9650101f87a848145ca4 (patch) | |
| tree | ce03edf98f3e701eb67b48a40e1fe79ea61a0b03 /src/nvim/version.c | |
| parent | 26124b480028354d7d81d93c0e45ca516effdaa6 (diff) | |
| download | rneovim-b98ea04226d5ae7f2d8f9650101f87a848145ca4.tar.gz rneovim-b98ea04226d5ae7f2d8f9650101f87a848145ca4.tar.bz2 rneovim-b98ea04226d5ae7f2d8f9650101f87a848145ca4.zip | |
vim-patch:8.0.0003
Problem: getwinvar() returns wrong Value of boolean and number options,
especially non big endian systems. (James McCoy)
Solution: Cast the pointer to long or int. (closes vim/vim#1060)
https://github.com/vim/vim/commit/789a5c0e3d27f09456678f0cfb6c1bd2d8ab4a35
Diffstat (limited to 'src/nvim/version.c')
| -rw-r--r-- | src/nvim/version.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/version.c b/src/nvim/version.c index 2200c5e04a..a7d6885b4c 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -726,7 +726,7 @@ static const int included_patches[] = { 6, // 5 NA 4, - // 3, + 3, 2, 1, 0 |