diff options
| author | Chong Yidong | 2012-10-30 08:29:37 +0800 |
|---|---|---|
| committer | Chong Yidong | 2012-10-30 08:29:37 +0800 |
| commit | e29e39c9c6aee68a50fef5149cc3acdfa74fec72 (patch) | |
| tree | c88836ed25faf44771754698c5508fcffb2b96d7 /doc/lispref/frames.texi | |
| parent | fc83c2de544c15ce8e4e8fc7c6dd68cc4956a457 (diff) | |
| download | emacs-e29e39c9c6aee68a50fef5149cc3acdfa74fec72.tar.gz emacs-e29e39c9c6aee68a50fef5149cc3acdfa74fec72.zip | |
Document more Emacs 24.3 changes.
* frames.texi (Visibility of Frames): Document tty-top-frame.
* loading.texi (Autoload): Document autoloadp, autoload-do-load.
* symbols.texi (Symbol Plists): Document function-get.
Diffstat (limited to 'doc/lispref/frames.texi')
| -rw-r--r-- | doc/lispref/frames.texi | 23 |
1 files changed, 18 insertions, 5 deletions
diff --git a/doc/lispref/frames.texi b/doc/lispref/frames.texi index 665b75048f3..f58d62675e5 100644 --- a/doc/lispref/frames.texi +++ b/doc/lispref/frames.texi | |||
| @@ -1493,8 +1493,9 @@ This function returns the visibility status of frame @var{frame}. The | |||
| 1493 | value is @code{t} if @var{frame} is visible, @code{nil} if it is | 1493 | value is @code{t} if @var{frame} is visible, @code{nil} if it is |
| 1494 | invisible, and @code{icon} if it is iconified. | 1494 | invisible, and @code{icon} if it is iconified. |
| 1495 | 1495 | ||
| 1496 | On a text terminal, all frames are considered visible, whether they | 1496 | On a text terminal, all frames are considered ``visible'' for the |
| 1497 | are currently being displayed or not. | 1497 | purposes of this function, even though only one frame is displayed. |
| 1498 | @xref{Raising and Lowering}. | ||
| 1498 | @end defun | 1499 | @end defun |
| 1499 | 1500 | ||
| 1500 | @deffn Command iconify-frame &optional frame | 1501 | @deffn Command iconify-frame &optional frame |
| @@ -1550,9 +1551,21 @@ If this is non-@code{nil}, activation of the minibuffer raises the frame | |||
| 1550 | that the minibuffer window is in. | 1551 | that the minibuffer window is in. |
| 1551 | @end defopt | 1552 | @end defopt |
| 1552 | 1553 | ||
| 1553 | You can also enable auto-raise (raising automatically when a frame is | 1554 | On window systems, you can also enable auto-raising (on frame |
| 1554 | selected) or auto-lower (lowering automatically when it is deselected) | 1555 | selection) or auto-lowering (on frame deselection) using frame |
| 1555 | for any frame using frame parameters. @xref{Management Parameters}. | 1556 | parameters. @xref{Management Parameters}. |
| 1557 | |||
| 1558 | @cindex top frame | ||
| 1559 | The concept of raising and lowering frames also applies to text | ||
| 1560 | terminal frames. On each text terminal, only the top frame is | ||
| 1561 | displayed at any one time. | ||
| 1562 | |||
| 1563 | @defun tty-top-frame terminal | ||
| 1564 | This function returns the top frame on @var{terminal}. @var{terminal} | ||
| 1565 | should be a terminal object, a frame (meaning that frame's terminal), | ||
| 1566 | or @code{nil} (meaning the selected frame's terminal). If it does not | ||
| 1567 | refer to a text terminal, the return value is @code{nil}. | ||
| 1568 | @end defun | ||
| 1556 | 1569 | ||
| 1557 | @node Frame Configurations | 1570 | @node Frame Configurations |
| 1558 | @section Frame Configurations | 1571 | @section Frame Configurations |