aboutsummaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/eval.c b/eval.c
index b50bcea8..8f5eb05b 100644
--- a/eval.c
+++ b/eval.c
@@ -234,6 +234,7 @@ static const char *const nodetypes[] = {
"Node_val",
"Node_regex",
"Node_dynregex",
+ "Node_hardregex",
"Node_var",
"Node_var_array",
"Node_var_new",
@@ -1362,6 +1363,11 @@ setup_frame(INSTRUCTION *pc)
r->var_value = m;
break;
+ case Node_hardregex:
+ r->type = Node_var;
+ r->var_value = m;
+ break;
+
default:
cant_happen();
}