1
0
Fork 0

- [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
1 changed files with 1 additions and 1 deletions

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* '())