corrected the value of QSE_AWK_NEXTOFILE

This commit is contained in:
hyung-hwan 2013-01-31 10:07:20 +00:00
parent 27fbfd6651
commit 444a82782e
2 changed files with 2 additions and 2 deletions

View File

@ -519,7 +519,7 @@ static int comparg (int argc, qse_char_t* argv[], struct arg_t* arg)
{ {
{ QSE_T(":implicit"), QSE_T('\0') }, { QSE_T(":implicit"), QSE_T('\0') },
{ QSE_T(":extrakws"), QSE_T('\0') }, { QSE_T(":nextofile"), QSE_T('\0') },
{ QSE_T(":rio"), QSE_T('\0') }, { QSE_T(":rio"), QSE_T('\0') },
{ QSE_T(":rwpipe"), QSE_T('\0') }, { QSE_T(":rwpipe"), QSE_T('\0') },
{ QSE_T(":newline"), QSE_T('\0') }, { QSE_T(":newline"), QSE_T('\0') },

View File

@ -1008,7 +1008,7 @@ enum qse_awk_trait_t
QSE_AWK_IMPLICIT = (1 << 0), QSE_AWK_IMPLICIT = (1 << 0),
/** enables nextofile and NEXTOFILE */ /** enables nextofile and NEXTOFILE */
QSE_AWK_NEXTOFILE = (1 << 0), QSE_AWK_NEXTOFILE = (1 << 1),
/** supports \b getline, \b print, \b printf, \b close, \b fflush, /** supports \b getline, \b print, \b printf, \b close, \b fflush,
* piping, and file rediction */ * piping, and file rediction */