aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAlan Third2017-04-25 21:44:40 +0100
committerAlan Third2017-04-25 21:47:27 +0100
commitf0424b131583e92939d2c3591e3c2f56d8e547aa (patch)
tree141dcae3bcc43499f4a17f0a8f0aae351f0db3c3 /src
parentfe2ba41f184c436cad47cfb735f1bebd22148f60 (diff)
downloademacs-f0424b131583e92939d2c3591e3c2f56d8e547aa.tar.gz
emacs-f0424b131583e92939d2c3591e3c2f56d8e547aa.zip
Fix define for GNUstep builds
* src/nsterm.m (initFrameFromEmacs): Fix the ifdef so that GNUstep doesn't see the code.
Diffstat (limited to 'src')
-rw-r--r--src/nsterm.m3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nsterm.m b/src/nsterm.m
index f5232d77dd7..9c60740e661 100644
--- a/src/nsterm.m
+++ b/src/nsterm.m
@@ -7028,7 +7028,8 @@ not_in_argv (NSString *arg)
7028 /* macOS Sierra automatically enables tabbed windows. We can't 7028 /* macOS Sierra automatically enables tabbed windows. We can't
7029 allow this to be enabled until it's available on a Free system. 7029 allow this to be enabled until it's available on a Free system.
7030 Currently it only happens by accident and is buggy anyway. */ 7030 Currently it only happens by accident and is buggy anyway. */
7031#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_12 7031#if defined (NS_IMPL_COCOA) && \
7032 MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_12
7032 [win setTabbingMode: NSWindowTabbingModeDisallowed]; 7033 [win setTabbingMode: NSWindowTabbingModeDisallowed];
7033#endif 7034#endif
7034 7035