summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* add tests for leapseconds on an environment without leapseconds support.akr2005-06-161-29/+21
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8635 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/tkextlib/SUPPOPRT_STATUS: add RELEASE_DATE information.nagai2005-06-163-0/+14
| | | | | | | | * lib/tkextlib/tile/style.rb: add "style element options <elem>" command support. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8634 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ruby.c (load_file): '!' is already read. reported by gotoyuzo.usa2005-06-162-1/+5
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8633 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/tk/tcltklib.c (ip_rb_threadVwaitCommand): Tcl_Release was missing.ocean2005-06-162-1/+6
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8631 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/tk/lib/tk.rb: add Tk.getMultiple{Open|Save}File() which returnnagai2005-06-162-1/+12
| | | | | | | an Array of selected files. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8630 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/time.rb (Time.parse): "Fri Jan 1 08:59:60 +0900 1999" wasakr2005-06-162-4/+60
| | | | | | | | | | parsed as "Fri Jan 01 09:00:00 JST 1999" even on an environment which supports leap seconds. (Time.rfc2822): ditto. (Time.xmlschema): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8629 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/resolv.rb (Resolv::DNS::Resource#ttl): new attribute.akr2005-06-152-7/+31
| | | | | | | | | | | (Resolv::DNS::Resource#==): ignore @ttl. (Resolv::DNS::Resource#hash): ditto. (Resolv::DNS::Message::MessageDecoder#get_rr): save TTL in a Resource object. based on [ruby-core:5190] by Eric Hodel. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8627 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * 2005-06-16eban2005-06-151-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8626 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/tk/sample/demos-jp/ctext.rb: modify improper message text.nagai2005-06-151-1/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8624 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * 2005-06-15nobu2005-06-151-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8623 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/tk/tk.rb: support "tk inactive" sub-command. [for Tcl/Tk8.5a3]nagai2005-06-153-1/+124
| | | | | | | | * ext/tk/tk/namespace.rb: support "namespace path" sub-command and 'namespace ensemble' sub-command. [for Tcl/Tk8.5a3] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8622 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/tk/tkutil/tkutil.c: forgot update RELEASE_DATEnagai2005-06-141-1/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8621 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * 2005-06-14eban2005-06-131-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8619 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/tk/tkutil/tkutil.c: add TkUtil::CallbackSubst.subst_arg(m, ...)nagai2005-06-133-1/+150
| | | | | | | | | & _define_attribute_aliases(hash) to get substitution-argument from attributes (e.g. subst_arg(:x,:y,:num,:button) --> "%x %y %b %b "). * ext/tk/lib/tk/event.rb: use _define_attribute_aliases(). git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8618 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * hash.c (ruby_setenv): fixed SEGV. [ruby-dev:26186]ocean2005-06-132-8/+9
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8616 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * signal.c (sigexit): call rb_thread_signal_exit() instead ofmatz2005-06-1213-170/+146
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | rb_exit(). [ruby-dev:26347] * eval.c (rb_thread_signal_exit): a new function to exit on main thread. * eval.c (rb_thread_switch): exit status should be retrieved from ruby_errinfo. * eval.c (rb_f_exit): ensure exit(0) should call exit(EXIT_SUCCESS). * missing/mkdir.c: remove. [ruby-core:05177] * hash.c (env_aset): do not treat nil as key-removing value. [ruby-list:40865] * parse.y (method_call): allow aref expression ([]) to take a block. * parse.y (block_dup_check): a function to check duplication of a block argument and an actual block. * lib/delegate.rb (SimpleDelegator::__setobj__): need check for recursive delegation. [ruby-core:04940] * lib/cgi.rb: add underscore aliases CGI::escape_html, CGI::unescape_html, CGI::escape_element, CGI::unescape_element. [ruby-core:05058] * misc/ruby-mode.el (ruby-expr-beg): fix looking point drift. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8613 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * 2005-06-13eban2005-06-121-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8612 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (rb_gc_mark_threads): curr_thread may not be part of theakr2005-06-122-2/+8
| | | | | | | | thread list. [ruby-dev:26312] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8611 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * 2005-06-11eban2005-06-111-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8610 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * parse.y: missing arg_paren event. This patch is contributed by Mitchell N ↵aamine2005-06-112-2/+7
| | | | | | Charity. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8609 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (unknown_node): show more information. [ruby-dev:26196]akr2005-06-102-1/+13
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8608 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * 2005-06-10nobu2005-06-101-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8607 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * missing.h: fd_set stuffs need sys/types.h. fixed: [ruby-core:05179]nobu2005-06-102-0/+7
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8606 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Added Eric Hodel's rdoc to resolv.rb and added file to .documentryan2005-06-092-319/+637
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8605 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/Win32API/Win32API.c (Win32API_Call): disable globalnobu2005-06-093-3/+12
| | | | | | | optimization. fixed: [ruby-core:05143] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8604 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * enum.c (enum_inject): default the result value to Qundef to usenobu2005-06-092-1/+8
| | | | | | | first element as initial value if not given. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8603 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (ruby_longjmp): new macro to call longjmp, setcontext, etc.akr2005-06-093-24/+53
| | | | | | | | | | | | (ruby_setjmp): new macro to call setjmp, getcontext, etc. (ruby_setjmp): call setjmp before getcontext to avoid IA64 register stack problem. [ruby-talk:144939] * gc.c (Init_stack): remove IA64_MAGIC_STACK_LIMIT. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8601 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * 2005-06-09eban2005-06-091-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8600 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* add ML ref. [ruby-dev:26297]akr2005-06-091-0/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8599 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * configure.in, eval.c, gc.c: use libunwind only on HP-UX.akr2005-06-094-8/+13
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8598 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/tk/lib/tkextlib/ICONS/icons.rb: fail to create instances ofnagai2005-06-082-1/+10
| | | | | | | Tk::ICONS [ruby-dev:26305]. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8595 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* if dlload fail to load a library, it should raise an error.ttate2005-06-081-1/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8594 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * array.c (rb_ary_nitems): add the block feature to Array#nitems.matz2005-06-085-24/+28
| | | | | | | | suggested by Bertram Scharpf <lists@bertram-scharpf.de> in [ruby-talk:134083]. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8593 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * bignum.c (get2comp): revert all prior changes, and calculatematz2005-06-082-15/+36
| | | | | | | proper 2's complement for negative numbers. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8591 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * enum.c (enum_min_by, enum_max_by): return nil if no iteration.nobu2005-06-074-118/+118
| | | | | | | | | | | fixed: [ruby-dev:26245] * eval.c (rb_need_block): ensure a block is given. * eval.c (backtrace): skip successive frames sharing same node. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8590 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * bignum.c (bignorm): fixed a bug in normalizing negative numbersmatz2005-06-076-7/+61
| | | | | | | | | | | | | | | | reported from Honda Hiroki <hhonda@ipflex.com>. normalizing should not trim preceding zeros from negative numbers. * ext/socket/socket.c (ruby_getaddrinfo__aix): merged a patch from KUBO Takehiro <kubo@jiubao.org> to support AIX. [ruby-list:40832] * lib/yaml/rubytypes.rb (Array::to_yaml): merged a patch from Tilman Sauerbeck <tilman@code-monkey.de>. [ruby-core:05055] * lib/yaml/rubytypes.rb (Hash::to_yaml): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8589 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * 2005-06-08eban2005-06-071-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8588 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/curses/curses.c (curses_insertln): merged a patch frommatz2005-06-073-0/+40
| | | | | | | | | | TAKAHASHI Tamotsu <ttakah@lapis.plala.or.jp>. [ruby-ext:02305] * lib/irb/init.rb (IRB::IRB.rc_file_generators): more flexible IRB.rc_file_generators. [ruby-core:05163] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8587 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/thread.rb: RDoc documentation from Eric Hodelmatz2005-06-072-20/+89
| | | | | | | <drbrain@segment7.net> added. [ruby-core:05148] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8586 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/mkmf.rb (create_makefile): add .SUFFIXES from depend file.nobu2005-06-072-3/+15
| | | | | | | fixed: [ruby-dev:26294] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8585 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/tk/sample/tkextlib/tile/themes/kroc.{rb,tcl}: also support tile 0.4.ocean2005-06-073-9/+29
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8584 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ChangeLog: fix typo.nobu2005-06-071-1/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8583 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * parse.y (parser_yylex): small error fixed.matz2005-06-072-2/+5
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8581 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * parse.y (parser_yylex): allow ';;' to be block terminator inmatz2005-06-074-10/+38
| | | | | | | | | | | | | | | | | | place of 'end'. [highly experimental] * misc/ruby-mode.el (ruby-block-end-re): allow ';;' for a negative indent trigger. [highly experimental] * parse.y (parser_yylex): "respond_to?:foo" should be interpreted as "respond_to? :foo" at the command level. [ruby-talk:144303] * sprintf.c (rb_f_sprintf): raise exception on debug mode (-d), not verbose mode (-w/-w). [ruby-core:05123] * sprintf.c (rb_f_sprintf): warn always on verbose mode. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8579 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * sample/tkextlib/tile/themes/kroc.{rb,tcl}: support tile 0.5 or later.ocean2005-06-073-52/+116
| | | | | | | ("pixmap" element constructor replaced by "image") git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8577 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* skip test if openssl is not available.akr2005-06-071-2/+5
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8576 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * 2005-06-07eban2005-06-071-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8575 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/tk/lib/multi-tk.rb: slave-ip fails to call proceduresnagai2005-06-072-5/+18
| | | | | | | delegated by master-ip. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8574 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/ripper/depend: add .y to .SUFFIXES for nmake.usa2005-06-062-0/+5
| | | | | | | fixed: [ruby-dev:26294] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8573 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * 2005-06-06eban2005-06-061-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8572 b2dd03c8-39d4-4d8f-98ff-823fe69b080e