From 988f1cc252215e384fda739f21410a4081c3a412 Mon Sep 17 00:00:00 2001 From: MORIOKA Tomohiko Date: Fri, 19 Feb 2021 11:30:24 +0900 Subject: [PATCH] (www-uri-encode-feature-name): Fix problem when feature-name is not symbol. --- chiset-common.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chiset-common.el b/chiset-common.el index 4d147f2..d612fdd 100644 --- a/chiset-common.el +++ b/chiset-common.el @@ -241,7 +241,7 @@ (t (intern uri-feature))))) (defun www-uri-encode-feature-name (feature-name) - (setq feature-name (symbol-name feature-name)) + (setq feature-name (format "%s" feature-name)) (cond ((string-match "^=\\+>\\([^=>]+\\)" feature-name) (concat "o." -- 1.7.10.4