summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/build.h2
-rw-r--r--src/core/interpret.c6
2 files changed, 3 insertions, 5 deletions
diff --git a/src/build.h b/src/build.h
index a313b8c..0fecd98 100644
--- a/src/build.h
+++ b/src/build.h
@@ -35,7 +35,7 @@
#ifndef BUILD_H
#define BUILD_H
-#define BUILDNR 9362
+#define BUILDNR 9375
#define OS_FREEBSD
#endif
diff --git a/src/core/interpret.c b/src/core/interpret.c
index c6b66de..67ebc22 100644
--- a/src/core/interpret.c
+++ b/src/core/interpret.c
@@ -984,18 +984,16 @@ _term(Interpret *p_interpret) {
break;
*/
- /*
case TT_PARANT_AL:
{
Token *p_token = p_interpret->p_token;
_NEXT
+ _INTERPRET_ERROR("arrays not yet fully implemented", p_token);
Token *p_token_arr = token_new_array(ARRAY_SIZE);
- stack_push(p_interpret->p_stack, p_token_arr);
- _INTERPRET_ERROR("arrays not yet fully implemented", p_token_arr);
+ //stack_push(p_interpret->p_stack, p_token_arr);
}
break;
- */
case TT_PARANT_L:
{