Mercurial > emacs
changeset 4961:dd67510308ae
(Fraise_frame): Do like the documentation says, and make
the frame visible first.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 10 Nov 1993 20:09:54 +0000 |
parents | 617153da1136 |
children | 99edf052bfa0 |
files | src/frame.c |
diffstat | 1 files changed, 4 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/frame.c Wed Nov 10 20:07:07 1993 +0000 +++ b/src/frame.c Wed Nov 10 20:09:54 1993 +0000 @@ -972,7 +972,10 @@ 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);