*** empty log message ***

This commit is contained in:
hyung-hwan 2006-05-09 15:58:16 +00:00
parent e56cebdff1
commit cb87b084ce
3 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
/* /*
* $Id: run.c,v 1.89 2006-05-09 15:21:26 bacon Exp $ * $Id: run.c,v 1.90 2006-05-09 15:58:16 bacon Exp $
*/ */
#include <xp/awk/awk_i.h> #include <xp/awk/awk_i.h>
@ -466,7 +466,6 @@ xp_printf (XP_T("**** line [%s]\n"), XP_STR_BUF(&run->input.line));
/* for each block { run it } /* for each block { run it }
* TODO: handle according if next and nextfile has been called * TODO: handle according if next and nextfile has been called
*/ */
/* TODO */
if (__run_pattern_block_chain (run, run->tree->chain) == -1) if (__run_pattern_block_chain (run, run->tree->chain) == -1)
{ {
/* don't care about the result of input close */ /* don't care about the result of input close */

View File

@ -1,5 +1,5 @@
/* /*
* $Id: tree.c,v 1.48 2006-05-07 17:45:08 bacon Exp $ * $Id: tree.c,v 1.49 2006-05-09 15:58:16 bacon Exp $
*/ */
#include <xp/awk/awk_i.h> #include <xp/awk/awk_i.h>
@ -520,7 +520,7 @@ void xp_awk_prnptnpt (xp_awk_nde_t* tree)
while (nde != XP_NULL) while (nde != XP_NULL)
{ {
__print_expression (tree); __print_expression (nde);
if (nde->next == XP_NULL) break; if (nde->next == XP_NULL) break;
xp_printf (XP_T(",")); xp_printf (XP_T(","));

View File

@ -1,4 +1,5 @@
BEGIN { i = 20; j = 0; } BEGIN { i = 20; j = 0; }
{ i++; } { i++; }
i % 2 { j++; } i % 2 { j++; }
/*"1","2" || "Yes" {}*/
/*END { i = i + 1234; j = j + 1234; }*/ /*END { i = i + 1234; j = j + 1234; }*/