diff options
| author | cvs2svn <cvs2svn@FreeBSD.org> | 2005-11-03 00:35:26 +0000 |
|---|---|---|
| committer | cvs2svn <cvs2svn@FreeBSD.org> | 2005-11-03 00:35:26 +0000 |
| commit | 3640cb54210edbb7edbf1b12ef0127ecfcea967d (patch) | |
| tree | 60a81407b110eb6d80af1e0affba0ec353de6a9c /usr.bin/sed | |
| parent | 3d215489fe03c6c5cecc3b5ed9ea39118e6ce379 (diff) | |
This commit was manufactured by cvs2svn to create tagrelease/6.0.0_cvs
'RELENG_6_0_0_RELEASE'.
This commit was manufactured to restore the state of the 6.0-RELEASE image.
Diffstat (limited to 'usr.bin/sed')
| -rw-r--r-- | usr.bin/sed/Makefile | 2 | ||||
| -rw-r--r-- | usr.bin/sed/TEST/hanoi.sed | 2 | ||||
| -rw-r--r-- | usr.bin/sed/TEST/math.sed | 2 | ||||
| -rw-r--r-- | usr.bin/sed/TEST/sed.test | 2 | ||||
| -rw-r--r-- | usr.bin/sed/compile.c | 2 | ||||
| -rw-r--r-- | usr.bin/sed/defs.h | 2 | ||||
| -rw-r--r-- | usr.bin/sed/extern.h | 2 | ||||
| -rw-r--r-- | usr.bin/sed/main.c | 2 | ||||
| -rw-r--r-- | usr.bin/sed/misc.c | 2 | ||||
| -rw-r--r-- | usr.bin/sed/process.c | 2 | ||||
| -rw-r--r-- | usr.bin/sed/sed.1 | 2 |
11 files changed, 11 insertions, 11 deletions
diff --git a/usr.bin/sed/Makefile b/usr.bin/sed/Makefile index 9d9886f3688c..a411bd79f0e5 100644 --- a/usr.bin/sed/Makefile +++ b/usr.bin/sed/Makefile @@ -1,5 +1,5 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 -# $FreeBSD$ +# $FreeBSD: src/usr.bin/sed/Makefile,v 1.5 2002/06/17 08:21:53 sobomax Exp $ PROG= sed SRCS= compile.c main.c misc.c process.c diff --git a/usr.bin/sed/TEST/hanoi.sed b/usr.bin/sed/TEST/hanoi.sed index 6a45deaa94c7..0a724b8feefb 100644 --- a/usr.bin/sed/TEST/hanoi.sed +++ b/usr.bin/sed/TEST/hanoi.sed @@ -1,7 +1,7 @@ # Towers of Hanoi in sed. # # @(#)hanoi.sed 8.1 (Berkeley) 6/6/93 -# $FreeBSD$ +# $FreeBSD: src/usr.bin/sed/TEST/hanoi.sed,v 1.3 2002/07/04 05:16:19 tjr Exp $ # # # Ex: diff --git a/usr.bin/sed/TEST/math.sed b/usr.bin/sed/TEST/math.sed index cdd18d6d532b..c3ecc64434e1 100644 --- a/usr.bin/sed/TEST/math.sed +++ b/usr.bin/sed/TEST/math.sed @@ -1,6 +1,6 @@ # This is ksb's infamous sed calculator. (ksb@sa.fedex.com) # -# $FreeBSD$ +# $FreeBSD: src/usr.bin/sed/TEST/math.sed,v 1.2 2004/05/01 02:15:58 smkelly Exp $ # # $Id: math.sed,v 2.5 1998/08/02 13:23:34 ksb Exp ksb $ # expr ::= (expr) | expr! | diff --git a/usr.bin/sed/TEST/sed.test b/usr.bin/sed/TEST/sed.test index 801e392561b3..8017a6183ad5 100644 --- a/usr.bin/sed/TEST/sed.test +++ b/usr.bin/sed/TEST/sed.test @@ -30,7 +30,7 @@ # # @(#)sed.test 8.1 (Berkeley) 6/6/93 # -# $FreeBSD$ +# $FreeBSD: src/usr.bin/sed/TEST/sed.test,v 1.4 2004/08/09 15:29:41 dds Exp $ # # sed Regression Tests diff --git a/usr.bin/sed/compile.c b/usr.bin/sed/compile.c index 14ef81b681ee..85471d36d0a2 100644 --- a/usr.bin/sed/compile.c +++ b/usr.bin/sed/compile.c @@ -32,7 +32,7 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/usr.bin/sed/compile.c,v 1.27.2.1 2005/10/04 15:26:10 dds Exp $"); #ifndef lint static const char sccsid[] = "@(#)compile.c 8.1 (Berkeley) 6/6/93"; diff --git a/usr.bin/sed/defs.h b/usr.bin/sed/defs.h index 495fb07a1b30..187ceb77d3ac 100644 --- a/usr.bin/sed/defs.h +++ b/usr.bin/sed/defs.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)defs.h 8.1 (Berkeley) 6/6/93 - * $FreeBSD$ + * $FreeBSD: src/usr.bin/sed/defs.h,v 1.5 2004/08/09 15:29:41 dds Exp $ */ /* diff --git a/usr.bin/sed/extern.h b/usr.bin/sed/extern.h index 9d4b5bdb0cfe..dcbe081e622d 100644 --- a/usr.bin/sed/extern.h +++ b/usr.bin/sed/extern.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)extern.h 8.1 (Berkeley) 6/6/93 - * $FreeBSD$ + * $FreeBSD: src/usr.bin/sed/extern.h,v 1.13 2004/08/09 15:29:41 dds Exp $ */ extern struct s_command *prog; diff --git a/usr.bin/sed/main.c b/usr.bin/sed/main.c index 5703d2052542..77efcc658695 100644 --- a/usr.bin/sed/main.c +++ b/usr.bin/sed/main.c @@ -32,7 +32,7 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/usr.bin/sed/main.c,v 1.36 2005/05/10 13:40:50 glebius Exp $"); #ifndef lint static const char copyright[] = diff --git a/usr.bin/sed/misc.c b/usr.bin/sed/misc.c index f3b513784a6e..2a3789221df3 100644 --- a/usr.bin/sed/misc.c +++ b/usr.bin/sed/misc.c @@ -32,7 +32,7 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/usr.bin/sed/misc.c,v 1.10 2004/08/09 15:29:41 dds Exp $"); #ifndef lint static const char sccsid[] = "@(#)misc.c 8.1 (Berkeley) 6/6/93"; diff --git a/usr.bin/sed/process.c b/usr.bin/sed/process.c index ffdb629f9e6a..f36ae6f04e15 100644 --- a/usr.bin/sed/process.c +++ b/usr.bin/sed/process.c @@ -32,7 +32,7 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/usr.bin/sed/process.c,v 1.39 2005/04/09 14:31:41 stefanf Exp $"); #ifndef lint static const char sccsid[] = "@(#)process.c 8.6 (Berkeley) 4/20/94"; diff --git a/usr.bin/sed/sed.1 b/usr.bin/sed/sed.1 index f6a86d520d35..e4dac8a93e50 100644 --- a/usr.bin/sed/sed.1 +++ b/usr.bin/sed/sed.1 @@ -29,7 +29,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)sed.1 8.2 (Berkeley) 12/30/93 -.\" $FreeBSD$ +.\" $FreeBSD: src/usr.bin/sed/sed.1,v 1.43 2005/06/14 11:50:52 ru Exp $ .\" .Dd May 10, 2005 .Dt SED 1 |
