emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 2058ed6: Fix macOS version check (bug#26664)


From: Alan Third
Subject: [Emacs-diffs] master 2058ed6: Fix macOS version check (bug#26664)
Date: Wed, 26 Apr 2017 15:06:35 -0400 (EDT)

branch: master
commit 2058ed65fba79ecdbda6604683540bf9f9860bae
Author: Alan Third <address@hidden>
Commit: Alan Third <address@hidden>

    Fix macOS version check (bug#26664)
    
    * src/nsterm.m (initFrameFromEmacs): Prevent window tabbing mode on
    macOS versions 10.12+.
---
 src/nsterm.m | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/nsterm.m b/src/nsterm.m
index 9c60740..f75a9fe 100644
--- a/src/nsterm.m
+++ b/src/nsterm.m
@@ -7029,7 +7029,7 @@ not_in_argv (NSString *arg)
      allow this to be enabled until it's available on a Free system.
      Currently it only happens by accident and is buggy anyway. */
 #if defined (NS_IMPL_COCOA) && \
-  MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_12
+  MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_12
   [win setTabbingMode: NSWindowTabbingModeDisallowed];
 #endif
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]