diff options
| author | June McEnroe <curtis.mcenroe@adgear.com> | 2016-10-04 13:35:59 -0400 |
|---|---|---|
| committer | June McEnroe <curtis.mcenroe@adgear.com> | 2016-10-04 13:35:59 -0400 |
| commit | 5de2c7c45f7c9075575464c80041084d86fa493c (patch) | |
| tree | e099871b86edb93b06144e70d452c07300460101 | |
| parent | Add @ to rpn (diff) | |
| download | src-5de2c7c45f7c9075575464c80041084d86fa493c.tar.gz src-5de2c7c45f7c9075575464c80041084d86fa493c.zip | |
Fix whitespace handling in rpn
Diffstat (limited to '')
| -rwxr-xr-x | .bin/rpn.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.bin/rpn.c b/.bin/rpn.c index a33296cf..d5be9cbf 100755 --- a/.bin/rpn.c +++ b/.bin/rpn.c @@ -91,6 +91,7 @@ static bool stack_op(char op) { break; case '>': a = pop(); push(pop() >> a); break; case '.': a = pop(); printf("%s\n", fmt(stack.radix, a)); break; case ',': a = pop(); printf("%c\n", (char) a); + break; case ' ': break; default: return false; } return true; |