diff options
author | ckelsel <ckelsel@hotmail.com> | 2017-09-11 19:14:41 +0800 |
---|---|---|
committer | ckelsel <ckelsel@hotmail.com> | 2017-09-11 19:14:41 +0800 |
commit | 5ad5bb0c0c1be5fec7e3073dc63d30e19ad26a82 (patch) | |
tree | 9f9d762925f8457632ec80cc2082d0f0516a300b /src/nvim/ops.c | |
parent | af2dd6827299070d81218e9ba54646bfaf53607c (diff) | |
parent | f51a397010dcf4a8308c3b0249810696375b82b2 (diff) | |
download | rneovim-5ad5bb0c0c1be5fec7e3073dc63d30e19ad26a82.tar.gz rneovim-5ad5bb0c0c1be5fec7e3073dc63d30e19ad26a82.tar.bz2 rneovim-5ad5bb0c0c1be5fec7e3073dc63d30e19ad26a82.zip |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'src/nvim/ops.c')
-rw-r--r-- | src/nvim/ops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ops.c b/src/nvim/ops.c index c01840cfd0..99dc4670f1 100644 --- a/src/nvim/ops.c +++ b/src/nvim/ops.c @@ -2060,7 +2060,7 @@ void op_insert(oparg_T *oap, long count1) } t1 = oap->start; - edit(NUL, false, (linenr_T)count1); + (void)edit(NUL, false, (linenr_T)count1); // When a tab was inserted, and the characters in front of the tab // have been converted to a tab as well, the column of the cursor |