diff options
author | Daniel Llorens <lloda@sarc.name> | 2025-01-16 15:46:05 +0100 |
---|---|---|
committer | Daniel Llorens <lloda@sarc.name> | 2025-01-16 15:47:03 +0100 |
commit | bf3c632b8227f4fa44b6858e4ec0f6cbdb4bf1c6 (patch) | |
tree | 0383ba4e015fce154eea2156810675f781c88208 /module | |
parent | 8ac25f3faeb92c31c94f2bc09f4b29780df383fe (diff) | |
download | guile-bf3c632b8227f4fa44b6858e4ec0f6cbdb4bf1c6.tar.gz |
Fix bug in srfi-111 box printer
* module/srfi/srfi-111.scm: Add missing port.
* test-suite/tests/srfi-111.test: Test.
Diffstat (limited to 'module')
-rw-r--r-- | module/srfi/srfi-111.scm | 2 |
1 files changed, 1 insertions, 1 deletions
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 "#<box " port) (display (number->string (object-address box) 16) port) - (display " value: ") + (display " value: " port) (write (unbox box) port) (display ">" port))) |