1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@867 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2000-08-01 09:25:37 +00:00
parent 65cdbd0667
commit d3a6170010
6 changed files with 89 additions and 49 deletions

View file

@ -460,7 +460,7 @@ class TkText<TkTextWin
when 'anchor'
result.push TkTextMarkAnchor.new(self)
else
result.push tk_tcl2rb(val)
result.push tk_tcl2ruby(val)
end
when 'tagon'
if val == 'sel'
@ -470,12 +470,12 @@ class TkText<TkTextWin
result.push TkTextTagSel.new(self)
end
else
result.push tk_tcl2rb val
result.push tk_tcl2ruby(val)
end
when 'tagoff'
result.push tk_tcl2rb sel
result.push tk_tcl2ruby(sel)
when 'window'
result.push tk_tcl2rb val
result.push tk_tcl2ruby(val)
end
i = idx + 1
end