diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2018-07-31 09:21:43 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2018-07-31 09:21:43 +0300 |
commit | 86b063b99d78df97fcd761073f437ce00b018712 (patch) | |
tree | 6f834ea3d46ecb541bd6a722e565a83aac0e2268 /awk.h | |
parent | f856979d85ace61bfeb2d31146485ec668202ad8 (diff) | |
download | egawk-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.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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__) |