summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
Diffstat (limited to 'src/core')
-rw-r--r--src/core/interpret.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/interpret.c b/src/core/interpret.c
index e471e72..9a7eef4 100644
--- a/src/core/interpret.c
+++ b/src/core/interpret.c
@@ -83,10 +83,12 @@ Interpret*
interpret_new(List *p_list_token, Hash *p_hash_syms) {
Interpret *p_interpret = malloc(sizeof(Interpret));
+ /* No subprocess */
if (p_hash_syms != NULL) {
p_interpret->p_scope = scope_new(p_hash_syms);
p_interpret->b_scope_delete = true;
+ /* Subprocess */
} else {
p_interpret->p_scope = NULL;
p_interpret->b_scope_delete = false;