branch: externals/eglot
commit d7e1b926636950ad1e21df9f85686fc338597c03
Author: João Távora <[email protected]>
Commit: João Távora <[email protected]>
* jsonrpc.el (jsonrpc-message): Fix formatting bug.
---
jsonrpc.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/jsonrpc.el b/jsonrpc.el
index 7a50b64..55d4dba 100644
--- a/jsonrpc.el
+++ b/jsonrpc.el
@@ -160,7 +160,7 @@ FORMAT as the message."
(defun jsonrpc-message (format &rest args)
"Message out with FORMAT with ARGS."
- (message "[jsonrpc] %s" (concat "[jsonrpc] %s" (apply #'format format
args))))
+ (message "[jsonrpc] %s" (apply #'format format args)))
(defun jsonrpc--debug (server format &rest args)
"Debug message for SERVER with FORMAT and ARGS."