remove reference (vestigal) to CALL_FUNCTION_STAR

This commit is contained in:
Jeremy Hylton 2000-03-29 00:10:44 +00:00
parent a403d7d390
commit e4fb958fc2

View file

@ -1222,7 +1222,7 @@ com_call_function(c, n)
"more than 255 arguments"); "more than 255 arguments");
} }
if (star_flag || starstar_flag) if (star_flag || starstar_flag)
opcode = CALL_FUNCTION_STAR - 1 + opcode = CALL_FUNCTION_VAR - 1 +
star_flag + (starstar_flag << 1); star_flag + (starstar_flag << 1);
else else
opcode = CALL_FUNCTION; opcode = CALL_FUNCTION;