summaryrefslogtreecommitdiff
path: root/src/ops.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-12-22 17:59:35 +0100
committerBram Moolenaar <Bram@vim.org>2020-12-22 17:59:35 +0100
commit032a2d050b82b146d70d6ff714838ee62c07d8ad (patch)
tree03f817b100395145e6ee45df16fd541ede28945d /src/ops.c
parentcd45ed03bfdd7fac53d562ad402df74bd26e7754 (diff)
downloadvim-git-032a2d050b82b146d70d6ff714838ee62c07d8ad.tar.gz
patch 8.2.2189: cannot repeat a command that uses the small delete registerv8.2.2189
Problem: Cannot repeat a command that uses the small delete register. Solution: Store the register name instead of the contents. (Christian Brabandt, closes #7527)
Diffstat (limited to 'src/ops.c')
-rw-r--r--src/ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ops.c b/src/ops.c
index 53bd084ec..d8e96ff1a 100644
--- a/src/ops.c
+++ b/src/ops.c
@@ -9,7 +9,7 @@
/*
* ops.c: implementation of various operators: op_shift, op_delete, op_tilde,
- * op_change, op_yank, do_put, do_join
+ * op_change, op_yank, do_join
*/
#include "vim.h"