[#50466] [ruby-trunk - Bug #7492][Open] Segmentation fault at DL::TestDL#test_call_double on x64 Windows 8 — "phasis68 (Heesob Park)" <phasis@...>

23 messages 2012/12/02

[#50558] [ruby-trunk - Feature #7511][Open] short-circuiting logical implication operator — "rits (First Last)" <redmine@...>

12 messages 2012/12/04

[#50575] [ruby-trunk - Feature #7517][Open] Fixnum::MIN,MAX — "matz (Yukihiro Matsumoto)" <matz@...>

20 messages 2012/12/05

[#50755] Becoming a committer — Charlie Somerville <charlie@...>

Hi ruby-core,

21 messages 2012/12/11
[#50759] Re: Becoming a committer — Yukihiro Matsumoto <matz@...> 2012/12/11

Hi,

[#50784] Re: Becoming a committer — Charles Oliver Nutter <headius@...> 2012/12/11

It's really this easy? If so, I'll send over my public key today :)

[#50795] Re: Becoming a committer — Yukihiro Matsumoto <matz@...> 2012/12/11

Hi,

[#50806] [ruby-trunk - Feature #7548][Open] Load and Require Callbacks — "trans (Thomas Sawyer)" <transfire@...>

12 messages 2012/12/12

[#50810] [ruby-trunk - Feature #7549][Open] A Ruby Design Process — "brixen (Brian Ford)" <brixen@...>

34 messages 2012/12/12

[#50867] [ruby-trunk - Bug #7556][Assigned] test error on refinement — "usa (Usaku NAKAMURA)" <usa@...>

14 messages 2012/12/13

[#50900] [ruby-trunk - Bug #7564][Open] r38175 introduces incompatibility — "tenderlovemaking (Aaron Patterson)" <aaron@...>

14 messages 2012/12/14

[#50951] [ruby-trunk - Bug #7584][Open] Ruby hangs when shutting down an ssl connection in gc finalization — "bpot (Bob Potter)" <bobby.potter@...>

12 messages 2012/12/17

[#51076] [ruby-trunk - Feature #7604][Open] Make === comparison operator ability to delegate comparison to an argument — "prijutme4ty (Ilya Vorontsov)" <prijutme4ty@...>

12 messages 2012/12/22

[ruby-core:50780] Re: [ruby-trunk - Bug #7544][Rejected] Accented characters in IRB

From: Magnus Holm <judofyr@...>
Date: 2012-12-11 18:12:42 UTC
List: ruby-core #50780
On Tue, Dec 11, 2012 at 4:59 PM, naruse (Yui NARUSE) <[email protected]> wr=
ote:
>
> Issue #7544 has been updated by naruse (Yui NARUSE).
>
> Status changed from Open to Rejected
>
> cfabianski (C=C3=A9dric FABIANSKI) wrote:
>> Starting from Ruby 1.9.3 Patchlevel 0 the accented characters are not we=
ll handled into IRB
>>
>> >> RUBY_VERSION
>> =3D> "1.9.3"
>> >> RUBY_PATCHLEVEL
>> =3D> 0
>> >> puts "C=C3=A9dric"
>> C=C3=A9dric
>> =3D> nil
>>
>> >> RUBY_VERSION
>> =3D> "1.9.3"
>> >> RUBY_PATCHLEVEL
>> =3D> 327
>> =3D> puts "C\U+FFC3\U+FFA9dric"
>> Cdric
>> =3D> nil
>>
>> Note : "\U+FFC3\U+FFA9" is what I'm getting when I try to enter "=C3=A9"
>
> It should be
>   puts "C\u00e9dric"

I tihnk you're misundestanding this issue.

If I type "=C3=A6" in an IRB session this is inserted instead:
"\U+FFC3\U+FFA6". It just magically appears. But it doesn't seem to be
actual characters that IRB sees. I only need to press backspace
*twice* to get rid of everything. And if I press Enter, it just gets
ignored by IRB.

In This Thread