1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-10 21:50:37 -08:00

(Fraise_frame): Do like the documentation says, and make

the frame visible first.
This commit is contained in:
Richard M. Stallman 1993-11-10 20:09:54 +00:00
parent 4dea6d905e
commit 8a981af5bb

View 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);