diff options
author | Ray Lai <ray@cvs.openbsd.org> | 2007-05-27 04:12:33 +0000 |
---|---|---|
committer | Ray Lai <ray@cvs.openbsd.org> | 2007-05-27 04:12:33 +0000 |
commit | a6f60b883a6a7c7e9e529e0e3b85b1e738e32ad7 (patch) | |
tree | 5476a6867ad8a77110d2f9f2a4dab62f5c0ce3a2 /usr.bin | |
parent | f7bbec2725bfd5bf80b842c0c4a3342d84300088 (diff) |
Revert, we dealt with the -x flag in the past. jmc suddenly
remembered we had created a separate section for compatibility
flags. Oh well, two free commits.
OK jmc@
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/cvs/cvs.1 | 6 | ||||
-rw-r--r-- | usr.bin/cvs/cvs.c | 4 |
2 files changed, 4 insertions, 6 deletions
diff --git a/usr.bin/cvs/cvs.1 b/usr.bin/cvs/cvs.1 index 3e588174449..c79bf06e965 100644 --- a/usr.bin/cvs/cvs.1 +++ b/usr.bin/cvs/cvs.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: cvs.1,v 1.111 2007/05/27 03:35:11 ray Exp $ +.\" $OpenBSD: cvs.1,v 1.112 2007/05/27 04:12:32 ray Exp $ .\" .\" Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> .\" Copyright (c) 2004-2007 Xavier Santolaria <xsa@openbsd.org> @@ -33,7 +33,7 @@ .Sh SYNOPSIS .Nm .Bk -words -.Op Fl flnQqRrtVvwx +.Op Fl flnQqRrtVvw .Op Fl d Ar root .Op Fl e Ar editor .Xo @@ -146,8 +146,6 @@ This is the default unless is set or the .Fl r option is specified. -.It Fl x -This flag is for compatibility only. .It Fl z Ar level Specify the compression level to .Xr gzip 1 diff --git a/usr.bin/cvs/cvs.c b/usr.bin/cvs/cvs.c index 02edf92923e..19b6a3ed96d 100644 --- a/usr.bin/cvs/cvs.c +++ b/usr.bin/cvs/cvs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cvs.c,v 1.126 2007/05/27 03:35:11 ray Exp $ */ +/* $OpenBSD: cvs.c,v 1.127 2007/05/27 04:12:32 ray Exp $ */ /* * Copyright (c) 2006, 2007 Joris Vink <joris@openbsd.org> * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> @@ -118,7 +118,7 @@ __dead void usage(void) { (void)fprintf(stderr, - "usage: %s [-flnQqRrtVvwx] [-d root] [-e editor] [-s var=val]\n" + "usage: %s [-flnQqRrtVvw] [-d root] [-e editor] [-s var=val]\n" " [-T tmpdir] [-z level] command [...]\n", __progname); exit(1); } |