enhanced error handling

This commit is contained in:
hyung-hwan 2009-05-23 19:47:43 +00:00
parent 9fb84cf713
commit 78146a8f91

View File

@ -988,6 +988,9 @@ restart:
case QSE_CHAR_EOF:
SETERR0 (sed, QSE_SED_ECMDMS, sed->src.lnum);
return -1;
case QSE_T('\n'):
SETERR0 (sed, QSE_SED_ECMDMS, sed->src.lnum-1);
return -1;
case QSE_T(':'):
/* label - this is not a command */
@ -995,7 +998,10 @@ restart:
if (cmd->a1.type != QSE_SED_ADR_NONE)
{
/* label cannot have an address */
SETERR1 (sed, QSE_SED_EA1PHB, 0, &cmd->type, 1);
SETERR1 (
sed, QSE_SED_EA1PHB, sed->src.lnum,
&cmd->type, 1
);
return -1;
}