aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 #\@) #\_)