diff options
Diffstat (limited to 'transform.e')
| -rw-r--r-- | transform.e | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/transform.e b/transform.e index 4d7c32c..7b82eae 100644 --- a/transform.e +++ b/transform.e @@ -747,6 +747,9 @@ allocate-transform-state s" transform-state" variable dup s" compute-next-buffer-free-block" stringcmp 0 = { drop 1 exit } if dup s" refill-input-buffer-from-stdin" stringcmp 0 = { drop -1 exit } if dup s" main-input-buffer" stringcmp 0 = { drop 1 exit } if + dup s" consume" stringcmp 0 = { drop 0 exit } if + dup s" peek" stringcmp 0 = { drop 1 exit } if + dup s" key" stringcmp 0 = { drop 1 exit } if ~ From interpret.e. dup s" unroll-past-string" stringcmp 0 = { drop 0 exit } if |