summaryrefslogtreecommitdiff
path: root/trunk/id.c
diff options
context:
space:
mode:
authoryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-25 15:13:14 +0000
committeryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-25 15:13:14 +0000
commitd0233291bc8a5068e52c69c210e5979e5324b5bc (patch)
tree7d9459449c33792c63eeb7baa071e76352e0baab /trunk/id.c
parent0dc342de848a642ecce8db697b8fecd83a63e117 (diff)
parent72eaacaa15256ab95c3b52ea386f88586fb9da40 (diff)
re-adding tag v1_9_0_4 as an alias of trunk@18848v1_9_0_4
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/tags/v1_9_0_4@18849 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'trunk/id.c')
-rw-r--r--trunk/id.c50
1 files changed, 0 insertions, 50 deletions
diff --git a/trunk/id.c b/trunk/id.c
deleted file mode 100644
index 40c6eeb188..0000000000
--- a/trunk/id.c
+++ /dev/null
@@ -1,50 +0,0 @@
-/**********************************************************************
-
- id.c -
-
- $Author$
- created at: Thu Jul 12 04:37:51 2007
-
- Copyright (C) 2004-2007 Koichi Sasada
-
-**********************************************************************/
-
-#include "ruby/ruby.h"
-
-#include "id.h"
-
-static void
-Init_id(void)
-{
-#undef rb_intern
-#define rb_intern(str) rb_intern_const(str)
- 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(idEach, "each");
- REGISTER_SYMID(idLength, "length");
- REGISTER_SYMID(idLambda, "lambda");
- REGISTER_SYMID(idIntern, "intern");
- REGISTER_SYMID(idGets, "gets");
- REGISTER_SYMID(idSucc, "succ");
- REGISTER_SYMID(idMethodMissing, "method_missing");
-#if SUPPORT_JOKE
- REGISTER_SYMID(idBitblt, "bitblt");
- REGISTER_SYMID(idAnswer, "the_answer_to_life_the_universe_and_everything");
-#endif
- REGISTER_SYMID(idSend, "send");
- REGISTER_SYMID(id__send__, "__send__");
- REGISTER_SYMID(idInitialize, "initialize");
-}