Skip to content

Commit 4df3d1d

Browse files
committed
More robust precondition for BLUR_TRANSPARENCY
Thanks to @chdiza
1 parent db4fcf4 commit 4df3d1d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vim.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1751,7 +1751,7 @@ typedef int proftime_T; /* dummy for function prototypes */
17511751
#endif
17521752

17531753
/* Needs to be before option.h, which uses BLUR_TRANSPARENCY */
1754-
#if defined(FEAT_TRANSPARENCY) && (MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_5)
1754+
#if defined(FEAT_TRANSPARENCY) && defined(MAC_OS_X_VERSION_10_5) && (MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_5)
17551755
# define BLUR_TRANSPARENCY
17561756
#endif
17571757

0 commit comments

Comments
 (0)