Commit e438215f authored by João Távora's avatar João Távora
Browse files

; Jsonrpc: fix spurious unintended change

* lisp/jsonrpc.el (jsonrpc--log-event): Fix spurious unintended
change.
parent 66656bf5
Pipeline #27680 failed with stage
in 1 minute and 56 seconds
......@@ -1003,9 +1003,9 @@ of the API instead.")
(or method "")
(if id (format "[%s]" id) "")))))
(msg
(cond (nil(eq format 'full)
(cond ((eq format 'full)
(format "%s%s\n" preamble (or json log-text)))
(nil(eq format 'short)
((eq format 'short)
(format "%s%s\n" preamble (or log-text "")))
(t
(format "%s%s" preamble
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment