]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
updated for version 7.3.1075 v7.3.1075
authorBram Moolenaar <Bram@vim.org>
Thu, 30 May 2013 17:18:31 +0000 (19:18 +0200)
committerBram Moolenaar <Bram@vim.org>
Thu, 30 May 2013 17:18:31 +0000 (19:18 +0200)
Problem:    Compiler warning for storing a long_u in an int.
Solution:   Declare the number as an int. (Mike Williams)

src/regexp_nfa.c
src/version.c

index ae6281d09476f2bbcc101c22898619cdc437a81e..5e21db3c7d70367c2dab27afb81cbb097c68f318 100644 (file)
@@ -890,7 +890,7 @@ nfa_regatom()
 
                default:
                    {
-                       long_u  n = 0;
+                       int     n = 0;
                        int     cmp = c;
 
                        if (c == '<' || c == '>')
index 8ee5b4e209e3ccbdb75de43c0143cfb22bd620d4..32ff95990c9797951532a57f9caae0257ed19ac2 100644 (file)
@@ -728,6 +728,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1075,
 /**/
     1074,
 /**/