Fixed issue with inline rule definition
This commit is contained in:
parent
8b8cc103e0
commit
8a94adc1c3
|
@ -1,5 +1,3 @@
|
|||
<> (?x dup) (?x ?x)
|
||||
<> (?x ?y swap) (?y ?x)
|
||||
<> ( ?x pop) ()
|
||||
<> ((eval ?x)) (?x)
|
||||
|
||||
(1 2 3) (4 5 6) swap pop dup
|
||||
(eval (<> (join (?x) (?y)) (?x ?y))) (join (foo) (bar))
|
|
@ -154,7 +154,7 @@ rewrite(char *incoming)
|
|||
while((c = *p)) {
|
||||
int i;
|
||||
if(p[0] == '<' && p[1] == '>') {
|
||||
p = addrule(p) + 1;
|
||||
p = addrule(p);
|
||||
while((*outp_++ = *p++))
|
||||
;
|
||||
save(-1);
|
||||
|
|
Loading…
Reference in New Issue