From: Martin Rudalics Date: Sat, 13 Jan 2018 07:59:31 +0000 (+0100) Subject: In nsterm.m use FRAME_NS_P instead of FRAME_X_P (Bug#30019) X-Git-Tag: emacs-26.0.91~8 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=47aa85c7ec3b03c579171b6e6ce62e538f3a5b10;p=emacs.git In nsterm.m use FRAME_NS_P instead of FRAME_X_P (Bug#30019) * src/nsterm.m (x_set_parent_frame): Call FRAME_NS_P instead of FRAME_X_P (Bug#30019). --- diff --git a/src/nsterm.m b/src/nsterm.m index 419a37033f7..51a53828b5b 100644 --- a/src/nsterm.m +++ b/src/nsterm.m @@ -1946,7 +1946,7 @@ x_set_parent_frame (struct frame *f, Lisp_Object new_value, Lisp_Object old_valu if (!NILP (new_value) && (!FRAMEP (new_value) || !FRAME_LIVE_P (p = XFRAME (new_value)) - || !FRAME_X_P (p))) + || !FRAME_NS_P (p))) { store_frame_param (f, Qparent_frame, old_value); error ("Invalid specification of `parent-frame'");