From adc2cf7a5c0fcae17ef625567636e886429a4028 Mon Sep 17 00:00:00 2001 From: MORIOKA Tomohiko Date: Fri, 15 Mar 2019 17:56:37 +0900 Subject: [PATCH] (est-uri-decode-feature-name-body): Decode "._." into `+'. (est-uri-encode-feature-name-body): Encode `+' into "._.". --- chiset-common.el | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/chiset-common.el b/chiset-common.el index ee1ee8b..e13cc36 100644 --- a/chiset-common.el +++ b/chiset-common.el @@ -1,6 +1,6 @@ ;;; chiset-common.el --- CHISET common utility -*- coding: utf-8-er; -*- -;; Copyright (C) 2010,2011,2012,2013,2014,2015,2016,2017,2018 MORIOKA Tomohiko. +;; Copyright (C) 2010,2011,2012,2013,2014,2015,2016,2017,2018,2019 MORIOKA Tomohiko. ;; Author: MORIOKA Tomohiko ;; Keywords: CHISE, RDF, Turtle, WWW @@ -66,6 +66,8 @@ "/") ((eq ch ?-) "*") + ((eq ch ?_) + "+") (t (substring uri-feature i (+ i 3)) )) @@ -83,6 +85,8 @@ ".-.") ((eq c ?/) "...") + ((eq c ?+) + "._.") (t (char-to-string c)))) feature "")) -- 1.7.10.4