aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/frame.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/frame.c b/src/frame.c
index 6c8ed6b2d2a..d63a4726047 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -972,7 +972,10 @@ doesn't support multiple overlapping frames, this function does nothing.")
972 Lisp_Object frame; 972 Lisp_Object frame;
973{ 973{
974 CHECK_LIVE_FRAME (frame, 0); 974 CHECK_LIVE_FRAME (frame, 0);
975 975
976 /* Do like the documentation says. */
977 Fmake_frame_visible (frame);
978
976 if (frame_raise_lower_hook) 979 if (frame_raise_lower_hook)
977 (*frame_raise_lower_hook) (XFRAME (frame), 1); 980 (*frame_raise_lower_hook) (XFRAME (frame), 1);
978 981