summaryrefslogtreecommitdiff
path: root/src/ops.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-04-15 21:13:42 +0000
committerBram Moolenaar <Bram@vim.org>2005-04-15 21:13:42 +0000
commit13fcaaf1954e9f0d5aa53a55084e01b2c2741202 (patch)
tree526724d830562d07e6ecb2cde83aa8323070ae15 /src/ops.c
parent402d2fea7025356c7abcb891017a1b7ddf99cbbf (diff)
downloadvim-git-13fcaaf1954e9f0d5aa53a55084e01b2c2741202.tar.gz
updated for version 7.0066v7.0066
Diffstat (limited to 'src/ops.c')
-rw-r--r--src/ops.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ops.c b/src/ops.c
index 9a257ee47..ecc9ad987 100644
--- a/src/ops.c
+++ b/src/ops.c
@@ -3430,9 +3430,9 @@ do_put(regname, dir, count, flags)
/* adjust '] mark */
curbuf->b_op_end.lnum = curwin->w_cursor.lnum - 1;
curbuf->b_op_end.col = bd.textcol + totlen - 1;
-#ifdef FEAT_VIRTUALEDIT
+# ifdef FEAT_VIRTUALEDIT
curbuf->b_op_end.coladd = 0;
-#endif
+# endif
if (flags & PUT_CURSEND)
{
curwin->w_cursor = curbuf->b_op_end;
@@ -3627,7 +3627,7 @@ error:
if (flags & PUT_CURSLINE)
{
- /* ":put": put cursor on last inserte line */
+ /* ":put": put cursor on last inserted line */
curwin->w_cursor.lnum = lnum;
beginline(BL_WHITE | BL_FIX);
}