(char-db-json-insert-relation-feature): Check argument `value' to
authorMORIOKA Tomohiko <tomo.git@chise.org>
Thu, 1 Jun 2017 07:14:11 +0000 (16:14 +0900)
committerMORIOKA Tomohiko <tomo.git@chise.org>
Thu, 1 Jun 2017 07:14:11 +0000 (16:14 +0900)
accept character object as the same as list of characters.

char-db-json.el

index b609842..2da62e5 100644 (file)
   (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)