1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

remove a comma at end of enumerator list.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30158 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kazu 2010-12-10 02:42:06 +00:00
parent 9ea7e27d58
commit fe1f0df92b
5 changed files with 20 additions and 6 deletions

4
iseq.h
View file

@ -51,7 +51,7 @@ struct iseq_catch_table_entry {
CATCH_TYPE_RETRY,
CATCH_TYPE_BREAK,
CATCH_TYPE_REDO,
CATCH_TYPE_NEXT,
CATCH_TYPE_NEXT
} type;
VALUE iseq;
unsigned long start;
@ -107,7 +107,7 @@ enum defined_type {
DEFINED_YIELD,
DEFINED_REF,
DEFINED_ZSUPER,
DEFINED_FUNC,
DEFINED_FUNC
};
#if defined __GNUC__ && __GNUC__ >= 4