From: Richard M. Stallman Date: Wed, 10 Nov 1993 20:09:54 +0000 (+0000) Subject: (Fraise_frame): Do like the documentation says, and make X-Git-Tag: emacs-19.34~10890 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8a981af5bb07a923b61828eb6fa450c73de0b136;p=emacs.git (Fraise_frame): Do like the documentation says, and make the frame visible first. --- 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.") 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);