diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2018-10-30 21:25:46 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2018-10-30 21:25:46 +0200 |
commit | a4ebe81f4db69fba0003f1b2b2d3b0467e302fb4 (patch) | |
tree | 7ffa4d318cc59df327287348f1b28b9883a825b7 /awk.h | |
parent | f18b0c25e4502198efe4394d00d79186ad77994b (diff) | |
download | egawk-a4ebe81f4db69fba0003f1b2b2d3b0467e302fb4.tar.gz egawk-a4ebe81f4db69fba0003f1b2b2d3b0467e302fb4.tar.bz2 egawk-a4ebe81f4db69fba0003f1b2b2d3b0467e302fb4.zip |
Handle comments after commas in expression lists.
Diffstat (limited to 'awk.h')
-rw-r--r-- | awk.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -346,6 +346,7 @@ typedef struct exp_node { struct exp_node *extra; void (*aptr)(void); long xl; + void *cmnt; // used by pretty printer } x; char *name; size_t reserved; |