From 0c1164424eacaae182706640447a0ea8c70e3e2e Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Sat, 4 Dec 2021 14:40:09 +0530 Subject: Append an underscore to the identifier prefix. This is slightly more readable. * dump.scm (string->identifier): Append an underscore to the identifier prefix. --- dump.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dump.scm') diff --git a/dump.scm b/dump.scm index 2dc461b..fd1b9c3 100755 --- a/dump.scm +++ b/dump.scm @@ -87,7 +87,7 @@ "Convert STR to a turtle identifier after replacing illegal characters with an underscore and prefixing with gn:PREFIX." (string->symbol - (string-append "gn:" prefix + (string-append "gn:" prefix "_" (string-map (lambda (c) (case c ((#\/ #\< #\> #\+ #\( #\) #\space #\@) #\_) -- cgit v1.2.3