bug#62690: Guile 3.0.9 (read-u8) defaults to current-output-port

2023-07-16 Thread Ludovic Courtès
Hi, Rui Zhang skribis: > In scheme/base.scm: > > (define* (read-u8 #:optional (port (current-output-port))) > (get-u8 port)) > > I think this is a typo, where current-output-port should be > current-input-port? Oops, fixed, thanks! Ludo’.

bug#62690: Guile 3.0.9 (read-u8) defaults to current-output-port

2023-04-06 Thread Rui Zhang
Reproduction: scheme@(guile-user)> (import (scheme base)) scheme@(guile-user)> (read-u8) ice-9/boot-9.scm:1685:16: In procedure raise-exception: In procedure get-u8: Wrong type argument in position 1 (expecting open input port): # Expected: (read-u8) should read a byte from the input port, not