summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorshyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-08-01 21:11:40 +0000
committershyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-08-01 21:11:40 +0000
commit564398329acb436faf248a7f070f77d8d4ae5e52 (patch)
tree305635538446c009493121a8abd9540236c15506
parente286c4175fc061a2626d101054aa1302a4639c83 (diff)
* node.h (rb_thread_status): ISO C89 do not allow a comma at the end of enum.
* parse.y (string_type): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@24349 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog6
-rw-r--r--node.h2
-rw-r--r--parse.y2
3 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 1584c77104..8384acbf81 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Sun Aug 2 06:08:17 2009 URABE Shyouhei <shyouhei@ruby-lang.org>
+
+ * node.h (rb_thread_status): ISO C89 do not allow a comma at the end of enum.
+
+ * parse.y (string_type): ditto.
+
Sat Aug 1 07:51:32 2009 URABE Shyouhei <shyouhei@ruby-lang.org>
* lex.c: update.
diff --git a/node.h b/node.h
index 4af13233bc..3dd8e75d22 100644
--- a/node.h
+++ b/node.h
@@ -404,7 +404,7 @@ enum rb_thread_status {
THREAD_TO_KILL,
THREAD_RUNNABLE,
THREAD_STOPPED,
- THREAD_KILLED,
+ THREAD_KILLED
};
typedef struct rb_thread *rb_thread_t;
diff --git a/parse.y b/parse.y
index 480c73e366..4180ae10be 100644
--- a/parse.y
+++ b/parse.y
@@ -3115,7 +3115,7 @@ enum string_type {
str_sword = (STR_FUNC_QWORDS),
str_dword = (STR_FUNC_QWORDS|STR_FUNC_EXPAND),
str_ssym = (STR_FUNC_SYMBOL),
- str_dsym = (STR_FUNC_SYMBOL|STR_FUNC_EXPAND),
+ str_dsym = (STR_FUNC_SYMBOL|STR_FUNC_EXPAND)
};
static void