Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion plantuml-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ Put the result into buffer BUF. Window is selected according to PREFIX:
(defun plantuml-server-deflate-encode-url (string)
"DEFLATE-encode STRING into a URL suitable for PlantUML server interactions."
(let* ((compressed-bytes (deflate-zlib-compress string 'dynamic))
(base64-encoded (base64-encode-string (apply #'unibyte-string compressed-bytes))))
(base64-encoded (base64-encode-string (apply #'unibyte-string compressed-bytes) t)))
(with-temp-buffer
(insert base64-encoded)
(translate-region (point-min) (point-max) plantuml-server-base64-char-table)
Expand Down