diff options
author | Martin Rudalics <rudalics@gmx.at> | 2021-10-18 19:18:42 +0200 |
---|---|---|
committer | Martin Rudalics <rudalics@gmx.at> | 2021-10-18 19:18:42 +0200 |
commit | 0c241043a88e0c93ad752cfefd581dcc4a273509 (patch) | |
tree | 03fbb2a5515ab351758d5fe712373c84102fefd8 | |
parent | 8e8a9202469d568b18ea97319e5627fefd833c0b (diff) | |
download | emacs-0c241043a88e0c93ad752cfefd581dcc4a273509.tar.gz emacs-0c241043a88e0c93ad752cfefd581dcc4a273509.tar.bz2 emacs-0c241043a88e0c93ad752cfefd581dcc4a273509.zip |
Further fixes to Elisp manual
* doc/lispref/frames.texi (Frame Layout): Index "tab bar" instead
of "internal tab bar".
(Implied Frame Resizing): Remove irritating hyphens.
* doc/lispref/windows.texi (Windows and Frames): Remove paragraph
relating 'minibuffer-window' to 'window-list'.
-rw-r--r-- | doc/lispref/frames.texi | 6 | ||||
-rw-r--r-- | doc/lispref/windows.texi | 9 |
2 files changed, 5 insertions, 10 deletions
diff --git a/doc/lispref/frames.texi b/doc/lispref/frames.texi index f851d12c080..56ac7118135 100644 --- a/doc/lispref/frames.texi +++ b/doc/lispref/frames.texi @@ -642,7 +642,7 @@ automatically increase the outer width of a frame in order to accommodate an overlong tool bar. @item Tab Bar -@cindex internal tab bar +@cindex tab bar The tab bar (@pxref{Tab Bars,,,emacs, The GNU Emacs Manual}) is always drawn by Emacs itself. The tab bar appears above the tool bar in Emacs built with an internal tool bar, and below the tool bar in @@ -1218,10 +1218,10 @@ width of one scroll bar provided this option is @code{nil} and keep it unchanged if this option is @code{t} or a list containing @code{vertical-scroll-bars}. -The default value is @code{'(tab-bar-lines tool-bar-lines)} for Lucid, +The default value is @code{(tab-bar-lines tool-bar-lines)} for Lucid, Motif and MS-Windows (which means that adding/removing a tool or tab bar there does not change the outer frame height), -@code{'(tab-bar-lines)} on all other window systems including GTK+ +@code{(tab-bar-lines)} on all other window systems including GTK+ (which means that changing any of the parameters listed above with the exception of @code{tab-bar-lines} may change the size of the outer frame), and @code{t} otherwise (which means the outer frame size never diff --git a/doc/lispref/windows.texi b/doc/lispref/windows.texi index c66ae173e42..0ae26b2f583 100644 --- a/doc/lispref/windows.texi +++ b/doc/lispref/windows.texi @@ -213,7 +213,8 @@ window} which is used for displaying a tooltip in a tooltip frame Each window belongs to exactly one frame (@pxref{Frames}). For all windows belonging to a specific frame, we sometimes also say that these -windows are @dfn{owned} by that frame or simply that they are on that frame. +windows are @dfn{owned} by that frame or simply that they are on that +frame. @defun window-frame &optional window This function returns the specified @var{window}'s frame---the frame @@ -233,12 +234,6 @@ minibuffer window (@pxref{Minibuffer Windows}) in that list. If active. If @var{minibuffer} is neither @code{nil} nor @code{t}, the minibuffer window is never included. -Note that the window returned by @code{minibuffer-window} called with -the argument @var{frame} is returned by @code{window-list} called with -the same argument if and only if that window actually belongs to -@var{frame}. If the minibuffer window is owned by another frame, it is -not returned by this invocation. - The optional argument @var{window}, if non-@code{nil}, must be a live window on the specified frame; then @var{window} will be the first element in the returned list. If @var{window} is omitted or @code{nil}, |