diff options
| author | Miles Bader | 2007-12-28 22:26:14 +0000 |
|---|---|---|
| committer | Miles Bader | 2007-12-28 22:26:14 +0000 |
| commit | b17f53abc28496125965f36147b76ea5f6a2b4fb (patch) | |
| tree | 4293e53692f304327ba689dfeea32d1b0b5bc12a /doc/lispref/frames.texi | |
| parent | 2e5093251c8e63f4546ffc30182dd4015e9a58fd (diff) | |
| parent | ea7ac2eb953bf3c30670e60cb00a9fca611b38b7 (diff) | |
| download | emacs-b17f53abc28496125965f36147b76ea5f6a2b4fb.tar.gz emacs-b17f53abc28496125965f36147b76ea5f6a2b4fb.zip | |
Merge from emacs--rel--22
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-966
Diffstat (limited to 'doc/lispref/frames.texi')
| -rw-r--r-- | doc/lispref/frames.texi | 24 |
1 files changed, 15 insertions, 9 deletions
diff --git a/doc/lispref/frames.texi b/doc/lispref/frames.texi index cd29d44ab76..ab9a6e8291c 100644 --- a/doc/lispref/frames.texi +++ b/doc/lispref/frames.texi | |||
| @@ -362,12 +362,12 @@ in this frame. Its value is @code{color}, @code{grayscale} or | |||
| 362 | @code{mono}. | 362 | @code{mono}. |
| 363 | 363 | ||
| 364 | @item title | 364 | @item title |
| 365 | If a frame has a non-@code{nil} title, it appears in the window system's | 365 | If a frame has a non-@code{nil} title, it appears in the window |
| 366 | border for the frame, and also in the mode line of windows in that frame | 366 | system's title bar at the top of the frame, and also in the mode line |
| 367 | if @code{mode-line-frame-identification} uses @samp{%F} | 367 | of windows in that frame if @code{mode-line-frame-identification} uses |
| 368 | (@pxref{%-Constructs}). This is normally the case when Emacs is not | 368 | @samp{%F} (@pxref{%-Constructs}). This is normally the case when |
| 369 | using a window system, and can only display one frame at a time. | 369 | Emacs is not using a window system, and can only display one frame at |
| 370 | @xref{Frame Titles}. | 370 | a time. @xref{Frame Titles}. |
| 371 | 371 | ||
| 372 | @item name | 372 | @item name |
| 373 | The name of the frame. The frame name serves as a default for the frame | 373 | The name of the frame. The frame name serves as a default for the frame |
| @@ -463,7 +463,7 @@ The height of the frame contents, in characters. (To get the height in | |||
| 463 | pixels, call @code{frame-pixel-height}; see @ref{Size and Position}.) | 463 | pixels, call @code{frame-pixel-height}; see @ref{Size and Position}.) |
| 464 | 464 | ||
| 465 | @item width | 465 | @item width |
| 466 | The width of the frame contents, in characters. (To get the height in | 466 | The width of the frame contents, in characters. (To get the width in |
| 467 | pixels, call @code{frame-pixel-width}; see @ref{Size and Position}.) | 467 | pixels, call @code{frame-pixel-width}; see @ref{Size and Position}.) |
| 468 | 468 | ||
| 469 | @item user-size | 469 | @item user-size |
| @@ -808,8 +808,14 @@ of the frame is normally the same as the size of the terminal screen. | |||
| 808 | 808 | ||
| 809 | @defun frame-pixel-height &optional frame | 809 | @defun frame-pixel-height &optional frame |
| 810 | @defunx frame-pixel-width &optional frame | 810 | @defunx frame-pixel-width &optional frame |
| 811 | These functions return the height and width of @var{frame}, measured in | 811 | These functions return the height and width of the main display area |
| 812 | pixels. If you don't supply @var{frame}, they use the selected frame. | 812 | of @var{frame}, measured in pixels. If you don't supply @var{frame}, |
| 813 | they use the selected frame. | ||
| 814 | |||
| 815 | These values include the internal borders, and windows' scroll bars | ||
| 816 | and fringes (which belong to individual windows, not to the frame | ||
| 817 | itself), but do not include menu bars or tool bars (except when using | ||
| 818 | X without an X toolkit). | ||
| 813 | @end defun | 819 | @end defun |
| 814 | 820 | ||
| 815 | @defun frame-char-height &optional frame | 821 | @defun frame-char-height &optional frame |