diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2016-08-12 11:55:30 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2016-08-12 11:55:30 +0300 |
commit | f7c134f70dba6553e92add647f11b87f39311274 (patch) | |
tree | 4a6f5f9565c3cdab98c7d6146144935ddb7ba3c1 /awk.h | |
parent | af19e5590c6378052ae7d784a31ed1f8e631ab20 (diff) | |
parent | 5ce09ba3867f5c9d3c3dc0c00c155c0ba0c224f6 (diff) | |
download | egawk-f7c134f70dba6553e92add647f11b87f39311274.tar.gz egawk-f7c134f70dba6553e92add647f11b87f39311274.tar.bz2 egawk-f7c134f70dba6553e92add647f11b87f39311274.zip |
Merge branch 'master' into feature/cmake
Diffstat (limited to 'awk.h')
-rw-r--r-- | awk.h | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -423,6 +423,14 @@ typedef struct exp_node { * and add WSTRCUR to the flags so that we don't have to do the * conversion more than once. * + * The NUMINT flag may be used with a value of any type -- NUMBER, + * STRING, or STRNUM. It indicates that the string representation + * equals the result of sprintf("%ld", <numeric value>). So, for + * example, NUMINT should NOT be set if it's a strnum or string value + * where the string is " 1" or "01" or "+1" or "1.0" or "0.1E1". This + * is a hint to indicate that an integer array optimization may be + * used when this value appears as a subscript. + * * We hope that the rest of the flags are self-explanatory. :-) */ # define STRING 0x0002 /* assigned as string */ |