diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | hash.c | 2 | ||||
-rw-r--r-- | re.c | 1 |
3 files changed, 9 insertions, 1 deletions
@@ -1,3 +1,10 @@ +Fri May 6 08:08:37 2005 Nobuyoshi Nakada <[email protected]> + + * hash.c:rb_hash_hash_i() should be static. [ruby-core:04815] + + * re.c should include regint.h for declarations of oniguruma + functions. [ruby-core:04815] + Sun May 1 09:15:17 2005 Nobuyoshi Nakada <[email protected]> * ruby.c (process_sflag): replace '-' in variable names with '_'. @@ -1496,7 +1496,7 @@ rb_hash_eql(hash1, hash2) return hash_equal(hash1, hash2, Qtrue); } - +static int rb_hash_hash_i(key, value, hp) VALUE key, value; long *hp; @@ -11,6 +11,7 @@ #include "ruby.h" #include "re.h" +#include "regint.h" #include <ctype.h> #define MBCTYPE_ASCII 0 |