aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1993-11-10 20:09:54 +0000
committerRichard M. Stallman <[email protected]>1993-11-10 20:09:54 +0000
commit8a981af5bb07a923b61828eb6fa450c73de0b136 (patch)
treeb5bcc6867455cd7c9879bec1a767545b22ff5a16
parent4dea6d905e5ce923581019cd1075c9db5a4becfc (diff)
(Fraise_frame): Do like the documentation says, and make
the frame visible first.
-rw-r--r--src/frame.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/frame.c b/src/frame.c
index 6c8ed6b2d2..d63a472604 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -972,7 +972,10 @@ doesn't support multiple overlapping frames, this function does nothing.")
Lisp_Object frame;
{
CHECK_LIVE_FRAME (frame, 0);
-
+
+ /* Do like the documentation says. */
+ Fmake_frame_visible (frame);
+
if (frame_raise_lower_hook)
(*frame_raise_lower_hook) (XFRAME (frame), 1);