aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/nsfns.m3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nsfns.m b/src/nsfns.m
index 7f2f060dda8..bd1e2283a0c 100644
--- a/src/nsfns.m
+++ b/src/nsfns.m
@@ -1497,7 +1497,8 @@ Frames are listed from topmost (first) to bottommost (last). */)
1497 Lisp_Object frame; 1497 Lisp_Object frame;
1498 1498
1499 /* Check against [win parentWindow] so that it doesn't match itself. */ 1499 /* Check against [win parentWindow] so that it doesn't match itself. */
1500 if (parent == nil || ns_window_is_ancestor (parent, [win parentWindow])) 1500 if ([[win delegate] isKindOfClass:[EmacsView class]]
1501 && (parent == nil || ns_window_is_ancestor (parent, [win parentWindow])))
1501 { 1502 {
1502 XSETFRAME (frame, ((EmacsView *)[win delegate])->emacsframe); 1503 XSETFRAME (frame, ((EmacsView *)[win delegate])->emacsframe);
1503 frames = Fcons(frame, frames); 1504 frames = Fcons(frame, frames);