forked from aniani/vim
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)
This commit is contained in:
@@ -890,7 +890,7 @@ nfa_regatom()
|
||||
|
||||
default:
|
||||
{
|
||||
long_u n = 0;
|
||||
int n = 0;
|
||||
int cmp = c;
|
||||
|
||||
if (c == '<' || c == '>')
|
||||
|
@@ -728,6 +728,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
1075,
|
||||
/**/
|
||||
1074,
|
||||
/**/
|
||||
|
Reference in New Issue
Block a user