Removed redundant check in spacer
This commit is contained in:
parent
6e60bebf3d
commit
a0e795557f
|
@ -13,4 +13,4 @@
|
|||
<> (?x ?y swap) (?y ?x)
|
||||
<> (?x pop) ()
|
||||
|
||||
(implode reverse (explode hello)) (read) (explode hello) empty-register (eq abc abc) (eq abc def) (1 2 3) (4 5 6) swap pop dup
|
||||
(implode reverse (explode hello)) (read) (explode hello) empty-register (eq abc abc) (eq abc def) (1 2 3) (4 5 6) swap pop dup (hey 1234 pop)
|
|
@ -11,7 +11,7 @@ static char bank_a[0x4000], *prog_ = bank_a;
|
|||
static char bank_b[0x4000], *outp_ = bank_b;
|
||||
static char *regs[0x100];
|
||||
|
||||
#define spacer(c) (c < 0x21 || c == '(' || c == ')' || !c)
|
||||
#define spacer(c) (c < 0x21 || c == '(' || c == ')')
|
||||
|
||||
static char *
|
||||
walk(char *s)
|
||||
|
|
Loading…
Reference in New Issue