got rid of platdef.c; compiler now always does linking step

This commit is contained in:
rumpf_a@web.de
2009-12-20 12:43:28 +01:00
parent 8ce705f686
commit f56816def0
12 changed files with 39 additions and 51 deletions

View File

@@ -21,7 +21,7 @@ type
proc zipError(z: var TZipArchive) =
var e: ref EIO
new(e)
e.msg = zip_strerror(z.w)
e.msg = $zip_strerror(z.w)
raise e
proc open*(z: var TZipArchive, filename: string, mode: TFileMode = fmRead): bool =

View File

@@ -265,9 +265,9 @@ type
lua_Chunkwriter* = lua_Writer
#
#** {======================================================================
#** ======================================================================
#** Debug API
#** =======================================================================
#** ======================================================================
#
const
@@ -305,9 +305,9 @@ type
lua_Hook* = proc (L: Plua_State, ar: Plua_Debug){.cdecl.}
#
#** {======================================================================
#** ======================================================================
#** Debug API
#** =======================================================================
#** ======================================================================
#
proc lua_getstack*(L: Plua_State, level: int, ar: Plua_Debug): int{.cdecl,