summaryrefslogtreecommitdiff
path: root/id.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-02-05 02:24:49 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-02-05 02:24:49 +0000
commit38a6dfcbbb9edaf6c770955ccd11de88916833b0 (patch)
tree286049834a7d0271b9e0139cbe978ed715fb2977 /id.c
parentf4e9d9a2c5c87314d5a7141e5ddbab6d3baa10d2 (diff)
* id.c (Init_id): use semicolons.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22070 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'id.c')
-rw-r--r--id.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/id.c b/id.c
index 40c6eeb188..870bce5dad 100644
--- a/id.c
+++ b/id.c
@@ -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");