summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* updated.akr2009-02-041-7/+12
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22038 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* rdoc update.akr2009-02-041-2/+0
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22037 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * string.c (rb_str_dump): use MBCLEN_CHARFOUND_P properly.akr2009-02-042-2/+6
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22036 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * bootstraptest/runner.rb: refine success message.akr2009-02-042-1/+9
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22035 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* add Dir.homekazu2009-02-041-5/+10
| | | | | | | update s of new method(s) git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22034 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* fixed typos and remove some spaceskazu2009-02-041-6/+6
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22033 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * Makefile.in (id.h): updates from parse.h.nobu2009-02-043-4/+9
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22030 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * win32/mkexports.rb: shouldn't export DllMain.usa2009-02-042-2/+8
| | | | | | | | reported at http://pc11.2ch.net/test/read.cgi/tech/1233686068/21 git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22025 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * missing/vsnprintf.c (BSD_vfprintf): should support 't' formatmatz2009-02-042-0/+7
| | | | | | | modifier to handle PRIdPTRDIFF. thanks for the info from Kazuhiro NISHIYAMA. [ruby-core:21807] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22024 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* revert useless change part in the previous commit.akr2009-02-031-2/+2
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22023 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/socket/extconf.rb: fix struct in_pktinfo and struct in6_pktinfoakr2009-02-032-4/+9
| | | | | | | | detection. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22022 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * test/etc/test_etc.rb(test_getpwnam, test_getgrgid, test_getgrnam):mame2009-02-032-9/+20
| | | | | | | | | support an envirionment that has duplicative entries. a patch from Tomoyuki Chikanaga <chikanag at nippon-control-system.co.jp> in [ruby-dev:37882]. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22021 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * 2009-02-04svn2009-02-031-2/+2
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22020 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/socket/lib/socket.rb (Socket.tcp_server_sockets_port0): skipakr2009-02-032-1/+10
| | | | | | | | socket creation error. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22019 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* don't connect to unspecified address.akr2009-02-031-3/+14
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22018 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ruby.c (load_file_internal): resets EOF flag after parse.nobu2009-02-032-1/+7
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22017 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * vm.c (vm_backtrace): always returns non-nil array if lev isnobu2009-02-032-0/+8
| | | | | | | negative. [ruby-core:21795] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22016 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * NEWS: added comment for Readline.kouji2009-02-031-0/+9
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22015 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/readline/extconf.rb: checked rl_set_screen_size andkouji2009-02-034-0/+90
| | | | | | | | | | | | | rl_get_screen_size. * ext/readline/readline.c (readline_s_set_screen_size): added Readline.set_screen_size. * ext/readline/readline.c (readline_s_get_screen_size): added Readline.get_screen_size. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22014 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/readline/readline.c: updated year of copyright.kouji2009-02-031-1/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22013 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/readline/readline.c (readline_s_set_completion_proc): setkouji2009-02-032-1/+8
| | | | | | | default if proc is nil. fix #1095 git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22012 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* updated.akr2009-02-031-27/+57
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22010 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * NEWS: add Array#sort_by!.kazu2009-02-033-2/+11
| | | | | | | * array.c (rb_ary_sort_by_bang): RDoc update. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22009 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* fixed typokazu2009-02-031-1/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22008 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/socket/lib/socket.rb (Socket.tcp_server_sockets_port0): newakr2009-02-033-20/+110
| | | | | | | | private function for allocating same port both IPv4 and IPv6. (Socket.tcp_server_sockets): use tcp_server_sockets_port0 for port 0. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22007 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* add a test.akr2009-02-031-0/+26
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22006 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* add tests.akr2009-02-031-0/+74
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22005 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* add tests.akr2009-02-031-0/+102
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22004 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * re.c (match_array): replace match_check().matz2009-02-032-4/+16
| | | | | | * re.c (match_values_at): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21999 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/net/imap.rb: validate data before sending to a server.shugo2009-02-032-4/+60
| | | | | | | [ruby-core:20320] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21998 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/net/imap.rb (hmac_md5): should use String#ord to get asciishugo2009-02-032-2/+7
| | | | | | | code from the one-character string. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21996 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * load.c (load_lock): warn for circular require. [ruby-core:20794],nobu2009-02-032-0/+6
| | | | | | | [ruby-core:20797] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21993 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/socket/lib/socket.rb (Socket.tcp_server_sockets): extracted fromakr2009-02-022-43/+104
| | | | | | | | | | | Socket.tcp_server_loop. (Socket.accept_loop): ditto. (Socket.unix_server_socket): extracted from Socket.unix_server_loop. (Socket.unix_server_loop): use Socket.accept_loop. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21992 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* add a test.akr2009-02-021-0/+9
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21991 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * test/ruby/test_readpartial.rb (make_pipe): readpartial does notnobu2009-02-022-0/+7
| | | | | | | work in text mode. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21990 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * cygwin/GNUmakefile.in (RUBYDEF): uses mkexports.rb on cygwin too.nobu2009-02-023-11/+17
| | | | | | | * win32/mkexports.rb (Exports::Cygwin): added. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21989 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * tool/generic_erb.rb: fixed typo.nobu2009-02-021-2/+2
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21988 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * common.mk (Doxyfile): moved from Makefile.in.nobu2009-02-026-10/+34
| | | | | | | * template/Doxyfile.tmpl: split from Doxyfile.in. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21987 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * win32/win32.c (rb_w32_write): use of cast expressions as lvaluesnobu2009-02-022-1/+6
| | | | | | | is deprecated. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21986 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/socket/extconf.rb (in_pktinfo, in6_pktinfo),nobu2009-02-023-5/+19
| | | | | | | | ext/socket/ancdata.c: defined in w32api/ws2tcpip.h on cygwin but cannot compile for some reason. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21985 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* rdoc update.akr2009-02-021-2/+2
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21984 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * missing/langinfo.c (nl_langinfo_codeset): accepts iso-8859nobu2009-02-022-3/+9
| | | | | | | fragment. [ruby-core:21757] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21983 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * mkconfig.rb (patchlevel): config.status may not containnobu2009-02-022-1/+14
| | | | | | | PATCHLEVEL even if other version numbers exist. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21982 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * 2009-02-03svn2009-02-021-2/+2
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21981 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* add ML ref.akr2009-02-021-0/+2
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21980 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/socket/raddrinfo.c (Init_addrinfo): add AddrInfo#to_s as anakr2009-02-023-0/+11
| | | | | | | | | | | alias of AddrInfo#to_sockaddr. * ext/socket/option.c (Init_sockopt): add Socket::Option#to_s as an alias of Socket::Option#data. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21979 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * array.c (rb_ary_sort_by_bang): RDoc update. [ruby-core:21742]matz2009-02-022-1/+5
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21976 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * enumerator.c: Introduce id_each to save rb_itern() and SYM2ID()knu2009-02-022-6/+12
| | | | | | | calls. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21975 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* adds a test case for r21955 and r21917.yugui2009-02-021-0/+46
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21974 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* fix typos.akr2009-02-021-9/+9
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21973 b2dd03c8-39d4-4d8f-98ff-823fe69b080e