From 73c0f9a8726e5a0d1630265ea80ab6dfbb3ae8a7 Mon Sep 17 00:00:00 2001 From: "Michael D. Lowis" Date: Thu, 1 May 2014 16:42:55 -0400 Subject: [PATCH] Fixed invalid comment and deleted unused var --- source/slvm/main.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/source/slvm/main.c b/source/slvm/main.c index f04a3e8..df31dc8 100644 --- a/source/slvm/main.c +++ b/source/slvm/main.c @@ -29,7 +29,7 @@ * Add support for multi-tasking with multiple cores/threads */ -/* Built-in Constants +/* System State *****************************************************************************/ /** The argument stack */ val_t ArgStack[ARG_STACK_SIZE]; @@ -40,9 +40,6 @@ val_t* ArgStackPtr = ArgStack-1; /** Pointer to current instruction being executed */ val_t* CodePtr = 0; -/** A state variable used to flag when the interpreter reads a line of input */ -val_t Line_Read = 0; - /* Inner Interpreter *****************************************************************************/ void docolon(val_t* code) { @@ -352,7 +349,6 @@ defcode("interp", interp, 0, &_parse){ defcode("quit", quit, 0, &interp){ int i; printf("=> "); - Line_Read = 0; while(1) { EXEC(interp); -- 2.52.0