0
0
mirror of https://github.com/vim/vim.git synced 2025-09-25 03:54:15 -04:00

updated for version 7.4.081

Problem:    Wrong logic when ANALYZE is "yes".
Solution:   Use or instead of and. (KF Leong)
This commit is contained in:
Bram Moolenaar
2013-11-09 02:32:18 +01:00
parent 817a8801d7
commit 815135e408
2 changed files with 3 additions and 1 deletions

View File

@@ -488,7 +488,7 @@ CFLAGS=$(CFLAGS) $(WP64CHECK)
!endif !endif
# Static code analysis generally available starting with VS2012 # Static code analysis generally available starting with VS2012
!if ("$(ANALYZE)" == "yes") && ("$(MSVCVER)" == "11.0") && ("$(MSVCVER)" == "12.0") !if ("$(ANALYZE)" == "yes") && (("$(MSVCVER)" == "10.0") || ("$(MSVCVER)" == "11.0") || ("$(MSVCVER)" == "12.0"))
CFLAGS=$(CFLAGS) /analyze CFLAGS=$(CFLAGS) /analyze
!endif !endif

View File

@@ -738,6 +738,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 */
/**/
81,
/**/ /**/
80, 80,
/**/ /**/