# HG changeset patch # User Bram Moolenaar # Date 1369934311 -7200 # Node ID 779ca415f8e142ab5ca74f95c8f732d1f00fb7dc # Parent b74666f2a2fdf0d4d25c64adbdea4b1038e085f8 updated for version 7.3.1075 Problem: Compiler warning for storing a long_u in an int. Solution: Declare the number as an int. (Mike Williams) diff --git a/src/regexp_nfa.c b/src/regexp_nfa.c --- a/src/regexp_nfa.c +++ b/src/regexp_nfa.c @@ -890,7 +890,7 @@ nfa_regatom() default: { - long_u n = 0; + int n = 0; int cmp = c; if (c == '<' || c == '>') diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -729,6 +729,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1075, +/**/ 1074, /**/ 1073,