mirror of
https://git.sr.ht/~rabbits/uxn
synced 2024-11-27 08:13:01 +00:00
Remove vestigial mention of "include".
This commit is contained in:
parent
c3ac41c41d
commit
d4e033e715
1 changed files with 1 additions and 1 deletions
|
@ -157,7 +157,7 @@ makemacro(char *name, FILE *f)
|
|||
return error("Macro duplicate", name);
|
||||
if(sihx(name) && slen(name) % 2 == 0)
|
||||
return error("Macro name is hex number", name);
|
||||
if(findopcode(name) || scmp(name, "BRK", 4) || !slen(name) || scmp(name, "include", 8))
|
||||
if(findopcode(name) || scmp(name, "BRK", 4) || !slen(name))
|
||||
return error("Macro name is invalid", name);
|
||||
if(p.mlen == MACROS)
|
||||
return error("Too many macros", name);
|
||||
|
|
Loading…
Reference in a new issue