diff options
| author | keiju <keiju@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-04-19 19:24:59 +0000 |
|---|---|---|
| committer | keiju <keiju@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-04-19 19:24:59 +0000 |
| commit | 8f8026221982541a5a77fc7b9485a6396e724443 (patch) | |
| tree | 67e5782ca3ba385be9ecfe5ca6370c012fb36df6 /lib/irb/ruby-token.rb | |
| parent | ddd765dbbd0721a8050e00108a7ee9e8a19e90d6 (diff) | |
| download | ruby-8f8026221982541a5a77fc7b9485a6396e724443.tar.gz ruby-8f8026221982541a5a77fc7b9485a6396e724443.tar.xz ruby-8f8026221982541a5a77fc7b9485a6396e724443.zip | |
* lib/irb.rb lib/irb/* doc/irb: IRB 0.9.5
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@8357 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/irb/ruby-token.rb')
| -rw-r--r-- | lib/irb/ruby-token.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/irb/ruby-token.rb b/lib/irb/ruby-token.rb index 49b97e9c5..525d4df14 100644 --- a/lib/irb/ruby-token.rb +++ b/lib/irb/ruby-token.rb @@ -1,9 +1,9 @@ # # irb/ruby-token.rb - ruby tokens -# $Release Version: 0.9$ +# $Release Version: 0.9.5$ # $Revision$ # $Date$ -# by Keiju ISHITSUKA(keiju@ishitsuka.com) +# by Keiju ISHITSUKA(keiju@ruby-lang.org) # # -- # @@ -64,7 +64,7 @@ module RubyToken class TkOPASGN < TkOp def initialize(seek, line_no, char_no, op) super(seek, line_no, char_no) - op = TkReading2Token[op] unless op.kind_of?(Symbol) + op = TkReading2Token[op][0] unless op.kind_of?(Symbol) @op = op end attr :op |
