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
>jruby -v
jruby 9.1.15.0 (2.3.3) 2017-12-07 929fde8 Java HotSpot(TM) 64-Bit Server VM 9.0.4+11 on 9.0.4+11 +jit [mswin32-x86_64]
>systeminfo
Host Name: BOB-ACER-SWIFT-
OS Name: Microsoft Windows 10 Home
OS Version: 10.0.16299 N/A Build 16299
...
Expected Behavior
>irb
irb(main):001:0> "#@"
=> "\#@"
Actual Behavior
>jirb
irb(main):001:0> "#@"
=> "@"
The text was updated successfully, but these errors were encountered:
The "WARNING" are a Java 9 thing about us using reflection to crack open core JDK classes, and the stack trace is a known bug with readline on Windows that's fixed in 9.1.16.0, so I'll remove those from your description.
The actual string bug should have a fix shortly; I believe @enebo is on it.
Basic gist of fix is to push '#' onto result buffer if we did not find any
useful characters after the next significant character ('@', '$'). Fixing
this was confusing because we have an ancient outdated pushback(char) method
which actually ignores c (except for eof).
Basic gist of fix is to push '#' onto result buffer if we did not find any
useful characters after the next significant character ('@', '$'). Fixing
this was confusing because we have an ancient outdated pushback(char) method
which actually ignores c (except for eof).
Environment
Running on Windows 10
Expected Behavior
Actual Behavior
The text was updated successfully, but these errors were encountered: