# HG changeset patch # User Jim Blandy # Date 717737883 0 # Node ID 4e556fda7a4dd8bbdbbda2aa6f9ed9b2fb71e9d5 # Parent 5788741d1eaab4c2fe1c8de4ebb6fe4c2595c5ae * frame.c (Fselect_frame, Fframe_root_window, Fframe_selected_window, Fnext_frame, Fmake_frame_visible, Fmake_frame_invisible, Ficonify_frame): Doc fixes. diff -r 5788741d1eaa -r 4e556fda7a4d src/frame.c --- a/src/frame.c Tue Sep 29 03:14:35 1992 +0000 +++ b/src/frame.c Tue Sep 29 03:38:03 1992 +0000 @@ -314,7 +314,7 @@ } DEFUN ("select-frame", Fselect_frame, Sselect_frame, 1, 2, 0, - "Select the frame FRAME. FRAMES's selected window becomes \"the\"\n\ + "Select the frame FRAME. FRAME's selected window becomes \"the\"\n\ selected window. If the optional parameter NO-ENTER is non-nil, don't\n\ focus on that frame.") (frame, no_enter) @@ -364,7 +364,8 @@ } DEFUN ("frame-root-window", Fframe_root_window, Sframe_root_window, 0, 1, 0, - "Returns the root-window of FRAME.") + "Returns the root-window of FRAME.\n\ +If omitted, FRAME defaults to the currently selected frame.") (frame) Lisp_Object frame; { @@ -378,7 +379,8 @@ DEFUN ("frame-selected-window", Fframe_selected_window, Sframe_selected_window, 0, 1, 0, - "Return the selected window of frame object FRAME.") + "Return the selected window of frame object FRAME.\n\ +If omitted, FRAME defaults to the currently selected frame.") (frame) Lisp_Object frame; { @@ -513,13 +515,14 @@ DEFUN ("next-frame", Fnext_frame, Snext_frame, 0, 2, 0, "Return the next frame in the frame list after FRAME.\n\ +By default, skip minibuffer-only frames. If omitted, FRAME defaults to the selected frame.\n\ -If optional argument MINIBUF is nil or omitted, exclude minibuffer-only frames.\n\ -If MINIBUF is a window, include only frames using that window for their\n\ +If optional argument MINIFRAME is non-nil, include minibuffer-only frames.\n\ +If MINIFRAME is a window, include only frames using that window for their\n\ minibuffer.\n\ -If MINIBUF is non-nil and not a window, include all frames.") +If MINIFRAME is non-nil and not a window, include all frames.") (frame, miniframe) -Lisp_Object frame, miniframe; + Lisp_Object frame, miniframe; { Lisp_Object tail; @@ -770,7 +773,8 @@ DEFUN ("make-frame-visible", Fmake_frame_visible, Smake_frame_visible, 0, 1, 0, "Make the frame FRAME visible (assuming it is an X-window).\n\ -Also raises the frame so that nothing obscures it.") +Also raises the frame so that nothing obscures it.\n\ +If omitted, FRAME defaults to the currently selected frame.") (frame) Lisp_Object frame; { @@ -789,7 +793,8 @@ DEFUN ("make-frame-invisible", Fmake_frame_invisible, Smake_frame_invisible, 0, 1, "", - "Make the frame FRAME invisible (assuming it is an X-window).") + "Make the frame FRAME invisible (assuming it is an X-window).\n\ +If omitted, FRAME defaults to the currently selected frame.") (frame) Lisp_Object frame; { @@ -808,7 +813,8 @@ DEFUN ("iconify-frame", Ficonify_frame, Siconify_frame, 0, 1, "", - "Make the frame FRAME into an icon.") + "Make the frame FRAME into an icon.\n\ +If omitted, FRAME defaults to the currently selected frame.") (frame) Lisp_Object frame; {