]> git.eshelyaron.com Git - emacs.git/commitdiff
; Improve delete-window-choose-selected documentation
authorRobert Pluim <rpluim@gmail.com>
Fri, 11 Jun 2021 09:30:13 +0000 (11:30 +0200)
committerRobert Pluim <rpluim@gmail.com>
Fri, 11 Jun 2021 09:31:36 +0000 (11:31 +0200)
* doc/lispref/windows.texi (Deleting Windows): Improve
delete-window-choose-selected documentation.

doc/lispref/windows.texi

index 6792d1b2d2fb66574be5eefa4cabbe72a24242ca..3b6f74b89cf5587a4685b0c3b5b0706f6ac5b4d8 100644 (file)
@@ -1320,23 +1320,23 @@ Parameters}.
 
 When @code{delete-window} deletes the selected window of its frame, it
 has to make another window the new selected window of that frame.  The
-following option allows to choose which window gets selected instead.
+following option allows configuring which window is chosen.
 
 @defopt delete-window-choose-selected
-This option allows to specify which window should become a frame's
+This option allows specifying which window should become a frame's
 selected window after @code{delete-window} has deleted the previously
 selected one.  Possible choices are
 
 @itemize
 @item @code{mru}
-(the default) to choose the most recently used window on that frame.
+(the default) choose the most recently used window on that frame.
 
 @item @code{pos}
-to choose the window comprising the frame coordinates of point of the
+choose the window comprising the frame coordinates of point of the
 previously selected window on that frame.
 
 @item @code{nil}
-to choose the first window (the window returned by
+choose the first window (the window returned by
 @code{frame-first-window}) on that frame.
 @end itemize