'&/' operator now automatically converts its arguments to strings.
[INTERPRETER] * NEW: '&/' operator now automatically converts its arguments to strings.
This commit is contained in:
parent
411ee75e7d
commit
7b74fec6cc
1 changed files with 4 additions and 2 deletions
|
@ -174,8 +174,10 @@ void SUBR_file(ushort code)
|
|||
|
||||
for (i = 0; i < NPARAM; i++)
|
||||
{
|
||||
/*VALUE_conv(&PARAM[i], T_STRING);*/
|
||||
SUBR_get_string_len(&PARAM[i], &addr, &len);
|
||||
VALUE_conv_string(&PARAM[i]);
|
||||
addr = PARAM[i]._string.addr;
|
||||
len = PARAM[i]._string.len;
|
||||
//SUBR_get_string_len(&PARAM[i], &addr, &len);
|
||||
|
||||
if (len > 0)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue