diff options
| author | Richard M. Stallman | 1993-11-10 20:09:54 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-11-10 20:09:54 +0000 |
| commit | 8a981af5bb07a923b61828eb6fa450c73de0b136 (patch) | |
| tree | b5bcc6867455cd7c9879bec1a767545b22ff5a16 /src | |
| parent | 4dea6d905e5ce923581019cd1075c9db5a4becfc (diff) | |
| download | emacs-8a981af5bb07a923b61828eb6fa450c73de0b136.tar.gz emacs-8a981af5bb07a923b61828eb6fa450c73de0b136.zip | |
(Fraise_frame): Do like the documentation says, and make
the frame visible first.
Diffstat (limited to 'src')
| -rw-r--r-- | src/frame.c | 5 |
1 files changed, 4 insertions, 1 deletions
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.") | |||
| 972 | Lisp_Object frame; | 972 | Lisp_Object frame; |
| 973 | { | 973 | { |
| 974 | CHECK_LIVE_FRAME (frame, 0); | 974 | CHECK_LIVE_FRAME (frame, 0); |
| 975 | 975 | ||
| 976 | /* Do like the documentation says. */ | ||
| 977 | Fmake_frame_visible (frame); | ||
| 978 | |||
| 976 | if (frame_raise_lower_hook) | 979 | if (frame_raise_lower_hook) |
| 977 | (*frame_raise_lower_hook) (XFRAME (frame), 1); | 980 | (*frame_raise_lower_hook) (XFRAME (frame), 1); |
| 978 | 981 | ||