mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-29 02:33:58 +00:00
got rid of platdef.c; compiler now always does linking step
This commit is contained in:
@@ -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 =
|
||||
|
||||
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user