diff options
author | Bram Moolenaar <Bram@vim.org> | 2008-02-13 11:42:46 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2008-02-13 11:42:46 +0000 |
commit | 0825043045f69784ed5a4db952988ca5ae7f6d48 (patch) | |
tree | c1e5e8df6bcdced1032437c7614203e17ee314e2 /src/mark.c | |
parent | e21877ae759827ce9b4422c55dce33237dd175a4 (diff) | |
download | vim-git-0825043045f69784ed5a4db952988ca5ae7f6d48.tar.gz |
updated for version 7.1-248v7.1.248
Diffstat (limited to 'src/mark.c')
-rw-r--r-- | src/mark.c | 6 |
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 == '[') |