From 601c9412259793787cdbb1ab99e6ab7cac3402cf Mon Sep 17 00:00:00 2001 From: MORIOKA Tomohiko Date: Thu, 1 Jun 2017 16:14:11 +0900 Subject: [PATCH] (char-db-json-insert-relation-feature): Check argument `value' to accept character object as the same as list of characters. --- char-db-json.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/char-db-json.el b/char-db-json.el index b609842..2da62e5 100644 --- a/char-db-json.el +++ b/char-db-json.el @@ -291,6 +291,8 @@ (let ((lbs (concat "\n" (make-string (current-column) ?\ ))) separator cell sources required-features ret) + (if (characterp value) + (setq value (list value))) (while (consp value) (setq cell (car value)) (if (integerp cell) -- 1.7.10.4