From aff96b07a8513f4bb58feace7826e125e16a7eaf Mon Sep 17 00:00:00 2001 From: matz Date: Tue, 24 Jul 2001 09:07:33 +0000 Subject: * eval.c (rb_provide_feature): should not tweak extension used for loading. * io.c (io_fread): use fread(3) if PENDING_COUND is available. * class.c (rb_mod_include_p): Module#include? added. [new] * re.c (ignorecase_setter): give warning on modifying $=. * string.c (rb_str_casecmp): new method. [new] * string.c (rb_str_eql): separated from rb_str_equal(), make it always be case sensitive. [new] * string.c (rb_str_hash): made it always be case sensitive. * 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: http://svn.ruby-lang.org/repos/ruby/trunk@1642 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 0dd6874aa..bcc206003 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,15 +1,45 @@ +Mon Jul 23 00:26:04 2001 Yukihiro Matsumoto + + * eval.c (rb_provide_feature): should not tweak extension used for + loading. + Sun Jul 22 21:16:43 2001 Akinori MUSHA * ext/extmk.rb.in, lib/mkmf.rb: introduce a couple of new make variables: CLEANFILES and DISTCLEANFILES. They'd typically be defined in a file "depend". +Sat Jul 21 09:40:10 2001 Nobuyoshi Nakada + + * io.c (io_fread): use fread(3) if PENDING_COUND is available. + Fri Jul 20 22:55:01 2001 Akinori MUSHA * gc.c (ruby_xrealloc): fix a dangling bug which led memory reallocation to fail even though the second try after a GC succeeds. +Fri Jul 20 03:00:46 2001 Akinori MUSHA + + * class.c (rb_mod_include_p): Module#include? added. [new] + +Fri Jul 20 01:05:50 2001 Yukihiro Matsumoto + + * re.c (ignorecase_setter): give warning on modifying $=. + + * string.c (rb_str_casecmp): new method. [new] + + * string.c (rb_str_eql): separated from rb_str_equal(), make it + always be case sensitive. [new] + + * string.c (rb_str_hash): made it always be case sensitive. + +Thu Jul 19 13:03:15 2001 Nobuyoshi Nakada + + * eval.c (rb_f_require): should not include path in $" value + + * file.c (rb_find_file): should return 0 explicitly on failure. + Tue Jul 17 11:44:40 2001 Usaku Nakamura * ruby.h: enable volatile directive with VC++. -- cgit