summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>2001-09-18 20:59:33 +0000
committerMarc Espie <espie@cvs.openbsd.org>2001-09-18 20:59:33 +0000
commitc9f6a129945461c2d0bf38bb22047587232d8d34 (patch)
tree4fd2183442a3a9eea395a3ab8ef40458ea13ad36 /usr.bin
parent89d13448a76f67e28c73d170d647d55b8026d0d8 (diff)
forgot to add -t handling.
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/m4/main.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/usr.bin/m4/main.c b/usr.bin/m4/main.c
index 8d25d714e41..363c9e38484 100644
--- a/usr.bin/m4/main.c
+++ b/usr.bin/m4/main.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: main.c,v 1.46 2001/09/18 14:55:52 espie Exp $ */
+/* $OpenBSD: main.c,v 1.47 2001/09/18 20:59:32 espie Exp $ */
/* $NetBSD: main.c,v 1.12 1997/02/08 23:54:49 cgd Exp $ */
/*-
@@ -47,7 +47,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 6/6/93";
#else
-static char rcsid[] = "$OpenBSD: main.c,v 1.46 2001/09/18 14:55:52 espie Exp $";
+static char rcsid[] = "$OpenBSD: main.c,v 1.47 2001/09/18 20:59:32 espie Exp $";
#endif
#endif /* not lint */
@@ -215,6 +215,9 @@ main(argc,argv)
case 'd':
set_trace_flags(optarg);
break;
+ case 't':
+ mark_traced(optarg);
+ break;
case 'o':
trace_file(optarg);
break;