diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-03-08 03:03:47 -0500 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-03-08 03:12:57 -0500 |
commit | e3d9945f7fd773b69844460153d8481790ff1f30 (patch) | |
tree | 514a6d13225e96d17dbc36f0a8d8c1991acacc3c /src/nvim/normal.c | |
parent | 8bd194f98aaf8d79886b78f4bd29f9525c1459c8 (diff) | |
download | rneovim-e3d9945f7fd773b69844460153d8481790ff1f30.tar.gz rneovim-e3d9945f7fd773b69844460153d8481790ff1f30.tar.bz2 rneovim-e3d9945f7fd773b69844460153d8481790ff1f30.zip |
vim-patch:8.1.0826: too many #ifdefs
Problem: Too many #ifdefs.
Solution: Graduate FEAT_VIRTUALEDIT. Adds about 10Kbyte to the code.
https://github.com/vim/vim/commit/29ddebef4038d2d2b3bc9d8d3b0109f4046d6fbf
Diffstat (limited to 'src/nvim/normal.c')
-rw-r--r-- | src/nvim/normal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/normal.c b/src/nvim/normal.c index 49eef72a05..01e7ef6781 100644 --- a/src/nvim/normal.c +++ b/src/nvim/normal.c @@ -5443,7 +5443,7 @@ static void nv_csearch(cmdarg_T *cap) */ static void nv_brackets(cmdarg_T *cap) { - pos_T new_pos = INIT_POS_T(0, 0, 0); + pos_T new_pos = { 0, 0, 0 }; pos_T prev_pos; pos_T *pos = NULL; /* init for GCC */ pos_T old_pos; /* cursor position before command */ |