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
index 3265860..733d62e 100644
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -9310,7 +9310,7 @@
 								  && !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 4e5e1a9..7e17f43 100644
--- a/src/version.c
+++ b/src/version.c
@@ -715,6 +715,8 @@
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    100,
+/**/
     99,
 /**/
     98,