summaryrefslogtreecommitdiff
path: root/usr.bin/rcs
diff options
context:
space:
mode:
authorJason McIntyre <jmc@cvs.openbsd.org>2006-04-24 13:32:11 +0000
committerJason McIntyre <jmc@cvs.openbsd.org>2006-04-24 13:32:11 +0000
commitd7ef4a90b7ebcdc05ce0e61821b733fcdbd2c6c4 (patch)
tree2780c10b0acf89fff1462482411b66a81e29c50a /usr.bin/rcs
parente6776e5a41d5c70705335adb4811121c14b7e57f (diff)
- move -A into compat land
- tweak -E description accordingly ok xsa
Diffstat (limited to 'usr.bin/rcs')
-rw-r--r--usr.bin/rcs/rcsmerge.118
-rw-r--r--usr.bin/rcs/rcsmerge.c4
2 files changed, 9 insertions, 13 deletions
diff --git a/usr.bin/rcs/rcsmerge.1 b/usr.bin/rcs/rcsmerge.1
index 93bb4ba9f4e..2c2e51dc67b 100644
--- a/usr.bin/rcs/rcsmerge.1
+++ b/usr.bin/rcs/rcsmerge.1
@@ -1,4 +1,4 @@
-.\" $OpenBSD: rcsmerge.1,v 1.7 2006/04/24 08:18:06 jmc Exp $
+.\" $OpenBSD: rcsmerge.1,v 1.8 2006/04/24 13:32:10 jmc Exp $
.\"
.\" Copyright (c) 2005 Xavier Santolaria <xsa@openbsd.org>
.\" All rights reserved.
@@ -22,7 +22,7 @@
.Nd merge RCS revisions
.Sh SYNOPSIS
.Nm
-.Op Fl AEeV
+.Op Fl EeV
.Op Fl k Ns Ar mode
.Op Fl p Ns Op Ar rev
.Op Fl q Ns Op Ar rev
@@ -45,13 +45,9 @@ man page for more information.
.Pp
The following options are supported:
.Bl -tag -width Ds
-.It Fl A
-Most verbose output.
.It Fl E
-Less information than
-.Fl A .
-This is the default.
-See
+Default merge:
+see
.Xr diff3 1
for details.
.It Fl e
@@ -109,7 +105,7 @@ overwriting the working copy:
.Xr rcsdiff 1 ,
.Xr rlog 1
.Sh STANDARDS
-The flag
-.Op Fl T
-has no effect and is provided
+The flags
+.Op Fl AT
+have no effect and are provided
for compatibility only.
diff --git a/usr.bin/rcs/rcsmerge.c b/usr.bin/rcs/rcsmerge.c
index ba4d92ef71e..3f5d14f00e6 100644
--- a/usr.bin/rcs/rcsmerge.c
+++ b/usr.bin/rcs/rcsmerge.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rcsmerge.c,v 1.32 2006/04/24 08:18:06 jmc Exp $ */
+/* $OpenBSD: rcsmerge.c,v 1.33 2006/04/24 13:32:10 jmc Exp $ */
/*
* Copyright (c) 2005, 2006 Xavier Santolaria <xsa@openbsd.org>
* All rights reserved.
@@ -175,6 +175,6 @@ void
rcsmerge_usage(void)
{
fprintf(stderr,
- "usage: rcsmerge [-AEeV] [-kmode] [-p[rev]] [-q[rev]]\n"
+ "usage: rcsmerge [-EeV] [-kmode] [-p[rev]] [-q[rev]]\n"
" [-xsuffixes] [-ztz] -rrev file ...\n");
}