Added QSE_AWK_BLANKCONCAT

fixed getline parsing to accept $XXX
This commit is contained in:
2012-10-27 16:28:12 +00:00
parent c6a0a99e84
commit 4e92c0ef1c
4 changed files with 76 additions and 63 deletions

View File

@ -964,6 +964,8 @@ enum qse_awk_trait_t
*/
QSE_AWK_STRIPSTRSPC = (1 << 7),
QSE_AWK_BLANKCONCAT = (1 << 8),
/** CR + LF by default */
QSE_AWK_CRLF = (1 << 10),
@ -1016,9 +1018,10 @@ enum qse_awk_trait_t
* makes #qse_awk_t to behave compatibly with classical AWK
* implementations
*/
QSE_AWK_CLASSIC = QSE_AWK_IMPLICIT | QSE_AWK_RIO |
QSE_AWK_NEWLINE | QSE_AWK_PABLOCK |
QSE_AWK_STRIPSTRSPC | QSE_AWK_STRICTNAMING
QSE_AWK_CLASSIC =
QSE_AWK_IMPLICIT | QSE_AWK_RIO |
QSE_AWK_NEWLINE | QSE_AWK_BLANKCONCAT | QSE_AWK_PABLOCK |
QSE_AWK_STRIPSTRSPC | QSE_AWK_STRICTNAMING
};
/* ------------------------------------------------------------------------ */