diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-02-05 02:24:49 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-02-05 02:24:49 +0000 |
commit | 9aa3ba6313b2bc7bcf664a0fe5207c58696be520 (patch) | |
tree | 286049834a7d0271b9e0139cbe978ed715fb2977 /id.c | |
parent | 0d1a6a4bd2716f8e3201a4307d5a886c61a29807 (diff) | |
download | ruby-9aa3ba6313b2bc7bcf664a0fe5207c58696be520.tar.gz ruby-9aa3ba6313b2bc7bcf664a0fe5207c58696be520.tar.xz ruby-9aa3ba6313b2bc7bcf664a0fe5207c58696be520.zip |
* id.c (Init_id): use semicolons.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22070 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'id.c')
-rw-r--r-- | id.c | 22 |
1 files changed, 11 insertions, 11 deletions
@@ -21,17 +21,17 @@ Init_id(void) rb_encoding *enc = rb_usascii_encoding(); REGISTER_SYMID(idNULL, ""); - REGISTER_SYMID(idIFUNC, "<IFUNC>"), - REGISTER_SYMID(idCFUNC, "<CFUNC>"), - REGISTER_SYMID(idRespond_to, "respond_to?"), - REGISTER_SYMID(idThrowState, "#__ThrowState__"), - - REGISTER_SYMID(id_core_set_method_alias, "core#set_method_alias"), - REGISTER_SYMID(id_core_set_variable_alias, "core#set_variable_alias"), - REGISTER_SYMID(id_core_undef_method, "core#undef_method"), - REGISTER_SYMID(id_core_define_method, "core#define_method"), - REGISTER_SYMID(id_core_define_singleton_method, "core#define_singleton_method"), - REGISTER_SYMID(id_core_set_postexe, "core#set_postexe"), + REGISTER_SYMID(idIFUNC, "<IFUNC>"); + REGISTER_SYMID(idCFUNC, "<CFUNC>"); + REGISTER_SYMID(idRespond_to, "respond_to?"); + REGISTER_SYMID(idThrowState, "#__ThrowState__"); + + REGISTER_SYMID(id_core_set_method_alias, "core#set_method_alias"); + REGISTER_SYMID(id_core_set_variable_alias, "core#set_variable_alias"); + REGISTER_SYMID(id_core_undef_method, "core#undef_method"); + REGISTER_SYMID(id_core_define_method, "core#define_method"); + REGISTER_SYMID(id_core_define_singleton_method, "core#define_singleton_method"); + REGISTER_SYMID(id_core_set_postexe, "core#set_postexe"); REGISTER_SYMID(idEach, "each"); REGISTER_SYMID(idLength, "length"); |