summaryrefslogtreecommitdiff
path: root/usr.bin/indent
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2004-02-23 15:32:56 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2004-02-23 15:32:56 +0000
commit84a7b99b4e02a260bf7ff9b540032f4cb7bc612a (patch)
tree85059f7e88bcf124efae7c17bd99cfa18627a8c4 /usr.bin/indent
parenta28c3ad292f6f6cbe1c4ff05efb3d53eb45f17ff (diff)
Diffstat (limited to 'usr.bin/indent')
-rw-r--r--usr.bin/indent/README2
-rw-r--r--usr.bin/indent/args.c2
-rw-r--r--usr.bin/indent/indent.12
-rw-r--r--usr.bin/indent/indent.c2
-rw-r--r--usr.bin/indent/indent.h2
-rw-r--r--usr.bin/indent/indent_codes.h2
-rw-r--r--usr.bin/indent/indent_globs.h2
-rw-r--r--usr.bin/indent/io.c2
-rw-r--r--usr.bin/indent/lexi.c2
-rw-r--r--usr.bin/indent/parse.c2
-rw-r--r--usr.bin/indent/pr_comment.c2
11 files changed, 11 insertions, 11 deletions
diff --git a/usr.bin/indent/README b/usr.bin/indent/README
index 03d5d3d8d39e..a796b4614647 100644
--- a/usr.bin/indent/README
+++ b/usr.bin/indent/README
@@ -1,5 +1,5 @@
- $FreeBSD$
+ $FreeBSD: src/usr.bin/indent/README,v 1.2 2002/10/16 13:58:39 charnier Exp $
This is the C indenter, it originally came from the University of Illinois
via some distribution tape for PDP-11 Unix. It has subsequently been
diff --git a/usr.bin/indent/args.c b/usr.bin/indent/args.c
index a8c4f9f8b796..c04894194da1 100644
--- a/usr.bin/indent/args.c
+++ b/usr.bin/indent/args.c
@@ -40,7 +40,7 @@ static char sccsid[] = "@(#)args.c 8.1 (Berkeley) 6/6/93";
#endif
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/indent/args.c,v 1.11 2003/06/15 09:28:16 charnier Exp $");
/*
* Argument scanning and profile reading code. Default parameters are set
diff --git a/usr.bin/indent/indent.1 b/usr.bin/indent/indent.1
index c0b77ab755d1..70ed45e873f5 100644
--- a/usr.bin/indent/indent.1
+++ b/usr.bin/indent/indent.1
@@ -32,7 +32,7 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)indent.1 8.1 (Berkeley) 7/1/93
-.\" $FreeBSD$
+.\" $FreeBSD: src/usr.bin/indent/indent.1,v 1.15 2002/04/20 12:14:46 charnier Exp $
.\"
.Dd July 1, 1993
.Dt INDENT 1
diff --git a/usr.bin/indent/indent.c b/usr.bin/indent/indent.c
index 5f97f036ae58..08f27bdb31b9 100644
--- a/usr.bin/indent/indent.c
+++ b/usr.bin/indent/indent.c
@@ -48,7 +48,7 @@ static char sccsid[] = "@(#)indent.c 5.17 (Berkeley) 6/7/93";
#endif
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/indent/indent.c,v 1.18 2003/06/15 09:28:16 charnier Exp $");
#include <sys/param.h>
#include <err.h>
diff --git a/usr.bin/indent/indent.h b/usr.bin/indent/indent.h
index 4c52bf8370e4..ac40f01b0484 100644
--- a/usr.bin/indent/indent.h
+++ b/usr.bin/indent/indent.h
@@ -25,7 +25,7 @@
*/
#if 0
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/indent/indent.h,v 1.2 2002/03/30 17:10:20 dwmalone Exp $");
#endif
void addkey(char *, int);
diff --git a/usr.bin/indent/indent_codes.h b/usr.bin/indent/indent_codes.h
index e1ff294e2576..008bf2b41a9f 100644
--- a/usr.bin/indent/indent_codes.h
+++ b/usr.bin/indent/indent_codes.h
@@ -33,7 +33,7 @@
* SUCH DAMAGE.
*
* @(#)indent_codes.h 8.1 (Berkeley) 6/6/93
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/indent/indent_codes.h,v 1.2 2000/12/09 09:52:51 obrien Exp $
*/
#define newline 1
diff --git a/usr.bin/indent/indent_globs.h b/usr.bin/indent/indent_globs.h
index c189bfdd1c07..77fedb71f848 100644
--- a/usr.bin/indent/indent_globs.h
+++ b/usr.bin/indent/indent_globs.h
@@ -33,7 +33,7 @@
* SUCH DAMAGE.
*
* @(#)indent_globs.h 8.1 (Berkeley) 6/6/93
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/indent/indent_globs.h,v 1.8 2003/06/15 09:28:16 charnier Exp $
*/
#define BACKSLASH '\\'
diff --git a/usr.bin/indent/io.c b/usr.bin/indent/io.c
index 7af2d19b7a41..75252a73eab8 100644
--- a/usr.bin/indent/io.c
+++ b/usr.bin/indent/io.c
@@ -40,7 +40,7 @@ static char sccsid[] = "@(#)io.c 8.1 (Berkeley) 6/6/93";
#endif
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/indent/io.c,v 1.12 2003/06/15 09:28:16 charnier Exp $");
#include <ctype.h>
#include <err.h>
diff --git a/usr.bin/indent/lexi.c b/usr.bin/indent/lexi.c
index c716bc8c6486..9e6a78428144 100644
--- a/usr.bin/indent/lexi.c
+++ b/usr.bin/indent/lexi.c
@@ -39,7 +39,7 @@ static char sccsid[] = "@(#)lexi.c 8.1 (Berkeley) 6/6/93";
#endif /* not lint */
#endif
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/indent/lexi.c,v 1.15 2003/06/15 09:28:17 charnier Exp $");
/*
* Here we have the token scanner for indent. It scans off one token and puts
diff --git a/usr.bin/indent/parse.c b/usr.bin/indent/parse.c
index 65d9a6bb8c47..7720ff147acf 100644
--- a/usr.bin/indent/parse.c
+++ b/usr.bin/indent/parse.c
@@ -40,7 +40,7 @@ static char sccsid[] = "@(#)parse.c 8.1 (Berkeley) 6/6/93";
#endif
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/indent/parse.c,v 1.10 2003/06/15 09:28:17 charnier Exp $");
#include <stdio.h>
#include "indent_globs.h"
diff --git a/usr.bin/indent/pr_comment.c b/usr.bin/indent/pr_comment.c
index 9524bf404f19..ad7fe2e7f607 100644
--- a/usr.bin/indent/pr_comment.c
+++ b/usr.bin/indent/pr_comment.c
@@ -40,7 +40,7 @@ static char sccsid[] = "@(#)pr_comment.c 8.1 (Berkeley) 6/6/93";
#endif
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/indent/pr_comment.c,v 1.8 2003/06/15 09:28:17 charnier Exp $");
#include <err.h>
#include <stdio.h>