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
1 changed files with 1 additions and 1 deletions

View File

@ -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;