Skip to content

Commit 3dfac79

Browse files
committed
Use mapconcat in one place
* jupyter-messages.el (jupyter-sign-message): Do it.
1 parent 8a9f62f commit 3dfac79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jupyter-messages.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ signs messages using `jupyter-hmac-sha256'."
108108
with key = (encode-coding-string
109109
(jupyter-session-key session) 'utf-8 t)
110110
with parts = (encode-coding-string
111-
(cl-loop for part in parts concat part)
111+
(mapconcat #'identity parts)
112112
'utf-8 t)
113113
for byte across (funcall signer parts key)
114114
concat (format "%02x" byte))

0 commit comments

Comments
 (0)