about summary refs log tree commit diff
path: root/dump
diff options
context:
space:
mode:
authorMunyoki Kilyungi2023-07-17 17:57:52 +0300
committerBonfaceKilz2023-07-30 12:29:56 +0300
commit0743ac3e7727bd15a925345547c94376b949be18 (patch)
tree3a0ccae8b1cfc2057a1ae74650a778e905152fe7 /dump
parent9a086f86ab72212c6ff767c32887b83d2b8cd9e2 (diff)
downloadgn-transform-databases-0743ac3e7727bd15a925345547c94376b949be18.tar.gz
Revert "Pass port as an optional argument"
This reverts commit 195ca590be5533935cf708d49fcb3736b3c78643.
Diffstat (limited to 'dump')
-rw-r--r--dump/triples.scm6
1 files changed, 2 insertions, 4 deletions
diff --git a/dump/triples.scm b/dump/triples.scm
index 710e00f..700437a 100644
--- a/dump/triples.scm
+++ b/dump/triples.scm
@@ -44,9 +44,7 @@ characters with an underscore and prefixing with gn:PREFIX."
       (string->symbol
        `,(format #f "~a~a" prefix value))))
 
-(define* (triple subject predicate object
-                 #:optional
-                 (port #t))
+(define (triple subject predicate object)
   (unless (or (string? subject)
               (symbol? subject))
     (error "Triple subject not a string or symbol:"
@@ -65,7 +63,7 @@ characters with an underscore and prefixing with gn:PREFIX."
                         (? (lambda (el) (string-match "^\\[ .* \\]$" el)) object))
                     "~a ~a ~a .~%")
                    (_ "~a ~a \"~a\" .~%"))])
-    (format port pattern subject predicate
+    (format #t pattern subject predicate
             (if (symbol? object) (symbol->string object) object))))
 
 (define* (scm->triples alist id