aboutsummaryrefslogtreecommitdiffstats
path: root/awk.h
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2018-10-30 21:25:46 +0200
committerArnold D. Robbins <arnold@skeeve.com>2018-10-30 21:25:46 +0200
commita4ebe81f4db69fba0003f1b2b2d3b0467e302fb4 (patch)
tree7ffa4d318cc59df327287348f1b28b9883a825b7 /awk.h
parentf18b0c25e4502198efe4394d00d79186ad77994b (diff)
downloadegawk-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.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/awk.h b/awk.h
index bb129549..6f0f5163 100644
--- a/awk.h
+++ b/awk.h
@@ -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;