From 5ae38091eee1b60b7e68e2d2346e0ddaaaaa9aee Mon Sep 17 00:00:00 2001 From: MORIOKA Tomohiko Date: Mon, 27 Feb 2017 20:04:41 +0900 Subject: [PATCH] (isd-turtle-uri-encode-feature-name): Use "a.ucs" instead of `ucs' for `=ucs'. (isd-turtle-encode-char): Likewise. --- isd-turtle.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/isd-turtle.el b/isd-turtle.el index f20c817..d13bea5 100644 --- a/isd-turtle.el +++ b/isd-turtle.el @@ -86,9 +86,9 @@ (defun isd-turtle-uri-encode-feature-name (feature-name) (cond ((eq '=ucs feature-name) - 'ucs) + "a.ucs") ((eq '==>ucs@bucs feature-name) - 'bucs) + "bucs") (t (mapconcat (lambda (c) (if (eq c ?@) @@ -108,7 +108,7 @@ ccs ret) (if (setq ret (encode-char object '=ucs)) (prog1 - (format "ucs:0x%04X" ret) + (format "a.ucs:0x%04X" ret) (unless (memq '=ucs isd-turtle-ccs-list) (setq isd-turtle-ccs-list (cons '=ucs isd-turtle-ccs-list)))) (while (and ccs-list -- 1.7.10.4