Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
e438215f
Commit
e438215f
authored
Dec 30, 2023
by
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
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lisp/jsonrpc.el
lisp/jsonrpc.el
+2
-2
No files found.
lisp/jsonrpc.el
View file @
e438215f
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment