From 48ac02c9ebfed934d3f9f0761b6bcb56d26e74c6 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Mon, 17 Jan 2011 19:50:06 +0100 Subject: [PATCH] updated for version 7.3.100 Problem: When using :normal v:count isn't set. Solution: Call normal_cmd() with toplevel set to TRUE. --- src/ex_docmd.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) 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 @@ -714,6 +714,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 100, /**/ 99, /**/ -- 2.50.1