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

bugfix for Importable.callback().

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6680 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ttate 2004-07-20 18:22:03 +00:00
parent 4339202266
commit 1ebcad550f

View file

@ -81,7 +81,7 @@ module DL
" args = enc.call(args) if enc",
" r,rs = #{func}(*args)",
" r = renc.call(r) if rdec",
" rs = dec.call(rs) if dec",
" rs = dec.call(rs) if (dec && rs)",
" @retval = r",
" @args = rs",
" @retval",