From 2d21f7aca1a8a4cbae81940e17ffb93d0c249b43 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Sun, 17 Mar 2019 22:56:09 -0700 Subject: [PATCH] Eliminate unused handler for printing URIs. --- src/runtime/printer.scm | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/runtime/printer.scm b/src/runtime/printer.scm index 4e53cb8c0..c68d67505 100644 --- a/src/runtime/printer.scm +++ b/src/runtime/printer.scm @@ -759,13 +759,7 @@ USA. (*print-char #\) context*)))) (define (print-record record context) - (cond ((uri? record) (print-uri record context)) - (else (*print-with-brackets 'record record context '())))) - -(define (print-uri uri context) - (*print-string "#<" context) - (*print-string (uri->string uri) context) - (*print-string ">" context)) + (*print-with-brackets 'record record context '())) (define (print-pair pair context) (cond ((prefix-pair? pair) -- 2.25.1