summaryrefslogtreecommitdiff
path: root/ChangeLog
AgeCommit message (Collapse)Author
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
2001-08-16* LEGAL, ext/Setup*, ext/digest/*: Merge from 1.7: Import digestknu
modules. * ext/md5/*: Move to ext/digest/md5. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1694 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-08-15* lib/mkmf.rb: add -I$(srcdir) to CPPFLAGS.usa
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1688 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-08-14* string.c (rb_str_cmp): remove needless conditional.matz
* array.c (rb_inspecting_p): initialize inspect_key if it is not initialized yet. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1681 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-08-11* object.c (rb_obj_inspect): merge from 1.7: remove useless space.nobu
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1674 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-08-07* win32/win32.h: fix problems with BC++ (ruby-bugs#PR161).usa
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1673 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-08-06* eval.c (rb_mark_end_proc): should mark ruby_cref, maybe shouldmatz
not be here, but it's simplest way for a kludge. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1671 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-08-06* struct.c (rb_struct_modify): should check frozen and taintmatz
status. * eval.c (rb_undefined): do not recurse if method_missing is undefined. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1668 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-08-01* win32/Makefile.sub: changed path separator of $LIB to '\'.usa
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1664 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-07-31* marshal.c (marshal_load): ruby_verbose test should be wrapped bymatz
RTEST(). * hash.c (rb_hash_index): should return nil (not the default value) if value is not in the hash. * bignum.c (rb_cstr2inum): "0 ff".hex should return 0, not 255. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1657 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-07-31* file.c (rb_file_s_expand_path): expanded path should not endnobu
with "/.". removed meaningless code. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1656 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-07-27* eval.c (rb_provided): extension should be guessed usingmatz
rb_find_file_noext(). * eval.c (rb_f_require): should call rb_feature_p() after extension completion. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1652 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-07-27* eval.c (rb_eval): add CHECK_INTS before next, redo, retry tomatz
avoid potential uninterruptable infinite loop. * file.c (rb_file_s_expand_path): should not expand "." and ".." not following dirsep. * eval.c (rb_provide_feature): should not tweak extension used for loading. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1651 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-07-26* file.c (rb_find_file_noext, rb_find_file): fix tilde expansioneban
problem. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1649 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-07-24* ext/extmk.rb.in, lib/mkmf.rb: dig the target subdirectory forknu
lib/* files properly in case of create_makefile("dir/name"). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1645 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-07-24* eval.c (rb_provide_feature): should not tweak extension used formatz
loading. * eval.c (rb_f_require): should not include path in $" value * file.c (rb_find_file): should return 0 explicitly on failure. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1641 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-07-22* ext/extmk.rb.in, lib/mkmf.rb: introduce a couple of new makeknu
variables: CLEANFILES and DISTCLEANFILES. They'd typically be defined in a file "depend". git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1640 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-07-20* gc.c (ruby_xrealloc): fix a dangling bug which led memoryknu
reallocation to fail even though the second try after a GC succeeds. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1639 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-07-20* win32/config.h.in: merge from 1.7: add SIZEOF___INT64 definition.usa
* win32/config.status.in: merge from 1.7: add ENABLE_SHARED = yes. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1638 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-07-19* lib/irb/input-method: patch to irb to remove blank lines fromkeiju
the readline history buffer. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1637 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-07-18new files added: doc/net/http.rd.ja pop.rd.ja smtp.rd.jaaamine
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1624 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-07-18* regex.c (NUM_FAILURE_ITEMS): was confusing NUM_REG_ITEMS andmatz
NUM_NONREG_ITEMS, which have happened to be same value. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1620 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-07-17modify checkin miss.aamine
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1619 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-07-17* ext/extmk.rb.in: modify RM macro because command.com/cmd.exe don'tusa
recognize single quotation as quote character. * lib/mkmf.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1617 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2001-07-16* eval.c (proc_invoke): should preserve iter status for embeddedmatz
frame in the block. * file.c (rb_file_s_expand_path): may overrun buffer on stack. * regex.c (re_search): should consider reverse search. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1613 b2dd03c8-39d4-4d8f-98ff-823fe69b080e