~ chicken-core (master) 1ae82c5700fb3e2f6dc036f1f20d1231c9925547


commit 1ae82c5700fb3e2f6dc036f1f20d1231c9925547
Author:     felix <felix@call-with-current-continuation.org>
AuthorDate: Thu May 14 14:51:44 2026 +0200
Commit:     felix <felix@call-with-current-continuation.org>
CommitDate: Thu May 14 14:51:44 2026 +0200

    Add missing exports for binary-/textual-port?
    
    reported by "Retropikzel"

diff --git a/modules.scm b/modules.scm
index 801e8a04..92f158e2 100644
--- a/modules.scm
+++ b/modules.scm
@@ -1184,6 +1184,8 @@
     (odd? . scheme#odd?) (even? . scheme#even?)
     (positive? . scheme#positive?) (negative? . scheme#negative?)
     (exact-integer? . scheme#exact-integer?)
+    (textual-port? . scheme#textual-port?)
+    (binary-port? . scheme#binary-port?)
     (max . scheme#max) (min . scheme#min)
     (+ . scheme#+) (- . scheme#-) (* . scheme#*) (/ . scheme#/)
     (= . scheme#=) (> . scheme#>) (< . scheme#<)
Trap