ruby-changes:26935
From: marcandre <ko1@a...>
Date: Wed, 30 Jan 2013 15:01:52 +0900 (JST)
Subject: [ruby-changes:26935] marcandRe: r38987 (trunk): * array.c (rb_ary_bsearch): Fix r38986 (missing whitespace)
marcandre 2013-01-30 15:01:40 +0900 (Wed, 30 Jan 2013) New Revision: 38987 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=38987 Log: * array.c (rb_ary_bsearch): Fix r38986 (missing whitespace) * range.c (range_bsearch): ditto Modified files: trunk/array.c trunk/range.c Index: array.c =================================================================== --- array.c (revision 38986) +++ array.c (revision 38987) @@ -2463,7 +2463,7 @@ rb_ary_bsearch(VALUE ary) https://github.com/ruby/ruby/blob/trunk/array.c#L2463 } else { rb_raise(rb_eTypeError, "wrong argument type %s" - "(must respond be numeric, true, false or nil)", + " (must respond be numeric, true, false or nil)", rb_obj_classname(v)); } if (smaller) { Index: range.c =================================================================== --- range.c (revision 38986) +++ range.c (revision 38987) @@ -596,7 +596,7 @@ range_bsearch(VALUE range) https://github.com/ruby/ruby/blob/trunk/range.c#L596 } \ else { \ rb_raise(rb_eTypeError, "wrong argument type %s" \ - "(must respond be numeric, true, false or nil)", \ + " (must respond be numeric, true, false or nil)", \ rb_obj_classname(v)); \ } \ } while (0) -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/