From 9aa3ba6313b2bc7bcf664a0fe5207c58696be520 Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 5 Feb 2009 02:24:49 +0000 Subject: * id.c (Init_id): use semicolons. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22070 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- id.c | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/id.c b/id.c index 40c6eeb18..870bce5da 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, ""), - REGISTER_SYMID(idCFUNC, ""), - 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, ""); + REGISTER_SYMID(idCFUNC, ""); + 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"); -- cgit