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.