diff options
Diffstat (limited to 'lib/system/jssys.nim')
-rwxr-xr-x | lib/system/jssys.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system/jssys.nim b/lib/system/jssys.nim index 6040fdf53..789e39d6d 100755 --- a/lib/system/jssys.nim +++ b/lib/system/jssys.nim @@ -42,7 +42,7 @@ proc nimCharToStr(x: char): string {.compilerproc.} = result = newString(1) result[0] = x -proc getCurrentExceptionMsg(): string = +proc getCurrentExceptionMsg*(): string = if excHandler != nil: return $excHandler.exc.msg return "" |