diff options
| author | Peter Wemm <peter@FreeBSD.org> | 1999-08-27 23:15:48 +0000 |
|---|---|---|
| committer | Peter Wemm <peter@FreeBSD.org> | 1999-08-27 23:15:48 +0000 |
| commit | 2a4562393f80633b81c11d4f7df00548d1cc3c48 (patch) | |
| tree | e6f4e4299a60023820e6a2e559cdd8477911363a /bin/ed | |
| parent | 50b14091b71a7932d512009d783e1f657f800fc6 (diff) | |
Notes
Diffstat (limited to 'bin/ed')
| -rw-r--r-- | bin/ed/Makefile | 2 | ||||
| -rw-r--r-- | bin/ed/POSIX | 2 | ||||
| -rw-r--r-- | bin/ed/README | 2 | ||||
| -rw-r--r-- | bin/ed/buf.c | 2 | ||||
| -rw-r--r-- | bin/ed/cbc.c | 2 | ||||
| -rw-r--r-- | bin/ed/ed.1 | 2 | ||||
| -rw-r--r-- | bin/ed/ed.h | 2 | ||||
| -rw-r--r-- | bin/ed/glbl.c | 2 | ||||
| -rw-r--r-- | bin/ed/io.c | 2 | ||||
| -rw-r--r-- | bin/ed/main.c | 2 | ||||
| -rw-r--r-- | bin/ed/re.c | 2 | ||||
| -rw-r--r-- | bin/ed/sub.c | 2 | ||||
| -rw-r--r-- | bin/ed/test/Makefile | 2 | ||||
| -rw-r--r-- | bin/ed/test/README | 2 | ||||
| -rw-r--r-- | bin/ed/test/ckscripts.sh | 2 | ||||
| -rw-r--r-- | bin/ed/test/mkscripts.sh | 2 | ||||
| -rw-r--r-- | bin/ed/undo.c | 2 |
17 files changed, 17 insertions, 17 deletions
diff --git a/bin/ed/Makefile b/bin/ed/Makefile index 165fa77bf527..a1f11af8a520 100644 --- a/bin/ed/Makefile +++ b/bin/ed/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.15 1997/02/22 14:03:08 peter 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 db1a155e2cf2..47b720d867ef 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 322e65e0fcaf..478e7af07c70 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 f3ee70b2a15a..4e2479642552 100644 --- a/bin/ed/buf.c +++ b/bin/ed/buf.c @@ -31,7 +31,7 @@ static char * const rcsid = "@(#)buf.c,v 1.4 1994/02/01 00:34:35 alm Exp"; #else static char * const rcsid = - "$Id: buf.c,v 1.15 1997/12/31 12:25:33 helbig Exp $"; + "$FreeBSD$"; #endif #endif /* not lint */ diff --git a/bin/ed/cbc.c b/bin/ed/cbc.c index fba3609b06e8..f77ce0dc5a18 100644 --- a/bin/ed/cbc.c +++ b/bin/ed/cbc.c @@ -42,7 +42,7 @@ static char * const rcsid = "@(#)cbc.c,v 1.2 1994/02/01 00:34:36 alm Exp"; #else static char * const rcsid = - "$Id: cbc.c,v 1.10 1997/08/07 21:33:40 steve Exp $"; + "$FreeBSD$"; #endif #endif /* not lint */ diff --git a/bin/ed/ed.1 b/bin/ed/ed.1 index 1ceeeab4478b..370e67225ed0 100644 --- a/bin/ed/ed.1 +++ b/bin/ed/ed.1 @@ -1,4 +1,4 @@ -.\" $Id: ed.1,v 1.13 1998/05/13 07:41:13 charnier Exp $ +.\" $FreeBSD$ .Dd May 21, 1993 .Dt ED 1 .Os diff --git a/bin/ed/ed.h b/bin/ed/ed.h index 05f65a9fd89b..d313a84f1cdf 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.11 1997/12/10 22:18:23 eivind Exp $ + * $FreeBSD$ */ #include <sys/param.h> /* for MAXPATHLEN */ diff --git a/bin/ed/glbl.c b/bin/ed/glbl.c index a40bca6ddeff..3eae4f250f82 100644 --- a/bin/ed/glbl.c +++ b/bin/ed/glbl.c @@ -31,7 +31,7 @@ static char * const rcsid = "@(#)glob.c,v 1.1 1994/02/01 00:34:40 alm Exp"; #else static char * const rcsid = - "$Id: glbl.c,v 1.7 1997/02/22 14:03:15 peter Exp $"; + "$FreeBSD$"; #endif #endif /* not lint */ diff --git a/bin/ed/io.c b/bin/ed/io.c index 6702765df4bc..203079898f63 100644 --- a/bin/ed/io.c +++ b/bin/ed/io.c @@ -30,7 +30,7 @@ static char * const rcsid = "@(#)io.c,v 1.1 1994/02/01 00:34:41 alm Exp"; #else static char * const rcsid = - "$Id: io.c,v 1.8 1997/02/22 14:03:16 peter Exp $"; + "$FreeBSD$"; #endif #endif /* not lint */ diff --git a/bin/ed/main.c b/bin/ed/main.c index 8468bbd2a846..7bff1297900a 100644 --- a/bin/ed/main.c +++ b/bin/ed/main.c @@ -37,7 +37,7 @@ static char * const copyright = static char * const rcsid = "@(#)main.c,v 1.1 1994/02/01 00:34:42 alm Exp"; #else static char * const rcsid = - "$Id: main.c,v 1.12 1997/10/08 14:47:56 eivind Exp $"; + "$FreeBSD$"; #endif #endif /* not lint */ diff --git a/bin/ed/re.c b/bin/ed/re.c index 65b25a20f948..d81d0d786e95 100644 --- a/bin/ed/re.c +++ b/bin/ed/re.c @@ -31,7 +31,7 @@ static char * const rcsid = "@(#)re.c,v 1.6 1994/02/01 00:34:43 alm Exp"; #else static char * const rcsid = - "$Id: re.c,v 1.13 1997/02/22 14:03:18 peter Exp $"; + "$FreeBSD$"; #endif #endif /* not lint */ diff --git a/bin/ed/sub.c b/bin/ed/sub.c index e0725487d78b..32213734b6b7 100644 --- a/bin/ed/sub.c +++ b/bin/ed/sub.c @@ -31,7 +31,7 @@ static char * const rcsid = "@(#)sub.c,v 1.1 1994/02/01 00:34:44 alm Exp"; #else static char * const rcsid = - "$Id: sub.c,v 1.10 1997/08/07 21:33:44 steve Exp $"; + "$FreeBSD$"; #endif #endif /* not lint */ diff --git a/bin/ed/test/Makefile b/bin/ed/test/Makefile index 70f24055b067..aedfb698f131 100644 --- a/bin/ed/test/Makefile +++ b/bin/ed/test/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $FreeBSD$ SHELL= /bin/sh ED= ${.OBJDIR}/ed diff --git a/bin/ed/test/README b/bin/ed/test/README index 72c7217f0f0e..74c4826a269d 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 f58c60977b5b..deab47555f7a 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 3e1a3d4c543a..1b8b3ee53182 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 93fef8853dd0..b2063c7c2791 100644 --- a/bin/ed/undo.c +++ b/bin/ed/undo.c @@ -30,7 +30,7 @@ static char * const rcsid = "@(#)undo.c,v 1.1 1994/02/01 00:34:44 alm Exp"; #else static char * const rcsid = - "$Id: undo.c,v 1.7 1997/08/07 21:33:47 steve Exp $"; + "$FreeBSD$"; #endif #endif /* not lint */ |
