diff options
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/rcs/rcsdiff.1 | 12 | ||||
-rw-r--r-- | usr.bin/rcs/rcsdiff.c | 4 |
2 files changed, 9 insertions, 7 deletions
diff --git a/usr.bin/rcs/rcsdiff.1 b/usr.bin/rcs/rcsdiff.1 index 89941cfe7e7..e58644b76d2 100644 --- a/usr.bin/rcs/rcsdiff.1 +++ b/usr.bin/rcs/rcsdiff.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: rcsdiff.1,v 1.16 2006/03/06 09:41:53 deraadt Exp $ +.\" $OpenBSD: rcsdiff.1,v 1.17 2006/03/06 14:41:04 jmc Exp $ .\" .\" Copyright (c) 2005 Joris Vink <joris@openbsd.org> .\" All rights reserved. @@ -23,7 +23,7 @@ .Sh SYNOPSIS .Nm .Bk -words -.Op Fl cnqTuV +.Op Fl cnquV .Op Fl k Ns Ar mode .Oo .Fl r Ns Ar rev @@ -57,9 +57,6 @@ If two -r options are given, the diff is generated between the two revisions specified. .It Fl q Be quiet about reporting. -.It Fl T -No effect. -For compatibility. .It Fl u Produces a unified diff with three lines of context. See @@ -106,3 +103,8 @@ and ignore differences in keyword values: .Xr rcsclean 1 , .Xr rcsmerge 1 , .Xr rlog 1 +.Sh STANDARDS +The flag +.Op Fl T +has no effect and is provided +for compatibility only. diff --git a/usr.bin/rcs/rcsdiff.c b/usr.bin/rcs/rcsdiff.c index 0fbf7ca47cb..8c723786cb4 100644 --- a/usr.bin/rcs/rcsdiff.c +++ b/usr.bin/rcs/rcsdiff.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rcsdiff.c,v 1.33 2006/03/06 09:59:22 xsa Exp $ */ +/* $OpenBSD: rcsdiff.c,v 1.34 2006/03/06 14:41:04 jmc Exp $ */ /* * Copyright (c) 2005 Joris Vink <joris@openbsd.org> * All rights reserved. @@ -155,7 +155,7 @@ void rcsdiff_usage(void) { fprintf(stderr, - "usage: rcsdiff [-cnqTuV] [-kmode] [-rrev1 [-rrev2]] " + "usage: rcsdiff [-cnquV] [-kmode] [-rrev1 [-rrev2]] " "[-xsuffixes] file ...\n"); } |