diff options
author | Jim Blandy <jimb@redhat.com> | 1992-09-29 03:38:03 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1992-09-29 03:38:03 +0000 |
commit | 8693ca83b88b09184d62c5947ef94abd8e7d38e6 (patch) | |
tree | d137d0f1c7bd2549789ac5dbd305f84b1e3c76f9 /src/frame.c | |
parent | 30e4c427e196052d6e76dafe02feee1e1dcbd405 (diff) | |
download | emacs-8693ca83b88b09184d62c5947ef94abd8e7d38e6.tar.gz |
* frame.c (Fselect_frame, Fframe_root_window,
Fframe_selected_window, Fnext_frame, Fmake_frame_visible,
Fmake_frame_invisible, Ficonify_frame): Doc fixes.
Diffstat (limited to 'src/frame.c')
-rw-r--r-- | src/frame.c | 26 |
1 files changed, 16 insertions, 10 deletions
diff --git a/src/frame.c b/src/frame.c index 1a8261c5269..be70034f1d8 100644 --- a/src/frame.c +++ b/src/frame.c @@ -314,7 +314,7 @@ make_terminal_frame () } 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 ("window-frame", Fwindow_frame, Swindow_frame, 1, 1, 0, } 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-root-window", Fframe_root_window, Sframe_root_window, 0, 1, 0, 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 @@ prev_frame (frame, minibuf) 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 ("restore-frame-configuration", Frestore_frame_configuration, 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 @@ Also raises the frame so that nothing obscures it.") 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 ("make-frame-invisible", Fmake_frame_invisible, Smake_frame_invisible, 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; { |