diff options
author | Christian Weisgerber <naddy@cvs.openbsd.org> | 2022-03-31 17:27:33 +0000 |
---|---|---|
committer | Christian Weisgerber <naddy@cvs.openbsd.org> | 2022-03-31 17:27:33 +0000 |
commit | 58a6bdb2eecf165eb39e1ff5a8082c4bd6ec1211 (patch) | |
tree | c631dd0d4ac59c3286cbf5b06d00e840263d40da /bin/ksh/sh.1 | |
parent | a7df80ab7071480723f6f681dc3bbfcda8caffb5 (diff) |
man pages: add missing commas between subordinate and main clauses
jmc@ dislikes a comma before "then" in a conditional, so leave those
untouched.
ok jmc@
Diffstat (limited to 'bin/ksh/sh.1')
-rw-r--r-- | bin/ksh/sh.1 | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/bin/ksh/sh.1 b/bin/ksh/sh.1 index 48543693596..326fb8e0c99 100644 --- a/bin/ksh/sh.1 +++ b/bin/ksh/sh.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: sh.1,v 1.153 2021/05/04 21:03:31 naddy Exp $ +.\" $OpenBSD: sh.1,v 1.154 2022/03/31 17:27:14 naddy Exp $ .\" .\" Copyright (c) 2015 Jason McIntyre <jmc@openbsd.org> .\" @@ -14,7 +14,7 @@ .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. .\" -.Dd $Mdocdate: May 4 2021 $ +.Dd $Mdocdate: March 31 2022 $ .Dt SH 1 .Os .Sh NAME @@ -1052,9 +1052,9 @@ argument is ignored for the commands .Ic 0 , ^ , $ , and .Ic c . -If the motion moves towards the beginning of the line +If the motion moves towards the beginning of the line, the character under the cursor is not deleted; -if it moves towards the end of the line +if it moves towards the end of the line, it is deleted. .It Ic C Delete the characters between the cursor and the line end, @@ -1089,7 +1089,7 @@ placing them in the save buffer. A special motion command, .Ic d , may be used to delete the entire line. -If the motion moves towards the beginning of the line +If the motion moves towards the beginning of the line, the character under the cursor is not deleted. .It Oo Ar count Oc Ns Ic D Delete the characters between the cursor and the line end, @@ -1100,7 +1100,7 @@ placing them in the save buffer. A special motion command, .Ic y , may be used to yank the entire line. -If the motion moves towards the beginning of the line +If the motion moves towards the beginning of the line, the character under the cursor is not yanked. .It Oo Ar count Oc Ns Ic Y Yank (copy) the characters between the cursor and the line end, |