diff options
author | Arun Isaac | 2021-12-04 14:40:09 +0530 |
---|---|---|
committer | Arun Isaac | 2021-12-04 14:40:09 +0530 |
commit | 0c1164424eacaae182706640447a0ea8c70e3e2e (patch) | |
tree | 2e0d20bcba6cf54bd2328044e1fe961527327c28 | |
parent | d70d5b3b2bebf53e45a3a2db82578532b72c5a66 (diff) | |
download | gn-transform-databases-0c1164424eacaae182706640447a0ea8c70e3e2e.tar.gz |
Append an underscore to the identifier prefix.
This is slightly more readable.
* dump.scm (string->identifier): Append an underscore to the
identifier prefix.
-rwxr-xr-x | dump.scm | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 #\@) #\_) |