diff options
author | 2006-03-23 08:01:02 +0000 | |
---|---|---|
committer | 2006-03-23 08:01:02 +0000 | |
commit | b0974a06ea01886d1954f764d6e8749e714f8b76 (patch) | |
tree | 5d80ef1ff058c7bafd32ee47be5f5529425b1e0d /usr.bin/m4/main.c | |
parent | explicit cast on strtoul, classical const gotcha. (diff) | |
download | wireguard-openbsd-b0974a06ea01886d1954f764d6e8749e714f8b76.tar.xz wireguard-openbsd-b0974a06ea01886d1954f764d6e8749e714f8b76.zip |
simply set up format only when we see -g.
Diffstat (limited to 'usr.bin/m4/main.c')
-rw-r--r-- | usr.bin/m4/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/m4/main.c b/usr.bin/m4/main.c index 4a4cc22baf4..58724a62d5c 100644 --- a/usr.bin/m4/main.c +++ b/usr.bin/m4/main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.72 2006/03/23 07:57:05 espie Exp $ */ +/* $OpenBSD: main.c,v 1.73 2006/03/23 08:01:02 espie Exp $ */ /* $NetBSD: main.c,v 1.12 1997/02/08 23:54:49 cgd Exp $ */ /*- @@ -204,6 +204,7 @@ main(int argc, char *argv[]) break; case 'g': mimic_gnu = 1; + setup_builtin("format", FORMATTYPE); break; case 'd': set_trace_flags(optarg); |