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

Get rid of Japanese comments and fix English comments as appropriate.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1362 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
knu 2001-05-03 08:56:49 +00:00
parent f0448281f5
commit 94df732f8b
10 changed files with 13 additions and 33 deletions

View file

@ -13,7 +13,6 @@
module IRB
# initialize config
# (JP: config$B$N=i4|2=(B)
def IRB.initialize(ap_path)
IRB.init_config(ap_path)
IRB.init_error
@ -27,7 +26,6 @@ module IRB
@MATHN_INITIALIZED = false
# default configurations
# (JP: $B%G%U%)%k%H%3%s%U%#%.%e%l!<%7%g%s(B)
unless ap_path and @CONF[:AP_NAME]
ap_path = File.join(File.dirname(File.dirname(__FILE__)), "irb.rb")
end
@ -102,7 +100,6 @@ module IRB
end
# option analyzing
# (JP: $B%*%W%7%g%s2r@O(B)
def IRB.parse_opts
while opt = ARGV.shift
case opt
@ -205,7 +202,6 @@ module IRB
end
# initialize tracing function
# (JP: $B%H%l!<%5=i4|@_Dj(B)
def IRB.initialize_tracer
unless @TRACER_INITIALIZED
require("tracer")
@ -219,7 +215,6 @@ module IRB
end
# initialize mathn function
# (JP: mathn$B=i4|@_Dj(B)
def IRB.initialize_mathn
unless @MATHN_INITIALIZED
require "mathn"
@ -228,7 +223,6 @@ module IRB
end
# initialize loader function
# (JP: loader$B=i4|@_Dj(B)
def IRB.initialize_loader
unless @LOADER_INITIALIZED
require "irb/loader"