]> git.eshelyaron.com Git - emacs.git/commitdiff
Get rid of build-time checks around NS tabbar code (bug#33118)
authorAlan Third <alan@idiocy.org>
Mon, 17 Aug 2020 19:58:47 +0000 (20:58 +0100)
committerAlan Third <alan@idiocy.org>
Tue, 18 Aug 2020 21:43:21 +0000 (22:43 +0100)
* src/nsterm.m ([EmacsView initFrameFromEmacs:]): Get rid of version
checks.

src/nsterm.m

index c1d133a00e56dc86fa37728432f911e1440f6e53..98c5b69d681c0d7c92421ff5da84bda2adb22096 100644 (file)
@@ -7669,11 +7669,8 @@ not_in_argv (NSString *arg)
   /* macOS Sierra automatically enables tabbed windows.  We can't
      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 >= 101200
-#if MAC_OS_X_VERSION_MIN_REQUIRED < 101200
+#ifdef NS_IMPL_COCOA
   if ([win respondsToSelector: @selector(setTabbingMode:)])
-#endif
     [win setTabbingMode: NSWindowTabbingModeDisallowed];
 #endif