summaryrefslogtreecommitdiff
path: root/src/nsterm.m
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2018-01-15 13:53:40 -0800
committerGlenn Morris <rgm@gnu.org>2018-01-15 13:53:40 -0800
commit6e141a2a1528c51494e90a3709172f52e010fc51 (patch)
tree47f4b0abfd6432060c40a7e6e9efb13910b3b8f4 /src/nsterm.m
parent5c6545d3d96c10a850a9d84b9b4dde4942d60d8e (diff)
parentc9c1add6a4df53e87418c27ccd6f4fbc41a42399 (diff)
downloademacs-6e141a2a1528c51494e90a3709172f52e010fc51.tar.gz
Merge from origin/emacs-26
c9c1add6a4 * doc/lispref/variables.texi (File Local Variables): Fix l... 752fba992b (tag: emacs-26.0.91) ; * Update ldefs-boot.el 4f46a5098d * ChangeLog.3: Update 8f705ba44d Update etc/AUTHORS 6c63204b8c Fix an entry in authors-aliases 5dd0e5c54d Mention trace.el facilities in the ELisp manual 97b0e41c5d Improve documentation of safe values of variables a502ee9dc4 ; * doc/emacs/misc.texi (Amusements): Really add "games" t... 106bf8adc3 Improve the Emacs manual's "Misc" node 47aa85c7ec In nsterm.m use FRAME_NS_P instead of FRAME_X_P (Bug#30019) e9e32d3475 ; * Update ldefs-boot.el
Diffstat (limited to 'src/nsterm.m')
-rw-r--r--src/nsterm.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nsterm.m b/src/nsterm.m
index 1f23a6e4fa8..d2927d26b45 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'");