diff options
| author | Paul Buetow <paul@buetow.org> | 2009-10-30 15:09:39 +0000 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2009-10-30 15:09:39 +0000 |
| commit | dc1cdfb8f8b3130aaff6e92eaf1042e52e8a1a3a (patch) | |
| tree | dacdd1f41797ba92c2d0a80f97894525ac56472e /src/core | |
| parent | 1bc73e78278b630768723869d277d05404feae03 (diff) | |
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/interpret.c | 2 |
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; |
