aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJim Blandy1992-09-29 03:38:03 +0000
committerJim Blandy1992-09-29 03:38:03 +0000
commit8693ca83b88b09184d62c5947ef94abd8e7d38e6 (patch)
treed137d0f1c7bd2549789ac5dbd305f84b1e3c76f9 /src
parent30e4c427e196052d6e76dafe02feee1e1dcbd405 (diff)
downloademacs-8693ca83b88b09184d62c5947ef94abd8e7d38e6.tar.gz
emacs-8693ca83b88b09184d62c5947ef94abd8e7d38e6.zip
* 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')
-rw-r--r--src/frame.c26
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 ()
314} 314}
315 315
316DEFUN ("select-frame", Fselect_frame, Sselect_frame, 1, 2, 0, 316DEFUN ("select-frame", Fselect_frame, Sselect_frame, 1, 2, 0,
317 "Select the frame FRAME. FRAMES's selected window becomes \"the\"\n\ 317 "Select the frame FRAME. FRAME's selected window becomes \"the\"\n\
318selected window. If the optional parameter NO-ENTER is non-nil, don't\n\ 318selected window. If the optional parameter NO-ENTER is non-nil, don't\n\
319focus on that frame.") 319focus on that frame.")
320 (frame, no_enter) 320 (frame, no_enter)
@@ -364,7 +364,8 @@ DEFUN ("window-frame", Fwindow_frame, Swindow_frame, 1, 1, 0,
364} 364}
365 365
366DEFUN ("frame-root-window", Fframe_root_window, Sframe_root_window, 0, 1, 0, 366DEFUN ("frame-root-window", Fframe_root_window, Sframe_root_window, 0, 1, 0,
367 "Returns the root-window of FRAME.") 367 "Returns the root-window of FRAME.\n\
368If omitted, FRAME defaults to the currently selected frame.")
368 (frame) 369 (frame)
369 Lisp_Object frame; 370 Lisp_Object frame;
370{ 371{
@@ -378,7 +379,8 @@ DEFUN ("frame-root-window", Fframe_root_window, Sframe_root_window, 0, 1, 0,
378 379
379DEFUN ("frame-selected-window", Fframe_selected_window, 380DEFUN ("frame-selected-window", Fframe_selected_window,
380 Sframe_selected_window, 0, 1, 0, 381 Sframe_selected_window, 0, 1, 0,
381 "Return the selected window of frame object FRAME.") 382 "Return the selected window of frame object FRAME.\n\
383If omitted, FRAME defaults to the currently selected frame.")
382 (frame) 384 (frame)
383 Lisp_Object frame; 385 Lisp_Object frame;
384{ 386{
@@ -513,13 +515,14 @@ prev_frame (frame, minibuf)
513 515
514DEFUN ("next-frame", Fnext_frame, Snext_frame, 0, 2, 0, 516DEFUN ("next-frame", Fnext_frame, Snext_frame, 0, 2, 0,
515 "Return the next frame in the frame list after FRAME.\n\ 517 "Return the next frame in the frame list after FRAME.\n\
518By default, skip minibuffer-only frames.
516If omitted, FRAME defaults to the selected frame.\n\ 519If omitted, FRAME defaults to the selected frame.\n\
517If optional argument MINIBUF is nil or omitted, exclude minibuffer-only frames.\n\ 520If optional argument MINIFRAME is non-nil, include minibuffer-only frames.\n\
518If MINIBUF is a window, include only frames using that window for their\n\ 521If MINIFRAME is a window, include only frames using that window for their\n\
519minibuffer.\n\ 522minibuffer.\n\
520If MINIBUF is non-nil and not a window, include all frames.") 523If MINIFRAME is non-nil and not a window, include all frames.")
521 (frame, miniframe) 524 (frame, miniframe)
522Lisp_Object frame, miniframe; 525 Lisp_Object frame, miniframe;
523{ 526{
524 Lisp_Object tail; 527 Lisp_Object tail;
525 528
@@ -770,7 +773,8 @@ DEFUN ("restore-frame-configuration", Frestore_frame_configuration,
770DEFUN ("make-frame-visible", Fmake_frame_visible, Smake_frame_visible, 773DEFUN ("make-frame-visible", Fmake_frame_visible, Smake_frame_visible,
771 0, 1, 0, 774 0, 1, 0,
772 "Make the frame FRAME visible (assuming it is an X-window).\n\ 775 "Make the frame FRAME visible (assuming it is an X-window).\n\
773Also raises the frame so that nothing obscures it.") 776Also raises the frame so that nothing obscures it.\n\
777If omitted, FRAME defaults to the currently selected frame.")
774 (frame) 778 (frame)
775 Lisp_Object frame; 779 Lisp_Object frame;
776{ 780{
@@ -789,7 +793,8 @@ Also raises the frame so that nothing obscures it.")
789 793
790DEFUN ("make-frame-invisible", Fmake_frame_invisible, Smake_frame_invisible, 794DEFUN ("make-frame-invisible", Fmake_frame_invisible, Smake_frame_invisible,
791 0, 1, "", 795 0, 1, "",
792 "Make the frame FRAME invisible (assuming it is an X-window).") 796 "Make the frame FRAME invisible (assuming it is an X-window).\n\
797If omitted, FRAME defaults to the currently selected frame.")
793 (frame) 798 (frame)
794 Lisp_Object frame; 799 Lisp_Object frame;
795{ 800{
@@ -808,7 +813,8 @@ DEFUN ("make-frame-invisible", Fmake_frame_invisible, Smake_frame_invisible,
808 813
809DEFUN ("iconify-frame", Ficonify_frame, Siconify_frame, 814DEFUN ("iconify-frame", Ficonify_frame, Siconify_frame,
810 0, 1, "", 815 0, 1, "",
811 "Make the frame FRAME into an icon.") 816 "Make the frame FRAME into an icon.\n\
817If omitted, FRAME defaults to the currently selected frame.")
812 (frame) 818 (frame)
813 Lisp_Object frame; 819 Lisp_Object frame;
814{ 820{