summaryrefslogtreecommitdiff
path: root/src/mark.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2008-02-13 11:42:46 +0000
committerBram Moolenaar <Bram@vim.org>2008-02-13 11:42:46 +0000
commit0825043045f69784ed5a4db952988ca5ae7f6d48 (patch)
treec1e5e8df6bcdced1032437c7614203e17ee314e2 /src/mark.c
parente21877ae759827ce9b4422c55dce33237dd175a4 (diff)
downloadvim-git-0825043045f69784ed5a4db952988ca5ae7f6d48.tar.gz
updated for version 7.1-248v7.1.248
Diffstat (limited to 'src/mark.c')
-rw-r--r--src/mark.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mark.c b/src/mark.c
index 6dc593440..2accbba1f 100644
--- a/src/mark.c
+++ b/src/mark.c
@@ -79,6 +79,12 @@ setmark_pos(c, pos, fnum)
return OK;
}
+ if (c == '"')
+ {
+ curbuf->b_last_cursor = *pos;
+ return OK;
+ }
+
/* Allow setting '[ and '] for an autocommand that simulates reading a
* file. */
if (c == '[')