(chise-turtle-uri-encode-feature-name): Use ":source-file" for
authorMORIOKA Tomohiko <tomo.git@chise.org>
Mon, 16 Dec 2019 10:54:59 +0000 (19:54 +0900)
committerMORIOKA Tomohiko <tomo.git@chise.org>
Tue, 29 Sep 2020 09:54:46 +0000 (18:54 +0900)
`*source-file'.
(concord-turtle-insert-list): Use `concord-turtle-encode-object' to
encode Concord-object.

concord-turtle-dump.el

index cddfe03..e4023ae 100644 (file)
     ":reference")
    ((eq '*instance feature-name)
     ":instance")
+   ((eq '*source-file feature-name)
+    ":source-file")
    (t
     (concat ":" (chise-turtle-uri-encode-ccs-name feature-name)))))
 
                                                 al
                                                 nil 'for-sub-node)
            (setq separator lbs))
-       (setq ret (prin1-to-string cell))
+       (setq ret (if (concord-object-p cell)
+                     (concord-turtle-encode-object cell)
+                   (prin1-to-string cell)))
        (if separator
            (if (< (+ (current-column)
                      (length ret)