aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ops.c
diff options
context:
space:
mode:
authorZviRackover <zvirack@gmail.com>2018-08-15 22:46:48 +0300
committerZviRackover <zvirack@gmail.com>2018-08-16 06:03:49 +0300
commit30392b635689a5f25421c17ead79e521863c8b57 (patch)
treedcfc160cd10b09de6a7ededd4d241196b24ac122 /src/nvim/ops.c
parent2bddc4ca54e31a14b7e9799beda134217ae867e7 (diff)
downloadrneovim-30392b635689a5f25421c17ead79e521863c8b57.tar.gz
rneovim-30392b635689a5f25421c17ead79e521863c8b57.tar.bz2
rneovim-30392b635689a5f25421c17ead79e521863c8b57.zip
Remove has_mbyte from lines near changes in parent commit
Diffstat (limited to 'src/nvim/ops.c')
-rw-r--r--src/nvim/ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ops.c b/src/nvim/ops.c
index 410cddb2be..dbdab4026d 100644
--- a/src/nvim/ops.c
+++ b/src/nvim/ops.c
@@ -520,7 +520,7 @@ static void block_insert(oparg_T *oap, char_u *s, int b_insert, struct block_def
}
}
- if (has_mbyte && spaces > 0) {
+ if (spaces > 0) {
int off;
// Avoid starting halfway through a multi-byte character.