From 681eb54038cca157b4cbb0871ff18b48c4199a52 Mon Sep 17 00:00:00 2001 From: MORIOKA Tomohiko Date: Tue, 12 Apr 2016 13:13:59 +0900 Subject: [PATCH] (est-format-props): Don't apply `www-format-encode-string' to the return value of `est-format-unit' because it has already been encoded. --- est-format.el | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/est-format.el b/est-format.el index 1b2703d..176cbcb 100644 --- a/est-format.el +++ b/est-format.el @@ -18,11 +18,10 @@ (setq dest (format "%s %s=\"%s\"" dest key - (www-format-encode-string - (format "%s" - (est-format-unit val 'without-tags - 'without-edit 'as-property)) - 'without-tags)))) + (format "%s" + (est-format-unit val 'without-tags + 'without-edit 'as-property)) + ))) dest)) (defun est-format-unit (format-unit -- 1.7.10.4