aboutsummaryrefslogtreecommitdiffstats
path: root/awk.h
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2018-07-31 09:21:43 +0300
committerArnold D. Robbins <arnold@skeeve.com>2018-07-31 09:21:43 +0300
commit86b063b99d78df97fcd761073f437ce00b018712 (patch)
tree6f834ea3d46ecb541bd6a722e565a83aac0e2268 /awk.h
parentf856979d85ace61bfeb2d31146485ec668202ad8 (diff)
downloadegawk-86b063b99d78df97fcd761073f437ce00b018712.tar.gz
egawk-86b063b99d78df97fcd761073f437ce00b018712.tar.bz2
egawk-86b063b99d78df97fcd761073f437ce00b018712.zip
Fix handling of physical newlines in -v arguments and related improvemnts.
Diffstat (limited to 'awk.h')
-rw-r--r--awk.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/awk.h b/awk.h
index a6d8193d..a848e39e 100644
--- a/awk.h
+++ b/awk.h
@@ -1328,8 +1328,10 @@ DEREF(NODE *r)
#define make_string(s, l) make_str_node((s), (l), 0)
+// Flags for making string nodes
#define SCAN 1
#define ALREADY_MALLOCED 2
+#define ELIDE_BACK_NL 4
#define cant_happen() r_fatal("internal error line %d, file: %s", \
__LINE__, __FILE__)