diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2016-10-16 10:27:27 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2016-10-16 10:27:27 +0300 |
commit | 1a09783dc80ab0af7d27d3cd00512165d5daf629 (patch) | |
tree | 6c87624843676a8943101249ab432fabb9c7020a /interpret.h | |
parent | 6b3f460c7f70d3cb0fac0fb45188b2a7776d653e (diff) | |
parent | 2d63bc3ee2a686560d29e1eb7b433deb45fd7619 (diff) | |
download | egawk-1a09783dc80ab0af7d27d3cd00512165d5daf629.tar.gz egawk-1a09783dc80ab0af7d27d3cd00512165d5daf629.tar.bz2 egawk-1a09783dc80ab0af7d27d3cd00512165d5daf629.zip |
Merge branch 'master' into feature/typed-regex
Diffstat (limited to 'interpret.h')
-rw-r--r-- | interpret.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/interpret.h b/interpret.h index 5467aa87..135f4e58 100644 --- a/interpret.h +++ b/interpret.h @@ -616,6 +616,11 @@ mod: REPLACE(r); break; + case Op_unary_plus: + // Force argument to be numeric + t1 = TOP_NUMBER(); + break; + case Op_store_sub: /* * array[sub] assignment optimization, |