emacs-31 937de3fa927: ; Fix typos in preceding commit

Martin Rudalics via Mailing list for Emacs changes <[email protected]> Wed, 15 Jul 2026 02:55:05 -0400 (EDT)
Newsgroups gmane.emacs.diffs
Message-ID <[email protected]>
branch: emacs-31
commit 937de3fa927289def1c974723faa38248f0e991e
Author: Mike Kupfer <[email protected]>
Commit: Martin Rudalics <[email protected]>

    ; Fix typos in preceding commit
    
    * etc/NEWS: Fix key sequence for 'window-layout-rotate-anticlockwise'.
    
    * lisp/window-x.el (window-layout-transpose):
    (window-layout-rotate-clockwise):
    (window-layout-rotate-anticlockwise):
    (window-layout-flip-leftright):
    (window-layout-flip-topdown): Add missing period.
---
 etc/NEWS         |  2 +-
 lisp/window-x.el | 10 +++++-----
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/etc/NEWS b/etc/NEWS
index b918bfc2306..21cc51d5dd8 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -359,7 +359,7 @@ increments as with Emacs 24 through Emacs 30 you now have to set
 +++
 *** New commands to modify window layouts of frames.
 'window-layout-rotate-clockwise' ('C-x w r <RIGHT>') and its counterpart
-'window-layout-rotate-anticlockwise' ('C-x v r <LEFT>') rotate an entire
+'window-layout-rotate-anticlockwise' ('C-x w r <LEFT>') rotate an entire
 window layout.
 'window-layout-flip-topdown' ('C-x w r <DOWN>') and
 'window-layout-flip-leftright' ('C-x w r <LEFT>') flip the window layout
diff --git a/lisp/window-x.el b/lisp/window-x.el
index dbaacf73afe..b48575ae950 100644
--- a/lisp/window-x.el
+++ b/lisp/window-x.el
@@ -73,7 +73,7 @@ where HEIGHT and WIDTH are the normal height and width of the window.
 WINDOW must be a parent window and defaults to the main window of the
 selected frame.  Interactively, with a prefix argument, rotate clockwise
 the layout of the child windows of the selected window's parent.  Signal
-an error if WINDOW is not a parent window
+an error if WINDOW is not a parent window.
 
 Recursively rotate the entire layout of WINDOW's child windows clockwise
 by 90 degrees.  Do not change the selected window of WINDOW's frame.  If
@@ -88,7 +88,7 @@ you want to rotate windows within their frame's layout, consider using
 WINDOW must be a parent window and defaults to the main window of the
 selected frame.  Interactively, with a prefix argument, rotate
 counterclockwise the layout of the child windows of the selected
-window's parent.  Signal an error if WINDOW is not a parent window
+window's parent.  Signal an error if WINDOW is not a parent window.
 
 Recursively rotate the entire layout of WINDOW's child windows
 counterclockwise by 90 degrees.  Do not change the selected window of
@@ -103,7 +103,7 @@ layout, consider using `rotate-windows-back' instead."
 WINDOW must be a parent window and defaults to the main window of the
 selected frame.  Interactively, with a prefix argument, flip
 horizontally the layout of the child windows of the selected window's
-parent.  Signal an error if WINDOW is not a parent window
+parent.  Signal an error if WINDOW is not a parent window.
 
 Recursively flip the layout of WINDOW's child windows so that a child
 window on the right becomes a child window on the left and vice-versa."
@@ -116,7 +116,7 @@ window on the right becomes a child window on the left and vice-versa."
 WINDOW must be a parent window and defaults to the main window of the
 selected frame.  Interactively, with a prefix argument, flip vertically
 the layout of the child windows of the selected window's parent.  Signal
-an error if WINDOW is not a parent window
+an error if WINDOW is not a parent window.
 
 Recursively flip the layout of WINDOW's child windows so that a child
 window on the top becomes a child window on the bottom and vice-versa."
@@ -129,7 +129,7 @@ window on the top becomes a child window on the bottom and vice-versa."
 WINDOW must be a parent window and defaults to the main window of the
 selected frame.  Interactively, with a prefix argument, transpose the
 layout of the child windows of the selected window's parent.  Signal an
-error if WINDOW is not a parent window
+error if WINDOW is not a parent window.
 
 Recursively reorganize WINDOW's child windows so that each horizontal
 split becomes a vertical split and vice versa."