Add "DO file" command which is equivalent to "INCLUDE [filedir()]/file"

This commit is contained in:
Dianne Skoll
2022-01-20 19:30:10 -05:00
parent 5a7e86e443
commit e51d7f3c6d
8 changed files with 46 additions and 6 deletions
+1 -1
View File
@@ -151,7 +151,7 @@ typedef Parser *ParsePtr; /* Pointer to parser structure */
enum TokTypes
{ T_Illegal,
/* Commands first */
T_Rem, T_Push, T_Pop, T_Preserve, T_Include, T_IncludeCmd, T_If, T_Else, T_EndIf,
T_Rem, T_Push, T_Pop, T_Preserve, T_Include, T_IncludeR, T_IncludeCmd, T_If, T_Else, T_EndIf,
T_IfTrig, T_ErrMsg,
T_Set, T_UnSet, T_Fset, T_Omit, T_Banner, T_Exit,
T_AddOmit,