ruby-changes:8390
From: nobu <ko1@a...>
Date: Fri, 24 Oct 2008 21:51:08 +0900 (JST)
Subject: [ruby-changes:8390] Ruby:r19921 (trunk): * id.h, template/id.h.tmpl (enum ruby_method_ids): reordered.
nobu 2008-10-24 21:50:35 +0900 (Fri, 24 Oct 2008) New Revision: 19921 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=19921 Log: * id.h, template/id.h.tmpl (enum ruby_method_ids): reordered. Modified files: trunk/ChangeLog trunk/id.h trunk/template/id.h.tmpl Index: ChangeLog =================================================================== --- ChangeLog (revision 19920) +++ ChangeLog (revision 19921) @@ -1,3 +1,7 @@ +Fri Oct 24 21:50:21 2008 Nobuyoshi Nakada <nobu@r...> + + * id.h, template/id.h.tmpl (enum ruby_method_ids): reordered. + Fri Oct 24 21:19:45 2008 Keiju Ishitsuka <keiju@r...> * ext/mathn/rational.c: change several global functions. @@ -25,7 +29,7 @@ Fri Oct 24 19:16:36 2008 URABE Shyouhei <shyouhei@r...> * 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@r...> Index: id.h =================================================================== --- id.h (revision 19920) +++ id.h (revision 19921) @@ -165,6 +165,10 @@ #endif tLAST_ID, #define TOKEN2ID(n) id##n = ((t##n<<ID_SCOPE_SHIFT)|ID_LOCAL) +#if SUPPORT_JOKE + TOKEN2ID(Bitblt), + TOKEN2ID(Answer), +#endif TOKEN2ID(Intern), TOKEN2ID(MethodMissing), TOKEN2ID(Length), @@ -175,10 +179,6 @@ TOKEN2ID(Send), TOKEN2ID(__send__), TOKEN2ID(Initialize) -#if SUPPORT_JOKE - ,TOKEN2ID(Bitblt) - ,TOKEN2ID(Answer) -#endif }; #endif /* RUBY_ID_H */ Index: template/id.h.tmpl =================================================================== --- template/id.h.tmpl (revision 19920) +++ template/id.h.tmpl (revision 19921) @@ -98,6 +98,10 @@ #endif tLAST_ID, #define TOKEN2ID(n) id##n = ((t##n<<ID_SCOPE_SHIFT)|ID_LOCAL) +#if SUPPORT_JOKE + TOKEN2ID(Bitblt), + TOKEN2ID(Answer), +#endif TOKEN2ID(Intern), TOKEN2ID(MethodMissing), TOKEN2ID(Length), @@ -107,11 +111,7 @@ TOKEN2ID(Lambda), TOKEN2ID(Send), TOKEN2ID(__send__), - TOKEN2ID(Initialize), -#if SUPPORT_JOKE - TOKEN2ID(Bitblt), - TOKEN2ID(Answer), -#endif + TOKEN2ID(Initialize) }; #endif /* RUBY_ID_H */ -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/