*** empty log message ***

This commit is contained in:
hyung-hwan 2006-08-01 04:42:49 +00:00
parent a69f030a63
commit 47b8fc75d6
4 changed files with 7 additions and 4 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: parse.c,v 1.146 2006-08-01 04:36:32 bacon Exp $
* $Id: parse.c,v 1.147 2006-08-01 04:40:14 bacon Exp $
*/
#include <xp/awk/awk_i.h>

View File

@ -1,5 +1,5 @@
/*
* $Id: run.c,v 1.147 2006-08-01 04:36:32 bacon Exp $
* $Id: run.c,v 1.148 2006-08-01 04:40:14 bacon Exp $
*/
#include <xp/awk/awk_i.h>

View File

@ -1,5 +1,5 @@
/*
* $Id: awk.c,v 1.59 2006-08-01 04:36:33 bacon Exp $
* $Id: awk.c,v 1.60 2006-08-01 04:42:49 bacon Exp $
*/
#include <xp/awk/awk.h>

View File

@ -1,5 +1,8 @@
"abc" != "def" {
//"abc" != "def" {
/a\/b/ {
print $0 ~ /abc/;
print $0 !~ /abc/;
print $0 ~ "abc[[:space]]";
print $0 !~ "abc";
print /abc/;
}