From 6e9cceb8b42896761ac3b882ee118561204b54f7 Mon Sep 17 00:00:00 2001 From: Yoni Rabkin Date: Mon, 9 May 2016 11:38:47 -0400 Subject: * rt-liberation-rest.el: UTF-8 decoding. Patch by Martin Jesper Low Madsen . --- rt-liberation-rest.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/rt-liberation-rest.el b/rt-liberation-rest.el index 583aec3..b46867c 100644 --- a/rt-liberation-rest.el +++ b/rt-liberation-rest.el @@ -123,9 +123,11 @@ (url-retrieve-synchronously url)) str) (setq str + (decode-coding-string (with-current-buffer response (buffer-substring-no-properties (point-min) - (point-max)))) + (point-max))) + 'utf-8)) (rt-liber-rest-write-debug (format "outgoing rest call -->\n%s\n<-- incoming\n%s\n" url str)) -- cgit v1.2.3