From c00080e1907db5f9cfe294ffcb751cc4147ff22e Mon Sep 17 00:00:00 2001 From: belliash Date: Mon, 24 Sep 2018 19:20:23 +0200 Subject: [PATCH] Correct comment. --- engine/vm.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/engine/vm.c b/engine/vm.c index 83274eb..7087de8 100644 --- a/engine/vm.c +++ b/engine/vm.c @@ -2358,9 +2358,7 @@ static sxi32 VmByteCodeExec( * LOAD: * P2 P3 * * Load a variable where it's name is taken from the top of the stack or - * from the P3 operand. - * If P1 is set,then perform a lookup only.In other words do not create - * the variable if non existent and push the NULL constant instead. + * from the P3 operand. If P2 is set, it will create a new variable. */ case PH7_OP_LOAD: { ph7_value *pObj;