]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fraise_frame): Do like the documentation says, and make
authorRichard M. Stallman <rms@gnu.org>
Wed, 10 Nov 1993 20:09:54 +0000 (20:09 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 10 Nov 1993 20:09:54 +0000 (20:09 +0000)
the frame visible first.

src/frame.c

index 6c8ed6b2d2a3853f602c67f6bf5f17169ad9151a..d63a4726047da130a1080d5f154cfc4439f6fe08 100644 (file)
@@ -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);