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:
@@ -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
|
||||||
|
|
||||||
|
@@ -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,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user