[#3006] mismatched quotation — "stevan apter" <apter@...>

ruby documentation uses a punctuation convention i've never seen

13 messages 2000/05/27

[ruby-talk:02620] Re: irb for 1.5.x

From: matz@... (Yukihiro Matsumoto)
Date: 2000-05-04 17:42:14 UTC
List: ruby-talk #2620
Hi,

In message "[ruby-talk:02617] irb for 1.5.x"
    on 00/05/02, Andrew Hunt <Andy@Toolshed.Com> writes:

|1) First problem I get is ruby-token.rb:260:in `def_token': undefined
|   method `intern' for :TkCLASS:Symbol (NameError)

It's fixed in the current version.  Oops.  `irb' is not committed in
the CVS.  Change

    token_n = token_n.id2name if token_n.kind_of?(Integer)

to

    token_n = token_n.id2name unless token_n.kind_of?(String)

I should have include `irb' into CVS.  I'll do it along with moving
the repository to cvs.ruby-lang.org.

							matz.

In This Thread