1
0
mirror of https://codeberg.org/cage/tinmop/ synced 2025-02-25 09:17:45 +01:00

- [JSON-RPC] fixed macro for signal error.

This commit is contained in:
cage 2023-01-13 15:35:02 +01:00
parent cf0376e666
commit 48f950af1e

View File

@ -124,7 +124,7 @@
(defmacro make-json-rpc-error (code message)
`(progn
(assert (< -32000 code -32099))
(assert (< -32000 ,code -32099))
(error 'json-rpc-error :text ,message :code ,code)))
(defparameter *function-db* '())