diff options
author | Bram Moolenaar <Bram@vim.org> | 2011-01-17 19:50:06 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2011-01-17 19:50:06 +0100 |
commit | 48ac02c9ebfed934d3f9f0761b6bcb56d26e74c6 (patch) | |
tree | 54e0eb04ddf7332de42bdd5a4f7f2cdb20816a27 | |
parent | 2a8a3ecb67de119e39b4a9ffaff3460036db0210 (diff) | |
download | vim-git-48ac02c9ebfed934d3f9f0761b6bcb56d26e74c6.tar.gz |
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.c | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/ex_docmd.c b/src/ex_docmd.c index 3265860f4..733d62ee7 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 4e5e1a935..7e17f43e0 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, |