diff options
author | Stefan Kangas <stefankangas@gmail.com> | 2022-10-12 06:31:27 +0200 |
---|---|---|
committer | Stefan Kangas <stefankangas@gmail.com> | 2022-10-12 06:31:27 +0200 |
commit | c22e85715e47e371fda1af420f54e3840978b81f (patch) | |
tree | c1c6a28d4918b0122dc2af6cafa36b3d3ae413f5 | |
parent | ef6e518035fddf13547d7f1f945b5069a0fe6ea7 (diff) | |
parent | 3787d0b11a40484bf15e860ac300f35a91734ffb (diff) | |
download | emacs-c22e85715e47e371fda1af420f54e3840978b81f.tar.gz emacs-c22e85715e47e371fda1af420f54e3840978b81f.tar.bz2 emacs-c22e85715e47e371fda1af420f54e3840978b81f.zip |
Merge from origin/emacs-28
3787d0b11a ; * doc/lispref/windows.texi (Window Hooks): Fix markup (b...
-rw-r--r-- | doc/lispref/windows.texi | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/lispref/windows.texi b/doc/lispref/windows.texi index ee3b15992b7..e946a408fd6 100644 --- a/doc/lispref/windows.texi +++ b/doc/lispref/windows.texi @@ -6684,32 +6684,32 @@ time window change functions were run for @var{window}'s frame. If it returns @code{nil}, @var{window} has been created after that. If it returns @code{t}, @var{window} was not shown at that time but has been restored from a previously saved window configuration afterwards. -Otherwise, the return value is the buffer shown by @code{window} at +Otherwise, the return value is the buffer shown by @var{window} at that time. @end defun @defun window-old-pixel-width &optional window This function returns the total pixel width of @var{window} the -last time window change functions found @code{window} live on its -frame. It is zero if @code{window} was created after that. +last time window change functions found @var{window} live on its +frame. It is zero if @var{window} was created after that. @end defun @defun window-old-pixel-height &optional window This function returns the total pixel height of @var{window} the last -time window change functions found @code{window} live on its frame. -It is zero if @code{window} was created after that. +time window change functions found @var{window} live on its frame. +It is zero if @var{window} was created after that. @end defun @defun window-old-body-pixel-width &optional window This function returns the pixel width of @var{window}'s text area the -last time window change functions found @code{window} live on its -frame. It is zero if @code{window} was created after that. +last time window change functions found @var{window} live on its +frame. It is zero if @var{window} was created after that. @end defun @defun window-old-body-pixel-height &optional window This function returns the pixel height of @var{window}'s text area the -last time window change functions found @code{window} live on its -frame. It is zero if @code{window} was created after that. +last time window change functions found @var{window} live on its +frame. It is zero if @var{window} was created after that. @end defun In order to find out which window or frame was selected the last time |