summaryrefslogtreecommitdiff
path: root/ChangeLog
AgeCommit message (Collapse)Author
2001-11-09* win32/config.status.in: make CFLAGS same as Makefile's one.usa
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1822 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-11-08* eval.c (rb_trap_eval): avoid annoying warning with signal.nobu
[ruby-talk:23225] * eval.c (rb_call0): adjust caller source file/line while evaluating optional arguments. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1819 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-11-07* dir.c (my_getcwd): do not rely on MAXPATHLEN.matz
* eval.c (rb_yield_0): should not call rb_f_block_given_p(). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1814 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-11-03* matrix.rb (Matrix#column_vectors, Matrix#row_vectors): ditto bug.keiju
this bug report and fix by tsutomu@nucba.ac.jp. * forwardable.rb: change raise to Kernel::raise git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1812 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-11-01* bignum.c (rb_big_aref): idx may be a Bignum.matz
* numeric.c (fix_aref): negative index must return zero. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1810 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-10-31* eval.c (exec_under): should initialize ruby_frame->self;matz
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1808 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-10-31* eval.c (POP_VARS): should not set DVAR_DONT_RECYCLE if _oldmatz
ruby_vars is already force_recycled. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1806 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-10-30 * lib/cgi.rb: CGI::Cookie::parse(): Ignore duplicate keys caused bywakou
Netscape bug. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1805 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-10-30* eval.c (rb_f_eval): can't modify untainted binding.matz
* regex.c (re_compile_pattern): should preverve p0 value. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1802 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-10-29* parse.y (str_extend): shuould allow interpolation of $-x.matz
* bignum.c (rb_big_eq): convert Bignum to Float, instead of reverse. * time.c (time_localtime): getting tm should not be prohibited for frozen time objects. * time.c (time_gmtime): ditto. * version.c (Init_version): freeze RUBY_VERSION, RUBY_RELEASE_DATE, and RUBY_PLATFORM. * file.c (Init_File): freeze File::SEPARATOR, ALT_SEPARATOR and PATH_SEPARATOR. * file.c (rb_stat_cmp): should check operand type before calling get_stat(). * eval.c (rb_eval_cmd): should not invoke "call" with a block on any occasion. * numeric.c (fix_aref): idx may be a Bignum. * numeric.c (num_remainder): a bug in Numeric#remainder. * eval.c (rb_exec_end_proc): END might be called within END block. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1799 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-10-22* string.c (rb_str_index): wrong increment for non alphanumericmatz
string. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1794 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-10-21* variable.c (remove_trace): should not access already freed area.nobu
* variable.c (rb_f_untrace_var): fix memory leak. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1793 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-10-16* eval.c (rb_f_missing): check stack level with rb_stack_check().nobu
* eval.c (rb_call0): ditto. * eval.c, intern.h (rb_stack_check): added. [new] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1789 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-10-15* parse.y (yylex): disallow alpha-numeric and mbchar fornobu
terminator of %string. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1785 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-10-10* parse.y (parse_quotedwords): %w(...) is not a string.matz
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1783 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-10-09* eval.c (rb_eval): NODE_MATCH3 was confusing left and right. sigh.matz
* marshal.c: backport from 1.7 marshal.c git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1779 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-10-09* eval.c (thread_status_name): separated fromnobu
rb_thread_inspect(). return string expression for thread status. * eval.c (rb_thread_status, rb_thread_inspect): use thread_status_name(). * eval.c (rb_thread_priority_set): return the priority not but self. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1775 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-10-04* string.c (rb_str_aset): should maintain original negativematz
offset. * string.c (rb_str_aset_m): ditto. * re.c (rb_reg_nth_match): should check negative nth. * re.c (rb_reg_nth_defined): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1767 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-10-04* ext/socket/socket.c (ruby_connect): EALREADY is the equivalent eban
for EINPROGRESS in ws2_32.lib. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1766 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-10-02* lib/ftools.rb (catname): allow trailing '/' for the destination.eban
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1763 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-10-02* eval.c (rb_eval): should override existing class.matz
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1762 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-10-02* ext/socket/socket.c (unix_addr): getsockname(2) may result len = 0.matz
* ext/socket/socket.c (unix_peeraddr): getpeername(2) may result len = 0. * eval.c (POP_BLOCK): rb_gc_force_recycle() was called too much. Should not be called if SCOPE_DONT_RECYCLE is set. * string.c (rb_str_substr): should return an instance of receiver's class. * string.c (rb_str_succ): ditto. * array.c (rb_ary_subseq): ditto. * string.c (rb_str_reverse): should return an instance of reciever's class. * string.c (rb_str_times): ditto. * array.c (rb_ary_times): ditto * string.c (str_gsub): ditto. * string.c (rb_str_ljust): ditto. * string.c (rb_str_rjust): ditto. * string.c (rb_str_center): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1760 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-09-27Thu Sep 27 09:04:44 2001 Guy Decoux <ts@moulon.inra.fr>ts
* parse.y: allow 'primary[] += arg' git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1758 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-09-25* win32/win32.c (isInternalCmd): check return value of NtMakeCmdVector ↵usa
(Tietew <tietew@tietew.net>'s patch). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1756 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-09-19010919matz
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1749 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-09-08* eval.c (rb_thread_restore_context): save current value ofmatz
lastline and lastmatch in the thread struct for later restore. * eval.c (rb_thread_save_context): restore lastline and lastmatch. * numeric.c (flo_to_s): should handle negative float value. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1745 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-09-07 * lib/net/telnet.rb: waitfor(): improvement. thanks towakou
nobu.nakada@nifty.ne.jp git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1744 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-09-07 * lib/net/telnet.rb: waitfor(): bug fix.wakou
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1743 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-09-06 * lib/cgi.rb: CGI#doctype(): bug fix (html4Fr).wakou
* lib/net/telnet.rb, lib/cgi.rb: remove VERSION, RELEASE_DATE, VERSION_CODE, RELEASE_CODE. please use REVISION. * lib/cgi.rb: CGI#header(): bug fix. * lib/net/telnet.rb, lib/cgi.rb: concat --> += git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1742 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-09-06* dir.c (dir_s_chdir): raise if environment variable HOME/LOGDIRnobu
not set. * dir.c (glob_helper): avoid infinite loop on a file name with wildcard characters. (ruby-bugs#PR177) git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1739 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-09-06* class.c (rb_include_module): should check whole ancestors tomatz
avoid duplicate module inclusion. * string.c (trnext): should check backslash before updating "now" position. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1737 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-09-06* ext/digest/digest.c (rb_digest_base_s_hexdigest): remove a debugknu
print. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1736 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-09-06* ext/digest/digest.c (rb_digest_base_s_digest,knu
rb_digest_base_s_hexdigest): ensure that a string is given. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1734 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-09-06* lib/jcode.rb (_regexp_quote): fix quote handling, again.eban
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1733 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-09-06* file.c (rb_find_file_ext): add const qualifiers to ext.nobu
* intern.h (rb_find_file_ext): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1732 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-09-05* lib/jcode.rb (_regexp_quote): fix quote handling.eban
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1728 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-09-05* ruby.c (proc_options): should not adjust argc/argv if -e optionmatz
is supplied. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1726 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-09-03* intern.h (rb_find_file_ext): changed from rb_find_file_noext().nobu
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1725 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-09-03* eval.c (rb_f_require): should check static linked libraries\eban
before raising exception(from 1.7). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1723 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-09-03* io.c (rb_io_popen): accept integer flags as mode.matz
* file.c (rb_find_file_ext): extension table can be supplied from outside. renamed. * eval.c (rb_f_require): replace rb_find_file_noext by rb_find_file_ext. * eval.c (rb_provided): should also check feature without extension. * numeric.c (flo_to_s): do not rely on decimal point to be '.' * parse.y (yylex): ternary ? can be followed by newline. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1720 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-09-03* error.c: unbreak the build on *BSD with gcc 3.0.1 by removingknu
the conflicting declaration of sys_nerr for *BSD. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1719 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-09-01* ruby.c (set_arg0): prevent SEGV when val is longer than thenobu
original arguments. * ruby.c (ruby_process_options): initialize total length of original arguments at first. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1715 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-08-26* dir.c (rb_glob_helper): merge from 1.7: traversed files twicenobu
with pattern "*/**". don't descend to non-existing directories. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1712 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-08-24* array.c (rb_ary_equal): check identiry equality first.matz
* string.c (rb_str_equal): ditto. * struct.c (rb_struct_equal): ditto. * numeric.c (Init_Numeric): undef Integer::new. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1711 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-08-24* dln.c (dln_strerror): fix a bug that sometimes made null message onusa
win32 (Tietew <tietew@tietew.net>'s patch). * win32/win32.c (mystrerror): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1709 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-08-23* eval.c (is_defined): should not dump core for "defined?(())".matz
* eval.c (umethod_bind): recv can be an instance of descender of oklass if oklass is a Module. * hash.c (rb_hash_equal): check identiry equality first. * variable.c (mod_av_set): detect constant overriding for built-in classes/modules. * marshal.c (w_object): should retrieve __member__ data from non-singleton class. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1706 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-08-20* ext/digest/sha2/extconf.rb: fix support for cross-compiling.eban
* mkconfig.rb: fix support for autoconf 2.52. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1705 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-08-17* parse.y (parse_regx): handle backslash escaping of delimiter here.matz
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1702 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-08-17* win32/Makefile.sub: merge from 1.7: use del instead of rm.usa
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1701 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-08-16* lib/resolv.rb, lib/resolv-replace.rb: Copy from 1.7.knu
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1697 b2dd03c8-39d4-4d8f-98ff-823fe69b080e