1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-06 06:20:55 -08:00

; Fix recent documentation changes

* doc/lispref/frames.texi (Frames, Visibility of Frames):
* etc/NEWS: Fix wording, punctuation, and markup.
This commit is contained in:
Eli Zaretskii 2025-03-22 12:55:43 +02:00
parent 098fe4b73b
commit d9386cb546
2 changed files with 5 additions and 5 deletions

View file

@ -35,8 +35,8 @@ although you can create additional frames and switch between them, the
terminal only shows one non-child frame at a time. This frame is terminal only shows one non-child frame at a time. This frame is
referred to as the @dfn{top frame} of that terminal and can be retrieved referred to as the @dfn{top frame} of that terminal and can be retrieved
with the function @code{tty-top-frame} described below. A top frame may with the function @code{tty-top-frame} described below. A top frame may
have child frames (@pxref{Child Frames}) which will be shown together have child frames (@pxref{Child Frames}), which will be shown together
with it but cannot be a child frame itself. with it, but it cannot be a child frame itself.
Graphical terminals, on the other hand, are managed by graphical display Graphical terminals, on the other hand, are managed by graphical display
systems such as the X Window System, which allow Emacs to show multiple systems such as the X Window System, which allow Emacs to show multiple
@ -3292,7 +3292,7 @@ value is @code{t} if @var{frame} is visible, @code{nil} if it is
invisible, and @code{icon} if it is iconified. invisible, and @code{icon} if it is iconified.
Note that the visibility status of a frame as reported by this function Note that the visibility status of a frame as reported by this function
(and by the @code{visibility} frame parameter, @ref{Frame Interaction (and by the @code{visibility} frame parameter, @pxref{Frame Interaction
Parameters}) does not necessarily tell whether the frame is actually Parameters}) does not necessarily tell whether the frame is actually
seen on display. Any such frame can be partially or completely obscured seen on display. Any such frame can be partially or completely obscured
by other window manager windows on the same graphical terminal. Whether by other window manager windows on the same graphical terminal. Whether
@ -3313,7 +3313,7 @@ be seen even if they are considered visible by this function.
This function iconifies frame @var{frame}. If you omit @var{frame}, it This function iconifies frame @var{frame}. If you omit @var{frame}, it
iconifies the selected frame. This will also remove any child frames iconifies the selected frame. This will also remove any child frames
(@pxref{Child Frames}) of @var{frame} from display. On the top frame of (@pxref{Child Frames}) of @var{frame} from display. On the top frame of
a text terminal this function has no effect. visible. If @var{frame} is a text terminal this function has no effect. visible. If @var{frame} is
a child frame, the behavior depends on the value of the variable a child frame, the behavior depends on the value of the variable
@code{iconify-child-frame} (@pxref{Child Frames}). @code{iconify-child-frame} (@pxref{Child Frames}).
@end deffn @end deffn

View file

@ -72,7 +72,7 @@ display table it changes.
** Child frames are now supported on TTY frames. ** Child frames are now supported on TTY frames.
This supports use-cases like Posframe, Corfu, and child frames acting This supports use-cases like Posframe, Corfu, and child frames acting
like tooltips. Other use-cases of child frames are not supported yet. like tooltips. Other use-cases of child frames are not supported yet.
In particular a TTY child frame cannot be converted to a root frame or In particular, a TTY child frame cannot be converted to a root frame or
vice-versa. vice-versa.
To enable tooltips on TTY frames, call 'tty-tip-mode'. To enable tooltips on TTY frames, call 'tty-tip-mode'.