summaryrefslogtreecommitdiff
path: root/defs/id.def
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-12-27 22:08:41 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-12-27 22:08:41 +0000
commit8654730aa8449ccd5b470c88cb5c0a22e36eabbd (patch)
tree575bce44ea42828bd69a4547886e43078fee5261 /defs/id.def
parent109d71ac71cab09d415a489deb39191735d9d00c (diff)
* def/id.def: use split(/^/) instead of String#lines to support
Ruby 1.8.5 as BASERUBY. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38636 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'defs/id.def')
-rw-r--r--defs/id.def2
1 files changed, 1 insertions, 1 deletions
diff --git a/defs/id.def b/defs/id.def
index 1196e8fa9a..ea0746e4d6 100644
--- a/defs/id.def
+++ b/defs/id.def
@@ -47,7 +47,7 @@ global_ids = []
const_ids = []
class_ids = []
names = {}
-predefined.lines.each_with_index do |line, num|
+predefined.split(/^/).each_with_index do |line, num|
next if /^#/ =~ line or (name, token = line.split; !name)
token ||= name
if /#/ =~ token