summaryrefslogtreecommitdiffstats
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
...
* * ext/etc/etc.c (setup_passwd, setup_group): allow bignum uid, gid andnobu2006-06-271-0/+5
| | | | | | | so on. [ruby-talk:199102] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10408 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (rb_yield_0): avoid core dump. [ruby-dev:28840]akr2006-06-271-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10407 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Add --system, --site, --home and --gems to limit ri search path.drbrain2006-06-261-0/+4
| | | | | | | Allow --doc-dir to be specified mulitple times. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10404 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/socket/socket.c (bsock_recv_nonblock): new methodakr2006-06-261-0/+9
| | | | | | | | | | | BasicSocket#recv_nonblock. (udp_recvfrom_nonblock): renamed from ip_recvfrom_nonblock. IPSocket#recvfrom_nonblock is moved to UDPSocket#recvfrom_nonblock. (unix_recvfrom_nonblock): removed. UNIXSocket#recvfrom_nonblock is removed. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10403 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/ripper/eventids2.c (token_assoc): added tCHAR, which is notnobu2006-06-261-0/+5
| | | | | | | under 256 now. fixed: [ruby-dev:28832] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10400 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (call_trace_func): no check for argument number of thenobu2006-06-261-0/+5
| | | | | | | callback. fixed: [ruby-dev:28812] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10398 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/socket/socket.c (sock_accept): revert to avoid ambiguity ofmatz2006-06-261-0/+17
| | | | | | | | | | | | | | | argument evaluation order. [ruby-dev:28861] * ext/socket/socket.c (sock_accept_nonblock): ditto. * io.c (pipe_open): avoid closing uninitialized file descriptors. a patch from <tommy at tmtm.org> [ruby-dev:28600] * parse.y: replace terminal token names with more descriptive name, i.e. kEND to keyword_end. [ruby-list:42477] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10397 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/tk/tcltklib.c (ip_delete): fix SEGV when a slave-ip is deletednagai2006-06-261-0/+5
| | | | | | | on callback. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10396 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * Makefile.in, mkconfig.rb: catch-up for latest autoconf.nobu2006-06-251-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10392 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* add ML ref.akr2006-06-251-1/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10386 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * parse.y (paren_args): wrap $2 by escape_Qundef because it may beakr2006-06-251-0/+5
| | | | | | | Qundef. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10385 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* support some kind of method of word. [ruby-Bugs#3237]suke2006-06-251-0/+7
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10384 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* refine previous description.akr2006-06-241-1/+2
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10379 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (rb_eval): use rb_ary_new2 instead of rb_ary_new4 to avoidakr2006-06-241-3/+13
| | | | | | | | | | | | GC problem. (rb_yield_values): use rb_ary_new2 instead of rb_ary_new4. * array.c (rb_ary_new4): don't set len as n. make it safe with GC. [ruby-dev:28826] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10377 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ruby.h, lib/drb/drb.rb, lib/drb/invokemethod.rb: remove Values class.akr2006-06-231-0/+5
| | | | | | | [ruby-dev:28805] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10372 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ChangeLog: fixed typo.nobu2006-06-231-1/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10371 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (rb_block_pass): removed.nobu2006-06-231-1/+8
| | | | | | | | * eval.c (rb_thread_start_1): use rb_proc_yield() instead of rb_block_pass(). fixed: [ruby-dev:28794] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10370 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/net/http.rb (Net::HTTPResponse): duplicated error 501;matz2006-06-231-0/+5
| | | | | | | HTTPInternalServerError should be error 500. [ruby-core:08037] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10368 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * variable.c (rb_mod_name): returns nil for anonymous modules.matz2006-06-221-0/+5
| | | | | | | [ruby-talk:198440] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10366 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * string.c (rb_str_aref): "abc"[3] should not return an emptymatz2006-06-221-0/+5
| | | | | | | string but nil. [ruby-dev:28786] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10363 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/socket/socket.c (sock_s_socketpair): try GC only once.akr2006-06-211-0/+5
| | | | | | | [ruby-dev:28778] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10362 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* fixed an issue about mathn.tadf2006-06-211-0/+5
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10360 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/socket/getaddrinfo.c (freeaddrinfo, get_name): fixed typo.usa2006-06-211-0/+8
| | | | | | | | | * ext/tk/tcltklib.c (tcl_eval, tcl_global_eva): ditto. * ext/zlib/zlib.c (rscheck): constified. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10358 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/pp.rb (PP::PPMethods::seplist): should have preservedmatz2006-06-211-0/+5
| | | | | | | original reference to the array. [ruby-dev:28747] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10357 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * parse.y (block_param): do not use multiple assignment for a solematz2006-06-211-0/+13
| | | | | | | | | | | | | | | block parameter. [ruby-dev:28710] * eval.c (rb_yield_0): pass a raw yielded value to a sole block parameter if a value is passed by yield. * eval.c (proc_invoke): args may not be an array. * eval.c (rb_proc_yield): pass original value without wrapping it in an array. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10356 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * parse.y (method_call): remove (fn)(args) style lambdamatz2006-06-211-0/+10
| | | | | | | invocation, add fn.(args) instead. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10354 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c, file.c, etc.: code-cleanup patch from Stefan Huehnermatz2006-06-201-0/+5
| | | | | | | <stefan at huehner.org>. [ruby-core:08029] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10351 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * parse.y (reswords): modifier token is no longer returned in fnamenobu2006-06-201-0/+5
| | | | | | | state. fixed: [ruby-dev:28775] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10348 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/extmk.rb (parse_args): provisional catch-up for the recent changes.nobu2006-06-201-2/+8
| | | | | | | * lib/optparse.rb (OptionParser::List#summarize, OptionParser#order!): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10345 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (proc_invoke): intercept break and return from lambdamatz2006-06-201-0/+22
| | | | | | | | | | | | | | | | | | | | | | | | Proc objects. [ruby-dev:28742] * eval.c (proc_invoke): remove unnecessary YIELD_PROC_CALL flag. * eval.c (YIELD_EXACT_ARGS): renamed from YIELD_LAMBDA_CALL, which is no longer related to the behavior turned on by this flag. * eval.c (return_jump): no need to care about PROT_YIELD. * eval.c (break_jump): no jump to toplevel PROT_TREAD tag. * eval.c (rb_yield_0): fix confusion between lambda (which is a property of a proc) and pcall (which depends on whether it's called via yield or call). * eval.c (rb_thread_yield): no need to specify YIELD_LAMBDA_CALL. * eval.c (rb_block_pass): update blkid in prot_tag. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10338 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Mon Jun 19 23:40:59 2006 NARUSE, Yui <naruse@ruby-lang.org>naruse2006-06-191-0/+7
| | | | | | | | | | * ext/nkf/lib/kconv.rb: remove default -m0 and fix document. * ext/nkf/nkf-8/{nkf.c, config.h, utf8tbl.c, utf8tbl.h}: imported nkf 2.0.7. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10330 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * sample/test.rb (proc_return3): return within non lambda blockmatz2006-06-191-0/+5
| | | | | | | should terminate surrounding method. [ruby-dev:28741] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10324 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/socket/socket.c (unix_sysaccept): typo fixed.matz2006-06-191-0/+7
| | | | | | | | * ext/socket/socket.c (sock_connect): remove an unused local variable tmpaddr. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10323 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/socket/socket.c (tcp_accept_nonblock): forgot to removematz2006-06-191-0/+10
| | | | | | | abandoned hacks. [ruby-dev:28740] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10322 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/tk/lib/multi-tk.rb: fix bug: initialize improper tablesnagai2006-06-181-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10319 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* support PROPERTYPUTREF. [ruby-talk:183042]suke2006-06-181-0/+15
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10316 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (Init_eval): add aliases invoke_method andmatz2006-06-171-4/+20
| | | | | | | | | | | | | | | | | | invoke_functional_method corresponding send and funcall respectively. [ruby-talk:197512] * parse.y (parser_yylex): returns the most typical keyword token on EXPR_FNAME. [ruby-core:7995] * ext/socket/socket.c: protoize. * parse.y (then): remove ':' from 'then' and 'do' rules. * hash.c (env_aset): raise TypeError on nil with more descriptive message. [ruby-core:07990] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10304 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/pathname.rb (Kernel#Pathname): new method.akr2006-06-171-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10303 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/pp.rb (Kernel#pretty_inspect): defined for pretty printedakr2006-06-161-0/+5
| | | | | | | string. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10283 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * parse.y (reswords): kDO_BLOCK was missing. fixed: [ruby-core:7995]nobu2006-06-161-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10281 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (rb_proc_arity): get rid of segfault for mere splat.nobu2006-06-151-0/+6
| | | | | | | * gc.c (gc_mark_children): NODE_BLOCK_PASS needs u3 to be marked. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10278 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Documentation typo.drbrain2006-06-151-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10268 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Don't print warnings when -q is set.drbrain2006-06-141-0/+5
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10265 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (rb_f_method_name, rb_f_callee_name): document typo.usa2006-06-141-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10260 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ChangeLog: removed garbage.nobu2006-06-131-1/+0
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10259 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/socket/socket.c (Init_socket): remove obsolete constants:matz2006-06-131-0/+20
| | | | | | | | | | | | | | | | | | | IPsocket, TCPsocket, SOCKSsocket, TCPserver, UDPsocket, UNIXsocket, UNIXserver. * eval.c (formal_assign): post splat arguments should have had higher priority than optional arguments, since they are mandatory. [ruby-dev:28715] * eval.c (VIS_MASK): broken. should be 15. [ruby-dev:28715] * io.c (argf_getc): should return one-character string. [ruby-dev:28715] * io.c (rb_io_readchar): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10257 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/optparse.rb (OptionParser::Arguable#getopts): pass self to thenobu2006-06-111-1/+4
| | | | | | | parser. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10254 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * object.c (sym_call): disallow to call private methods.nobu2006-06-111-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10253 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * win32/win32.h (write): not need to define on bcc.usa2006-06-111-1/+5
| | | | | | | * ChangeLog: fixed typo :) git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10251 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* commit miss againnobu2006-06-101-1/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10250 b2dd03c8-39d4-4d8f-98ff-823fe69b080e