bug#43364: with-output-to-port works with file ports

2024-04-23 Thread Fabio Natali
Dear All , I've been encountering a few times the need for a procedure like 'system' or 'system*' but that might be capable of capturing the output of the program that's being called. While this is something that can be solved with a simple 'open-pipe*' wrapper, the pattern seems relatively

bug#70534: eval-string: wrong environment for compilation

2024-04-23 Thread Bug reports for GUILE, GNU's Ubiquitous Extension Language
Hi! I'm pretty sure there is a bug in (ice-9 eval-string) implementation. If #:compile? is true it doesn't pass current module to the read-and-compile procedure which in my opinion leads to undesired behavior: This code snippet doesn't work --8<---cut