diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2016-08-03 21:23:22 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2016-08-03 21:23:22 +0300 |
commit | 9907a598dca8f129422c42f8c4fa3b4e2c988221 (patch) | |
tree | 3a2be1d8cc0c5747129c6d9e4f75d1ee250fe988 /interpret.h | |
parent | 58cd470fe6b37ff2b62f5bc5b8cedf19be04fc63 (diff) | |
download | egawk-9907a598dca8f129422c42f8c4fa3b4e2c988221.tar.gz egawk-9907a598dca8f129422c42f8c4fa3b4e2c988221.tar.bz2 egawk-9907a598dca8f129422c42f8c4fa3b4e2c988221.zip |
Remove typed regexps until they can be done correctly.
Diffstat (limited to 'interpret.h')
-rw-r--r-- | interpret.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/interpret.h b/interpret.h index 3bb4532e..6b832c16 100644 --- a/interpret.h +++ b/interpret.h @@ -268,7 +268,7 @@ uninitialized_scalar: r = r->var_value; } - if (r->type == Node_val || r->type == Node_typedregex) + if (r->type == Node_val) UPREF(r); PUSH(r); break; @@ -987,8 +987,6 @@ arrayfor: r = POP_STRING(); unref(m->re_exp); m->re_exp = r; - } else if (m->type == Node_typedregex) { - UPREF(m); } PUSH(m); break; |