Menu

#1 HLABasic2: bc.hla minor correction

open
nobody
None
5
2008-08-19
2008-08-19
Anonymous
No

In "bc.hla" the second IF statement after it gets the command args does not make sense.

----8<----
if( str.ne( extName, HLABasicSourceCodeExt_c )) then

str.cat3( filename, "." HLABasicSourceCodeExt_c, sourceName );

else
---->8----

This is more sensible:

----8<----
if( str.ne( extName, HLABasicSourceCodeExt_c )) then

str.cat( filename, sourceName );

else
---->8----

Nathan.

Discussion


Log in to post a comment.

MongoDB Logo MongoDB