aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1993-11-22 03:08:40 +0000
committerRichard M. Stallman <[email protected]>1993-11-22 03:08:40 +0000
commit02ff9dd5749cdd38db2fc0e69eac22302b0242ff (patch)
tree61fec75360b58655c442daf9ba83cf721146976b
parent593232e32c8e93a2fa7ab978d3dbf3eb3fef8023 (diff)
(Fmake_frame_visible): Use FRAME_SAMPLE_VISIBILITY. Doc fix.
-rw-r--r--src/frame.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/frame.c b/src/frame.c
index d63a472604..9e93d9c1cc 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -837,7 +837,6 @@ WARNING: If you use this under X, you should do `unfocus-frame' afterwards.")
DEFUN ("make-frame-visible", Fmake_frame_visible, Smake_frame_visible,
0, 1, "",
"Make the frame FRAME visible (assuming it is an X-window).\n\
-Also raises the frame so that nothing obscures it.\n\
If omitted, FRAME defaults to the currently selected frame.")
(frame)
Lisp_Object frame;
@@ -850,7 +849,10 @@ If omitted, FRAME defaults to the currently selected frame.")
/* I think this should be done with a hook. */
#ifdef HAVE_X_WINDOWS
if (FRAME_X_P (XFRAME (frame)))
- x_make_frame_visible (XFRAME (frame));
+ {
+ FRAME_SAMPLE_VISIBILITY (XFRAME (frame));
+ x_make_frame_visible (XFRAME (frame));
+ }
#endif
return frame;