aboutsummaryrefslogtreecommitdiff
path: root/bin/ed
diff options
context:
space:
mode:
Diffstat (limited to 'bin/ed')
-rw-r--r--bin/ed/Makefile2
-rw-r--r--bin/ed/POSIX2
-rw-r--r--bin/ed/README2
-rw-r--r--bin/ed/buf.c2
-rw-r--r--bin/ed/cbc.c2
-rw-r--r--bin/ed/ed.12
-rw-r--r--bin/ed/ed.h2
-rw-r--r--bin/ed/glbl.c2
-rw-r--r--bin/ed/io.c2
-rw-r--r--bin/ed/main.c2
-rw-r--r--bin/ed/re.c2
-rw-r--r--bin/ed/sub.c2
-rw-r--r--bin/ed/test/Makefile2
-rw-r--r--bin/ed/test/README2
-rw-r--r--bin/ed/test/ckscripts.sh2
-rw-r--r--bin/ed/test/mkscripts.sh2
-rw-r--r--bin/ed/undo.c2
17 files changed, 17 insertions, 17 deletions
diff --git a/bin/ed/Makefile b/bin/ed/Makefile
index a1f11af8a520..cf68dfe98617 100644
--- a/bin/ed/Makefile
+++ b/bin/ed/Makefile
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: src/bin/ed/Makefile,v 1.16.2.1 1999/08/29 14:12:21 peter Exp $
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 47b720d867ef..df6f8d850b6f 100644
--- a/bin/ed/POSIX
+++ b/bin/ed/POSIX
@@ -1,4 +1,4 @@
-$FreeBSD$
+$FreeBSD: src/bin/ed/POSIX,v 1.6.2.1 1999/08/29 14:12:22 peter Exp $
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 478e7af07c70..b31898fd113b 100644
--- a/bin/ed/README
+++ b/bin/ed/README
@@ -1,4 +1,4 @@
-$FreeBSD$
+$FreeBSD: src/bin/ed/README,v 1.6.2.1 1999/08/29 14:12:22 peter Exp $
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 4e2479642552..d5dbe92b846e 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 =
- "$FreeBSD$";
+ "$FreeBSD: src/bin/ed/buf.c,v 1.15.2.2 1999/08/29 14:12:23 peter Exp $";
#endif
#endif /* not lint */
diff --git a/bin/ed/cbc.c b/bin/ed/cbc.c
index f77ce0dc5a18..661072a4089f 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 =
- "$FreeBSD$";
+ "$FreeBSD: src/bin/ed/cbc.c,v 1.10.2.2 1999/08/29 14:12:24 peter Exp $";
#endif
#endif /* not lint */
diff --git a/bin/ed/ed.1 b/bin/ed/ed.1
index 8f71b36201da..005f0b587199 100644
--- a/bin/ed/ed.1
+++ b/bin/ed/ed.1
@@ -1,4 +1,4 @@
-.\" $FreeBSD$
+.\" $FreeBSD: src/bin/ed/ed.1,v 1.14.2.4 2000/05/10 10:01:27 sheldonh Exp $
.Dd May 21, 1993
.Dt ED 1
.Os
diff --git a/bin/ed/ed.h b/bin/ed/ed.h
index d313a84f1cdf..d11e183aab19 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
- * $FreeBSD$
+ * $FreeBSD: src/bin/ed/ed.h,v 1.12.2.1 1999/08/29 14:12:25 peter Exp $
*/
#include <sys/param.h> /* for MAXPATHLEN */
diff --git a/bin/ed/glbl.c b/bin/ed/glbl.c
index 3eae4f250f82..285a141331ae 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 =
- "$FreeBSD$";
+ "$FreeBSD: src/bin/ed/glbl.c,v 1.8.2.1 1999/08/29 14:12:26 peter Exp $";
#endif
#endif /* not lint */
diff --git a/bin/ed/io.c b/bin/ed/io.c
index 203079898f63..338726f691a0 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 =
- "$FreeBSD$";
+ "$FreeBSD: src/bin/ed/io.c,v 1.9.2.1 1999/08/29 14:12:26 peter Exp $";
#endif
#endif /* not lint */
diff --git a/bin/ed/main.c b/bin/ed/main.c
index b73738dc30cd..673e3fefff16 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 =
- "$FreeBSD$";
+ "$FreeBSD: src/bin/ed/main.c,v 1.13.2.2 2000/05/07 18:00:02 joe Exp $";
#endif
#endif /* not lint */
diff --git a/bin/ed/re.c b/bin/ed/re.c
index d81d0d786e95..dcd90edcb29e 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 =
- "$FreeBSD$";
+ "$FreeBSD: src/bin/ed/re.c,v 1.14.2.1 1999/08/29 14:12:28 peter Exp $";
#endif
#endif /* not lint */
diff --git a/bin/ed/sub.c b/bin/ed/sub.c
index 32213734b6b7..643f40f1bc56 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 =
- "$FreeBSD$";
+ "$FreeBSD: src/bin/ed/sub.c,v 1.11.2.1 1999/08/29 14:12:28 peter Exp $";
#endif
#endif /* not lint */
diff --git a/bin/ed/test/Makefile b/bin/ed/test/Makefile
index aedfb698f131..e1f427ca826f 100644
--- a/bin/ed/test/Makefile
+++ b/bin/ed/test/Makefile
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: src/bin/ed/test/Makefile,v 1.8.2.1 1999/08/29 14:12:30 peter Exp $
SHELL= /bin/sh
ED= ${.OBJDIR}/ed
diff --git a/bin/ed/test/README b/bin/ed/test/README
index 74c4826a269d..4c91f4da0201 100644
--- a/bin/ed/test/README
+++ b/bin/ed/test/README
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: src/bin/ed/test/README,v 1.6.2.1 1999/08/29 14:12:31 peter Exp $
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 deab47555f7a..9cb05f115bb5 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
#
-# $FreeBSD$
+# $FreeBSD: src/bin/ed/test/ckscripts.sh,v 1.5.2.1 1999/08/29 14:12:32 peter Exp $
PATH="/bin:/usr/bin:/usr/local/bin/:."
ED=$1
diff --git a/bin/ed/test/mkscripts.sh b/bin/ed/test/mkscripts.sh
index 1b8b3ee53182..cebe36e6c3de 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
#
-# $FreeBSD$
+# $FreeBSD: src/bin/ed/test/mkscripts.sh,v 1.5.2.1 1999/08/29 14:12:32 peter Exp $
PATH="/bin:/usr/bin:/usr/local/bin/:."
ED=$1
diff --git a/bin/ed/undo.c b/bin/ed/undo.c
index b2063c7c2791..52dc68895929 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 =
- "$FreeBSD$";
+ "$FreeBSD: src/bin/ed/undo.c,v 1.7.2.2 1999/08/29 14:12:29 peter Exp $";
#endif
#endif /* not lint */