aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJim Blandy1993-03-20 20:18:44 +0000
committerJim Blandy1993-03-20 20:18:44 +0000
commitb49f55787d815354b461f73c7cd7681370c10ac8 (patch)
treeacf951bb8b46ef8389cf34323532b3f633075a47 /src
parent221c5fd8ff7f48419a4c56ac1d04bec2652a0f63 (diff)
downloademacs-b49f55787d815354b461f73c7cd7681370c10ac8.tar.gz
emacs-b49f55787d815354b461f73c7cd7681370c10ac8.zip
* frame.c (Fraise_frame, Flower_frame): Renamed from
Fframe_to_front and Fframe_to_back. (syms_of_frame): Adjusted appropriately.
Diffstat (limited to 'src')
-rw-r--r--src/frame.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/frame.c b/src/frame.c
index 32931ade8bb..2b3e9bb2fd9 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -892,7 +892,7 @@ DEFUN ("visible-frame-list", Fvisible_frame_list, Svisible_frame_list,
892} 892}
893 893
894 894
895DEFUN ("frame-to-front", Fframe_to_front, Sframe_to_front, 1, 1, 0, 895DEFUN ("raise-frame", Fraise_frame, Sraise_frame, 1, 1, 0,
896 "Bring FRAME to the front, so it occludes any frames it overlaps.\n\ 896 "Bring FRAME to the front, so it occludes any frames it overlaps.\n\
897If FRAME is invisible, make it visible.\n\ 897If FRAME is invisible, make it visible.\n\
898If Emacs is displaying on an ordinary terminal or some other device which\n\ 898If Emacs is displaying on an ordinary terminal or some other device which\n\
@@ -908,7 +908,8 @@ doesn't support multiple overlapping frames, this function does nothing.")
908 return Qnil; 908 return Qnil;
909} 909}
910 910
911DEFUN ("frame-to-back", Fframe_to_back, Sframe_to_back, 1, 1, 0, 911/* Should we have a corresponding function called Flower_Power? */
912DEFUN ("lower-frame", Flower_frame, Slower_frame, 1, 1, 0,
912 "Send FRAME to the back, so it is occluded by any frames that overlap it.\n\ 913 "Send FRAME to the back, so it is occluded by any frames that overlap it.\n\
913If Emacs is displaying on an ordinary terminal or some other device which\n\ 914If Emacs is displaying on an ordinary terminal or some other device which\n\
914doesn't support multiple overlapping frames, this function does nothing.") 915doesn't support multiple overlapping frames, this function does nothing.")
@@ -1481,8 +1482,8 @@ For values specific to the separate minibuffer frame, see\n\
1481 defsubr (&Siconify_frame); 1482 defsubr (&Siconify_frame);
1482 defsubr (&Sframe_visible_p); 1483 defsubr (&Sframe_visible_p);
1483 defsubr (&Svisible_frame_list); 1484 defsubr (&Svisible_frame_list);
1484 defsubr (&Sframe_to_front); 1485 defsubr (&Sraise_frame);
1485 defsubr (&Sframe_to_back); 1486 defsubr (&Slower_frame);
1486 defsubr (&Sredirect_frame_focus); 1487 defsubr (&Sredirect_frame_focus);
1487 defsubr (&Sframe_focus); 1488 defsubr (&Sframe_focus);
1488 defsubr (&Sframe_parameters); 1489 defsubr (&Sframe_parameters);