diff options
| author | shyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-08-01 21:11:40 +0000 |
|---|---|---|
| committer | shyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-08-01 21:11:40 +0000 |
| commit | 564398329acb436faf248a7f070f77d8d4ae5e52 (patch) | |
| tree | 305635538446c009493121a8abd9540236c15506 | |
| parent | e286c4175fc061a2626d101054aa1302a4639c83 (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-- | ChangeLog | 6 | ||||
| -rw-r--r-- | node.h | 2 | ||||
| -rw-r--r-- | parse.y | 2 |
3 files changed, 8 insertions, 2 deletions
@@ -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. @@ -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; @@ -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 |
