From 59fb892558bfb91f3468abb659dc56c64b0e46b7 Mon Sep 17 00:00:00 2001 From: matz Date: Mon, 12 Aug 2002 07:39:12 +0000 Subject: * bignum.c (rb_big_cmp): use dbl2big() for Floats, instead of big2dbl(). * bignum.c (Init_Bignum): rb_big_zero_p() removed. There may be Bignum zero. * eval.c (rb_call0): new argument added for original method name. preserve original method name in frame->orig_func. * eval.c (is_defined): use frame->orig_func, not last_func. * eval.c (rb_eval): ditto. * eval.c (method_call): supply data->oid also to rb_call0(). * object.c (rb_class_allocate_instance): call rb_obj_alloc() when called from alias, thus invoke original "allocate". * eval.c (remove_method): removing allocate from classes should cause NameError. * hash.c (rb_hash_equal): should check default values. * ext/socket/socket.c (s_recvfrom): update RSTRING len. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2702 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/cgi.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/cgi.rb b/lib/cgi.rb index eb476923e..7870c8125 100644 --- a/lib/cgi.rb +++ b/lib/cgi.rb @@ -1273,7 +1273,7 @@ The hash keys are case sensitive. Ask the samples. end if @output_hidden hidden = @output_hidden.collect{|k,v| - "" + "
" }.to_s body += hidden end -- cgit