aboutsummaryrefslogtreecommitdiff
path: root/dump.scm
diff options
context:
space:
mode:
authorArun Isaac2021-12-04 14:40:09 +0530
committerArun Isaac2021-12-04 14:40:09 +0530
commit0c1164424eacaae182706640447a0ea8c70e3e2e (patch)
tree2e0d20bcba6cf54bd2328044e1fe961527327c28 /dump.scm
parentd70d5b3b2bebf53e45a3a2db82578532b72c5a66 (diff)
downloadgn-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.
Diffstat (limited to 'dump.scm')
-rwxr-xr-xdump.scm2
1 files changed, 1 insertions, 1 deletions
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 #\@) #\_)