diff options
| author | Jim Blandy | 1992-09-29 03:38:03 +0000 |
|---|---|---|
| committer | Jim Blandy | 1992-09-29 03:38:03 +0000 |
| commit | 8693ca83b88b09184d62c5947ef94abd8e7d38e6 (patch) | |
| tree | d137d0f1c7bd2549789ac5dbd305f84b1e3c76f9 /src | |
| parent | 30e4c427e196052d6e76dafe02feee1e1dcbd405 (diff) | |
| download | emacs-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.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 () | |||
| 314 | } | 314 | } |
| 315 | 315 | ||
| 316 | DEFUN ("select-frame", Fselect_frame, Sselect_frame, 1, 2, 0, | 316 | DEFUN ("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\ |
| 318 | selected window. If the optional parameter NO-ENTER is non-nil, don't\n\ | 318 | selected window. If the optional parameter NO-ENTER is non-nil, don't\n\ |
| 319 | focus on that frame.") | 319 | focus 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 | ||
| 366 | DEFUN ("frame-root-window", Fframe_root_window, Sframe_root_window, 0, 1, 0, | 366 | DEFUN ("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\ |
| 368 | If 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 | ||
| 379 | DEFUN ("frame-selected-window", Fframe_selected_window, | 380 | DEFUN ("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\ |
| 383 | If 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 | ||
| 514 | DEFUN ("next-frame", Fnext_frame, Snext_frame, 0, 2, 0, | 516 | DEFUN ("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\ |
| 518 | By default, skip minibuffer-only frames. | ||
| 516 | If omitted, FRAME defaults to the selected frame.\n\ | 519 | If omitted, FRAME defaults to the selected frame.\n\ |
| 517 | If optional argument MINIBUF is nil or omitted, exclude minibuffer-only frames.\n\ | 520 | If optional argument MINIFRAME is non-nil, include minibuffer-only frames.\n\ |
| 518 | If MINIBUF is a window, include only frames using that window for their\n\ | 521 | If MINIFRAME is a window, include only frames using that window for their\n\ |
| 519 | minibuffer.\n\ | 522 | minibuffer.\n\ |
| 520 | If MINIBUF is non-nil and not a window, include all frames.") | 523 | If MINIFRAME is non-nil and not a window, include all frames.") |
| 521 | (frame, miniframe) | 524 | (frame, miniframe) |
| 522 | Lisp_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, | |||
| 770 | DEFUN ("make-frame-visible", Fmake_frame_visible, Smake_frame_visible, | 773 | DEFUN ("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\ |
| 773 | Also raises the frame so that nothing obscures it.") | 776 | Also raises the frame so that nothing obscures it.\n\ |
| 777 | If 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 | ||
| 790 | DEFUN ("make-frame-invisible", Fmake_frame_invisible, Smake_frame_invisible, | 794 | DEFUN ("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\ |
| 797 | If 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 | ||
| 809 | DEFUN ("iconify-frame", Ficonify_frame, Siconify_frame, | 814 | DEFUN ("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\ |
| 817 | If omitted, FRAME defaults to the currently selected frame.") | ||
| 812 | (frame) | 818 | (frame) |
| 813 | Lisp_Object frame; | 819 | Lisp_Object frame; |
| 814 | { | 820 | { |