From 4b8b26c3dd1aa1dcb295a8bdec06240ca1bc481d Mon Sep 17 00:00:00 2001 From: MORIOKA Tomohiko Date: Thu, 13 Sep 2012 10:59:45 +0900 Subject: [PATCH] (www-uri-decode-object): Use `decode-uri-string' for value-part of object-representation. --- cwiki-common.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cwiki-common.el b/cwiki-common.el index 3de8052..2973231 100644 --- a/cwiki-common.el +++ b/cwiki-common.el @@ -395,7 +395,9 @@ (string-to-number (substring cpos (match-end 0)) 16)) ) (t - (setq cpos (car (read-from-string cpos))) + (setq cpos (car (read-from-string + (decode-uri-string + cpos file-name-coding-system)))) )) (if (and (eq genre 'character) (numberp cpos)) -- 1.7.10.4