From 6f11d94c75806a00aed66fb10aca0dbb64f67d12 Mon Sep 17 00:00:00 2001 From: MORIOKA Tomohiko Date: Sun, 9 Sep 2012 02:11:22 +0900 Subject: [PATCH] (www-uri-decode-feature-name): Use `decode-uri-string'. --- cwiki-common.el | 1 + 1 file changed, 1 insertion(+) diff --git a/cwiki-common.el b/cwiki-common.el index dc5ae77..3cc2da6 100644 --- a/cwiki-common.el +++ b/cwiki-common.el @@ -287,6 +287,7 @@ (defun www-uri-decode-feature-name (uri-feature) (let (feature) + (setq uri-feature (decode-uri-string uri-feature 'utf-8-mcs-er)) (cond ((string-match "^from\\." uri-feature) (intern (format "<-%s" (substring uri-feature (match-end 0)))) -- 1.7.10.4