diff --git a/ase/awk/extio.h b/ase/awk/extio.h index 35134686..322cccc8 100644 --- a/ase/awk/extio.h +++ b/ase/awk/extio.h @@ -1,5 +1,5 @@ /* - * $Id: extio.h,v 1.6 2006-07-28 10:34:22 bacon Exp $ + * $Id: extio.h,v 1.7 2006-07-28 10:36:30 bacon Exp $ */ #ifndef _XP_AWK_EXTIO_H_ diff --git a/ase/awk/parse.c b/ase/awk/parse.c index 5f9a3830..3f3db025 100644 --- a/ase/awk/parse.c +++ b/ase/awk/parse.c @@ -1,5 +1,5 @@ /* - * $Id: parse.c,v 1.143 2006-07-28 10:34:22 bacon Exp $ + * $Id: parse.c,v 1.144 2006-07-28 10:36:30 bacon Exp $ */ #include diff --git a/ase/awk/run.c b/ase/awk/run.c index 8205b57a..533129db 100644 --- a/ase/awk/run.c +++ b/ase/awk/run.c @@ -1,5 +1,5 @@ /* - * $Id: run.c,v 1.142 2006-07-28 10:34:22 bacon Exp $ + * $Id: run.c,v 1.143 2006-07-28 10:36:30 bacon Exp $ */ #include diff --git a/ase/test/awk/awk.c b/ase/test/awk/awk.c index 32df72b3..c3eda5f7 100644 --- a/ase/test/awk/awk.c +++ b/ase/test/awk/awk.c @@ -1,5 +1,5 @@ /* - * $Id: awk.c,v 1.55 2006-07-28 10:34:22 bacon Exp $ + * $Id: awk.c,v 1.56 2006-07-28 10:38:16 bacon Exp $ */ #include diff --git a/ase/test/awk/makefile.cl b/ase/test/awk/makefile.cl index e732027d..6eb6dfa0 100644 --- a/ase/test/awk/makefile.cl +++ b/ase/test/awk/makefile.cl @@ -4,7 +4,7 @@ CFLAGS = /nologo /MT /W3 /GR- /D_WIN32_WINNT=0x0400 -I..\..\.. -D__STAND_ALONE LDFLAGS = /libpath:..\..\bas /libpath:..\..\awk LIBS = xpawk.lib user32.lib -all: awk rex rex2 +all: awk rex2 awk: awk.obj link /nologo /out:awk.exe $(LDFLAGS) $(LIBS) awk.obj diff --git a/ase/test/awk/t18.awk b/ase/test/awk/t18.awk new file mode 100644 index 00000000..a013933b --- /dev/null +++ b/ase/test/awk/t18.awk @@ -0,0 +1,20 @@ +/hello/ +{ + //print FILENAME; + print "**1**" $0; + //nextfile; + print "----------------"; +} + +/hello/ +{ + //print FILENAME; + print "**2**" $0; + nextfile; + print "----------------"; +} + +END +{ + print "== END OF PROGRAM =="; +}