From 48fb588a946577540920d287340394a136966e35 Mon Sep 17 00:00:00 2001 From: MORIOKA Tomohiko Date: Thu, 29 Oct 2015 16:55:34 +0900 Subject: [PATCH] (www-display-feature-desc): Decode return value of `char-feature-property' [perhaps `char-feature-property' should return decoded string]. --- cwiki-view.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cwiki-view.el b/cwiki-view.el index ead1465..bfc35fb 100644 --- a/cwiki-view.el +++ b/cwiki-view.el @@ -443,7 +443,9 @@ size=\"30\" maxlength=\"30\" value=\"%s\" />" (www-html-display-paragraph (format "description : %s" - (or (char-feature-property feature-name 'description) + (or (decode-coding-string + (char-feature-property feature-name 'description) + 'utf-8-mcs-er) ""))) (when lang (www-html-display-paragraph -- 1.7.10.4