diff options
author | 2005-12-02 11:45:02 +0000 | |
---|---|---|
committer | 2005-12-02 11:45:02 +0000 | |
commit | 1bbb12c7c76173eb24b59eab4133f68da7016bf4 (patch) | |
tree | d1c93c84aba07a4377947262f3f8d19fce63f029 | |
parent | sort options; `T' comes before `u'; (diff) | |
download | wireguard-openbsd-1bbb12c7c76173eb24b59eab4133f68da7016bf4.tar.xz wireguard-openbsd-1bbb12c7c76173eb24b59eab4133f68da7016bf4.zip |
`-mmsg' does not belong here;
-rw-r--r-- | usr.bin/rcs/co.1 | 8 | ||||
-rw-r--r-- | usr.bin/rcs/co.c | 8 |
2 files changed, 5 insertions, 11 deletions
diff --git a/usr.bin/rcs/co.1 b/usr.bin/rcs/co.1 index e79bde8de50..c9713d86b0b 100644 --- a/usr.bin/rcs/co.1 +++ b/usr.bin/rcs/co.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: co.1,v 1.19 2005/12/02 11:39:05 xsa Exp $ +.\" $OpenBSD: co.1,v 1.20 2005/12/02 11:45:02 xsa Exp $ .\" .\" Copyright (c) 2005 Xavier Santolaria <xsa@openbsd.org> .\" All rights reserved. @@ -30,7 +30,6 @@ .Op Fl k Ns Ar mode .Op Fl l Ns Op Ar rev .Op Fl M Ns Op Ar rev -.Op Fl m Ns Ar msg .Op Fl p Ns Op Ar rev .Op Fl q Ns Op Ar rev .Op Fl r Ns Op Ar rev @@ -63,11 +62,6 @@ but also locks the revision. .It Fl M Ns Op Ar rev Set the modification time of the file to the date of the retrieved revision. -.It Fl m Ns Ar msg -Specify a log message. -A line beginning with a hash character -.Pq Sq # -is considered a comment and ignored. .It Fl p Ns Op Ar rev Print the latest revision no later than .Ar rev diff --git a/usr.bin/rcs/co.c b/usr.bin/rcs/co.c index 8295171455c..7ab5152d9b6 100644 --- a/usr.bin/rcs/co.c +++ b/usr.bin/rcs/co.c @@ -1,4 +1,4 @@ -/* $OpenBSD: co.c,v 1.41 2005/11/30 18:50:51 xsa Exp $ */ +/* $OpenBSD: co.c,v 1.42 2005/12/02 11:45:02 xsa Exp $ */ /* * Copyright (c) 2005 Joris Vink <joris@openbsd.org> * All rights reserved. @@ -194,9 +194,9 @@ void checkout_usage(void) { fprintf(stderr, - "usage: co [-V] [-ddate] [-f[rev]] [-I[rev]] [-kmode] [-l[rev]]\n" - " [-M[rev]] [-mmsg] [-p[rev]] [-q[rev]] [-r[rev]]\n" - " [-sstate] [-u[rev]] [-w[user]] [-xsuffixes] [-ztz] file ...\n"); + "usage: co [-TV] [-ddate] [-f[rev]] [-I[rev]] [-kmode] [-l[rev]]\n" + " [-M[rev]] [-p[rev]] [-q[rev]] [-r[rev]] [-sstate]\n" + " [-u[rev]] [-w[user]] [-xsuffixes] [-ztz] file ...\n"); } /* |