diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2011-08-10 23:00:53 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2011-08-10 23:00:53 +0300 |
commit | ee77c260899fdce1cec5cf51053ccdb107f76d62 (patch) | |
tree | 10d32755f9c6a0e4795d9a8ef2bb16470652ea10 /awk.h | |
parent | b8c993f5a867f38fa9edd343d7d90b4b36800be2 (diff) | |
download | egawk-ee77c260899fdce1cec5cf51053ccdb107f76d62.tar.gz egawk-ee77c260899fdce1cec5cf51053ccdb107f76d62.tar.bz2 egawk-ee77c260899fdce1cec5cf51053ccdb107f76d62.zip |
Fix bug with FPAT.
Diffstat (limited to 'awk.h')
-rw-r--r-- | awk.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -205,6 +205,7 @@ typedef struct Regexp { struct dfa *dfareg; short dfa; short has_anchor; /* speed up of avoid_dfa kludge, temporary */ + short non_empty; /* for use in fpat_parse_field */ } Regexp; #define RESTART(rp,s) (rp)->regs.start[0] #define REEND(rp,s) (rp)->regs.end[0] |