Browse Source
Merge pull request #56 from cmaughan/hotfixes/variable-input
Fix Variable
master
Devine Lu Linvega
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
sim.c
|
|
@ -671,7 +671,7 @@ END_OPERATOR |
|
|
|
BEGIN_OPERATOR(variable) |
|
|
|
LOWERCASE_REQUIRES_BANG; |
|
|
|
PORT(0, -1, IN | PARAM); |
|
|
|
PORT(0, 1, IN | PARAM); |
|
|
|
PORT(0, 1, IN); |
|
|
|
Glyph left = PEEK(0, -1); |
|
|
|
Glyph right = PEEK(0, 1); |
|
|
|
if (left != '.') { |
|
|
|