From eb807d42eca121df22f72b95465bba52a4e7fefa Mon Sep 17 00:00:00 2001 From: matz Date: Mon, 7 Mar 2011 08:39:39 +0000 Subject: * gc.c (rb_gc_set_params): allow GC parameter configuration by environment variables. based on a patch from funny-falcon at https://gist.github.com/856296, but honors safe level. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31044 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- proc.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'proc.c') diff --git a/proc.c b/proc.c index f81118ae61..18c7393536 100644 --- a/proc.c +++ b/proc.c @@ -336,10 +336,10 @@ rb_binding_new(void) * calling +eval+ to execute the evaluated command in this * environment. Also see the description of class +Binding+. * - * def get_binding(param) + * def getBinding(param) * return binding * end - * b = get_binding("hello") + * b = getBinding("hello") * eval("param", b) #=> "hello" */ @@ -358,10 +358,10 @@ rb_f_binding(VALUE self) * lineno parameters are present, they will be used when * reporting syntax errors. * - * def get_binding(param) + * def getBinding(param) * return binding * end - * b = get_binding("hello") + * b = getBinding("hello") * b.eval("param") #=> "hello" */ @@ -2211,15 +2211,15 @@ Init_Proc(void) * def initialize(n) * @secret = n * end - * def get_binding + * def getBinding * return binding() * end * end * * k1 = Demo.new(99) - * b1 = k1.get_binding + * b1 = k1.getBinding * k2 = Demo.new(-3) - * b2 = k2.get_binding + * b2 = k2.getBinding * * eval("@secret", b1) #=> 99 * eval("@secret", b2) #=> -3 -- cgit v1.2.3