* id.h, template/id.h.tmpl (enum ruby_method_ids): reordered.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19921 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
f953305ff5
commit
3093546f1f
@ -1,3 +1,7 @@
|
|||||||
|
Fri Oct 24 21:50:21 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* id.h, template/id.h.tmpl (enum ruby_method_ids): reordered.
|
||||||
|
|
||||||
Fri Oct 24 21:19:45 2008 Keiju Ishitsuka <keiju@ruby-lang.org>
|
Fri Oct 24 21:19:45 2008 Keiju Ishitsuka <keiju@ruby-lang.org>
|
||||||
|
|
||||||
* ext/mathn/rational.c: change several global functions.
|
* ext/mathn/rational.c: change several global functions.
|
||||||
@ -25,7 +29,7 @@ Fri Oct 24 19:57:19 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
|
|||||||
Fri Oct 24 19:16:36 2008 URABE Shyouhei <shyouhei@ruby-lang.org>
|
Fri Oct 24 19:16:36 2008 URABE Shyouhei <shyouhei@ruby-lang.org>
|
||||||
|
|
||||||
* id.h (enum ruby_method_ids): ISO C forbids comma at end of
|
* id.h (enum ruby_method_ids): ISO C forbids comma at end of
|
||||||
enumerator list
|
enumerator list.
|
||||||
|
|
||||||
Fri Oct 24 18:29:00 2008 Keiju Ishitsuka <keiju@ruby-lang.org>
|
Fri Oct 24 18:29:00 2008 Keiju Ishitsuka <keiju@ruby-lang.org>
|
||||||
|
|
||||||
|
8
id.h
8
id.h
@ -165,6 +165,10 @@ enum ruby_method_ids {
|
|||||||
#endif
|
#endif
|
||||||
tLAST_ID,
|
tLAST_ID,
|
||||||
#define TOKEN2ID(n) id##n = ((t##n<<ID_SCOPE_SHIFT)|ID_LOCAL)
|
#define TOKEN2ID(n) id##n = ((t##n<<ID_SCOPE_SHIFT)|ID_LOCAL)
|
||||||
|
#if SUPPORT_JOKE
|
||||||
|
TOKEN2ID(Bitblt),
|
||||||
|
TOKEN2ID(Answer),
|
||||||
|
#endif
|
||||||
TOKEN2ID(Intern),
|
TOKEN2ID(Intern),
|
||||||
TOKEN2ID(MethodMissing),
|
TOKEN2ID(MethodMissing),
|
||||||
TOKEN2ID(Length),
|
TOKEN2ID(Length),
|
||||||
@ -175,10 +179,6 @@ enum ruby_method_ids {
|
|||||||
TOKEN2ID(Send),
|
TOKEN2ID(Send),
|
||||||
TOKEN2ID(__send__),
|
TOKEN2ID(__send__),
|
||||||
TOKEN2ID(Initialize)
|
TOKEN2ID(Initialize)
|
||||||
#if SUPPORT_JOKE
|
|
||||||
,TOKEN2ID(Bitblt)
|
|
||||||
,TOKEN2ID(Answer)
|
|
||||||
#endif
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif /* RUBY_ID_H */
|
#endif /* RUBY_ID_H */
|
||||||
|
@ -98,6 +98,10 @@ enum ruby_method_ids {
|
|||||||
#endif
|
#endif
|
||||||
tLAST_ID,
|
tLAST_ID,
|
||||||
#define TOKEN2ID(n) id##n = ((t##n<<ID_SCOPE_SHIFT)|ID_LOCAL)
|
#define TOKEN2ID(n) id##n = ((t##n<<ID_SCOPE_SHIFT)|ID_LOCAL)
|
||||||
|
#if SUPPORT_JOKE
|
||||||
|
TOKEN2ID(Bitblt),
|
||||||
|
TOKEN2ID(Answer),
|
||||||
|
#endif
|
||||||
TOKEN2ID(Intern),
|
TOKEN2ID(Intern),
|
||||||
TOKEN2ID(MethodMissing),
|
TOKEN2ID(MethodMissing),
|
||||||
TOKEN2ID(Length),
|
TOKEN2ID(Length),
|
||||||
@ -107,11 +111,7 @@ enum ruby_method_ids {
|
|||||||
TOKEN2ID(Lambda),
|
TOKEN2ID(Lambda),
|
||||||
TOKEN2ID(Send),
|
TOKEN2ID(Send),
|
||||||
TOKEN2ID(__send__),
|
TOKEN2ID(__send__),
|
||||||
TOKEN2ID(Initialize),
|
TOKEN2ID(Initialize)
|
||||||
#if SUPPORT_JOKE
|
|
||||||
TOKEN2ID(Bitblt),
|
|
||||||
TOKEN2ID(Answer),
|
|
||||||
#endif
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif /* RUBY_ID_H */
|
#endif /* RUBY_ID_H */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user