mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8404 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
833c2375aa
commit
98c50b0b93
3 changed files with 9 additions and 1 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
Fri May 6 08:08:37 2005 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* 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 <nobu@ruby-lang.org>
|
Sun May 1 09:15:17 2005 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
* ruby.c (process_sflag): replace '-' in variable names with '_'.
|
* ruby.c (process_sflag): replace '-' in variable names with '_'.
|
||||||
|
|
2
hash.c
2
hash.c
|
@ -1496,7 +1496,7 @@ rb_hash_eql(hash1, hash2)
|
||||||
return hash_equal(hash1, hash2, Qtrue);
|
return hash_equal(hash1, hash2, Qtrue);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int
|
||||||
rb_hash_hash_i(key, value, hp)
|
rb_hash_hash_i(key, value, hp)
|
||||||
VALUE key, value;
|
VALUE key, value;
|
||||||
long *hp;
|
long *hp;
|
||||||
|
|
1
re.c
1
re.c
|
@ -11,6 +11,7 @@
|
||||||
|
|
||||||
#include "ruby.h"
|
#include "ruby.h"
|
||||||
#include "re.h"
|
#include "re.h"
|
||||||
|
#include "regint.h"
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
|
||||||
#define MBCTYPE_ASCII 0
|
#define MBCTYPE_ASCII 0
|
||||||
|
|
Loading…
Reference in a new issue