diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2000-02-02 14:05:23 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2000-02-02 14:05:23 +0000 |
commit | 3626874d28f829daf8d7187116eb4bc89707f11b (patch) | |
tree | 5d36e6ea91c67fe4b274e1d6ad067ab3890ae897 /usr.bin/m4 | |
parent | 372a42b6982432777592e67c66529a075b44ae0b (diff) |
Comment slightly more.
Diffstat (limited to 'usr.bin/m4')
-rw-r--r-- | usr.bin/m4/main.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/usr.bin/m4/main.c b/usr.bin/m4/main.c index 786e2a7e930..99e95a27c0e 100644 --- a/usr.bin/m4/main.c +++ b/usr.bin/m4/main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.29 2000/02/02 14:00:12 espie Exp $ */ +/* $OpenBSD: main.c,v 1.30 2000/02/02 14:05:22 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.29 2000/02/02 14:00:12 espie Exp $"; +static char rcsid[] = "$OpenBSD: main.c,v 1.30 2000/02/02 14:05:22 espie Exp $"; #endif #endif /* not lint */ @@ -327,6 +327,10 @@ macro() else if (LOOK_AHEAD(t,lquote)) { /* strip quotes */ nlpar = 0; record(quotes, nlpar++); + /* + * Opening quote: scan forward until matching + * closing quote has been found. + */ do { l = gpbc(); |