Commit e4fb958f authored by Jeremy Hylton's avatar Jeremy Hylton

remove reference (vestigal) to CALL_FUNCTION_STAR

parent a403d7d3
......@@ -1222,7 +1222,7 @@ com_call_function(c, n)
"more than 255 arguments");
}
if (star_flag || starstar_flag)
opcode = CALL_FUNCTION_STAR - 1 +
opcode = CALL_FUNCTION_VAR - 1 +
star_flag + (starstar_flag << 1);
else
opcode = CALL_FUNCTION;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment