Skip to content

Commit

Permalink
* lib/irb/workspace.rb: define method to private on top-level irb
Browse files Browse the repository at this point in the history
	  [Bug ruby#5776]. Patch by davidbalbert.



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38597 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
keiju committed Dec 25, 2012
1 parent 2f345f9 commit 6dab48b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Tue Dec 25 19:22:17 2012 Keiju Ishitsuka <keiju@ishitsuka.com>

* lib/irb/workspace.rb: define method to private on top-level irb
[Bug #5776]. Patch by davidbalbert.

Tue Dec 25 19:09:51 2012 NAKAMURA Usaku <usa@ruby-lang.org>

* bignum.c, include/ruby/intern.h (rb_big_eql): exported.
Expand Down
4 changes: 2 additions & 2 deletions lib/irb/workspace.rb
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ def initialize(*main)
Thread.pass
end
@binding = BINDING_QUEUE.pop

when 3 # binging in function on TOPLEVEL_BINDING(default)
@binding = eval("def irb_binding; binding; end; irb_binding",
@binding = eval("def irb_binding; private; binding; end; irb_binding",
TOPLEVEL_BINDING,
__FILE__,
__LINE__ - 3)
Expand Down

0 comments on commit 6dab48b

Please sign in to comment.