@@ -116,7 +116,7 @@ static REBSER *Read_All_File(char *fname)
116
116
**
117
117
***********************************************************************/
118
118
{
119
- Set_String (D_RET , Copy_Form_Value (D_ARG (1 ), 0 ));
119
+ Set_String (D_RET , Form_Value (D_ARG (1 ), 0 , TRUE ));
120
120
return R_RET ;
121
121
}
122
122
@@ -833,7 +833,7 @@ static REBSER *Read_All_File(char *fname)
833
833
} else if (ANY_STR (param )) {
834
834
argv [i ] = Val_Str_To_OS (param );
835
835
} else if (IS_WORD (param )) {
836
- Set_Series (REB_STRING , D_RET , Copy_Form_Value (param , TRUE));
836
+ Set_Series (REB_STRING , D_RET , Form_Value (param , TRUE , TRUE));
837
837
argv [i ] = Val_Str_To_OS (D_RET );
838
838
} else {
839
839
Trap_Arg (param );
@@ -1201,7 +1201,7 @@ static REBSER *Read_All_File(char *fname)
1201
1201
1202
1202
Check_Security (SYM_ENVR , POL_READ , arg );
1203
1203
1204
- if (ANY_WORD (arg )) Set_String (arg , Copy_Form_Value (arg , 0 ));
1204
+ if (ANY_WORD (arg )) Set_String (arg , Form_Value (arg , 0 , FALSE ));
1205
1205
cmd = Val_Str_To_OS (arg );
1206
1206
1207
1207
lenplus = OS_GET_ENV (cmd , (REBCHR * )0 , 0 );
@@ -1231,7 +1231,7 @@ static REBSER *Read_All_File(char *fname)
1231
1231
1232
1232
Check_Security (SYM_ENVR , POL_WRITE , arg1 );
1233
1233
1234
- if (ANY_WORD (arg1 )) Set_String (arg1 , Copy_Form_Value (arg1 , 0 ));
1234
+ if (ANY_WORD (arg1 )) Set_String (arg1 , Form_Value (arg1 , 0 , FALSE ));
1235
1235
cmd = Val_Str_To_OS (arg1 );
1236
1236
1237
1237
if (ANY_STR (arg2 )) {
0 commit comments