aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ops.c
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-03-30 20:46:11 +0800
committerGitHub <noreply@github.com>2022-03-30 20:46:11 +0800
commit1217694f21cff2953e6c56be2157365daf7078eb (patch)
tree0a2e9229bbb54fc6b16d4a9bc1cd8f6b2a2ab982 /src/nvim/ops.c
parentac1dd046c01e0685b0f8eeaa36e622b3c2f339ad (diff)
parent06cf205aced6b0d5b7ae919665f2ab3fd81ab960 (diff)
downloadrneovim-1217694f21cff2953e6c56be2157365daf7078eb.tar.gz
rneovim-1217694f21cff2953e6c56be2157365daf7078eb.tar.bz2
rneovim-1217694f21cff2953e6c56be2157365daf7078eb.zip
Merge pull request #17921 from zeertzjq/vim-8.2.4649
vim-patch:8.2.{4349,4649}
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 4404ee7b80..dab6d237bf 100644
--- a/src/nvim/ops.c
+++ b/src/nvim/ops.c
@@ -3893,7 +3893,7 @@ void ex_display(exarg_T *eap)
msg_puts_attr("^J", attr);
n -= 2;
}
- for (p = yb->y_array[j]; *p && (n -= ptr2cells(p)) >= 0; p++) { // -V1019
+ for (p = yb->y_array[j]; *p != NUL && (n -= ptr2cells(p)) >= 0; p++) { // -V1019
clen = utfc_ptr2len(p);
msg_outtrans_len(p, clen);
p += clen - 1;