added QSE_AWK_MODERN
This commit is contained in:
@ -1021,11 +1021,6 @@ enum qse_awk_trait_t
|
||||
*/
|
||||
QSE_AWK_STRICTNAMING = (1 << 15),
|
||||
|
||||
/**
|
||||
* supports file inclusion by enabling a keyword 'include'
|
||||
*/
|
||||
QSE_AWK_INCLUDE = (1 << 16),
|
||||
|
||||
/**
|
||||
* makes AWK more fault-tolerant.
|
||||
* - prevents termination due to print and printf failure.
|
||||
@ -1043,10 +1038,14 @@ enum qse_awk_trait_t
|
||||
* makes #qse_awk_t to behave compatibly with classical AWK
|
||||
* implementations
|
||||
*/
|
||||
QSE_AWK_CLASSIC =
|
||||
QSE_AWK_CLASSIC =
|
||||
QSE_AWK_IMPLICIT | QSE_AWK_RIO |
|
||||
QSE_AWK_NEWLINE | QSE_AWK_BLANKCONCAT | QSE_AWK_PABLOCK |
|
||||
QSE_AWK_STRIPSTRSPC | QSE_AWK_STRICTNAMING
|
||||
QSE_AWK_STRIPSTRSPC | QSE_AWK_STRICTNAMING,
|
||||
|
||||
QSE_AWK_MODERN =
|
||||
QSE_AWK_CLASSIC | QSE_AWK_EXTRAKWS | QSE_AWK_MAPTOVAR |
|
||||
QSE_AWK_RWPIPE | QSE_AWK_REXBOUND | QSE_AWK_TOLERANT
|
||||
};
|
||||
|
||||
/* ------------------------------------------------------------------------ */
|
||||
|
Reference in New Issue
Block a user