summaryrefslogtreecommitdiffstats
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
...
* * parse.y (method_call): dispatch symbols. a patch from Andy Keep innobu2009-10-201-1/+4
| | | | | | | [ruby-core:26169]. [ruby-core:26165] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25405 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * parse.y (mlhs_basic): fixed handling splat in middle of mlhs. anobu2009-10-201-1/+4
| | | | | | | patch from Andy Keep in [ruby-core:26163] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25404 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * parse.y (parser_here_document): dispatch delayed heredocnobu2009-10-201-0/+5
| | | | | | | contents. based on a patch from Andy Keep in [ruby-core:24855]. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25402 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * .gdbinit (rb_method_entry): search method entry by class and id.nobu2009-10-191-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25401 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * win32/Makefile.sub (enc/unicode/name2ctype.h): no need to createusa2009-10-191-0/+5
| | | | | | | | directory if it already exists. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25400 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * .gdbinit (rb_ps): dump all threads and their callstacks. basednobu2009-10-191-0/+5
| | | | | | | on [ruby-core:26155] by Joshua ben Jore <twists AT gmail.com>. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25399 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * iseq.c (prepare_iseq_build, rb_iseq_build_for_ruby2cext):nobu2009-10-191-0/+5
| | | | | | | untrust mark array. [ruby-core:26137] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25398 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/rexml/element.rb (text=): false should be converted to string.marcandre2009-10-181-0/+5
| | | | | | A patch by Teruo Oshida [ruby-dev:38351] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25394 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/date.rb: do not require lib/delta.rb.tadf2009-10-181-0/+6
| | | | | | | | * lib/date/delta.rb: follows the above change. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25393 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * parse.y (is_special_global_name): add boundary check.akr2009-10-181-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25391 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ruby.c (ruby_init_loadpath_safe): should not dup tmp string. anobu2009-10-181-0/+5
| | | | | | | patch from neomjp neomjp in [ruby-core:24251]. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25390 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * test/test_prime.rbyugui2009-10-181-0/+11
| | | | | | | | | | | | (TestPrime#test_eratosthenes_works_fine_after_timeout): test for [ruby-dev:39465]. * lib/prime.rb (Prime::EratosthenesSieve): fixed [ruby-dev:39465]. suppressed memory reallocation. constantified some magic numbers. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25388 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * marshal.c (id2encidx): register encoding name.nobu2009-10-171-0/+6
| | | | | | | | (r_object0): register object before encoding name. [ruby-core:24882] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25387 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * test/rake/test_fileutils.rb (Rake::TestFileUtils#test_sh): usesyugui2009-10-171-0/+10
| | | | | | | | | | | FileUtils::RUBY instead of fixed "ruby" so that the ruby command works fine in Ruby's "make test-all". (test_sh_with_a_single_string_argument): ditto. (test_sh_with_multiple_arguments): ditto. (test_sh_failure): ditto (test_sh_special_handling): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25385 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * bignum.c (big_split): fix off-by-one error. [ruby-dev:39501]mame2009-10-171-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25383 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * parse.y (parser_yylex): fix token even after trailing under score.akr2009-10-171-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25382 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * vm_method.c (basic_obj_respond_to): call #respond_to_missing?matz2009-10-171-0/+5
| | | | | | always with two arguments. [ruby-core:26090] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25381 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/delegate.rb (Delegator#respond_to_missing): warn only whenmatz2009-10-171-0/+5
| | | | | | specified method is a private. [ruby-dev:39498] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25380 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * st.c (unpack_entries): save table->bins and never change the tablewanabe2009-10-161-0/+6
| | | | | | | during unpacking. Because st_insert() may cause GC and refer the table, i.e. st_foreach(). [Bug #2196] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25377 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * prelude.rb (require_relative): defined as a module function ofakr2009-10-161-0/+5
| | | | | | | Kernel. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25376 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/delegate.rb (Delegator#method_missing): remove backtracematz2009-10-161-0/+5
| | | | | | lines _until_ `method_missing'. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25375 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/delegate.rb (Delegator#freeze): #freeze should freeze selfmatz2009-10-161-0/+5
| | | | | | and the target at once. [ruby-core:26118] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25374 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* add ML ref [ruby-core:26081]matz2009-10-161-1/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25373 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/delegate.rb (Delegator#respond_to_missing): warn if optionalmatz2009-10-161-0/+9
| | | | | | | | | | include_private argument is not false. Delegator does (and should) not forward private methods. [ruby-core:26080] * lib/delegate.rb (Delegator#respond_to_missing): instead of redefining #respond_to?, use #respond_to_missing?. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25372 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * bootstraptest/test_gc.rb: added tests based on [ruby-dev:39484]nobu2009-10-161-0/+5
| | | | | | | from wanabe <s.wanabe AT gmail.com>. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25371 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * win32/win32.c (rb_w32_spawn): `\'' is also quote character.usa2009-10-161-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25367 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * gc.h (rb_gc_debug_body): constified.nobu2009-10-161-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25366 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/bigdecimal/bigdecimal.c (VpMidRound): remove warnings.naruse2009-10-161-0/+21
| | | | | | | | | | | | | | | | | | | | patch from Charlie Savage. [ruby-core:22869] * ext/digest/bubblebabble/bubblebabble.c (bubblebabble_str_new): ditto. * ext/digest/digest.c (hexencode_str_new): ditto. * ext/iconv/iconv.c (iconv_convert): ditto. * ext/socket/socket.c (inspect_sockaddr): ditto. * ext/socket/raddrinfo.c (sockaddr_obj): ditto. * ext/syck/emitter.c (syck_emitter_write): ditto. * ext/syck/emitter.c (syck_emitter_flush): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25365 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/csv.rb (CSV#raw_encoding): returns ASCII-8BIT when the ionaruse2009-10-161-0/+5
| | | | | | doesn't have encoding. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25362 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/csv.rb (CSV#read_to_char): set encoding and verify datanaruse2009-10-151-0/+10
| | | | | | | | | | | which read from io before encode it to @encoding. * lib/csv.rb (CSV#raw_encoding): add to get @io's encoding. * lib/csv.rb (CSV#read_io): add to read string and set @io's encoding. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25353 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * parse.y (rb_intern3): check symbol table overflow before generatenobu2009-10-151-3/+3
| | | | | | | next id. [ruby-core:26092] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25352 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * parse.y (rb_intern3): check symbol table overflow.nobu2009-10-151-0/+5
| | | | | | | [ruby-core:26092] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25351 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * io.c (io_encoding_set): get rid of parsing non-ascii string, andnobu2009-10-151-1/+4
| | | | | | | refine messages for invalid name encoding. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25350 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * io.c (io_reopen): unread current buffer before telling thenobu2009-10-151-0/+5
| | | | | | | position, for the case of reopening same file. [ruby-dev:39479] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25348 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/iconv/iconv.c (iconv_create): cannot retry with given block.nobu2009-10-151-0/+5
| | | | | | | [ruby-dev:39487] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25343 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/socket/init.c (rsock_init_sock): mswin doesn't have S_IFSOCKusa2009-10-151-0/+6
| | | | | | | | | flag in st_mode of struct stat. so, use rb_w32_issocket() function instead of S_ISSOCK macro. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25339 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * tool/enc-unicode.rb,naruse2009-10-141-0/+8
| | | | | | | | | enc/unicode/name2ctype.h, enc/unicode/name2ctype.h.blt, enc/unicode/name2ctype.kwd, enc/unicode/name2ctype.src: use UTS#18 for POSIX character class. http://rubyspec.org/issues/show/161 git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25338 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/socket/init.c (rsock_init_sock): validate file descriptor.akr2009-10-141-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25336 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ruby.c (process_options): script name should not be shown in annobu2009-10-141-0/+5
| | | | | | | error message before loaded. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25330 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (ruby_run_node): need to call ruby_cleaup() always evennobu2009-10-141-0/+5
| | | | | | | if any error occurred so far. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25328 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * proc.c (mnew): Method#new checks for respond_to_missing? with private set ↵marcandre2009-10-131-0/+6
| | | | | | | | to true [ruby-core:26069] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25325 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Add derived core and binary property and aliases.naruse2009-10-131-0/+10
| | | | | | | | | | | | * tool/enc-unicode.rb, enc/unicode/name2ctype.h, enc/unicode/name2ctype.h.blt, enc/unicode/name2ctype.kwd, enc/unicode/name2ctype.src: Add DerivedCoreProperties, PropList (Binary Property), PropertyAlias and PropertyValueAlias. Now users of tool/enc-unicode.rb should specify the directory of UCD files. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25324 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/tk/variable.rb: bug fix. additional trace definition changes thenagai2009-10-131-0/+5
| | | | | | | option of first trace definition. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25320 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * parse.y (token_info_push, token_info_pop): reduced ifdefs.nobu2009-10-131-1/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25319 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * parse.y (parser_magic_comment): fixed normalization.nobu2009-10-131-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25318 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ChangeLog: add commit logmarcandre2009-10-131-0/+7
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25317 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/net/ftp.rb (login): use "anonymous@" as a default password.shugo2009-10-121-0/+5
| | | | | | | [ruby-dev:39451] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25313 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/net/ftp.rb (retrlines): added a new block parameter.shugo2009-10-121-0/+7
| | | | | | | | * lib/net/ftp.rb (gettextfile): preserve missing end-of-line at end of files. [ruby-core:24590] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25310 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (ruby_run_node): if an exception occurred in ruby_option,nobu2009-10-121-0/+5
| | | | | | | the result is not executable. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25308 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * regparse.c (fetch_token): warn invalid back referencenaruse2009-10-111-0/+5
| | | | | | and subexp call. (\k and \g). git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25305 b2dd03c8-39d4-4d8f-98ff-823fe69b080e