summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorshyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-24 10:24:01 +0000
committershyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-24 10:24:01 +0000
commit5ff7af42b018aba8f0eaa36e647285d81e082e14 (patch)
tree8efea86b3561cb72feb4a1a7b83ebca22b1aa331
parent4f817e2a9d8a365b403b1ce7a75c2053b0017ef1 (diff)
* id.h (enum ruby_method_ids): ISO C forbids comma at end of
enumerator list git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19912 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--id.h6
2 files changed, 8 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 7d3d85f500..0c6b57f9f6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+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
+ enumerator list
+
Fri Oct 24 18:29:00 2008 Keiju Ishitsuka <keiju@ruby-lang.org>
* lib/mathn.rb: moved into ext/mathn/rational/rational.c and
diff --git a/id.h b/id.h
index 37c73ed0e8..4ccf69d80f 100644
--- a/id.h
+++ b/id.h
@@ -174,10 +174,10 @@ enum ruby_method_ids {
TOKEN2ID(Lambda),
TOKEN2ID(Send),
TOKEN2ID(__send__),
- TOKEN2ID(Initialize),
+ TOKEN2ID(Initialize)
#if SUPPORT_JOKE
- TOKEN2ID(Bitblt),
- TOKEN2ID(Answer),
+ ,TOKEN2ID(Bitblt)
+ ,TOKEN2ID(Answer)
#endif
};