summaryrefslogtreecommitdiff
path: root/src/mark.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-09-05 22:05:30 +0000
committerBram Moolenaar <Bram@vim.org>2005-09-05 22:05:30 +0000
commit8b96d64cb57e63f92c335d217d685095ab7c59a7 (patch)
tree8b30feaa8e0d05b94f470397e50559738a10b6fb /src/mark.c
parente344bead3ecc16a0982d157e8c19050f6dff4e0c (diff)
downloadvim-git-8b96d64cb57e63f92c335d217d685095ab7c59a7.tar.gz
updated for version 7.0141
Diffstat (limited to 'src/mark.c')
-rw-r--r--src/mark.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mark.c b/src/mark.c
index 1655e0357..d3db4a601 100644
--- a/src/mark.c
+++ b/src/mark.c
@@ -318,7 +318,8 @@ getmark(c, changefile)
pos = curwin->w_cursor;
listcmd_busy = TRUE; /* avoid that '' is changed */
- if (findpar(&oa, c == '}' ? FORWARD : BACKWARD, 1L, NUL, FALSE))
+ if (findpar(&oa.inclusive,
+ c == '}' ? FORWARD : BACKWARD, 1L, NUL, FALSE))
{
pos_copy = curwin->w_cursor;
posp = &pos_copy;