aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2019-04-02 07:12:52 -0400
committerJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2019-04-02 07:12:52 -0400
commited8b4987b7c75e340ed61e841a575409d4acd7c0 (patch)
tree4e3a379d723ca348da75220cca638a82f2bad1d9
parent42e1e2495cc51f659d505bfec8b72905c19e4094 (diff)
downloadrneovim-ed8b4987b7c75e340ed61e841a575409d4acd7c0.tar.gz
rneovim-ed8b4987b7c75e340ed61e841a575409d4acd7c0.tar.bz2
rneovim-ed8b4987b7c75e340ed61e841a575409d4acd7c0.zip
lint
-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 0b604fa4ba..0ed96f0e57 100644
--- a/src/nvim/ops.c
+++ b/src/nvim/ops.c
@@ -1411,7 +1411,7 @@ int op_delete(oparg_T *oap)
if (!is_append_register(oap->regname)) {
y_previous = &y_regs[1];
}
- y_regs[1].y_array = NULL; /* set register "1 to empty */
+ y_regs[1].y_array = NULL; // set register "1 to empty
reg = &y_regs[1];
op_yank_reg(oap, false, reg, false);
}