From dce6d4f982e50e868d6c1b02a73c1f509a00caa5 Mon Sep 17 00:00:00 2001 From: Alexander Gramiak Date: Wed, 17 Apr 2019 08:03:51 -0600 Subject: fixup! Rename non-X x_* identifiers 2 --- src/nsfns.m | 2 +- src/w32fns.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/nsfns.m b/src/nsfns.m index 0477e946560..2470c05c4b5 100644 --- a/src/nsfns.m +++ b/src/nsfns.m @@ -1386,7 +1386,7 @@ DEFUN ("x-create-frame", Fx_create_frame, Sx_create_frame, ns_iconify_frame (f); else if (! NILP (visibility)) { - x_make_frame_visible (f); + ns_make_frame_visible (f); [[FRAME_NS_VIEW (f) window] makeKeyWindow]; } else diff --git a/src/w32fns.c b/src/w32fns.c index ea0f4238b32..e71a3a99925 100644 --- a/src/w32fns.c +++ b/src/w32fns.c @@ -6062,7 +6062,7 @@ DEFUN ("x-create-frame", Fx_create_frame, Sx_create_frame, visibility = Qt; if (!NILP (visibility)) - x_make_frame_visible (f); + w32_make_frame_visible (f); } store_frame_param (f, Qvisibility, visibility); @@ -7177,7 +7177,7 @@ w32_hide_tip (bool delete) tip_frame = Qnil; } else - x_make_frame_invisible (XFRAME (tip_frame)); + w32_make_frame_invisible (XFRAME (tip_frame)); was_open = Qt; } -- cgit v1.2.1