diff options
author | 2015-02-28 21:51:56 +0000 | |
---|---|---|
committer | 2015-02-28 21:51:56 +0000 | |
commit | 9dbd696514ef94fc24ee622023bb055d94c78640 (patch) | |
tree | cc83a924c252f976523f2306273efaa262692a9c /usr.bin/split | |
parent | Move consinit() out of the bowels of the zs driver to its own file, in (diff) | |
download | wireguard-openbsd-9dbd696514ef94fc24ee622023bb055d94c78640.tar.xz wireguard-openbsd-9dbd696514ef94fc24ee622023bb055d94c78640.zip |
Reduce usage of predefined strings in manpages.
Predefined strings are not very portable across troff implementations,
and they make the source much harder to read. Usually the intended
character can be written directly.
No output changes, except for two instances where the incorrect escape
was used in the first place.
tweaks + ok schwarze@
Diffstat (limited to 'usr.bin/split')
-rw-r--r-- | usr.bin/split/split.1 | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/usr.bin/split/split.1 b/usr.bin/split/split.1 index 8df5d371f70..df7679e54c2 100644 --- a/usr.bin/split/split.1 +++ b/usr.bin/split/split.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: split.1,v 1.21 2014/05/27 13:52:30 jmc Exp $ +.\" $OpenBSD: split.1,v 1.22 2015/02/28 21:51:56 bentley Exp $ .\" $NetBSD: split.1,v 1.5 1994/12/21 08:20:35 jtc Exp $ .\" .\" Copyright (c) 1990, 1991, 1993, 1994 @@ -30,7 +30,7 @@ .\" .\" @(#)split.1 8.3 (Berkeley) 4/16/94 .\" -.Dd $Mdocdate: May 27 2014 $ +.Dd $Mdocdate: February 28 2015 $ .Dt SPLIT 1 .Os .Sh NAME @@ -43,10 +43,10 @@ .Oo .Fl b .Sm off -.Ar byte_count Op Cm k \*(Ba m +.Ar byte_count Op Cm k | m .Sm on -.No \*(Ba Fl l Ar line_count -.No \*(Ba Fl p Ar pattern +.No \&| Fl l Ar line_count +.No \&| Fl p Ar pattern .Oc .Op Ar file Op Ar name .Sh DESCRIPTION @@ -71,7 +71,7 @@ The default suffix length is 2. .Fl b .Sm off .Ar byte_count -.Op Cm k \*(Ba m +.Op Cm k | m .Sm on .Xc Create files |