1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/rdoc/parsers/parse_rb.rb (lex_init): use IRB module.

[ruby-core:04737]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8361 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eban 2005-04-20 02:04:05 +00:00
parent 4c4e6b60d1
commit 75cff6289c
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Wed Apr 20 10:53:30 2005 WATANABE Hirofumi <eban@ruby-lang.org>
* lib/rdoc/parsers/parse_rb.rb (lex_init): use IRB module.
[ruby-core:04737]
Wed Apr 20 07:27:18 2005 Nobuyoshi Nakada <nobu@ruby-lang.org>
* {bcc32,win32,wince}/configure.bat, {bcc32,win32,wince}/setup.mak:

View file

@ -587,7 +587,7 @@ class RubyLex
}
def lex_init()
@OP = SLex.new
@OP = IRB::SLex.new
@OP.def_rules("\0", "\004", "\032") do |chars, io|
Token(TkEND_OF_SCRIPT).set_text(chars)
end