From bf3c632b8227f4fa44b6858e4ec0f6cbdb4bf1c6 Mon Sep 17 00:00:00 2001 From: Daniel Llorens Date: Thu, 16 Jan 2025 15:46:05 +0100 Subject: Fix bug in srfi-111 box printer * module/srfi/srfi-111.scm: Add missing port. * test-suite/tests/srfi-111.test: Test. --- module/srfi/srfi-111.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'module') diff --git a/module/srfi/srfi-111.scm b/module/srfi/srfi-111.scm index 3d3cd896b..2db34ffc4 100644 --- a/module/srfi/srfi-111.scm +++ b/module/srfi/srfi-111.scm @@ -32,6 +32,6 @@ (lambda (box port) (display "#string (object-address box) 16) port) - (display " value: ") + (display " value: " port) (write (unbox box) port) (display ">" port))) -- cgit v1.2.3