0
0
mirror of https://github.com/vim/vim.git synced 2025-09-27 04:14:06 -04:00

updated for version 7.1-140

This commit is contained in:
Bram Moolenaar
2007-10-14 15:16:27 +00:00
parent fa6d5afd84
commit f13249a717
2 changed files with 9 additions and 0 deletions

View File

@@ -690,6 +690,13 @@ getcount:
ca.count0 = ca.count0 * 10 + (c - '0'); ca.count0 = ca.count0 * 10 + (c - '0');
if (ca.count0 < 0) /* got too large! */ if (ca.count0 < 0) /* got too large! */
ca.count0 = 999999999L; ca.count0 = 999999999L;
#ifdef FEAT_EVAL
/* Set v:count here, when called from main() and not a stuffed
* command, so that v:count can be used in an expression mapping
* right after the count. */
if (toplevel && stuff_empty())
set_vcount(ca.count0, ca.count0 == 0 ? 1 : ca.count0);
#endif
if (ctrl_w) if (ctrl_w)
{ {
++no_mapping; ++no_mapping;

View File

@@ -666,6 +666,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
140,
/**/ /**/
139, 139,
/**/ /**/