summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Rudalics <rudalics@gmx.at>2018-01-13 08:59:31 +0100
committerMartin Rudalics <rudalics@gmx.at>2018-01-13 08:59:31 +0100
commit47aa85c7ec3b03c579171b6e6ce62e538f3a5b10 (patch)
tree10e8d07f47a1d99cbb3142496db78e4c5b18faa0
parente9e32d34756bd51807ca0cc8bd975d15f5ce9181 (diff)
downloademacs-47aa85c7ec3b03c579171b6e6ce62e538f3a5b10.tar.gz
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).
-rw-r--r--src/nsterm.m2
1 files changed, 1 insertions, 1 deletions
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'");