summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2009-10-30 15:09:39 +0000
committerPaul Buetow <paul@buetow.org>2009-10-30 15:09:39 +0000
commitdc1cdfb8f8b3130aaff6e92eaf1042e52e8a1a3a (patch)
treedacdd1f41797ba92c2d0a80f97894525ac56472e /src
parent1bc73e78278b630768723869d277d05404feae03 (diff)
Diffstat (limited to 'src')
-rw-r--r--src/build.h2
-rw-r--r--src/core/interpret.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/build.h b/src/build.h
index 4e046ad..02651cd 100644
--- a/src/build.h
+++ b/src/build.h
@@ -36,7 +36,7 @@
#ifndef BUILD_H
#define BUILD_H
-#define BUILDNR 9666
+#define BUILDNR 9667
#define OS_FREEBSD
#endif
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;