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

Add RDoc to build. Add --ri-system to RDoc

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@5382 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
dave 2004-01-05 21:48:16 +00:00
parent 794e035046
commit fbae4f97ee
7 changed files with 136 additions and 40 deletions

View file

@ -1999,6 +1999,10 @@ module RDoc
break
when TkLBRACE
nest += 1
when TkLBRACE
nest += 1
when TkLBRACE
nest += 1
when TkRBRACE
nest -= 1
break if nest <= 0
@ -2041,7 +2045,8 @@ module RDoc
"#{@scanner.lex_state} #{nest}") if $DEBUG
case tk
when TkSEMICOLON
break
nest -= 1
break if nest <= 0
when TkLPAREN, TkfLPAREN
nest += 1
when TkDO
@ -2112,7 +2117,8 @@ module RDoc
"#{@scanner.lex_state} #{nest}") if $DEBUG
case tk
when TkSEMICOLON
break
nest -= 1
break if nest <= 0
when TkLPAREN, TkfLPAREN
nest += 1
when end_token