# HG changeset patch # User Bram Moolenaar # Date 1295290206 -3600 # Node ID 35edf814f2230c2bfdf403073fdcf89094c8216a # Parent 85c5a72551e2e731dbf6ab03c50b128bf8e9b550 updated for version 7.3.100 Problem: When using :normal v:count isn't set. Solution: Call normal_cmd() with toplevel set to TRUE. diff --git a/src/ex_docmd.c b/src/ex_docmd.c --- 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 --- 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,