Skip to content

Commit

Permalink
Express
Browse files Browse the repository at this point in the history
1) fixed looping issue when using internal= tooltype in commands with no pass_parameters option
2) updated to beta2
  • Loading branch information
dmcoles committed May 9, 2022
1 parent 623ba1b commit 23e4bad
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions express.e
Original file line number Diff line number Diff line change
Expand Up @@ -4527,13 +4527,13 @@ PROC runCommand(cmdtype,cmd,params,privcmd,subtype=-1)
IF passparams=1 THEN RETURN RESULT_SUCCESS

readToolType(tooltype,cmd,'INTERNAL',commandfile)
IF passparams
IF passparams>0
->pass in the original params
StrAdd(commandfile,' ')
StrAdd(commandfile,params)
ENDIF

IF passparams=2 THEN subtype++
IF (passparams=-1) OR (passparams=2) THEN subtype++
IF (passparams=4) THEN subtype:=SUBTYPE_INTCMD
IF (passparams=5) THEN subtype:=SUBTYPE_ANYCMD

Expand Down
2 changes: 1 addition & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ options=DEBUG IGNORECACHE NILCHECK OPTI SYM SHOWFNAME
compiler=EVO
expprogramname=AmiExpress
acpprogramname=ACP
version=5.5.0-beta1
version=5.5.0-beta2

all: acp express5 jsonimport icon2cfg qwk ftn

Expand Down

0 comments on commit 23e4bad

Please sign in to comment.