From 9d5e8e55f9bc85d4ded67da141a682e594f02f90 Mon Sep 17 00:00:00 2001 From: Jacek Sieka Date: Tue, 23 Apr 2019 04:10:33 -0600 Subject: [PATCH] deprecate programResult, avoid exposing in standalone mode (#11075) --- lib/system.nim | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/lib/system.nim b/lib/system.nim index 182403e82e..2e48626299 100644 --- a/lib/system.nim +++ b/lib/system.nim @@ -1926,13 +1926,11 @@ const ## failure. when defined(nodejs) and not defined(nimscript): - var programResult* {.importc: "process.exitCode".}: int + var programResult* {.importc: "process.exitCode", deprecated.}: int programResult = 0 -else: - var programResult* {.compilerproc, exportc: "nim_program_result".}: int - ## Modify this variable to specify the exit code of the program - ## under normal circumstances. When the program is terminated - ## prematurely using `quit proc <#quit,int>`_, this value is ignored. +elif hostOS != "standalone": + var programResult* {.compilerproc, exportc: "nim_program_result", deprecated.}: int + ## deprecated, prefer ``quit`` when defined(nimdoc): proc quit*(errorcode: int = QuitSuccess) {.magic: "Exit", noreturn.}