bug#46403: SIGINT ignored when using system*
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*
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