1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-12-06 00:51:00 +01:00

Merge pull request #14687 from NixOS/repl-print-interrupt

libutil/signals: Get rid of setInterruptThrown
This commit is contained in:
John Ericson 2025-12-02 02:50:01 +00:00 committed by GitHub
commit 7f3ad17ac2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 10 additions and 31 deletions

View file

@ -0,0 +1,8 @@
---
synopsis: Interrupting REPL commands works more than once
issues: [13481]
---
Previously, this only worked once per REPL session; further attempts would be ignored.
This issue is now fixed, so REPL commands such as `:b` or `:p` can be canceled consistently.
This is a cherry-pick of the change from the [Lix project](https://gerrit.lix.systems/c/lix/+/1097).