summaryrefslogtreecommitdiff
path: root/bin/ed
diff options
context:
space:
mode:
authorKen Smith <kensmith@FreeBSD.org>2011-02-16 16:18:46 +0000
committerKen Smith <kensmith@FreeBSD.org>2011-02-16 16:18:46 +0000
commitdec99dafe5763ba1db6950342aa80a634169c083 (patch)
tree1bd9f5a688ac947b00e690c3c69ccb8df203768d /bin/ed
parent045f17e533c0209bbcddcccbbb0192d61ffd6c9c (diff)
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 32e2dfa721de..f9ade5b88d62 100644
--- a/bin/ed/Makefile
+++ b/bin/ed/Makefile
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: src/bin/ed/Makefile,v 1.34.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $
.include <bsd.own.mk>
diff --git a/bin/ed/POSIX b/bin/ed/POSIX
index f81bb0ce1a14..741f328dcc34 100644
--- a/bin/ed/POSIX
+++ b/bin/ed/POSIX
@@ -1,4 +1,4 @@
-$FreeBSD$
+$FreeBSD: src/bin/ed/POSIX,v 1.8.36.1.6.1 2010/12/21 17:09:25 kensmith 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..9b52053134a5 100644
--- a/bin/ed/README
+++ b/bin/ed/README
@@ -1,4 +1,4 @@
-$FreeBSD$
+$FreeBSD: src/bin/ed/README,v 1.7.56.1.6.1 2010/12/21 17:09:25 kensmith 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 db1f0e981bfb..724f53b5832b 100644
--- a/bin/ed/buf.c
+++ b/bin/ed/buf.c
@@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/bin/ed/buf.c,v 1.22.36.1.6.1 2010/12/21 17:09:25 kensmith Exp $");
#include <sys/file.h>
#include <sys/stat.h>
diff --git a/bin/ed/cbc.c b/bin/ed/cbc.c
index 52e99998d67c..259e52072673 100644
--- a/bin/ed/cbc.c
+++ b/bin/ed/cbc.c
@@ -32,7 +32,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/bin/ed/cbc.c,v 1.20.30.1.6.1 2010/12/21 17:09:25 kensmith Exp $");
#include <sys/types.h>
#include <errno.h>
diff --git a/bin/ed/ed.1 b/bin/ed/ed.1
index 20fc8052cee7..1555aa8399f1 100644
--- a/bin/ed/ed.1
+++ b/bin/ed/ed.1
@@ -1,4 +1,4 @@
-.\" $FreeBSD$
+.\" $FreeBSD: src/bin/ed/ed.1,v 1.35.22.1.6.1 2010/12/21 17:09:25 kensmith Exp $
.Dd July 3, 2004
.Dt ED 1
.Os
diff --git a/bin/ed/ed.h b/bin/ed/ed.h
index 2021232c0490..a33c0e0b9011 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.20.22.1.6.1 2010/12/21 17:09:25 kensmith Exp $
*/
#include <sys/param.h>
diff --git a/bin/ed/glbl.c b/bin/ed/glbl.c
index 11dcc19fcc85..e4a30a56c05d 100644
--- a/bin/ed/glbl.c
+++ b/bin/ed/glbl.c
@@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/bin/ed/glbl.c,v 1.13.36.1.6.1 2010/12/21 17:09:25 kensmith Exp $");
#include <sys/types.h>
#include <sys/ioctl.h>
diff --git a/bin/ed/io.c b/bin/ed/io.c
index 85ba0de0812e..07bc846dea85 100644
--- a/bin/ed/io.c
+++ b/bin/ed/io.c
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/bin/ed/io.c,v 1.14.34.1.6.1 2010/12/21 17:09:25 kensmith Exp $");
#include "ed.h"
diff --git a/bin/ed/main.c b/bin/ed/main.c
index 2273c951593a..df30175cf68f 100644
--- a/bin/ed/main.c
+++ b/bin/ed/main.c
@@ -35,7 +35,7 @@ static const char copyright[] =
#endif /* not lint */
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/bin/ed/main.c,v 1.29.10.1.6.1 2010/12/21 17:09:25 kensmith Exp $");
/*
* CREDITS
diff --git a/bin/ed/re.c b/bin/ed/re.c
index f89ecf94cd6b..c3e3c155b0f6 100644
--- a/bin/ed/re.c
+++ b/bin/ed/re.c
@@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/bin/ed/re.c,v 1.20.32.1.6.1 2010/12/21 17:09:25 kensmith Exp $");
#include "ed.h"
diff --git a/bin/ed/sub.c b/bin/ed/sub.c
index 1c44328cc79c..033a658d43a7 100644
--- a/bin/ed/sub.c
+++ b/bin/ed/sub.c
@@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/bin/ed/sub.c,v 1.15.36.1.6.1 2010/12/21 17:09:25 kensmith Exp $");
#include "ed.h"
diff --git a/bin/ed/test/Makefile b/bin/ed/test/Makefile
index aedfb698f131..e261e9cd5db3 100644
--- a/bin/ed/test/Makefile
+++ b/bin/ed/test/Makefile
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: src/bin/ed/test/Makefile,v 1.9.56.1.6.1 2010/12/21 17:09:25 kensmith Exp $
SHELL= /bin/sh
ED= ${.OBJDIR}/ed
diff --git a/bin/ed/test/README b/bin/ed/test/README
index 74c4826a269d..8739c961a343 100644
--- a/bin/ed/test/README
+++ b/bin/ed/test/README
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: src/bin/ed/test/README,v 1.7.56.1.6.1 2010/12/21 17:09:25 kensmith 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..1c00f4000655 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.6.56.1.6.1 2010/12/21 17:09:25 kensmith 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..5f8e666919c4 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.6.56.1.6.1 2010/12/21 17:09:25 kensmith Exp $
PATH="/bin:/usr/bin:/usr/local/bin/:."
ED=$1
diff --git a/bin/ed/undo.c b/bin/ed/undo.c
index 6a8ca9e90137..3d4dc30b5622 100644
--- a/bin/ed/undo.c
+++ b/bin/ed/undo.c
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/bin/ed/undo.c,v 1.12.36.1.6.1 2010/12/21 17:09:25 kensmith Exp $");
#include "ed.h"