aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPhilipp Stephani2017-04-22 13:54:08 +0200
committerPhilipp Stephani2017-04-22 13:54:08 +0200
commiteb52828a439f674733ba70844b795c6673733572 (patch)
tree55246242b86de1ecb0f84e3fbc0b02a1fc7cb587 /src
parent401e41df0c6aee6c071a26e0b89f16c70375fc2d (diff)
downloademacs-eb52828a439f674733ba70844b795c6673733572.tar.gz
emacs-eb52828a439f674733ba70844b795c6673733572.zip
Fix usage of FRAME_Z_GROUP
* src/nsterm.m (initFrameFromEmacs:): FRAME_Z_GROUP does not return a Lisp object, cf. Bug#26597.
Diffstat (limited to 'src')
-rw-r--r--src/nsterm.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nsterm.m b/src/nsterm.m
index 4e88297bc04..8c5eb06641b 100644
--- a/src/nsterm.m
+++ b/src/nsterm.m
@@ -6966,7 +6966,7 @@ not_in_argv (NSString *arg)
6966 ordered: NSWindowAbove]; 6966 ordered: NSWindowAbove];
6967 } 6967 }
6968 6968
6969 if (!NILP (FRAME_Z_GROUP (f))) 6969 if (FRAME_Z_GROUP (f) != z_group_none)
6970 win.level = NSNormalWindowLevel 6970 win.level = NSNormalWindowLevel
6971 + (FRAME_Z_GROUP_BELOW (f) ? -1 : 1); 6971 + (FRAME_Z_GROUP_BELOW (f) ? -1 : 1);
6972 6972