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
This also happens in the newer haskell-process stuff, but in an interesting fashion:
sequence [getLine, getLine]
hi
bye
["hi","hi"]
λ> sequence [getLine, getLine]
Hi
["bye","Hi"]
My completely-uneducated-and-random-guess is that it's an interaction with how Emacs communicates with the process; does anyone happen to have an older version of Emacs to test this with?
for example, the session:
λ> sequence [getLine, getLine]
a [hit enter]
b [hit enter]
raises an error buffer "HS-Error", which says:
-- Hit `q' to close this window.
["a","a"]
:36:1: Not in scope: ‘b’
-- To disable popups, customize `haskell-interactive-popup-errors'.
Not sure this is a bug of the "interactive-haskell-mode" OR some kind of strange IO buffering problem?
The text was updated successfully, but these errors were encountered: