diff options
author | ZyX <kp-pav@yandex.ru> | 2018-04-22 20:31:40 +0300 |
---|---|---|
committer | ZyX <kp-pav@yandex.ru> | 2018-04-22 20:31:40 +0300 |
commit | 4bab9d34e6ec8801d36e2c8594d2122fc45e8db2 (patch) | |
tree | 62fea1f88e9a2dd44c39dc5f0097a50bd24f0485 /src/nvim/ops.c | |
parent | 4b41680828c8f629617d90e3c17ff229a44b32d4 (diff) | |
download | rneovim-4bab9d34e6ec8801d36e2c8594d2122fc45e8db2.tar.gz rneovim-4bab9d34e6ec8801d36e2c8594d2122fc45e8db2.tar.bz2 rneovim-4bab9d34e6ec8801d36e2c8594d2122fc45e8db2.zip |
*: Fix clint errors
Diffstat (limited to 'src/nvim/ops.c')
-rw-r--r-- | src/nvim/ops.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nvim/ops.c b/src/nvim/ops.c index c4790653b8..b39b139f9b 100644 --- a/src/nvim/ops.c +++ b/src/nvim/ops.c @@ -3595,7 +3595,6 @@ int do_join(size_t count, // We don't want to remove the comment leader if the // previous line is not a comment. if (t > 0 && prev_was_comment) { - char_u *new_curr = skip_comment(curr, true, insert_space, &prev_was_comment); comments[t] = (int)(new_curr - curr); |