diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2001-10-10 11:17:11 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2001-10-10 11:17:11 +0000 |
commit | 16ef7c6e5c86ee64463f24ffca4f54e77b7e3d08 (patch) | |
tree | f45589c7e6cc91f19cdb7c0b50afe66ec20791da /usr.bin | |
parent | 74394cf411cbb42d6a83d507ae590984091cb3d1 (diff) |
Fix indent
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/m4/eval.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/m4/eval.c b/usr.bin/m4/eval.c index 3877f2009a4..f2523fb88b8 100644 --- a/usr.bin/m4/eval.c +++ b/usr.bin/m4/eval.c @@ -1,4 +1,4 @@ -/* $OpenBSD: eval.c,v 1.39 2001/09/29 15:43:48 espie Exp $ */ +/* $OpenBSD: eval.c,v 1.40 2001/10/10 11:17:10 espie Exp $ */ /* $NetBSD: eval.c,v 1.7 1996/11/10 21:21:29 pk Exp $ */ /* @@ -41,7 +41,7 @@ #if 0 static char sccsid[] = "@(#)eval.c 8.2 (Berkeley) 4/27/95"; #else -static char rcsid[] = "$OpenBSD: eval.c,v 1.39 2001/09/29 15:43:48 espie Exp $"; +static char rcsid[] = "$OpenBSD: eval.c,v 1.40 2001/10/10 11:17:10 espie Exp $"; #endif #endif /* not lint */ @@ -614,9 +614,9 @@ dodefn(name) if ((p = lookup(name)) != nil) { if (p->defn != null) { - pbstr(rquote); - pbstr(p->defn); - pbstr(lquote); + pbstr(rquote); + pbstr(p->defn); + pbstr(lquote); } else if ((real = builtin_realname(p->type)) != NULL) { pbstr(real); pbstr(BUILTIN_MARKER); |