diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-12-19 12:25:25 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-19 12:25:25 -0800 |
commit | 486ddb6eb706575e3af35c4db5b0d3fbe2095545 (patch) | |
tree | 3a861449ac595e4bf192472d80a2834732d312ef /src/nvim/ops.c | |
parent | 1bfccf028673173dd9958930e165e595f36e4601 (diff) | |
parent | 35813c62ed94ba86cb3448165160a6e0f7ef47f5 (diff) | |
download | rneovim-486ddb6eb706575e3af35c4db5b0d3fbe2095545.tar.gz rneovim-486ddb6eb706575e3af35c4db5b0d3fbe2095545.tar.bz2 rneovim-486ddb6eb706575e3af35c4db5b0d3fbe2095545.zip |
Merge #11572 from janlazo/vim-8.2.0015
vim-patch:8.2.{15,18}
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 294c65ca03..0ca16e2c25 100644 --- a/src/nvim/ops.c +++ b/src/nvim/ops.c @@ -3772,7 +3772,7 @@ int do_join(size_t count, curr = skipwhite(curr); if (*curr != NUL && *curr != ')' - && currsize != 0 + && sumsize != 0 && endcurr1 != TAB && (!has_format_option(FO_MBYTE_JOIN) || (utf_ptr2char(curr) < 0x100 && endcurr1 < 0x100)) |