diff options
author | bptato <nincsnevem662@gmail.com> | 2025-03-11 23:06:42 +0100 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2025-03-11 23:10:01 +0100 |
commit | 9424b6910b3944731857d9b014ac37aec392b9d5 (patch) | |
tree | 4ffa88524ee14b996ed2a8ae8ddf534d2f01de45 /src/local | |
parent | bd0a5eed0d0c67d5f9e6b0cda4985f8a09b1cc73 (diff) | |
download | chawan-9424b6910b3944731857d9b014ac37aec392b9d5.tar.gz |
Update QuickJS-NG to 0.9.0
Diffstat (limited to 'src/local')
-rw-r--r-- | src/local/client.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/local/client.nim b/src/local/client.nim index e19a646a..d71fc7cf 100644 --- a/src/local/client.nim +++ b/src/local/client.nim @@ -57,7 +57,7 @@ proc jsQuit(client: Client; code: uint32 = 0): JSValue {.jsfunc: "quit".} = let ctx = client.jsctx let ctor = ctx.getOpaque().errCtorRefs[jeInternalError] let err = JS_CallConstructor(ctx, ctor, 0, nil) - JS_SetUncatchableError(ctx, err, true); + JS_SetUncatchableError(ctx, err); return JS_Throw(ctx, err) proc feedNext(client: Client) {.jsfunc.} = |