* lisp/net/tramp-cmds.el (tramp-reporter-dump-variable):
Encode/decode string. Copyright-paperwork-exempt: yes
This commit is contained in:
parent
07ebe42546
commit
0e1711a0e2
1 changed files with 5 additions and 2 deletions
|
|
@ -236,8 +236,11 @@ buffer in your bug report.
|
|||
(string-match
|
||||
(concat "[^" (symbol-value 'mm-7bit-chars) "]") val))
|
||||
(with-current-buffer reporter-eval-buffer
|
||||
(set varsym (format "(base64-decode-string \"%s\")"
|
||||
(base64-encode-string val))))))
|
||||
(set
|
||||
varsym
|
||||
(format
|
||||
"(decode-coding-string (base64-decode-string \"%s\") 'raw-text)"
|
||||
(base64-encode-string (encode-coding-string val 'raw-text)))))))
|
||||
|
||||
;; Dump variable.
|
||||
(tramp-compat-funcall 'reporter-dump-variable varsym mailbuf)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue