aboutsummaryrefslogtreecommitdiffstats
path: root/template
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-08-17 04:12:12 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-08-17 04:12:12 +0000
commit42dc1e5ef8f8c003ef0cb5b78102044d2e800c44 (patch)
tree5d8ea1d8e90ac4aa02b86d90a642fd12a4a91f0a /template
parent4a097d2e3e37e66f0cac4db3d4916d673fcb0129 (diff)
downloadruby-42dc1e5ef8f8c003ef0cb5b78102044d2e800c44.tar.gz
* id.c: move vm_opts.h dependency.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36719 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'template')
-rw-r--r--template/id.h.tmpl6
1 files changed, 0 insertions, 6 deletions
diff --git a/template/id.h.tmpl b/template/id.h.tmpl
index 52c3685913..f6ebf9fba5 100644
--- a/template/id.h.tmpl
+++ b/template/id.h.tmpl
@@ -65,8 +65,6 @@ method_ids = %w[
#include "parse.h"
#endif
-#include "vm_opts.h" /* for SUPPORT_JOKE */
-
#define symIFUNC ID2SYM(idIFUNC)
#define symCFUNC ID2SYM(idCFUNC)
@@ -109,16 +107,12 @@ enum ruby_method_ids {
% method_ids.each do |token|
t<%=token%>,
% end
-#if SUPPORT_JOKE
tBitblt,
tAnswer,
-#endif
tLAST_ID,
#define TOKEN2ID(n) id##n = ((t##n<<ID_SCOPE_SHIFT)|ID_LOCAL)
-#if SUPPORT_JOKE
TOKEN2ID(Bitblt),
TOKEN2ID(Answer),
-#endif
% method_ids.each do |token|
TOKEN2ID(<%=token%>),
% end