From 808a36ef658c1810327b5d329469bcf5dad24b28 Mon Sep 17 00:00:00 2001 From: jkh Date: Tue, 14 Jan 1997 07:20:47 +0000 Subject: Make the long-awaited change from $Id$ to $FreeBSD$ This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise. --- bin/ed/Makefile | 2 +- bin/ed/POSIX | 2 +- bin/ed/README | 2 +- bin/ed/buf.c | 2 +- bin/ed/cbc.c | 2 +- bin/ed/ed.1 | 2 +- bin/ed/ed.h | 2 +- bin/ed/glbl.c | 2 +- bin/ed/io.c | 2 +- bin/ed/main.c | 2 +- bin/ed/re.c | 2 +- bin/ed/sub.c | 2 +- bin/ed/test/Makefile | 2 +- bin/ed/test/README | 2 +- bin/ed/test/ckscripts.sh | 2 +- bin/ed/test/mkscripts.sh | 2 +- bin/ed/undo.c | 2 +- 17 files changed, 17 insertions(+), 17 deletions(-) (limited to 'bin/ed') diff --git a/bin/ed/Makefile b/bin/ed/Makefile index 30816a8..4fbaf33 100644 --- a/bin/ed/Makefile +++ b/bin/ed/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.12 1995/10/03 15:44:50 markm Exp $ +# $FreeBSD$ PROG= ed SRCS= buf.c cbc.c glbl.c io.c main.c re.c sub.c undo.c diff --git a/bin/ed/POSIX b/bin/ed/POSIX index db1a155..47b720d8 100644 --- a/bin/ed/POSIX +++ b/bin/ed/POSIX @@ -1,4 +1,4 @@ -$Id$ +$FreeBSD$ This version of ed(1) is not strictly POSIX compliant, as described in the POSIX 1003.2 document. The following is a summary of the omissions, diff --git a/bin/ed/README b/bin/ed/README index 322e65e..478e7af 100644 --- a/bin/ed/README +++ b/bin/ed/README @@ -1,4 +1,4 @@ -$Id$ +$FreeBSD$ ed is an 8-bit-clean, POSIX-compliant line editor. It should work with any regular expression package that conforms to the POSIX interface diff --git a/bin/ed/buf.c b/bin/ed/buf.c index 7f22076..1e27817 100644 --- a/bin/ed/buf.c +++ b/bin/ed/buf.c @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: buf.c,v 1.7 1995/05/30 00:06:43 rgrimes Exp $ + * $FreeBSD$ */ #ifndef lint static char * const rcsid = "@(#)buf.c,v 1.4 1994/02/01 00:34:35 alm Exp"; diff --git a/bin/ed/cbc.c b/bin/ed/cbc.c index 4095cbf..f9a9180 100644 --- a/bin/ed/cbc.c +++ b/bin/ed/cbc.c @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * from: @(#)bdes.c 5.5 (Berkeley) 6/27/91 - * $Id: cbc.c,v 1.6 1996/08/11 16:48:11 ache Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/bin/ed/ed.1 b/bin/ed/ed.1 index dd5369d..1233a12 100644 --- a/bin/ed/ed.1 +++ b/bin/ed/ed.1 @@ -1,4 +1,4 @@ -.\" $Id: ed.1,v 1.7 1996/08/29 18:05:50 wosch Exp $ +.\" $FreeBSD$ .TH ED 1 "21 May 1993" .SH NAME .\" ed, red \- text editor diff --git a/bin/ed/ed.h b/bin/ed/ed.h index 6296516..8934440 100644 --- a/bin/ed/ed.h +++ b/bin/ed/ed.h @@ -25,7 +25,7 @@ * SUCH DAMAGE. * * @(#)ed.h,v 1.5 1994/02/01 00:34:39 alm Exp - * $Id: ed.h,v 1.7 1994/09/24 02:55:25 davidg Exp $ + * $FreeBSD$ */ #include diff --git a/bin/ed/glbl.c b/bin/ed/glbl.c index ccdddc6..4a163f7 100644 --- a/bin/ed/glbl.c +++ b/bin/ed/glbl.c @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: glbl.c,v 1.4 1995/05/30 00:06:46 rgrimes Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/bin/ed/io.c b/bin/ed/io.c index 8581d85..a333890 100644 --- a/bin/ed/io.c +++ b/bin/ed/io.c @@ -24,7 +24,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: io.c,v 1.5 1996/05/23 06:36:34 tg Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/bin/ed/main.c b/bin/ed/main.c index d67eee6..8c2234f 100644 --- a/bin/ed/main.c +++ b/bin/ed/main.c @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: main.c,v 1.6 1996/08/11 16:48:11 ache Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/bin/ed/re.c b/bin/ed/re.c index 61ee763..b095a44 100644 --- a/bin/ed/re.c +++ b/bin/ed/re.c @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: re.c,v 1.10 1995/05/30 00:06:47 rgrimes Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/bin/ed/sub.c b/bin/ed/sub.c index 32e4467..fe76db2 100644 --- a/bin/ed/sub.c +++ b/bin/ed/sub.c @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: sub.c,v 1.6 1995/05/30 00:06:48 rgrimes Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/bin/ed/test/Makefile b/bin/ed/test/Makefile index 08f0dcd..f8a2d16 100644 --- a/bin/ed/test/Makefile +++ b/bin/ed/test/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.5 1994/09/24 02:55:35 davidg Exp $ +# $FreeBSD$ SHELL= /bin/sh ED= ${.OBJDIR}/ed diff --git a/bin/ed/test/README b/bin/ed/test/README index 72c7217..3938b93 100644 --- a/bin/ed/test/README +++ b/bin/ed/test/README @@ -1,4 +1,4 @@ -# $Id$ +# $FreeBSD$ The files in this directory with suffixes `.t', `.d', `.r' and `.err' are used for testing ed. To run the tests, set the ED variable in the Makefile diff --git a/bin/ed/test/ckscripts.sh b/bin/ed/test/ckscripts.sh index f58c609..1eb244b 100644 --- a/bin/ed/test/ckscripts.sh +++ b/bin/ed/test/ckscripts.sh @@ -3,7 +3,7 @@ # and compares their output against the .r files, which contain # the correct output # -# $Id$ +# $FreeBSD$ PATH="/bin:/usr/bin:/usr/local/bin/:." ED=$1 diff --git a/bin/ed/test/mkscripts.sh b/bin/ed/test/mkscripts.sh index 3e1a3d4..2b356d1 100644 --- a/bin/ed/test/mkscripts.sh +++ b/bin/ed/test/mkscripts.sh @@ -1,7 +1,7 @@ #!/bin/sh - # This script generates ed test scripts (.ed) from .t files # -# $Id$ +# $FreeBSD$ PATH="/bin:/usr/bin:/usr/local/bin/:." ED=$1 diff --git a/bin/ed/undo.c b/bin/ed/undo.c index 490362e..bcad205 100644 --- a/bin/ed/undo.c +++ b/bin/ed/undo.c @@ -24,7 +24,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: undo.c,v 1.3 1994/09/24 02:55:32 davidg Exp $ + * $FreeBSD$ */ #ifndef lint -- cgit v1.1