(uxnasm) Print token during nested macro error

This commit is contained in:
Devine Lu Linvega 2024-04-03 21:08:17 -07:00
parent fc7ae4301c
commit 11d32db150
1 changed files with 2 additions and 2 deletions

View File

@ -179,7 +179,7 @@ makemacro(char *name, FILE *f, Context *ctx)
if(c == 0xa) ctx->line++;
while(f && fread(&c, 1, 1, f)) {
if(c == 0xa) ctx->line++;
if(c == '%') return error_top("Macro nested", name);
if(c == '%') return error_asm("Macro nested");
if(c == '{') depth++;
if(c == '}' && --depth) break;
if(c == '(' && !walkcomment(f, ctx))
@ -212,7 +212,7 @@ static int
makeref(char *label, char rune, Uint16 addr, Context *ctx)
{
Item *r;
if(refs_len >= 0x1000) return error_top("References limit exceeded", label);
if(refs_len >= 0x1000) return error_asm("References limit exceeded");
r = &refs[refs_len++];
if(label[0] == '{') {
lambda_stack[lambda_ptr++] = lambda_len;