This commit is contained in:
parent
258fd27a9c
commit
689fa77380
|
@ -1,4 +1,4 @@
|
|||
<> (dup ?x) (?x ?x)
|
||||
<> (swap ?x ?y) (?y ?x)
|
||||
|
||||
(dup (123))
|
||||
(swap 123 456)
|
||||
|
||||
|
|
|
@ -24,7 +24,8 @@ walk(char *s)
|
|||
--depth;
|
||||
if(!depth) break;
|
||||
}
|
||||
if(depth < 0) break;
|
||||
if(depth == 0 && c == ' ') return s - 1;
|
||||
if(depth < 1 && c == ' ') { return s - 1; }
|
||||
}
|
||||
return s;
|
||||
}
|
||||
|
@ -55,6 +56,7 @@ writereg(char r)
|
|||
if(!depth) break;
|
||||
}
|
||||
if(depth < 0) break;
|
||||
if(depth == 0 && c == ' ') break;
|
||||
*outp_++ = c;
|
||||
}
|
||||
return 1;
|
||||
|
|
Loading…
Reference in New Issue