bug#46403: SIGINT ignored when using system*

2021-05-01 Thread Ludovic Courtès
Hi! Ricardo Wurmus skribis: > I execute commands in a loop and wish to be able to interrupt the loop > with SIGINT. Here’s the first attempt: > > guile -c \ > '(for-each (lambda (n) > (display n) > (system* "sleep" "3")) > (list 1 2

bug#46403: SIGINT ignored when using system*

2021-02-09 Thread Ricardo Wurmus
I execute commands in a loop and wish to be able to interrupt the loop with SIGINT. Here’s the first attempt: guile -c \ '(for-each (lambda (n) (display n) (system* "sleep" "3")) (list 1 2 3 4))' At no point will this program be inte