summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2011-01-17 19:50:06 +0100
committerBram Moolenaar <Bram@vim.org>2011-01-17 19:50:06 +0100
commit48ac02c9ebfed934d3f9f0761b6bcb56d26e74c6 (patch)
tree54e0eb04ddf7332de42bdd5a4f7f2cdb20816a27
parent2a8a3ecb67de119e39b4a9ffaff3460036db0210 (diff)
updated for version 7.3.100v7.3.100
Problem: When using :normal v:count isn't set. Solution: Call normal_cmd() with toplevel set to TRUE.
-rw-r--r--src/ex_docmd.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/ex_docmd.c b/src/ex_docmd.c
index 3265860f40..733d62ee78 100644
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -9310,7 +9310,7 @@ exec_normal_cmd(cmd, remap, silent)
&& !got_int)
{
update_topline_cursor();
- normal_cmd(&oa, FALSE); /* execute a Normal mode cmd */
+ normal_cmd(&oa, TRUE); /* execute a Normal mode cmd */
}
}
#endif
diff --git a/src/version.c b/src/version.c
index 4e5e1a9350..7e17f43e03 100644
--- a/src/version.c
+++ b/src/version.c
@@ -715,6 +715,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 100,
+/**/
99,
/**/
98,