]> git.eshelyaron.com Git - emacs.git/commitdiff
implement pgtk-frame-list-z-order same as frame-list.
authorYuuki Harano <masm+github@masm11.me>
Thu, 25 Jul 2019 16:47:48 +0000 (01:47 +0900)
committerJeff Walsh <fejfighter@gmail.com>
Sun, 22 Nov 2020 03:46:55 +0000 (14:46 +1100)
* src/pgtkfns.c (Fpgtk_frame_list_z_order): return frame list as it's
the same

src/pgtkfns.c

index a8f81761b3dae18f16fb6a8c6a1026d34a8a28e6..52fc65694bafffab84430ae646c258f4a856b148 100644 (file)
@@ -1487,30 +1487,12 @@ DEFUN ("pgtk-frame-list-z-order", Fpgtk_frame_list_z_order,
 If TERMINAL is non-nil and specifies a live frame, return the child
 frames of that frame in Z (stacking) order.
 
-Frames are listed from topmost (first) to bottommost (last).  */)
+Frames are listed from topmost (first) to bottommost (last).
+
+On PGTK, this function is identical to frame-list.  */)
   (Lisp_Object terminal)
 {
-  Lisp_Object frames = Qnil;
-#if 0
-  PGTKWindow *parent = nil;
-
-  if (FRAMEP (terminal) && FRAME_LIVE_P (XFRAME (terminal)))
-    parent = [FRAME_PGTK_VIEW (XFRAME (terminal)) window];
-
-  for (PGTKWindow *win in [[NSApp orderedWindows] reverseObjectEnumerator])
-    {
-      Lisp_Object frame;
-
-      /* Check against [win parentWindow] so that it doesn't match itself. */
-      if (parent == nil || pgtk_window_is_ancestor (parent, [win parentWindow]))
-        {
-          XSETFRAME (frame, ((EmacsView *)[win delegate])->emacsframe);
-          frames = Fcons(frame, frames);
-        }
-    }
-#endif
-
-  return frames;
+  return Fframe_list();
 }
 
 DEFUN ("pgtk-frame-restack", Fpgtk_frame_restack, Spgtk_frame_restack, 2, 3, 0,