renamed a few macro names that were left out previously
- renamed AFN to FUN and BFN to FNC
This commit is contained in:
@ -481,8 +481,8 @@ public:
|
||||
ERR_BLKEND = QSE_AWK_EBLKEND,
|
||||
ERR_DUPBEG = QSE_AWK_EDUPBEG,
|
||||
ERR_DUPEND = QSE_AWK_EDUPEND,
|
||||
ERR_BFNRED = QSE_AWK_EBFNRED,
|
||||
ERR_AFNRED = QSE_AWK_EAFNRED,
|
||||
ERR_FNCRED = QSE_AWK_EFNCRED,
|
||||
ERR_FUNRED = QSE_AWK_EFUNRED,
|
||||
ERR_GBLRED = QSE_AWK_EGBLRED,
|
||||
ERR_PARRED = QSE_AWK_EPARRED,
|
||||
ERR_VARRED = QSE_AWK_EVARRED,
|
||||
@ -529,8 +529,8 @@ public:
|
||||
ERR_RNEXTEND = QSE_AWK_ERNEXTEND,
|
||||
ERR_RNEXTFBEG = QSE_AWK_ERNEXTFBEG,
|
||||
ERR_RNEXTFEND = QSE_AWK_ERNEXTFEND,
|
||||
ERR_BFNUSER = QSE_AWK_EBFNUSER,
|
||||
ERR_BFNIMPL = QSE_AWK_EBFNIMPL,
|
||||
ERR_FNCUSER = QSE_AWK_EFNCUSER,
|
||||
ERR_FNCIMPL = QSE_AWK_EFNCIMPL,
|
||||
ERR_IOUSER = QSE_AWK_EIOUSER,
|
||||
ERR_IONONE = QSE_AWK_EIONONE,
|
||||
ERR_IOIMPL = QSE_AWK_EIOIMPL,
|
||||
|
@ -288,8 +288,8 @@ enum qse_awk_errnum_t
|
||||
QSE_AWK_EBLKEND, /* END requires an action block */
|
||||
QSE_AWK_EDUPBEG, /* duplicate BEGIN */
|
||||
QSE_AWK_EDUPEND, /* duplicate END */
|
||||
QSE_AWK_EBFNRED, /* intrinsic function redefined */
|
||||
QSE_AWK_EAFNRED, /* function redefined */
|
||||
QSE_AWK_EFNCRED, /* intrinsic function redefined */
|
||||
QSE_AWK_EFUNRED, /* function redefined */
|
||||
QSE_AWK_EGBLRED, /* global variable redefined */
|
||||
QSE_AWK_EPARRED, /* parameter redefined */
|
||||
QSE_AWK_EVARRED, /* named variable redefined */
|
||||
@ -341,8 +341,8 @@ enum qse_awk_errnum_t
|
||||
QSE_AWK_ERNEXTEND, /* next called from END */
|
||||
QSE_AWK_ERNEXTFBEG, /* nextfile called from BEGIN */
|
||||
QSE_AWK_ERNEXTFEND, /* nextfile called from END */
|
||||
QSE_AWK_EBFNUSER, /* wrong intrinsic function implementation */
|
||||
QSE_AWK_EBFNIMPL, /* intrinsic function handler failed */
|
||||
QSE_AWK_EFNCUSER, /* wrong intrinsic function implementation */
|
||||
QSE_AWK_EFNCIMPL, /* intrinsic function handler failed */
|
||||
QSE_AWK_EIOUSER, /* wrong user io handler implementation */
|
||||
QSE_AWK_EIONONE, /* no such io name found */
|
||||
QSE_AWK_EIOIMPL, /* i/o callback returned an error */
|
||||
|
Reference in New Issue
Block a user