mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
fixes pre-existing quit documentation regression [backport] (#20763)
fixes pre-existing `quit` documentation regression
This commit is contained in:
@@ -2258,6 +2258,9 @@ when defined(js):
|
||||
|
||||
when defined(nimNoQuit):
|
||||
proc quit*(errorcode: int = QuitSuccess) = discard "ignoring quit"
|
||||
|
||||
elif defined(nimdoc):
|
||||
proc quit*(errorcode: int = QuitSuccess) {.magic: "Exit", noreturn.}
|
||||
## Stops the program immediately with an exit code.
|
||||
##
|
||||
## Before stopping the program the "exit procedures" are called in the
|
||||
@@ -2286,9 +2289,6 @@ when defined(nimNoQuit):
|
||||
## It does *not* call the garbage collector to free all the memory,
|
||||
## unless an `addExitProc` proc calls `GC_fullCollect <#GC_fullCollect>`_.
|
||||
|
||||
elif defined(nimdoc):
|
||||
proc quit*(errorcode: int = QuitSuccess) {.magic: "Exit", noreturn.}
|
||||
|
||||
elif defined(genode):
|
||||
proc quit*(errorcode: int = QuitSuccess) {.inline, noreturn.} =
|
||||
rawQuit(errorcode)
|
||||
|
||||
Reference in New Issue
Block a user