You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When user types ^C (ctrl-c) during Readline.readline, SIGINT is sent to the program, which in turn converted to an Interrupt exception. Reline.readline, however, returns a String with "\x03".
By bisecting I suppose this behaviour change was introduced in 8670d33 (#54)
Steps to reproduce:
Start bundle exec bin/example.
Type ^C.
Expect the program to halt.
The text was updated successfully, but these errors were encountered:
Thank you for your reporting. I'm always troubled by the behavior but I forgot to fix it because I'm always troubled by other insanely many bugs. It's about time I'll fix it preferentially. Please wait a little longer.
When user types ^C (ctrl-c) during
Readline.readline
, SIGINT is sent to the program, which in turn converted to an Interrupt exception.Reline.readline
, however, returns a String with"\x03"
.By bisecting I suppose this behaviour change was introduced in 8670d33 (#54)
Steps to reproduce:
bundle exec bin/example
.The text was updated successfully, but these errors were encountered: