aboutsummaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2016-08-03 21:23:22 +0300
committerArnold D. Robbins <arnold@skeeve.com>2016-08-03 21:23:22 +0300
commit9907a598dca8f129422c42f8c4fa3b4e2c988221 (patch)
tree3a2be1d8cc0c5747129c6d9e4f75d1ee250fe988 /eval.c
parent58cd470fe6b37ff2b62f5bc5b8cedf19be04fc63 (diff)
downloadegawk-9907a598dca8f129422c42f8c4fa3b4e2c988221.tar.gz
egawk-9907a598dca8f129422c42f8c4fa3b4e2c988221.tar.bz2
egawk-9907a598dca8f129422c42f8c4fa3b4e2c988221.zip
Remove typed regexps until they can be done correctly.
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/eval.c b/eval.c
index 6bd854e9..3e335300 100644
--- a/eval.c
+++ b/eval.c
@@ -236,7 +236,6 @@ static const char *const nodetypes[] = {
"Node_val",
"Node_regex",
"Node_dynregex",
- "Node_typedregex",
"Node_var",
"Node_var_array",
"Node_var_new",
@@ -1327,11 +1326,6 @@ setup_frame(INSTRUCTION *pc)
r->var_value = m;
break;
- case Node_typedregex:
- r->type = Node_var;
- r->var_value = m;
- break;
-
default:
cant_happen();
}