changeset 4655:779ca415f8e1 v7.3.1075

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)
author Bram Moolenaar <bram@vim.org>
date Thu, 30 May 2013 19:18:31 +0200
parents b74666f2a2fd
children 1a4b98208569
files src/regexp_nfa.c src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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 == '>')
--- 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,