aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispref/frames.texi
diff options
context:
space:
mode:
authorChong Yidong2012-10-30 08:29:37 +0800
committerChong Yidong2012-10-30 08:29:37 +0800
commite29e39c9c6aee68a50fef5149cc3acdfa74fec72 (patch)
treec88836ed25faf44771754698c5508fcffb2b96d7 /doc/lispref/frames.texi
parentfc83c2de544c15ce8e4e8fc7c6dd68cc4956a457 (diff)
downloademacs-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.texi23
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
1493value is @code{t} if @var{frame} is visible, @code{nil} if it is 1493value is @code{t} if @var{frame} is visible, @code{nil} if it is
1494invisible, and @code{icon} if it is iconified. 1494invisible, and @code{icon} if it is iconified.
1495 1495
1496On a text terminal, all frames are considered visible, whether they 1496On a text terminal, all frames are considered ``visible'' for the
1497are currently being displayed or not. 1497purposes 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
1550that the minibuffer window is in. 1551that the minibuffer window is in.
1551@end defopt 1552@end defopt
1552 1553
1553You can also enable auto-raise (raising automatically when a frame is 1554 On window systems, you can also enable auto-raising (on frame
1554selected) or auto-lower (lowering automatically when it is deselected) 1555selection) or auto-lowering (on frame deselection) using frame
1555for any frame using frame parameters. @xref{Management Parameters}. 1556parameters. @xref{Management Parameters}.
1557
1558@cindex top frame
1559 The concept of raising and lowering frames also applies to text
1560terminal frames. On each text terminal, only the top frame is
1561displayed at any one time.
1562
1563@defun tty-top-frame terminal
1564This function returns the top frame on @var{terminal}. @var{terminal}
1565should be a terminal object, a frame (meaning that frame's terminal),
1566or @code{nil} (meaning the selected frame's terminal). If it does not
1567refer 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