See changelog 2001-06-24 23:45 GMT -3

This commit is contained in:
Luiz Rafael Culik
2001-06-25 02:44:21 +00:00
parent bafe7aa495
commit b27bd3fd0b
2 changed files with 8 additions and 2 deletions

View File

@@ -1,3 +1,7 @@
2001-06-24 23:43 GMT -3 Luiz Rafael Culik <culik@sl.conex.net>
*utils/hbmake/hbmake.prg
* Reverted last change to hbmake, and put the file existence test on the correct place
2001-06-24 11:15 UTC-0800 Ron Pinkas <ron@profit-master.com>
* source/vm/arrays.c
! Fixed but in hb_arrayDel() which caused a GPF by accessing an item beyond the array end.

View File

@@ -139,7 +139,7 @@ If Pcount() == 0
? " or use one macro per -D switch"
Return NIL
Endif
If cFile == NIL .or. !file(cfile)
If cFile == NIL
? "File not Found"
Return Nil
Endif
@@ -285,7 +285,9 @@ if at("-E",allparam)>0
Next
Endif
Endif
if !file(cfile)
return nil
endif
parsemakfi( cFile )
If lPrint
PrintMacros()